/*!**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[13].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[13].use[3]!./node_modules/next/dist/build/webpack/loaders/resolve-url-loader/index.js??ruleSet[1].rules[14].oneOf[13].use[4]!./node_modules/next/dist/compiled/sass-loader/cjs.js??ruleSet[1].rules[14].oneOf[13].use[5]!./node_modules/react-toastify/dist/ReactToastify.css ***!
  \**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
:root {
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3498db;
  --toastify-color-success: #07bc0c;
  --toastify-color-warning: #f1c40f;
  --toastify-color-error: #e74c3c;
  --toastify-color-transparent: rgba(255, 255, 255, 0.7);
  --toastify-icon-color-info: var(--toastify-color-info);
  --toastify-icon-color-success: var(--toastify-color-success);
  --toastify-icon-color-warning: var(--toastify-color-warning);
  --toastify-icon-color-error: var(--toastify-color-error);
  --toastify-toast-width: 320px;
  --toastify-toast-offset: 16px;
  --toastify-toast-top: max(var(--toastify-toast-offset), env(safe-area-inset-top));
  --toastify-toast-right: max(var(--toastify-toast-offset), env(safe-area-inset-right));
  --toastify-toast-left: max(var(--toastify-toast-offset), env(safe-area-inset-left));
  --toastify-toast-bottom: max(var(--toastify-toast-offset), env(safe-area-inset-bottom));
  --toastify-toast-background: #fff;
  --toastify-toast-min-height: 64px;
  --toastify-toast-max-height: 800px;
  --toastify-toast-bd-radius: 6px;
  --toastify-font-family: sans-serif;
  --toastify-z-index: 9999;
  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;
  --toastify-text-color-info: #fff;
  --toastify-text-color-success: #fff;
  --toastify-text-color-warning: #fff;
  --toastify-text-color-error: #fff;
  --toastify-spinner-color: #616161;
  --toastify-spinner-color-empty-area: #e0e0e0;
  --toastify-color-progress-light: linear-gradient(
    to right,
    #4cd964,
    #5ac8fa,
    #007aff,
    #34aadc,
    #5856d6,
    #ff2d55
  );
  --toastify-color-progress-dark: #bb86fc;
  --toastify-color-progress-info: var(--toastify-color-info);
  --toastify-color-progress-success: var(--toastify-color-success);
  --toastify-color-progress-warning: var(--toastify-color-warning);
  --toastify-color-progress-error: var(--toastify-color-error);
  --toastify-color-progress-bgo: 0.2;
}

.Toastify__toast-container {
  z-index: var(--toastify-z-index);
  -webkit-transform: translate3d(0, 0, var(--toastify-z-index));
  position: fixed;
  padding: 4px;
  width: var(--toastify-toast-width);
  box-sizing: border-box;
  color: #fff;
}

.Toastify__toast-container--top-left {
  top: var(--toastify-toast-top);
  left: var(--toastify-toast-left);
}

.Toastify__toast-container--top-center {
  top: var(--toastify-toast-top);
  left: 50%;
  transform: translateX(-50%);
}

.Toastify__toast-container--top-right {
  top: var(--toastify-toast-top);
  right: var(--toastify-toast-right);
}

.Toastify__toast-container--bottom-left {
  bottom: var(--toastify-toast-bottom);
  left: var(--toastify-toast-left);
}

.Toastify__toast-container--bottom-center {
  bottom: var(--toastify-toast-bottom);
  left: 50%;
  transform: translateX(-50%);
}

.Toastify__toast-container--bottom-right {
  bottom: var(--toastify-toast-bottom);
  right: var(--toastify-toast-right);
}

@media only screen and (max-width: 480px) {
  .Toastify__toast-container {
    width: 100vw;
    padding: 0;
    left: env(safe-area-inset-left);
    margin: 0;
  }
  .Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right {
    top: env(safe-area-inset-top);
    transform: translateX(0);
  }
  .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right {
    bottom: env(safe-area-inset-bottom);
    transform: translateX(0);
  }
  .Toastify__toast-container--rtl {
    right: env(safe-area-inset-right);
    left: initial;
  }
}
.Toastify__toast {
  --y: 0;
  position: relative;
  touch-action: none;
  min-height: var(--toastify-toast-min-height);
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: var(--toastify-toast-bd-radius);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  max-height: var(--toastify-toast-max-height);
  font-family: var(--toastify-font-family);
  cursor: default;
  direction: ltr;
  /* webkit only issue #791 */
  z-index: 0;
  overflow: hidden;
}

.Toastify__toast--stacked {
  position: absolute;
  width: 100%;
  transform: translate3d(0, var(--y), 0) scale(var(--s));
  transition: transform 0.3s;
}

.Toastify__toast--stacked[data-collapsed] .Toastify__toast-body, .Toastify__toast--stacked[data-collapsed] .Toastify__close-button {
  transition: opacity 0.1s;
}

.Toastify__toast--stacked[data-collapsed=false] {
  overflow: visible;
}

.Toastify__toast--stacked[data-collapsed=true]:not(:last-child) > * {
  opacity: 0;
}

.Toastify__toast--stacked:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: calc(var(--g) * 1px);
  bottom: 100%;
}

.Toastify__toast--stacked[data-pos=top] {
  top: 0;
}

.Toastify__toast--stacked[data-pos=bot] {
  bottom: 0;
}

.Toastify__toast--stacked[data-pos=bot].Toastify__toast--stacked:before {
  transform-origin: top;
}

.Toastify__toast--stacked[data-pos=top].Toastify__toast--stacked:before {
  transform-origin: bottom;
}

.Toastify__toast--stacked:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  transform: scaleY(3);
  z-index: -1;
}

.Toastify__toast--rtl {
  direction: rtl;
}

.Toastify__toast--close-on-click {
  cursor: pointer;
}

.Toastify__toast-body {
  margin: auto 0;
  flex: 1 1 auto;
  padding: 6px;
  display: flex;
  align-items: center;
}

.Toastify__toast-body > div:last-child {
  word-break: break-word;
  flex: 1 1;
}

.Toastify__toast-icon {
  -webkit-margin-end: 10px;
  margin-inline-end: 10px;
  width: 20px;
  flex-shrink: 0;
  display: flex;
}

.Toastify--animate {
  animation-fill-mode: both;
  animation-duration: 0.5s;
}

.Toastify--animate-icon {
  animation-fill-mode: both;
  animation-duration: 0.3s;
}

@media only screen and (max-width: 480px) {
  .Toastify__toast {
    margin-bottom: 0;
    border-radius: 0;
  }
}
.Toastify__toast-theme--dark {
  background: var(--toastify-color-dark);
  color: var(--toastify-text-color-dark);
}

.Toastify__toast-theme--light {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}

.Toastify__toast-theme--colored.Toastify__toast--default {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}

.Toastify__toast-theme--colored.Toastify__toast--info {
  color: var(--toastify-text-color-info);
  background: var(--toastify-color-info);
}

.Toastify__toast-theme--colored.Toastify__toast--success {
  color: var(--toastify-text-color-success);
  background: var(--toastify-color-success);
}

.Toastify__toast-theme--colored.Toastify__toast--warning {
  color: var(--toastify-text-color-warning);
  background: var(--toastify-color-warning);
}

.Toastify__toast-theme--colored.Toastify__toast--error {
  color: var(--toastify-text-color-error);
  background: var(--toastify-color-error);
}

.Toastify__progress-bar-theme--light {
  background: var(--toastify-color-progress-light);
}

.Toastify__progress-bar-theme--dark {
  background: var(--toastify-color-progress-dark);
}

.Toastify__progress-bar--info {
  background: var(--toastify-color-progress-info);
}

.Toastify__progress-bar--success {
  background: var(--toastify-color-progress-success);
}

.Toastify__progress-bar--warning {
  background: var(--toastify-color-progress-warning);
}

.Toastify__progress-bar--error {
  background: var(--toastify-color-progress-error);
}

.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--success, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
  background: var(--toastify-color-transparent);
}

.Toastify__close-button {
  color: #fff;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  align-self: flex-start;
  z-index: 1;
}

.Toastify__close-button--light {
  color: #000;
  opacity: 0.3;
}

.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}

.Toastify__close-button:hover, .Toastify__close-button:focus {
  opacity: 1;
}

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--toastify-z-index);
  opacity: 0.7;
  transform-origin: left;
  border-bottom-left-radius: var(--toastify-toast-bd-radius);
}

.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}

.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}

.Toastify__progress-bar--rtl {
  right: 0;
  left: initial;
  transform-origin: right;
  border-bottom-left-radius: initial;
  border-bottom-right-radius: var(--toastify-toast-bd-radius);
}

.Toastify__progress-bar--wrp {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  border-bottom-left-radius: var(--toastify-toast-bd-radius);
}

.Toastify__progress-bar--wrp[data-hidden=true] {
  opacity: 0;
}

.Toastify__progress-bar--bg {
  opacity: var(--toastify-color-progress-bgo);
  width: 100%;
  height: 100%;
}

.Toastify__spinner {
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border: 2px solid;
  border-radius: 100%;
  border-color: var(--toastify-spinner-color-empty-area);
  border-right-color: var(--toastify-spinner-color);
  animation: Toastify__spin 0.65s linear infinite;
}

@keyframes Toastify__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);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, var(--y), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, var(--y), 0);
  }
}
@keyframes Toastify__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);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, var(--y), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, var(--y), 0);
  }
}
@keyframes Toastify__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);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, calc(var(--y) - 10px), 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, calc(var(--y) + 20px), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes Toastify__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);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, calc(var(--y) - 10px), 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, calc(var(--y) + 20px), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft;
}

.Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight;
}

.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}

.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft;
}

.Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight;
}

.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}

.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: translate3d(0, var(--y), 0) scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}

@keyframes Toastify__flipIn {
  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);
  }
}
@keyframes Toastify__flipOut {
  from {
    transform: translate3d(0, var(--y), 0) perspective(400px);
  }
  30% {
    transform: translate3d(0, var(--y), 0) perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: translate3d(0, var(--y), 0) perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}

.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}
@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}
@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}
@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}
@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, var(--y), 0);
  }
}
@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, var(--y), 0);
  }
}
@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}
@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}
.Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft;
}

.Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight;
}

.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}

.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

.Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}

@keyframes Toastify__spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/*!**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[13].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[13].use[3]!./node_modules/next/dist/build/webpack/loaders/resolve-url-loader/index.js??ruleSet[1].rules[14].oneOf[13].use[4]!./node_modules/next/dist/compiled/sass-loader/cjs.js??ruleSet[1].rules[14].oneOf[13].use[5]!./node_modules/react-modal-video/css/modal-video.css ***!
  \**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
@keyframes modal-video {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modal-video-inner {
  from {
    transform: translate(0, 100px);
  }
  to {
    transform: translate(0, 0);
  }
}
.modal-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000000;
  cursor: pointer;
  opacity: 1;
  animation-timing-function: ease-out;
  animation-duration: 0.3s;
  animation-name: modal-video;
  transition: opacity 0.3s ease-out;
}

.modal-video-effect-exit {
  opacity: 0;
}

.modal-video-effect-exit .modal-video-movie-wrap {
  transform: translate(0, 100px);
}

.modal-video-body {
  max-width: 960px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 10px;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

.modal-video-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

@media (orientation: landscape) {
  .modal-video-inner {
    padding: 10px 60px;
    box-sizing: border-box;
  }
}
.modal-video-movie-wrap {
  width: 100%;
  height: 0;
  position: relative;
  padding-bottom: 56.25%;
  background-color: #333;
  animation-timing-function: ease-out;
  animation-duration: 0.3s;
  animation-name: modal-video-inner;
  transform: translate(0, 0);
  transition: transform 0.3s ease-out;
}

.modal-video-movie-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal-video-close-btn {
  position: absolute;
  z-index: 2;
  top: -45px;
  right: 0px;
  display: inline-block;
  width: 35px;
  height: 35px;
  overflow: hidden;
  border: none;
  background: transparent;
}

@media (orientation: landscape) {
  .modal-video-close-btn {
    top: 0;
    right: -45px;
  }
}
.modal-video-close-btn:before {
  transform: rotate(45deg);
}

.modal-video-close-btn:after {
  transform: rotate(-45deg);
}

.modal-video-close-btn:before, .modal-video-close-btn:after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  background: #fff;
  border-radius: 5px;
  margin-top: -6px;
}
/*!*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[13].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[13].use[3]!./node_modules/next/dist/build/webpack/loaders/resolve-url-loader/index.js??ruleSet[1].rules[14].oneOf[13].use[4]!./node_modules/next/dist/compiled/sass-loader/cjs.js??ruleSet[1].rules[14].oneOf[13].use[5]!./node_modules/aos/dist/aos.css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
[data-aos][data-aos][data-aos-duration="50"], body[data-aos-duration="50"] [data-aos] {
  transition-duration: 50ms;
}

[data-aos][data-aos][data-aos-delay="50"], body[data-aos-delay="50"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="50"].aos-animate, body[data-aos-delay="50"] [data-aos].aos-animate {
  transition-delay: 50ms;
}

[data-aos][data-aos][data-aos-duration="100"], body[data-aos-duration="100"] [data-aos] {
  transition-duration: 0.1s;
}

[data-aos][data-aos][data-aos-delay="100"], body[data-aos-delay="100"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="100"].aos-animate, body[data-aos-delay="100"] [data-aos].aos-animate {
  transition-delay: 0.1s;
}

[data-aos][data-aos][data-aos-duration="150"], body[data-aos-duration="150"] [data-aos] {
  transition-duration: 0.15s;
}

[data-aos][data-aos][data-aos-delay="150"], body[data-aos-delay="150"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="150"].aos-animate, body[data-aos-delay="150"] [data-aos].aos-animate {
  transition-delay: 0.15s;
}

[data-aos][data-aos][data-aos-duration="200"], body[data-aos-duration="200"] [data-aos] {
  transition-duration: 0.2s;
}

[data-aos][data-aos][data-aos-delay="200"], body[data-aos-delay="200"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="200"].aos-animate, body[data-aos-delay="200"] [data-aos].aos-animate {
  transition-delay: 0.2s;
}

[data-aos][data-aos][data-aos-duration="250"], body[data-aos-duration="250"] [data-aos] {
  transition-duration: 0.25s;
}

[data-aos][data-aos][data-aos-delay="250"], body[data-aos-delay="250"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="250"].aos-animate, body[data-aos-delay="250"] [data-aos].aos-animate {
  transition-delay: 0.25s;
}

[data-aos][data-aos][data-aos-duration="300"], body[data-aos-duration="300"] [data-aos] {
  transition-duration: 0.3s;
}

[data-aos][data-aos][data-aos-delay="300"], body[data-aos-delay="300"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="300"].aos-animate, body[data-aos-delay="300"] [data-aos].aos-animate {
  transition-delay: 0.3s;
}

[data-aos][data-aos][data-aos-duration="350"], body[data-aos-duration="350"] [data-aos] {
  transition-duration: 0.35s;
}

[data-aos][data-aos][data-aos-delay="350"], body[data-aos-delay="350"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="350"].aos-animate, body[data-aos-delay="350"] [data-aos].aos-animate {
  transition-delay: 0.35s;
}

[data-aos][data-aos][data-aos-duration="400"], body[data-aos-duration="400"] [data-aos] {
  transition-duration: 0.4s;
}

[data-aos][data-aos][data-aos-delay="400"], body[data-aos-delay="400"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="400"].aos-animate, body[data-aos-delay="400"] [data-aos].aos-animate {
  transition-delay: 0.4s;
}

[data-aos][data-aos][data-aos-duration="450"], body[data-aos-duration="450"] [data-aos] {
  transition-duration: 0.45s;
}

[data-aos][data-aos][data-aos-delay="450"], body[data-aos-delay="450"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="450"].aos-animate, body[data-aos-delay="450"] [data-aos].aos-animate {
  transition-delay: 0.45s;
}

[data-aos][data-aos][data-aos-duration="500"], body[data-aos-duration="500"] [data-aos] {
  transition-duration: 0.5s;
}

[data-aos][data-aos][data-aos-delay="500"], body[data-aos-delay="500"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="500"].aos-animate, body[data-aos-delay="500"] [data-aos].aos-animate {
  transition-delay: 0.5s;
}

[data-aos][data-aos][data-aos-duration="550"], body[data-aos-duration="550"] [data-aos] {
  transition-duration: 0.55s;
}

[data-aos][data-aos][data-aos-delay="550"], body[data-aos-delay="550"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="550"].aos-animate, body[data-aos-delay="550"] [data-aos].aos-animate {
  transition-delay: 0.55s;
}

[data-aos][data-aos][data-aos-duration="600"], body[data-aos-duration="600"] [data-aos] {
  transition-duration: 0.6s;
}

[data-aos][data-aos][data-aos-delay="600"], body[data-aos-delay="600"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="600"].aos-animate, body[data-aos-delay="600"] [data-aos].aos-animate {
  transition-delay: 0.6s;
}

[data-aos][data-aos][data-aos-duration="650"], body[data-aos-duration="650"] [data-aos] {
  transition-duration: 0.65s;
}

[data-aos][data-aos][data-aos-delay="650"], body[data-aos-delay="650"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="650"].aos-animate, body[data-aos-delay="650"] [data-aos].aos-animate {
  transition-delay: 0.65s;
}

[data-aos][data-aos][data-aos-duration="700"], body[data-aos-duration="700"] [data-aos] {
  transition-duration: 0.7s;
}

[data-aos][data-aos][data-aos-delay="700"], body[data-aos-delay="700"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="700"].aos-animate, body[data-aos-delay="700"] [data-aos].aos-animate {
  transition-delay: 0.7s;
}

[data-aos][data-aos][data-aos-duration="750"], body[data-aos-duration="750"] [data-aos] {
  transition-duration: 0.75s;
}

[data-aos][data-aos][data-aos-delay="750"], body[data-aos-delay="750"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="750"].aos-animate, body[data-aos-delay="750"] [data-aos].aos-animate {
  transition-delay: 0.75s;
}

[data-aos][data-aos][data-aos-duration="800"], body[data-aos-duration="800"] [data-aos] {
  transition-duration: 0.8s;
}

[data-aos][data-aos][data-aos-delay="800"], body[data-aos-delay="800"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="800"].aos-animate, body[data-aos-delay="800"] [data-aos].aos-animate {
  transition-delay: 0.8s;
}

[data-aos][data-aos][data-aos-duration="850"], body[data-aos-duration="850"] [data-aos] {
  transition-duration: 0.85s;
}

[data-aos][data-aos][data-aos-delay="850"], body[data-aos-delay="850"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="850"].aos-animate, body[data-aos-delay="850"] [data-aos].aos-animate {
  transition-delay: 0.85s;
}

[data-aos][data-aos][data-aos-duration="900"], body[data-aos-duration="900"] [data-aos] {
  transition-duration: 0.9s;
}

[data-aos][data-aos][data-aos-delay="900"], body[data-aos-delay="900"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="900"].aos-animate, body[data-aos-delay="900"] [data-aos].aos-animate {
  transition-delay: 0.9s;
}

[data-aos][data-aos][data-aos-duration="950"], body[data-aos-duration="950"] [data-aos] {
  transition-duration: 0.95s;
}

[data-aos][data-aos][data-aos-delay="950"], body[data-aos-delay="950"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="950"].aos-animate, body[data-aos-delay="950"] [data-aos].aos-animate {
  transition-delay: 0.95s;
}

[data-aos][data-aos][data-aos-duration="1000"], body[data-aos-duration="1000"] [data-aos] {
  transition-duration: 1s;
}

[data-aos][data-aos][data-aos-delay="1000"], body[data-aos-delay="1000"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1000"].aos-animate, body[data-aos-delay="1000"] [data-aos].aos-animate {
  transition-delay: 1s;
}

[data-aos][data-aos][data-aos-duration="1050"], body[data-aos-duration="1050"] [data-aos] {
  transition-duration: 1.05s;
}

[data-aos][data-aos][data-aos-delay="1050"], body[data-aos-delay="1050"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1050"].aos-animate, body[data-aos-delay="1050"] [data-aos].aos-animate {
  transition-delay: 1.05s;
}

[data-aos][data-aos][data-aos-duration="1100"], body[data-aos-duration="1100"] [data-aos] {
  transition-duration: 1.1s;
}

[data-aos][data-aos][data-aos-delay="1100"], body[data-aos-delay="1100"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1100"].aos-animate, body[data-aos-delay="1100"] [data-aos].aos-animate {
  transition-delay: 1.1s;
}

[data-aos][data-aos][data-aos-duration="1150"], body[data-aos-duration="1150"] [data-aos] {
  transition-duration: 1.15s;
}

[data-aos][data-aos][data-aos-delay="1150"], body[data-aos-delay="1150"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1150"].aos-animate, body[data-aos-delay="1150"] [data-aos].aos-animate {
  transition-delay: 1.15s;
}

[data-aos][data-aos][data-aos-duration="1200"], body[data-aos-duration="1200"] [data-aos] {
  transition-duration: 1.2s;
}

[data-aos][data-aos][data-aos-delay="1200"], body[data-aos-delay="1200"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1200"].aos-animate, body[data-aos-delay="1200"] [data-aos].aos-animate {
  transition-delay: 1.2s;
}

[data-aos][data-aos][data-aos-duration="1250"], body[data-aos-duration="1250"] [data-aos] {
  transition-duration: 1.25s;
}

[data-aos][data-aos][data-aos-delay="1250"], body[data-aos-delay="1250"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1250"].aos-animate, body[data-aos-delay="1250"] [data-aos].aos-animate {
  transition-delay: 1.25s;
}

[data-aos][data-aos][data-aos-duration="1300"], body[data-aos-duration="1300"] [data-aos] {
  transition-duration: 1.3s;
}

[data-aos][data-aos][data-aos-delay="1300"], body[data-aos-delay="1300"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1300"].aos-animate, body[data-aos-delay="1300"] [data-aos].aos-animate {
  transition-delay: 1.3s;
}

[data-aos][data-aos][data-aos-duration="1350"], body[data-aos-duration="1350"] [data-aos] {
  transition-duration: 1.35s;
}

[data-aos][data-aos][data-aos-delay="1350"], body[data-aos-delay="1350"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1350"].aos-animate, body[data-aos-delay="1350"] [data-aos].aos-animate {
  transition-delay: 1.35s;
}

[data-aos][data-aos][data-aos-duration="1400"], body[data-aos-duration="1400"] [data-aos] {
  transition-duration: 1.4s;
}

[data-aos][data-aos][data-aos-delay="1400"], body[data-aos-delay="1400"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1400"].aos-animate, body[data-aos-delay="1400"] [data-aos].aos-animate {
  transition-delay: 1.4s;
}

[data-aos][data-aos][data-aos-duration="1450"], body[data-aos-duration="1450"] [data-aos] {
  transition-duration: 1.45s;
}

[data-aos][data-aos][data-aos-delay="1450"], body[data-aos-delay="1450"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1450"].aos-animate, body[data-aos-delay="1450"] [data-aos].aos-animate {
  transition-delay: 1.45s;
}

[data-aos][data-aos][data-aos-duration="1500"], body[data-aos-duration="1500"] [data-aos] {
  transition-duration: 1.5s;
}

[data-aos][data-aos][data-aos-delay="1500"], body[data-aos-delay="1500"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1500"].aos-animate, body[data-aos-delay="1500"] [data-aos].aos-animate {
  transition-delay: 1.5s;
}

[data-aos][data-aos][data-aos-duration="1550"], body[data-aos-duration="1550"] [data-aos] {
  transition-duration: 1.55s;
}

[data-aos][data-aos][data-aos-delay="1550"], body[data-aos-delay="1550"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1550"].aos-animate, body[data-aos-delay="1550"] [data-aos].aos-animate {
  transition-delay: 1.55s;
}

[data-aos][data-aos][data-aos-duration="1600"], body[data-aos-duration="1600"] [data-aos] {
  transition-duration: 1.6s;
}

[data-aos][data-aos][data-aos-delay="1600"], body[data-aos-delay="1600"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1600"].aos-animate, body[data-aos-delay="1600"] [data-aos].aos-animate {
  transition-delay: 1.6s;
}

[data-aos][data-aos][data-aos-duration="1650"], body[data-aos-duration="1650"] [data-aos] {
  transition-duration: 1.65s;
}

[data-aos][data-aos][data-aos-delay="1650"], body[data-aos-delay="1650"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1650"].aos-animate, body[data-aos-delay="1650"] [data-aos].aos-animate {
  transition-delay: 1.65s;
}

[data-aos][data-aos][data-aos-duration="1700"], body[data-aos-duration="1700"] [data-aos] {
  transition-duration: 1.7s;
}

[data-aos][data-aos][data-aos-delay="1700"], body[data-aos-delay="1700"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1700"].aos-animate, body[data-aos-delay="1700"] [data-aos].aos-animate {
  transition-delay: 1.7s;
}

[data-aos][data-aos][data-aos-duration="1750"], body[data-aos-duration="1750"] [data-aos] {
  transition-duration: 1.75s;
}

[data-aos][data-aos][data-aos-delay="1750"], body[data-aos-delay="1750"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1750"].aos-animate, body[data-aos-delay="1750"] [data-aos].aos-animate {
  transition-delay: 1.75s;
}

[data-aos][data-aos][data-aos-duration="1800"], body[data-aos-duration="1800"] [data-aos] {
  transition-duration: 1.8s;
}

[data-aos][data-aos][data-aos-delay="1800"], body[data-aos-delay="1800"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1800"].aos-animate, body[data-aos-delay="1800"] [data-aos].aos-animate {
  transition-delay: 1.8s;
}

[data-aos][data-aos][data-aos-duration="1850"], body[data-aos-duration="1850"] [data-aos] {
  transition-duration: 1.85s;
}

[data-aos][data-aos][data-aos-delay="1850"], body[data-aos-delay="1850"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1850"].aos-animate, body[data-aos-delay="1850"] [data-aos].aos-animate {
  transition-delay: 1.85s;
}

[data-aos][data-aos][data-aos-duration="1900"], body[data-aos-duration="1900"] [data-aos] {
  transition-duration: 1.9s;
}

[data-aos][data-aos][data-aos-delay="1900"], body[data-aos-delay="1900"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1900"].aos-animate, body[data-aos-delay="1900"] [data-aos].aos-animate {
  transition-delay: 1.9s;
}

[data-aos][data-aos][data-aos-duration="1950"], body[data-aos-duration="1950"] [data-aos] {
  transition-duration: 1.95s;
}

[data-aos][data-aos][data-aos-delay="1950"], body[data-aos-delay="1950"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1950"].aos-animate, body[data-aos-delay="1950"] [data-aos].aos-animate {
  transition-delay: 1.95s;
}

[data-aos][data-aos][data-aos-duration="2000"], body[data-aos-duration="2000"] [data-aos] {
  transition-duration: 2s;
}

[data-aos][data-aos][data-aos-delay="2000"], body[data-aos-delay="2000"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2000"].aos-animate, body[data-aos-delay="2000"] [data-aos].aos-animate {
  transition-delay: 2s;
}

[data-aos][data-aos][data-aos-duration="2050"], body[data-aos-duration="2050"] [data-aos] {
  transition-duration: 2.05s;
}

[data-aos][data-aos][data-aos-delay="2050"], body[data-aos-delay="2050"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2050"].aos-animate, body[data-aos-delay="2050"] [data-aos].aos-animate {
  transition-delay: 2.05s;
}

[data-aos][data-aos][data-aos-duration="2100"], body[data-aos-duration="2100"] [data-aos] {
  transition-duration: 2.1s;
}

[data-aos][data-aos][data-aos-delay="2100"], body[data-aos-delay="2100"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2100"].aos-animate, body[data-aos-delay="2100"] [data-aos].aos-animate {
  transition-delay: 2.1s;
}

[data-aos][data-aos][data-aos-duration="2150"], body[data-aos-duration="2150"] [data-aos] {
  transition-duration: 2.15s;
}

[data-aos][data-aos][data-aos-delay="2150"], body[data-aos-delay="2150"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2150"].aos-animate, body[data-aos-delay="2150"] [data-aos].aos-animate {
  transition-delay: 2.15s;
}

[data-aos][data-aos][data-aos-duration="2200"], body[data-aos-duration="2200"] [data-aos] {
  transition-duration: 2.2s;
}

[data-aos][data-aos][data-aos-delay="2200"], body[data-aos-delay="2200"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2200"].aos-animate, body[data-aos-delay="2200"] [data-aos].aos-animate {
  transition-delay: 2.2s;
}

[data-aos][data-aos][data-aos-duration="2250"], body[data-aos-duration="2250"] [data-aos] {
  transition-duration: 2.25s;
}

[data-aos][data-aos][data-aos-delay="2250"], body[data-aos-delay="2250"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2250"].aos-animate, body[data-aos-delay="2250"] [data-aos].aos-animate {
  transition-delay: 2.25s;
}

[data-aos][data-aos][data-aos-duration="2300"], body[data-aos-duration="2300"] [data-aos] {
  transition-duration: 2.3s;
}

[data-aos][data-aos][data-aos-delay="2300"], body[data-aos-delay="2300"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2300"].aos-animate, body[data-aos-delay="2300"] [data-aos].aos-animate {
  transition-delay: 2.3s;
}

[data-aos][data-aos][data-aos-duration="2350"], body[data-aos-duration="2350"] [data-aos] {
  transition-duration: 2.35s;
}

[data-aos][data-aos][data-aos-delay="2350"], body[data-aos-delay="2350"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2350"].aos-animate, body[data-aos-delay="2350"] [data-aos].aos-animate {
  transition-delay: 2.35s;
}

[data-aos][data-aos][data-aos-duration="2400"], body[data-aos-duration="2400"] [data-aos] {
  transition-duration: 2.4s;
}

[data-aos][data-aos][data-aos-delay="2400"], body[data-aos-delay="2400"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2400"].aos-animate, body[data-aos-delay="2400"] [data-aos].aos-animate {
  transition-delay: 2.4s;
}

[data-aos][data-aos][data-aos-duration="2450"], body[data-aos-duration="2450"] [data-aos] {
  transition-duration: 2.45s;
}

[data-aos][data-aos][data-aos-delay="2450"], body[data-aos-delay="2450"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2450"].aos-animate, body[data-aos-delay="2450"] [data-aos].aos-animate {
  transition-delay: 2.45s;
}

[data-aos][data-aos][data-aos-duration="2500"], body[data-aos-duration="2500"] [data-aos] {
  transition-duration: 2.5s;
}

[data-aos][data-aos][data-aos-delay="2500"], body[data-aos-delay="2500"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2500"].aos-animate, body[data-aos-delay="2500"] [data-aos].aos-animate {
  transition-delay: 2.5s;
}

[data-aos][data-aos][data-aos-duration="2550"], body[data-aos-duration="2550"] [data-aos] {
  transition-duration: 2.55s;
}

[data-aos][data-aos][data-aos-delay="2550"], body[data-aos-delay="2550"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2550"].aos-animate, body[data-aos-delay="2550"] [data-aos].aos-animate {
  transition-delay: 2.55s;
}

[data-aos][data-aos][data-aos-duration="2600"], body[data-aos-duration="2600"] [data-aos] {
  transition-duration: 2.6s;
}

[data-aos][data-aos][data-aos-delay="2600"], body[data-aos-delay="2600"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2600"].aos-animate, body[data-aos-delay="2600"] [data-aos].aos-animate {
  transition-delay: 2.6s;
}

[data-aos][data-aos][data-aos-duration="2650"], body[data-aos-duration="2650"] [data-aos] {
  transition-duration: 2.65s;
}

[data-aos][data-aos][data-aos-delay="2650"], body[data-aos-delay="2650"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2650"].aos-animate, body[data-aos-delay="2650"] [data-aos].aos-animate {
  transition-delay: 2.65s;
}

[data-aos][data-aos][data-aos-duration="2700"], body[data-aos-duration="2700"] [data-aos] {
  transition-duration: 2.7s;
}

[data-aos][data-aos][data-aos-delay="2700"], body[data-aos-delay="2700"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2700"].aos-animate, body[data-aos-delay="2700"] [data-aos].aos-animate {
  transition-delay: 2.7s;
}

[data-aos][data-aos][data-aos-duration="2750"], body[data-aos-duration="2750"] [data-aos] {
  transition-duration: 2.75s;
}

[data-aos][data-aos][data-aos-delay="2750"], body[data-aos-delay="2750"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2750"].aos-animate, body[data-aos-delay="2750"] [data-aos].aos-animate {
  transition-delay: 2.75s;
}

[data-aos][data-aos][data-aos-duration="2800"], body[data-aos-duration="2800"] [data-aos] {
  transition-duration: 2.8s;
}

[data-aos][data-aos][data-aos-delay="2800"], body[data-aos-delay="2800"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2800"].aos-animate, body[data-aos-delay="2800"] [data-aos].aos-animate {
  transition-delay: 2.8s;
}

[data-aos][data-aos][data-aos-duration="2850"], body[data-aos-duration="2850"] [data-aos] {
  transition-duration: 2.85s;
}

[data-aos][data-aos][data-aos-delay="2850"], body[data-aos-delay="2850"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2850"].aos-animate, body[data-aos-delay="2850"] [data-aos].aos-animate {
  transition-delay: 2.85s;
}

[data-aos][data-aos][data-aos-duration="2900"], body[data-aos-duration="2900"] [data-aos] {
  transition-duration: 2.9s;
}

[data-aos][data-aos][data-aos-delay="2900"], body[data-aos-delay="2900"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2900"].aos-animate, body[data-aos-delay="2900"] [data-aos].aos-animate {
  transition-delay: 2.9s;
}

[data-aos][data-aos][data-aos-duration="2950"], body[data-aos-duration="2950"] [data-aos] {
  transition-duration: 2.95s;
}

[data-aos][data-aos][data-aos-delay="2950"], body[data-aos-delay="2950"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2950"].aos-animate, body[data-aos-delay="2950"] [data-aos].aos-animate {
  transition-delay: 2.95s;
}

[data-aos][data-aos][data-aos-duration="3000"], body[data-aos-duration="3000"] [data-aos] {
  transition-duration: 3s;
}

[data-aos][data-aos][data-aos-delay="3000"], body[data-aos-delay="3000"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="3000"].aos-animate, body[data-aos-delay="3000"] [data-aos].aos-animate {
  transition-delay: 3s;
}

[data-aos][data-aos][data-aos-easing=linear], body[data-aos-easing=linear] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75);
}

[data-aos][data-aos][data-aos-easing=ease], body[data-aos-easing=ease] [data-aos] {
  transition-timing-function: ease;
}

[data-aos][data-aos][data-aos-easing=ease-in], body[data-aos-easing=ease-in] [data-aos] {
  transition-timing-function: ease-in;
}

[data-aos][data-aos][data-aos-easing=ease-out], body[data-aos-easing=ease-out] [data-aos] {
  transition-timing-function: ease-out;
}

[data-aos][data-aos][data-aos-easing=ease-in-out], body[data-aos-easing=ease-in-out] [data-aos] {
  transition-timing-function: ease-in-out;
}

[data-aos][data-aos][data-aos-easing=ease-in-back], body[data-aos-easing=ease-in-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

[data-aos][data-aos][data-aos-easing=ease-out-back], body[data-aos-easing=ease-out-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-back], body[data-aos-easing=ease-in-out-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

[data-aos][data-aos][data-aos-easing=ease-in-sine], body[data-aos-easing=ease-in-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
}

[data-aos][data-aos][data-aos-easing=ease-out-sine], body[data-aos-easing=ease-out-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-sine], body[data-aos-easing=ease-in-out-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

[data-aos][data-aos][data-aos-easing=ease-in-quad], body[data-aos-easing=ease-in-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-aos][data-aos][data-aos-easing=ease-out-quad], body[data-aos-easing=ease-out-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-quad], body[data-aos-easing=ease-in-out-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-aos][data-aos][data-aos-easing=ease-in-cubic], body[data-aos-easing=ease-in-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-aos][data-aos][data-aos-easing=ease-out-cubic], body[data-aos-easing=ease-out-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-cubic], body[data-aos-easing=ease-in-out-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-aos][data-aos][data-aos-easing=ease-in-quart], body[data-aos-easing=ease-in-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-aos][data-aos][data-aos-easing=ease-out-quart], body[data-aos-easing=ease-out-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-quart], body[data-aos-easing=ease-in-out-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-aos^=fade][data-aos^=fade] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos^=fade][data-aos^=fade].aos-animate {
  opacity: 1;
  transform: translateZ(0);
}

[data-aos=fade-up] {
  transform: translate3d(0, 100px, 0);
}

[data-aos=fade-down] {
  transform: translate3d(0, -100px, 0);
}

[data-aos=fade-right] {
  transform: translate3d(-100px, 0, 0);
}

[data-aos=fade-left] {
  transform: translate3d(100px, 0, 0);
}

[data-aos=fade-up-right] {
  transform: translate3d(-100px, 100px, 0);
}

[data-aos=fade-up-left] {
  transform: translate3d(100px, 100px, 0);
}

[data-aos=fade-down-right] {
  transform: translate3d(-100px, -100px, 0);
}

[data-aos=fade-down-left] {
  transform: translate3d(100px, -100px, 0);
}

[data-aos^=zoom][data-aos^=zoom] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos^=zoom][data-aos^=zoom].aos-animate {
  opacity: 1;
  transform: translateZ(0) scale(1);
}

[data-aos=zoom-in] {
  transform: scale(0.6);
}

[data-aos=zoom-in-up] {
  transform: translate3d(0, 100px, 0) scale(0.6);
}

[data-aos=zoom-in-down] {
  transform: translate3d(0, -100px, 0) scale(0.6);
}

[data-aos=zoom-in-right] {
  transform: translate3d(-100px, 0, 0) scale(0.6);
}

[data-aos=zoom-in-left] {
  transform: translate3d(100px, 0, 0) scale(0.6);
}

[data-aos=zoom-out] {
  transform: scale(1.2);
}

[data-aos=zoom-out-up] {
  transform: translate3d(0, 100px, 0) scale(1.2);
}

[data-aos=zoom-out-down] {
  transform: translate3d(0, -100px, 0) scale(1.2);
}

[data-aos=zoom-out-right] {
  transform: translate3d(-100px, 0, 0) scale(1.2);
}

[data-aos=zoom-out-left] {
  transform: translate3d(100px, 0, 0) scale(1.2);
}

[data-aos^=slide][data-aos^=slide] {
  transition-property: transform;
}

[data-aos^=slide][data-aos^=slide].aos-animate {
  transform: translateZ(0);
}

[data-aos=slide-up] {
  transform: translate3d(0, 100%, 0);
}

[data-aos=slide-down] {
  transform: translate3d(0, -100%, 0);
}

[data-aos=slide-right] {
  transform: translate3d(-100%, 0, 0);
}

[data-aos=slide-left] {
  transform: translate3d(100%, 0, 0);
}

[data-aos^=flip][data-aos^=flip] {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transition-property: transform;
}

[data-aos=flip-left] {
  transform: perspective(2500px) rotateY(-100deg);
}

[data-aos=flip-left].aos-animate {
  transform: perspective(2500px) rotateY(0);
}

[data-aos=flip-right] {
  transform: perspective(2500px) rotateY(100deg);
}

[data-aos=flip-right].aos-animate {
  transform: perspective(2500px) rotateY(0);
}

[data-aos=flip-up] {
  transform: perspective(2500px) rotateX(-100deg);
}

[data-aos=flip-up].aos-animate {
  transform: perspective(2500px) rotateX(0);
}

[data-aos=flip-down] {
  transform: perspective(2500px) rotateX(100deg);
}

[data-aos=flip-down].aos-animate {
  transform: perspective(2500px) rotateX(0);
}
/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[13].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[13].use[3]!./node_modules/next/dist/build/webpack/loaders/resolve-url-loader/index.js??ruleSet[1].rules[14].oneOf[13].use[4]!./node_modules/next/dist/compiled/sass-loader/cjs.js??ruleSet[1].rules[14].oneOf[13].use[5]!./public/assets/css/animate.min.css ***!
  \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.hinge {
  animation-duration: 2s;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
.bounce {
  animation-name: bounce;
}
@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.pulse {
  animation-name: pulse;
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(10px);
  }
}
.shake {
  animation-name: shake;
}
@keyframes swing {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}
@keyframes tada {
  0% {
    transform: scale(1);
  }
  10%, 20% {
    transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}
.tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
  0% {
    transform: translateX(0%);
  }
  15% {
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    transform: translateX(0%);
  }
}
.wobble {
  animation-name: wobble;
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
.bounceIn {
  animation-name: bounceIn;
}
@keyframes bounceInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    transform: translateY(30px);
  }
  80% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    transform: translateX(30px);
  }
  80% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0);
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    transform: translateX(-30px);
  }
  80% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    transform: translateY(-30px);
  }
  80% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}
@keyframes bounceOut {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    transform: scale(0.3);
  }
}
.bounceOut {
  animation-name: bounceOut;
}
@keyframes bounceOutDown {
  0% {
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
  0% {
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
  0% {
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
  0% {
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-20px);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(20px);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}
@keyframes flip {
  0% {
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    animation-timing-function: ease-in;
  }
  100% {
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip;
}
@keyframes flipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@keyframes flipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY;
}
@keyframes flipOutX {
  0% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@keyframes flipOutY {
  0% {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}
@keyframes lightSpeedIn {
  0% {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedOut {
  0% {
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}
@keyframes rotateIn {
  0% {
    transform-origin: center center;
    transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}
@keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}
@keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}
@keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}
@keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}
@keyframes rotateOut {
  0% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: center center;
    transform: rotate(200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}
@keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}
@keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}
@keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}
@keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}
@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  100% {
    transform: translateY(0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-500px);
  }
  100% {
    transform: translateX(0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(500px);
  }
  100% {
    transform: translateX(0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}
@keyframes slideOutLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  0% {
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}
@keyframes slideOutUp {
  0% {
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
.slideOutUp {
  animation-name: slideOutUp;
}
@keyframes hinge {
  0% {
    transform: rotate(0);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate(80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40% {
    transform: rotate(60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  80% {
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  100% {
    transform: translateY(700px);
    opacity: 0;
  }
}
.hinge {
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
}
.rollIn {
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollOut {
  0% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translateX(100%) rotate(120deg);
  }
}
.rollOut {
  animation-name: rollOut;
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.zoomInUp {
  animation-name: zoomInUp;
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.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);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  animation-name: zoomOutDown;
}
@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);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  animation-name: zoomOutLeft;
}
@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);
    transform-origin: right center;
  }
}
.zoomOutRight {
  animation-name: zoomOutRight;
}
@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);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  animation-name: zoomOutUp;
}
/*!*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[13].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[13].use[3]!./node_modules/next/dist/build/webpack/loaders/resolve-url-loader/index.js??ruleSet[1].rules[14].oneOf[13].use[4]!./node_modules/next/dist/compiled/sass-loader/cjs.js??ruleSet[1].rules[14].oneOf[13].use[5]!./public/assets/css/aos.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
[data-aos][data-aos][data-aos-duration="50"],
body[data-aos-duration="50"] [data-aos] {
  transition-duration: 50ms;
}

[data-aos][data-aos][data-aos-delay="50"],
body[data-aos-delay="50"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="50"].aos-animate,
body[data-aos-delay="50"] [data-aos].aos-animate {
  transition-delay: 50ms;
}

[data-aos][data-aos][data-aos-duration="100"],
body[data-aos-duration="100"] [data-aos] {
  transition-duration: 0.1s;
}

[data-aos][data-aos][data-aos-delay="100"],
body[data-aos-delay="100"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="100"].aos-animate,
body[data-aos-delay="100"] [data-aos].aos-animate {
  transition-delay: 0.1s;
}

[data-aos][data-aos][data-aos-duration="150"],
body[data-aos-duration="150"] [data-aos] {
  transition-duration: 0.15s;
}

[data-aos][data-aos][data-aos-delay="150"],
body[data-aos-delay="150"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="150"].aos-animate,
body[data-aos-delay="150"] [data-aos].aos-animate {
  transition-delay: 0.15s;
}

[data-aos][data-aos][data-aos-duration="200"],
body[data-aos-duration="200"] [data-aos] {
  transition-duration: 0.2s;
}

[data-aos][data-aos][data-aos-delay="200"],
body[data-aos-delay="200"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="200"].aos-animate,
body[data-aos-delay="200"] [data-aos].aos-animate {
  transition-delay: 0.2s;
}

[data-aos][data-aos][data-aos-duration="250"],
body[data-aos-duration="250"] [data-aos] {
  transition-duration: 0.25s;
}

[data-aos][data-aos][data-aos-delay="250"],
body[data-aos-delay="250"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="250"].aos-animate,
body[data-aos-delay="250"] [data-aos].aos-animate {
  transition-delay: 0.25s;
}

[data-aos][data-aos][data-aos-duration="300"],
body[data-aos-duration="300"] [data-aos] {
  transition-duration: 0.3s;
}

[data-aos][data-aos][data-aos-delay="300"],
body[data-aos-delay="300"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="300"].aos-animate,
body[data-aos-delay="300"] [data-aos].aos-animate {
  transition-delay: 0.3s;
}

[data-aos][data-aos][data-aos-duration="350"],
body[data-aos-duration="350"] [data-aos] {
  transition-duration: 0.35s;
}

[data-aos][data-aos][data-aos-delay="350"],
body[data-aos-delay="350"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="350"].aos-animate,
body[data-aos-delay="350"] [data-aos].aos-animate {
  transition-delay: 0.35s;
}

[data-aos][data-aos][data-aos-duration="400"],
body[data-aos-duration="400"] [data-aos] {
  transition-duration: 0.4s;
}

[data-aos][data-aos][data-aos-delay="400"],
body[data-aos-delay="400"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="400"].aos-animate,
body[data-aos-delay="400"] [data-aos].aos-animate {
  transition-delay: 0.4s;
}

[data-aos][data-aos][data-aos-duration="450"],
body[data-aos-duration="450"] [data-aos] {
  transition-duration: 0.45s;
}

[data-aos][data-aos][data-aos-delay="450"],
body[data-aos-delay="450"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="450"].aos-animate,
body[data-aos-delay="450"] [data-aos].aos-animate {
  transition-delay: 0.45s;
}

[data-aos][data-aos][data-aos-duration="500"],
body[data-aos-duration="500"] [data-aos] {
  transition-duration: 0.5s;
}

[data-aos][data-aos][data-aos-delay="500"],
body[data-aos-delay="500"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="500"].aos-animate,
body[data-aos-delay="500"] [data-aos].aos-animate {
  transition-delay: 0.5s;
}

[data-aos][data-aos][data-aos-duration="550"],
body[data-aos-duration="550"] [data-aos] {
  transition-duration: 0.55s;
}

[data-aos][data-aos][data-aos-delay="550"],
body[data-aos-delay="550"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="550"].aos-animate,
body[data-aos-delay="550"] [data-aos].aos-animate {
  transition-delay: 0.55s;
}

[data-aos][data-aos][data-aos-duration="600"],
body[data-aos-duration="600"] [data-aos] {
  transition-duration: 0.6s;
}

[data-aos][data-aos][data-aos-delay="600"],
body[data-aos-delay="600"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="600"].aos-animate,
body[data-aos-delay="600"] [data-aos].aos-animate {
  transition-delay: 0.6s;
}

[data-aos][data-aos][data-aos-duration="650"],
body[data-aos-duration="650"] [data-aos] {
  transition-duration: 0.65s;
}

[data-aos][data-aos][data-aos-delay="650"],
body[data-aos-delay="650"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="650"].aos-animate,
body[data-aos-delay="650"] [data-aos].aos-animate {
  transition-delay: 0.65s;
}

[data-aos][data-aos][data-aos-duration="700"],
body[data-aos-duration="700"] [data-aos] {
  transition-duration: 0.7s;
}

[data-aos][data-aos][data-aos-delay="700"],
body[data-aos-delay="700"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="700"].aos-animate,
body[data-aos-delay="700"] [data-aos].aos-animate {
  transition-delay: 0.7s;
}

[data-aos][data-aos][data-aos-duration="750"],
body[data-aos-duration="750"] [data-aos] {
  transition-duration: 0.75s;
}

[data-aos][data-aos][data-aos-delay="750"],
body[data-aos-delay="750"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="750"].aos-animate,
body[data-aos-delay="750"] [data-aos].aos-animate {
  transition-delay: 0.75s;
}

[data-aos][data-aos][data-aos-duration="800"],
body[data-aos-duration="800"] [data-aos] {
  transition-duration: 0.8s;
}

[data-aos][data-aos][data-aos-delay="800"],
body[data-aos-delay="800"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="800"].aos-animate,
body[data-aos-delay="800"] [data-aos].aos-animate {
  transition-delay: 0.8s;
}

[data-aos][data-aos][data-aos-duration="850"],
body[data-aos-duration="850"] [data-aos] {
  transition-duration: 0.85s;
}

[data-aos][data-aos][data-aos-delay="850"],
body[data-aos-delay="850"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="850"].aos-animate,
body[data-aos-delay="850"] [data-aos].aos-animate {
  transition-delay: 0.85s;
}

[data-aos][data-aos][data-aos-duration="900"],
body[data-aos-duration="900"] [data-aos] {
  transition-duration: 0.9s;
}

[data-aos][data-aos][data-aos-delay="900"],
body[data-aos-delay="900"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="900"].aos-animate,
body[data-aos-delay="900"] [data-aos].aos-animate {
  transition-delay: 0.9s;
}

[data-aos][data-aos][data-aos-duration="950"],
body[data-aos-duration="950"] [data-aos] {
  transition-duration: 0.95s;
}

[data-aos][data-aos][data-aos-delay="950"],
body[data-aos-delay="950"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="950"].aos-animate,
body[data-aos-delay="950"] [data-aos].aos-animate {
  transition-delay: 0.95s;
}

[data-aos][data-aos][data-aos-duration="1000"],
body[data-aos-duration="1000"] [data-aos] {
  transition-duration: 1s;
}

[data-aos][data-aos][data-aos-delay="1000"],
body[data-aos-delay="1000"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1000"].aos-animate,
body[data-aos-delay="1000"] [data-aos].aos-animate {
  transition-delay: 1s;
}

[data-aos][data-aos][data-aos-duration="1050"],
body[data-aos-duration="1050"] [data-aos] {
  transition-duration: 1.05s;
}

[data-aos][data-aos][data-aos-delay="1050"],
body[data-aos-delay="1050"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1050"].aos-animate,
body[data-aos-delay="1050"] [data-aos].aos-animate {
  transition-delay: 1.05s;
}

[data-aos][data-aos][data-aos-duration="1100"],
body[data-aos-duration="1100"] [data-aos] {
  transition-duration: 1.1s;
}

[data-aos][data-aos][data-aos-delay="1100"],
body[data-aos-delay="1100"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1100"].aos-animate,
body[data-aos-delay="1100"] [data-aos].aos-animate {
  transition-delay: 1.1s;
}

[data-aos][data-aos][data-aos-duration="1150"],
body[data-aos-duration="1150"] [data-aos] {
  transition-duration: 1.15s;
}

[data-aos][data-aos][data-aos-delay="1150"],
body[data-aos-delay="1150"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1150"].aos-animate,
body[data-aos-delay="1150"] [data-aos].aos-animate {
  transition-delay: 1.15s;
}

[data-aos][data-aos][data-aos-duration="1200"],
body[data-aos-duration="1200"] [data-aos] {
  transition-duration: 1.2s;
}

[data-aos][data-aos][data-aos-delay="1200"],
body[data-aos-delay="1200"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1200"].aos-animate,
body[data-aos-delay="1200"] [data-aos].aos-animate {
  transition-delay: 1.2s;
}

[data-aos][data-aos][data-aos-duration="1250"],
body[data-aos-duration="1250"] [data-aos] {
  transition-duration: 1.25s;
}

[data-aos][data-aos][data-aos-delay="1250"],
body[data-aos-delay="1250"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1250"].aos-animate,
body[data-aos-delay="1250"] [data-aos].aos-animate {
  transition-delay: 1.25s;
}

[data-aos][data-aos][data-aos-duration="1300"],
body[data-aos-duration="1300"] [data-aos] {
  transition-duration: 1.3s;
}

[data-aos][data-aos][data-aos-delay="1300"],
body[data-aos-delay="1300"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1300"].aos-animate,
body[data-aos-delay="1300"] [data-aos].aos-animate {
  transition-delay: 1.3s;
}

[data-aos][data-aos][data-aos-duration="1350"],
body[data-aos-duration="1350"] [data-aos] {
  transition-duration: 1.35s;
}

[data-aos][data-aos][data-aos-delay="1350"],
body[data-aos-delay="1350"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1350"].aos-animate,
body[data-aos-delay="1350"] [data-aos].aos-animate {
  transition-delay: 1.35s;
}

[data-aos][data-aos][data-aos-duration="1400"],
body[data-aos-duration="1400"] [data-aos] {
  transition-duration: 1.4s;
}

[data-aos][data-aos][data-aos-delay="1400"],
body[data-aos-delay="1400"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1400"].aos-animate,
body[data-aos-delay="1400"] [data-aos].aos-animate {
  transition-delay: 1.4s;
}

[data-aos][data-aos][data-aos-duration="1450"],
body[data-aos-duration="1450"] [data-aos] {
  transition-duration: 1.45s;
}

[data-aos][data-aos][data-aos-delay="1450"],
body[data-aos-delay="1450"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1450"].aos-animate,
body[data-aos-delay="1450"] [data-aos].aos-animate {
  transition-delay: 1.45s;
}

[data-aos][data-aos][data-aos-duration="1500"],
body[data-aos-duration="1500"] [data-aos] {
  transition-duration: 1.5s;
}

[data-aos][data-aos][data-aos-delay="1500"],
body[data-aos-delay="1500"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1500"].aos-animate,
body[data-aos-delay="1500"] [data-aos].aos-animate {
  transition-delay: 1.5s;
}

[data-aos][data-aos][data-aos-duration="1550"],
body[data-aos-duration="1550"] [data-aos] {
  transition-duration: 1.55s;
}

[data-aos][data-aos][data-aos-delay="1550"],
body[data-aos-delay="1550"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1550"].aos-animate,
body[data-aos-delay="1550"] [data-aos].aos-animate {
  transition-delay: 1.55s;
}

[data-aos][data-aos][data-aos-duration="1600"],
body[data-aos-duration="1600"] [data-aos] {
  transition-duration: 1.6s;
}

[data-aos][data-aos][data-aos-delay="1600"],
body[data-aos-delay="1600"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1600"].aos-animate,
body[data-aos-delay="1600"] [data-aos].aos-animate {
  transition-delay: 1.6s;
}

[data-aos][data-aos][data-aos-duration="1650"],
body[data-aos-duration="1650"] [data-aos] {
  transition-duration: 1.65s;
}

[data-aos][data-aos][data-aos-delay="1650"],
body[data-aos-delay="1650"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1650"].aos-animate,
body[data-aos-delay="1650"] [data-aos].aos-animate {
  transition-delay: 1.65s;
}

[data-aos][data-aos][data-aos-duration="1700"],
body[data-aos-duration="1700"] [data-aos] {
  transition-duration: 1.7s;
}

[data-aos][data-aos][data-aos-delay="1700"],
body[data-aos-delay="1700"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1700"].aos-animate,
body[data-aos-delay="1700"] [data-aos].aos-animate {
  transition-delay: 1.7s;
}

[data-aos][data-aos][data-aos-duration="1750"],
body[data-aos-duration="1750"] [data-aos] {
  transition-duration: 1.75s;
}

[data-aos][data-aos][data-aos-delay="1750"],
body[data-aos-delay="1750"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1750"].aos-animate,
body[data-aos-delay="1750"] [data-aos].aos-animate {
  transition-delay: 1.75s;
}

[data-aos][data-aos][data-aos-duration="1800"],
body[data-aos-duration="1800"] [data-aos] {
  transition-duration: 1.8s;
}

[data-aos][data-aos][data-aos-delay="1800"],
body[data-aos-delay="1800"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1800"].aos-animate,
body[data-aos-delay="1800"] [data-aos].aos-animate {
  transition-delay: 1.8s;
}

[data-aos][data-aos][data-aos-duration="1850"],
body[data-aos-duration="1850"] [data-aos] {
  transition-duration: 1.85s;
}

[data-aos][data-aos][data-aos-delay="1850"],
body[data-aos-delay="1850"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1850"].aos-animate,
body[data-aos-delay="1850"] [data-aos].aos-animate {
  transition-delay: 1.85s;
}

[data-aos][data-aos][data-aos-duration="1900"],
body[data-aos-duration="1900"] [data-aos] {
  transition-duration: 1.9s;
}

[data-aos][data-aos][data-aos-delay="1900"],
body[data-aos-delay="1900"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1900"].aos-animate,
body[data-aos-delay="1900"] [data-aos].aos-animate {
  transition-delay: 1.9s;
}

[data-aos][data-aos][data-aos-duration="1950"],
body[data-aos-duration="1950"] [data-aos] {
  transition-duration: 1.95s;
}

[data-aos][data-aos][data-aos-delay="1950"],
body[data-aos-delay="1950"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1950"].aos-animate,
body[data-aos-delay="1950"] [data-aos].aos-animate {
  transition-delay: 1.95s;
}

[data-aos][data-aos][data-aos-duration="2000"],
body[data-aos-duration="2000"] [data-aos] {
  transition-duration: 2s;
}

[data-aos][data-aos][data-aos-delay="2000"],
body[data-aos-delay="2000"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2000"].aos-animate,
body[data-aos-delay="2000"] [data-aos].aos-animate {
  transition-delay: 2s;
}

[data-aos][data-aos][data-aos-duration="2050"],
body[data-aos-duration="2050"] [data-aos] {
  transition-duration: 2.05s;
}

[data-aos][data-aos][data-aos-delay="2050"],
body[data-aos-delay="2050"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2050"].aos-animate,
body[data-aos-delay="2050"] [data-aos].aos-animate {
  transition-delay: 2.05s;
}

[data-aos][data-aos][data-aos-duration="2100"],
body[data-aos-duration="2100"] [data-aos] {
  transition-duration: 2.1s;
}

[data-aos][data-aos][data-aos-delay="2100"],
body[data-aos-delay="2100"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2100"].aos-animate,
body[data-aos-delay="2100"] [data-aos].aos-animate {
  transition-delay: 2.1s;
}

[data-aos][data-aos][data-aos-duration="2150"],
body[data-aos-duration="2150"] [data-aos] {
  transition-duration: 2.15s;
}

[data-aos][data-aos][data-aos-delay="2150"],
body[data-aos-delay="2150"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2150"].aos-animate,
body[data-aos-delay="2150"] [data-aos].aos-animate {
  transition-delay: 2.15s;
}

[data-aos][data-aos][data-aos-duration="2200"],
body[data-aos-duration="2200"] [data-aos] {
  transition-duration: 2.2s;
}

[data-aos][data-aos][data-aos-delay="2200"],
body[data-aos-delay="2200"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2200"].aos-animate,
body[data-aos-delay="2200"] [data-aos].aos-animate {
  transition-delay: 2.2s;
}

[data-aos][data-aos][data-aos-duration="2250"],
body[data-aos-duration="2250"] [data-aos] {
  transition-duration: 2.25s;
}

[data-aos][data-aos][data-aos-delay="2250"],
body[data-aos-delay="2250"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2250"].aos-animate,
body[data-aos-delay="2250"] [data-aos].aos-animate {
  transition-delay: 2.25s;
}

[data-aos][data-aos][data-aos-duration="2300"],
body[data-aos-duration="2300"] [data-aos] {
  transition-duration: 2.3s;
}

[data-aos][data-aos][data-aos-delay="2300"],
body[data-aos-delay="2300"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2300"].aos-animate,
body[data-aos-delay="2300"] [data-aos].aos-animate {
  transition-delay: 2.3s;
}

[data-aos][data-aos][data-aos-duration="2350"],
body[data-aos-duration="2350"] [data-aos] {
  transition-duration: 2.35s;
}

[data-aos][data-aos][data-aos-delay="2350"],
body[data-aos-delay="2350"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2350"].aos-animate,
body[data-aos-delay="2350"] [data-aos].aos-animate {
  transition-delay: 2.35s;
}

[data-aos][data-aos][data-aos-duration="2400"],
body[data-aos-duration="2400"] [data-aos] {
  transition-duration: 2.4s;
}

[data-aos][data-aos][data-aos-delay="2400"],
body[data-aos-delay="2400"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2400"].aos-animate,
body[data-aos-delay="2400"] [data-aos].aos-animate {
  transition-delay: 2.4s;
}

[data-aos][data-aos][data-aos-duration="2450"],
body[data-aos-duration="2450"] [data-aos] {
  transition-duration: 2.45s;
}

[data-aos][data-aos][data-aos-delay="2450"],
body[data-aos-delay="2450"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2450"].aos-animate,
body[data-aos-delay="2450"] [data-aos].aos-animate {
  transition-delay: 2.45s;
}

[data-aos][data-aos][data-aos-duration="2500"],
body[data-aos-duration="2500"] [data-aos] {
  transition-duration: 2.5s;
}

[data-aos][data-aos][data-aos-delay="2500"],
body[data-aos-delay="2500"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2500"].aos-animate,
body[data-aos-delay="2500"] [data-aos].aos-animate {
  transition-delay: 2.5s;
}

[data-aos][data-aos][data-aos-duration="2550"],
body[data-aos-duration="2550"] [data-aos] {
  transition-duration: 2.55s;
}

[data-aos][data-aos][data-aos-delay="2550"],
body[data-aos-delay="2550"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2550"].aos-animate,
body[data-aos-delay="2550"] [data-aos].aos-animate {
  transition-delay: 2.55s;
}

[data-aos][data-aos][data-aos-duration="2600"],
body[data-aos-duration="2600"] [data-aos] {
  transition-duration: 2.6s;
}

[data-aos][data-aos][data-aos-delay="2600"],
body[data-aos-delay="2600"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2600"].aos-animate,
body[data-aos-delay="2600"] [data-aos].aos-animate {
  transition-delay: 2.6s;
}

[data-aos][data-aos][data-aos-duration="2650"],
body[data-aos-duration="2650"] [data-aos] {
  transition-duration: 2.65s;
}

[data-aos][data-aos][data-aos-delay="2650"],
body[data-aos-delay="2650"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2650"].aos-animate,
body[data-aos-delay="2650"] [data-aos].aos-animate {
  transition-delay: 2.65s;
}

[data-aos][data-aos][data-aos-duration="2700"],
body[data-aos-duration="2700"] [data-aos] {
  transition-duration: 2.7s;
}

[data-aos][data-aos][data-aos-delay="2700"],
body[data-aos-delay="2700"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2700"].aos-animate,
body[data-aos-delay="2700"] [data-aos].aos-animate {
  transition-delay: 2.7s;
}

[data-aos][data-aos][data-aos-duration="2750"],
body[data-aos-duration="2750"] [data-aos] {
  transition-duration: 2.75s;
}

[data-aos][data-aos][data-aos-delay="2750"],
body[data-aos-delay="2750"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2750"].aos-animate,
body[data-aos-delay="2750"] [data-aos].aos-animate {
  transition-delay: 2.75s;
}

[data-aos][data-aos][data-aos-duration="2800"],
body[data-aos-duration="2800"] [data-aos] {
  transition-duration: 2.8s;
}

[data-aos][data-aos][data-aos-delay="2800"],
body[data-aos-delay="2800"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2800"].aos-animate,
body[data-aos-delay="2800"] [data-aos].aos-animate {
  transition-delay: 2.8s;
}

[data-aos][data-aos][data-aos-duration="2850"],
body[data-aos-duration="2850"] [data-aos] {
  transition-duration: 2.85s;
}

[data-aos][data-aos][data-aos-delay="2850"],
body[data-aos-delay="2850"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2850"].aos-animate,
body[data-aos-delay="2850"] [data-aos].aos-animate {
  transition-delay: 2.85s;
}

[data-aos][data-aos][data-aos-duration="2900"],
body[data-aos-duration="2900"] [data-aos] {
  transition-duration: 2.9s;
}

[data-aos][data-aos][data-aos-delay="2900"],
body[data-aos-delay="2900"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2900"].aos-animate,
body[data-aos-delay="2900"] [data-aos].aos-animate {
  transition-delay: 2.9s;
}

[data-aos][data-aos][data-aos-duration="2950"],
body[data-aos-duration="2950"] [data-aos] {
  transition-duration: 2.95s;
}

[data-aos][data-aos][data-aos-delay="2950"],
body[data-aos-delay="2950"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2950"].aos-animate,
body[data-aos-delay="2950"] [data-aos].aos-animate {
  transition-delay: 2.95s;
}

[data-aos][data-aos][data-aos-duration="3000"],
body[data-aos-duration="3000"] [data-aos] {
  transition-duration: 3s;
}

[data-aos][data-aos][data-aos-delay="3000"],
body[data-aos-delay="3000"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="3000"].aos-animate,
body[data-aos-delay="3000"] [data-aos].aos-animate {
  transition-delay: 3s;
}

[data-aos][data-aos][data-aos-easing=linear],
body[data-aos-easing=linear] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75);
}

[data-aos][data-aos][data-aos-easing=ease],
body[data-aos-easing=ease] [data-aos] {
  transition-timing-function: ease;
}

[data-aos][data-aos][data-aos-easing=ease-in],
body[data-aos-easing=ease-in] [data-aos] {
  transition-timing-function: ease-in;
}

[data-aos][data-aos][data-aos-easing=ease-out],
body[data-aos-easing=ease-out] [data-aos] {
  transition-timing-function: ease-out;
}

[data-aos][data-aos][data-aos-easing=ease-in-out],
body[data-aos-easing=ease-in-out] [data-aos] {
  transition-timing-function: ease-in-out;
}

[data-aos][data-aos][data-aos-easing=ease-in-back],
body[data-aos-easing=ease-in-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

[data-aos][data-aos][data-aos-easing=ease-out-back],
body[data-aos-easing=ease-out-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-back],
body[data-aos-easing=ease-in-out-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

[data-aos][data-aos][data-aos-easing=ease-in-sine],
body[data-aos-easing=ease-in-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
}

[data-aos][data-aos][data-aos-easing=ease-out-sine],
body[data-aos-easing=ease-out-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-sine],
body[data-aos-easing=ease-in-out-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

[data-aos][data-aos][data-aos-easing=ease-in-quad],
body[data-aos-easing=ease-in-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-aos][data-aos][data-aos-easing=ease-out-quad],
body[data-aos-easing=ease-out-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-quad],
body[data-aos-easing=ease-in-out-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-aos][data-aos][data-aos-easing=ease-in-cubic],
body[data-aos-easing=ease-in-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-aos][data-aos][data-aos-easing=ease-out-cubic],
body[data-aos-easing=ease-out-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-cubic],
body[data-aos-easing=ease-in-out-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-aos][data-aos][data-aos-easing=ease-in-quart],
body[data-aos-easing=ease-in-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-aos][data-aos][data-aos-easing=ease-out-quart],
body[data-aos-easing=ease-out-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-quart],
body[data-aos-easing=ease-in-out-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-aos^=fade][data-aos^=fade] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos^=fade][data-aos^=fade].aos-animate {
  opacity: 1;
  transform: translateZ(0);
}

[data-aos=fade-up] {
  transform: translate3d(0, 100px, 0);
}

[data-aos=fade-down] {
  transform: translate3d(0, -100px, 0);
}

[data-aos=fade-right] {
  transform: translate3d(-100px, 0, 0);
}

[data-aos=fade-left] {
  transform: translate3d(100px, 0, 0);
}

[data-aos=fade-up-right] {
  transform: translate3d(-100px, 100px, 0);
}

[data-aos=fade-up-left] {
  transform: translate3d(100px, 100px, 0);
}

[data-aos=fade-down-right] {
  transform: translate3d(-100px, -100px, 0);
}

[data-aos=fade-down-left] {
  transform: translate3d(100px, -100px, 0);
}

[data-aos^=zoom][data-aos^=zoom] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos^=zoom][data-aos^=zoom].aos-animate {
  opacity: 1;
  transform: translateZ(0) scale(1);
}

[data-aos=zoom-in] {
  transform: scale(0.6);
}

[data-aos=zoom-in-up] {
  transform: translate3d(0, 100px, 0) scale(0.6);
}

[data-aos=zoom-in-down] {
  transform: translate3d(0, -100px, 0) scale(0.6);
}

[data-aos=zoom-in-right] {
  transform: translate3d(-100px, 0, 0) scale(0.6);
}

[data-aos=zoom-in-left] {
  transform: translate3d(100px, 0, 0) scale(0.6);
}

[data-aos=zoom-out] {
  transform: scale(1.2);
}

[data-aos=zoom-out-up] {
  transform: translate3d(0, 100px, 0) scale(1.2);
}

[data-aos=zoom-out-down] {
  transform: translate3d(0, -100px, 0) scale(1.2);
}

[data-aos=zoom-out-right] {
  transform: translate3d(-100px, 0, 0) scale(1.2);
}

[data-aos=zoom-out-left] {
  transform: translate3d(100px, 0, 0) scale(1.2);
}

[data-aos^=slide][data-aos^=slide] {
  transition-property: transform;
}

[data-aos^=slide][data-aos^=slide].aos-animate {
  transform: translateZ(0);
}

[data-aos=slide-up] {
  transform: translate3d(0, 100%, 0);
}

[data-aos=slide-down] {
  transform: translate3d(0, -100%, 0);
}

[data-aos=slide-right] {
  transform: translate3d(-100%, 0, 0);
}

[data-aos=slide-left] {
  transform: translate3d(100%, 0, 0);
}

[data-aos^=flip][data-aos^=flip] {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transition-property: transform;
}

[data-aos=flip-left] {
  transform: perspective(2500px) rotateY(-100deg);
}

[data-aos=flip-left].aos-animate {
  transform: perspective(2500px) rotateY(0);
}

[data-aos=flip-right] {
  transform: perspective(2500px) rotateY(100deg);
}

[data-aos=flip-right].aos-animate {
  transform: perspective(2500px) rotateY(0);
}

[data-aos=flip-up] {
  transform: perspective(2500px) rotateX(-100deg);
}

[data-aos=flip-up].aos-animate {
  transform: perspective(2500px) rotateX(0);
}

[data-aos=flip-down] {
  transform: perspective(2500px) rotateX(100deg);
}

[data-aos=flip-down].aos-animate {
  transform: perspective(2500px) rotateX(0);
}
/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[13].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[13].use[3]!./node_modules/next/dist/build/webpack/loaders/resolve-url-loader/index.js??ruleSet[1].rules[14].oneOf[13].use[4]!./node_modules/next/dist/compiled/sass-loader/cjs.js??ruleSet[1].rules[14].oneOf[13].use[5]!./public/assets/css/bootstrap.min.css ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/*!
* Bootstrap  v5.3.2 (https://getbootstrap.com/)
* Copyright 2011-2023 The Bootstrap Authors
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
*/
:root, [data-bs-theme=light] {
  --bs-blue:#0d6efd;
  --bs-indigo:#6610f2;
  --bs-purple:#6f42c1;
  --bs-pink:#d63384;
  --bs-red:#dc3545;
  --bs-orange:#fd7e14;
  --bs-yellow:#ffc107;
  --bs-green:#198754;
  --bs-teal:#20c997;
  --bs-cyan:#0dcaf0;
  --bs-black:#000;
  --bs-white:#fff;
  --bs-gray:#6c757d;
  --bs-gray-dark:#343a40;
  --bs-gray-100:#f8f9fa;
  --bs-gray-200:#e9ecef;
  --bs-gray-300:#dee2e6;
  --bs-gray-400:#ced4da;
  --bs-gray-500:#adb5bd;
  --bs-gray-600:#6c757d;
  --bs-gray-700:#495057;
  --bs-gray-800:#343a40;
  --bs-gray-900:#212529;
  --bs-primary:#0d6efd;
  --bs-secondary:#6c757d;
  --bs-success:#198754;
  --bs-info:#0dcaf0;
  --bs-warning:#ffc107;
  --bs-danger:#dc3545;
  --bs-light:#f8f9fa;
  --bs-dark:#212529;
  --bs-primary-rgb:13,110,253;
  --bs-secondary-rgb:108,117,125;
  --bs-success-rgb:25,135,84;
  --bs-info-rgb:13,202,240;
  --bs-warning-rgb:255,193,7;
  --bs-danger-rgb:220,53,69;
  --bs-light-rgb:248,249,250;
  --bs-dark-rgb:33,37,41;
  --bs-primary-text-emphasis:#052c65;
  --bs-secondary-text-emphasis:#2b2f32;
  --bs-success-text-emphasis:#0a3622;
  --bs-info-text-emphasis:#055160;
  --bs-warning-text-emphasis:#664d03;
  --bs-danger-text-emphasis:#58151c;
  --bs-light-text-emphasis:#495057;
  --bs-dark-text-emphasis:#495057;
  --bs-primary-bg-subtle:#cfe2ff;
  --bs-secondary-bg-subtle:#e2e3e5;
  --bs-success-bg-subtle:#d1e7dd;
  --bs-info-bg-subtle:#cff4fc;
  --bs-warning-bg-subtle:#fff3cd;
  --bs-danger-bg-subtle:#f8d7da;
  --bs-light-bg-subtle:#fcfcfd;
  --bs-dark-bg-subtle:#ced4da;
  --bs-primary-border-subtle:#9ec5fe;
  --bs-secondary-border-subtle:#c4c8cb;
  --bs-success-border-subtle:#a3cfbb;
  --bs-info-border-subtle:#9eeaf9;
  --bs-warning-border-subtle:#ffe69c;
  --bs-danger-border-subtle:#f1aeb5;
  --bs-light-border-subtle:#e9ecef;
  --bs-dark-border-subtle:#adb5bd;
  --bs-white-rgb:255,255,255;
  --bs-black-rgb:0,0,0;
  --bs-font-sans-serif:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  --bs-font-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
  --bs-gradient:linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family:var(--bs-font-sans-serif);
  --bs-body-font-size:1rem;
  --bs-body-font-weight:400;
  --bs-body-line-height:1.5;
  --bs-body-color:#212529;
  --bs-body-color-rgb:33,37,41;
  --bs-body-bg:#fff;
  --bs-body-bg-rgb:255,255,255;
  --bs-emphasis-color:#000;
  --bs-emphasis-color-rgb:0,0,0;
  --bs-secondary-color:rgba(33, 37, 41, 0.75);
  --bs-secondary-color-rgb:33,37,41;
  --bs-secondary-bg:#e9ecef;
  --bs-secondary-bg-rgb:233,236,239;
  --bs-tertiary-color:rgba(33, 37, 41, 0.5);
  --bs-tertiary-color-rgb:33,37,41;
  --bs-tertiary-bg:#f8f9fa;
  --bs-tertiary-bg-rgb:248,249,250;
  --bs-heading-color:inherit;
  --bs-link-color:#0d6efd;
  --bs-link-color-rgb:13,110,253;
  --bs-link-decoration:underline;
  --bs-link-hover-color:#0a58ca;
  --bs-link-hover-color-rgb:10,88,202;
  --bs-code-color:#d63384;
  --bs-highlight-color:#212529;
  --bs-highlight-bg:#fff3cd;
  --bs-border-width:1px;
  --bs-border-style:solid;
  --bs-border-color:#dee2e6;
  --bs-border-color-translucent:rgba(0, 0, 0, 0.175);
  --bs-border-radius:0.375rem;
  --bs-border-radius-sm:0.25rem;
  --bs-border-radius-lg:0.5rem;
  --bs-border-radius-xl:1rem;
  --bs-border-radius-xxl:2rem;
  --bs-border-radius-2xl:var(--bs-border-radius-xxl);
  --bs-border-radius-pill:50rem;
  --bs-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --bs-box-shadow-sm:0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --bs-box-shadow-lg:0 1rem 3rem rgba(0, 0, 0, 0.175);
  --bs-box-shadow-inset:inset 0 1px 2px rgba(0, 0, 0, 0.075);
  --bs-focus-ring-width:0.25rem;
  --bs-focus-ring-opacity:0.25;
  --bs-focus-ring-color:rgba(13, 110, 253, 0.25);
  --bs-form-valid-color:#198754;
  --bs-form-valid-border-color:#198754;
  --bs-form-invalid-color:#dc3545;
  --bs-form-invalid-border-color:#dc3545;
}

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

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

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}
body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

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

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

.h1, h1 {
  font-size: calc(1.375rem + 1.5vw);
}

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

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

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

@media (min-width: 1200px) {
  .h4, h4 {
    font-size: 1.5rem;
  }
}
.h5, h5 {
  font-size: 1.25rem;
}

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

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

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

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

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

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

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

dt {
  font-weight: 700;
}

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

blockquote {
  margin: 0 0 1rem;
}

b, strong {
  font-weight: bolder;
}

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

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

a:hover {
  --bs-link-color-rgb:var(--bs-link-hover-color-rgb);
}

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

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

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}

pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

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

a > code {
  color: inherit;
}

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

kbd kbd {
  padding: 0;
  font-size: 1em;
}

figure {
  margin: 0 0 1rem;
}

img, svg {
  vertical-align: middle;
}

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

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

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

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

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

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

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

button, select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

select:disabled {
  opacity: 1;
}

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

[type=button], [type=reset], [type=submit], button {
  -webkit-appearance: button;
}

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

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

textarea {
  resize: vertical;
}

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

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}

@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: left;
}

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

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

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

::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

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

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

output {
  display: inline-block;
}

iframe {
  border: 0;
}

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

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

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

.display-1 {
  font-size: calc(1.625rem + 4.5vw);
  font-weight: 300;
  line-height: 1.2;
}

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

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

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

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

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

@media (min-width: 1200px) {
  .display-6 {
    font-size: 2.5rem;
  }
}
.list-unstyled {
  padding-left: 0;
  list-style: none;
}

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

.list-inline-item {
  display: inline-block;
}

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

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

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.blockquote > :last-child {
  margin-bottom: 0;
}

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

.blockquote-footer::before {
  content: "— ";
}

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

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

.figure {
  display: inline-block;
}

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

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

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

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

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

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

.col {
  flex: 1 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.table > :not(caption) > * > * {
  padding: 0.5rem 0.5rem;
  color: var(--bs-table-color-state, var(--bs-table-color-type, var(--bs-table-color)));
  background-color: var(--bs-table-bg);
  border-bottom-width: var(--bs-border-width);
  box-shadow: inset 0 0 0 9999px var(--bs-table-bg-state, var(--bs-table-bg-type, var(--bs-table-accent-bg)));
}

.table > tbody {
  vertical-align: inherit;
}

.table > thead {
  vertical-align: bottom;
}

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

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

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

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

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

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

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

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

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

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

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

.table-primary {
  --bs-table-color:#000;
  --bs-table-bg:#cfe2ff;
  --bs-table-border-color:#a6b5cc;
  --bs-table-striped-bg:#c5d7f2;
  --bs-table-striped-color:#000;
  --bs-table-active-bg:#bacbe6;
  --bs-table-active-color:#000;
  --bs-table-hover-bg:#bfd1ec;
  --bs-table-hover-color:#000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

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

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

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

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

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

.table-light {
  --bs-table-color:#000;
  --bs-table-bg:#f8f9fa;
  --bs-table-border-color:#c6c7c8;
  --bs-table-striped-bg:#ecedee;
  --bs-table-striped-color:#000;
  --bs-table-active-bg:#dfe0e1;
  --bs-table-active-color:#000;
  --bs-table-hover-bg:#e5e6e7;
  --bs-table-hover-color:#000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-dark {
  --bs-table-color:#fff;
  --bs-table-bg:#212529;
  --bs-table-border-color:#4d5154;
  --bs-table-striped-bg:#2c3034;
  --bs-table-striped-color:#fff;
  --bs-table-active-bg:#373b3e;
  --bs-table-active-color:#fff;
  --bs-table-hover-bg:#323539;
  --bs-table-hover-color:#fff;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

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

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

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

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

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

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

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--bs-body-bg);
  background-clip: padding-box;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control[type=file] {
  overflow: hidden;
}

.form-control[type=file]:not(:disabled):not([readonly]) {
  cursor: pointer;
}

.form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-control::-webkit-date-and-time-value {
  min-width: 85px;
  height: 1.5em;
  margin: 0;
}

.form-control::-webkit-datetime-edit {
  display: block;
  padding: 0;
}

.form-control::placeholder {
  color: var(--bs-secondary-color);
  opacity: 1;
}

.form-control:disabled {
  background-color: var(--bs-secondary-bg);
  opacity: 1;
}

.form-control::-webkit-file-upload-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  -webkit-margin-end: 0.75rem;
  margin-inline-end: 0.75rem;
  color: var(--bs-body-color);
  background-color: var(--bs-tertiary-bg);
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: var(--bs-border-width);
  border-radius: 0;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control::file-selector-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  -webkit-margin-end: 0.75rem;
  margin-inline-end: 0.75rem;
  color: var(--bs-body-color);
  background-color: var(--bs-tertiary-bg);
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: var(--bs-border-width);
  border-radius: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-control::-webkit-file-upload-button {
    -webkit-transition: none;
    transition: none;
  }
  .form-control::file-selector-button {
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  background-color: var(--bs-secondary-bg);
}

.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: var(--bs-secondary-bg);
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  line-height: 1.5;
  color: var(--bs-body-color);
  background-color: transparent;
  border: solid transparent;
  border-width: var(--bs-border-width) 0;
}

.form-control-plaintext:focus {
  outline: 0;
}

.form-control-plaintext.form-control-lg, .form-control-plaintext.form-control-sm {
  padding-right: 0;
  padding-left: 0;
}

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

.form-control-sm::-webkit-file-upload-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  -webkit-margin-end: 0.5rem;
  margin-inline-end: 0.5rem;
}

.form-control-sm::file-selector-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  -webkit-margin-end: 0.5rem;
  margin-inline-end: 0.5rem;
}

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

.form-control-lg::-webkit-file-upload-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  -webkit-margin-end: 1rem;
  margin-inline-end: 1rem;
}

.form-control-lg::file-selector-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  -webkit-margin-end: 1rem;
  margin-inline-end: 1rem;
}

textarea.form-control {
  min-height: calc(1.5em + 0.75rem + var(--bs-border-width) * 2);
}

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

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

.form-control-color {
  width: 3rem;
  height: calc(1.5em + 0.75rem + var(--bs-border-width) * 2);
  padding: 0.375rem;
}

.form-control-color:not(:disabled):not([readonly]) {
  cursor: pointer;
}

.form-control-color::-moz-color-swatch {
  border: 0 !important;
  border-radius: var(--bs-border-radius);
}

.form-control-color::-webkit-color-swatch {
  border: 0 !important;
  border-radius: var(--bs-border-radius);
}

.form-control-color.form-control-sm {
  height: calc(1.5em + 0.5rem + var(--bs-border-width) * 2);
}

.form-control-color.form-control-lg {
  height: calc(1.5em + 1rem + var(--bs-border-width) * 2);
}

.form-select {
  --bs-form-select-bg-img:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--bs-body-bg);
  background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-select {
    transition: none;
  }
}
.form-select:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-select[multiple], .form-select[size]:not([size="1"]) {
  padding-right: 0.75rem;
  background-image: none;
}

.form-select:disabled {
  background-color: var(--bs-secondary-bg);
}

.form-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 var(--bs-body-color);
}

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

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

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

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

.form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
}

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

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

.form-check-input {
  --bs-form-check-bg:var(--bs-body-bg);
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--bs-form-check-bg);
  background-image: var(--bs-form-check-bg-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: var(--bs-border-width) solid var(--bs-border-color);
  -webkit-print-color-adjust: exact;
  color-adjust: exact;
  print-color-adjust: exact;
}

.form-check-input[type=checkbox] {
  border-radius: 0.25em;
}

.form-check-input[type=radio] {
  border-radius: 50%;
}

.form-check-input:active {
  filter: brightness(90%);
}

.form-check-input:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-check-input:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
}

.form-check-input:checked[type=checkbox] {
  --bs-form-check-bg-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

.form-check-input:checked[type=radio] {
  --bs-form-check-bg-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}

.form-check-input[type=checkbox]:indeterminate {
  background-color: #0d6efd;
  border-color: #0d6efd;
  --bs-form-check-bg-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}

.form-check-input:disabled {
  pointer-events: none;
  filter: none;
  opacity: 0.5;
}

.form-check-input:disabled ~ .form-check-label, .form-check-input[disabled] ~ .form-check-label {
  cursor: default;
  opacity: 0.5;
}

.form-switch {
  padding-left: 2.5em;
}

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

@media (prefers-reduced-motion: reduce) {
  .form-switch .form-check-input {
    transition: none;
  }
}
.form-switch .form-check-input:focus {
  --bs-form-switch-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e");
}

.form-switch .form-check-input:checked {
  background-position: right center;
  --bs-form-switch-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.form-switch.form-check-reverse {
  padding-right: 2.5em;
  padding-left: 0;
}

.form-switch.form-check-reverse .form-check-input {
  margin-right: -2.5em;
  margin-left: 0;
}

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

.btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.btn-check:disabled + .btn, .btn-check[disabled] + .btn {
  pointer-events: none;
  filter: none;
  opacity: 0.65;
}

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

.form-range {
  width: 100%;
  height: 1.5rem;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
}

.form-range:focus {
  outline: 0;
}

.form-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.form-range::-moz-focus-outer {
  border: 0;
}

.form-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  -webkit-appearance: none;
  appearance: none;
  background-color: #0d6efd;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}
.form-range::-webkit-slider-thumb:active {
  background-color: #b6d4fe;
}

.form-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: var(--bs-secondary-bg);
  border-color: transparent;
  border-radius: 1rem;
}

.form-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  -moz-appearance: none;
  appearance: none;
  background-color: #0d6efd;
  border: 0;
  border-radius: 1rem;
  -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}
.form-range::-moz-range-thumb:active {
  background-color: #b6d4fe;
}

.form-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: var(--bs-secondary-bg);
  border-color: transparent;
  border-radius: 1rem;
}

.form-range:disabled {
  pointer-events: none;
}

.form-range:disabled::-webkit-slider-thumb {
  background-color: var(--bs-secondary-color);
}

.form-range:disabled::-moz-range-thumb {
  background-color: var(--bs-secondary-color);
}

.form-floating {
  position: relative;
}

.form-floating > .form-control, .form-floating > .form-control-plaintext, .form-floating > .form-select {
  height: calc(3.5rem + var(--bs-border-width) * 2);
  min-height: calc(3.5rem + var(--bs-border-width) * 2);
  line-height: 1.25;
}

.form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  height: 100%;
  padding: 1rem 0.75rem;
  overflow: hidden;
  text-align: start;
  text-overflow: ellipsis;
  white-space: nowrap;
  pointer-events: none;
  border: var(--bs-border-width) solid transparent;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-floating > label {
    transition: none;
  }
}
.form-floating > .form-control, .form-floating > .form-control-plaintext {
  padding: 1rem 0.75rem;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: transparent;
}

.form-floating > .form-control-plaintext:focus, .form-floating > .form-control-plaintext:not(:placeholder-shown), .form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}

.form-floating > .form-control-plaintext:-webkit-autofill, .form-floating > .form-control:-webkit-autofill {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}

.form-floating > .form-select {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}

.form-floating > .form-control-plaintext ~ label, .form-floating > .form-control:focus ~ label, .form-floating > .form-control:not(:placeholder-shown) ~ label, .form-floating > .form-select ~ label {
  color: rgba(var(--bs-body-color-rgb), 0.65);
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.form-floating > .form-control-plaintext ~ label::after, .form-floating > .form-control:focus ~ label::after, .form-floating > .form-control:not(:placeholder-shown) ~ label::after, .form-floating > .form-select ~ label::after {
  position: absolute;
  inset: 1rem 0.375rem;
  z-index: -1;
  height: 1.5em;
  content: "";
  background-color: var(--bs-body-bg);
  border-radius: var(--bs-border-radius);
}

.form-floating > .form-control:-webkit-autofill ~ label {
  color: rgba(var(--bs-body-color-rgb), 0.65);
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.form-floating > .form-control-plaintext ~ label {
  border-width: var(--bs-border-width) 0;
}

.form-floating > .form-control:disabled ~ label, .form-floating > :disabled ~ label {
  color: #6c757d;
}

.form-floating > .form-control:disabled ~ label::after, .form-floating > :disabled ~ label::after {
  background-color: var(--bs-secondary-bg);
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}

.input-group > .form-control, .input-group > .form-floating, .input-group > .form-select {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}

.input-group > .form-control:focus, .input-group > .form-floating:focus-within, .input-group > .form-select:focus {
  z-index: 5;
}

.input-group .btn {
  position: relative;
  z-index: 2;
}

.input-group .btn:focus {
  z-index: 5;
}

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

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

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

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

.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3), .input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-control, .input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-select, .input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group.has-validation > .dropdown-toggle:nth-last-child(n+4), .input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-control, .input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-select, .input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: calc(var(--bs-border-width) * -1);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group > .form-floating:not(:first-child) > .form-control, .input-group > .form-floating:not(:first-child) > .form-select {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

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

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

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

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

.form-control.is-valid:focus, .was-validated .form-control:valid:focus {
  border-color: var(--bs-form-valid-border-color);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
}

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

.form-select.is-valid, .was-validated .form-select:valid {
  border-color: var(--bs-form-valid-border-color);
}

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

.form-select.is-valid:focus, .was-validated .form-select:valid:focus {
  border-color: var(--bs-form-valid-border-color);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
}

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

.form-check-input.is-valid, .was-validated .form-check-input:valid {
  border-color: var(--bs-form-valid-border-color);
}

.form-check-input.is-valid:checked, .was-validated .form-check-input:valid:checked {
  background-color: var(--bs-form-valid-color);
}

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

.form-check-input.is-valid ~ .form-check-label, .was-validated .form-check-input:valid ~ .form-check-label {
  color: var(--bs-form-valid-color);
}

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

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

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

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

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

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

.form-control.is-invalid:focus, .was-validated .form-control:invalid:focus {
  border-color: var(--bs-form-invalid-border-color);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
}

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

.form-select.is-invalid, .was-validated .form-select:invalid {
  border-color: var(--bs-form-invalid-border-color);
}

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

.form-select.is-invalid:focus, .was-validated .form-select:invalid:focus {
  border-color: var(--bs-form-invalid-border-color);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
}

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

.form-check-input.is-invalid, .was-validated .form-check-input:invalid {
  border-color: var(--bs-form-invalid-border-color);
}

.form-check-input.is-invalid:checked, .was-validated .form-check-input:invalid:checked {
  background-color: var(--bs-form-invalid-color);
}

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

.form-check-input.is-invalid ~ .form-check-label, .was-validated .form-check-input:invalid ~ .form-check-label {
  color: var(--bs-form-invalid-color);
}

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

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

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

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:hover {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
}

.btn-check + .btn:hover {
  color: var(--bs-btn-color);
  background-color: var(--bs-btn-bg);
  border-color: var(--bs-btn-border-color);
}

.btn:focus-visible {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
  outline: 0;
  box-shadow: var(--bs-btn-focus-box-shadow);
}

.btn-check:focus-visible + .btn {
  border-color: var(--bs-btn-hover-border-color);
  outline: 0;
  box-shadow: var(--bs-btn-focus-box-shadow);
}

.btn-check:checked + .btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check) + .btn:active {
  color: var(--bs-btn-active-color);
  background-color: var(--bs-btn-active-bg);
  border-color: var(--bs-btn-active-border-color);
}

.btn-check:checked + .btn:focus-visible, .btn.active:focus-visible, .btn.show:focus-visible, .btn:first-child:active:focus-visible, :not(.btn-check) + .btn:active:focus-visible {
  box-shadow: var(--bs-btn-focus-box-shadow);
}

.btn.disabled, .btn:disabled, fieldset:disabled .btn {
  color: var(--bs-btn-disabled-color);
  pointer-events: none;
  background-color: var(--bs-btn-disabled-bg);
  border-color: var(--bs-btn-disabled-border-color);
  opacity: var(--bs-btn-disabled-opacity);
}

.btn-primary {
  --bs-btn-color:#fff;
  --bs-btn-bg:#0d6efd;
  --bs-btn-border-color:#0d6efd;
  --bs-btn-hover-color:#fff;
  --bs-btn-hover-bg:#0b5ed7;
  --bs-btn-hover-border-color:#0a58ca;
  --bs-btn-focus-shadow-rgb:49,132,253;
  --bs-btn-active-color:#fff;
  --bs-btn-active-bg:#0a58ca;
  --bs-btn-active-border-color:#0a53be;
  --bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color:#fff;
  --bs-btn-disabled-bg:#0d6efd;
  --bs-btn-disabled-border-color:#0d6efd;
}

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

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

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

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

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

.btn-light {
  --bs-btn-color:#000;
  --bs-btn-bg:#f8f9fa;
  --bs-btn-border-color:#f8f9fa;
  --bs-btn-hover-color:#000;
  --bs-btn-hover-bg:#d3d4d5;
  --bs-btn-hover-border-color:#c6c7c8;
  --bs-btn-focus-shadow-rgb:211,212,213;
  --bs-btn-active-color:#000;
  --bs-btn-active-bg:#c6c7c8;
  --bs-btn-active-border-color:#babbbc;
  --bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color:#000;
  --bs-btn-disabled-bg:#f8f9fa;
  --bs-btn-disabled-border-color:#f8f9fa;
}

.btn-dark {
  --bs-btn-color:#fff;
  --bs-btn-bg:#212529;
  --bs-btn-border-color:#212529;
  --bs-btn-hover-color:#fff;
  --bs-btn-hover-bg:#424649;
  --bs-btn-hover-border-color:#373b3e;
  --bs-btn-focus-shadow-rgb:66,70,73;
  --bs-btn-active-color:#fff;
  --bs-btn-active-bg:#4d5154;
  --bs-btn-active-border-color:#373b3e;
  --bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color:#fff;
  --bs-btn-disabled-bg:#212529;
  --bs-btn-disabled-border-color:#212529;
}

.btn-outline-primary {
  --bs-btn-color:#0d6efd;
  --bs-btn-border-color:#0d6efd;
  --bs-btn-hover-color:#fff;
  --bs-btn-hover-bg:#0d6efd;
  --bs-btn-hover-border-color:#0d6efd;
  --bs-btn-focus-shadow-rgb:13,110,253;
  --bs-btn-active-color:#fff;
  --bs-btn-active-bg:#0d6efd;
  --bs-btn-active-border-color:#0d6efd;
  --bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color:#0d6efd;
  --bs-btn-disabled-bg:transparent;
  --bs-btn-disabled-border-color:#0d6efd;
  --bs-gradient:none;
}

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

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

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

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

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

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

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

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

.btn-link:focus-visible {
  color: var(--bs-btn-color);
}

.btn-link:hover {
  color: var(--bs-btn-hover-color);
}

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

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

.fade {
  transition: opacity 0.15s linear;
}

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

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

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .collapsing.collapse-horizontal {
    transition: none;
  }
}
.dropdown, .dropdown-center, .dropend, .dropstart, .dropup, .dropup-center {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}

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

.dropdown-toggle:empty::after {
  margin-left: 0;
}

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

.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: 0;
  margin-top: var(--bs-dropdown-spacer);
}

.dropdown-menu-start {
  --bs-position:start;
}

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

.dropdown-menu-end {
  --bs-position:end;
}

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

@media (min-width: 576px) {
  .dropdown-menu-sm-start {
    --bs-position:start;
  }
  .dropdown-menu-sm-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-sm-end {
    --bs-position:end;
  }
  .dropdown-menu-sm-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 768px) {
  .dropdown-menu-md-start {
    --bs-position:start;
  }
  .dropdown-menu-md-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-md-end {
    --bs-position:end;
  }
  .dropdown-menu-md-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 992px) {
  .dropdown-menu-lg-start {
    --bs-position:start;
  }
  .dropdown-menu-lg-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-lg-end {
    --bs-position:end;
  }
  .dropdown-menu-lg-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1200px) {
  .dropdown-menu-xl-start {
    --bs-position:start;
  }
  .dropdown-menu-xl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xl-end {
    --bs-position:end;
  }
  .dropdown-menu-xl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1400px) {
  .dropdown-menu-xxl-start {
    --bs-position:start;
  }
  .dropdown-menu-xxl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xxl-end {
    --bs-position:end;
  }
  .dropdown-menu-xxl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu[data-bs-popper] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: var(--bs-dropdown-spacer);
}

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

.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropend .dropdown-menu[data-bs-popper] {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: var(--bs-dropdown-spacer);
}

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

.dropend .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropend .dropdown-toggle::after {
  vertical-align: 0;
}

.dropstart .dropdown-menu[data-bs-popper] {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: var(--bs-dropdown-spacer);
}

.dropstart .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}

.dropstart .dropdown-toggle::after {
  display: none;
}

.dropstart .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}

.dropstart .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropstart .dropdown-toggle::before {
  vertical-align: 0;
}

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

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

.dropdown-item:focus, .dropdown-item:hover {
  color: var(--bs-dropdown-link-hover-color);
  background-color: var(--bs-dropdown-link-hover-bg);
}

.dropdown-item.active, .dropdown-item:active {
  color: var(--bs-dropdown-link-active-color);
  text-decoration: none;
  background-color: var(--bs-dropdown-link-active-bg);
}

.dropdown-item.disabled, .dropdown-item:disabled {
  color: var(--bs-dropdown-link-disabled-color);
  pointer-events: none;
  background-color: transparent;
}

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

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

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

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

.btn-group, .btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}

.btn-group-vertical > .btn, .btn-group > .btn {
  position: relative;
  flex: 1 1 auto;
}

.btn-group-vertical > .btn-check:checked + .btn, .btn-group-vertical > .btn-check:focus + .btn, .btn-group-vertical > .btn.active, .btn-group-vertical > .btn:active, .btn-group-vertical > .btn:focus, .btn-group-vertical > .btn:hover, .btn-group > .btn-check:checked + .btn, .btn-group > .btn-check:focus + .btn, .btn-group > .btn.active, .btn-group > .btn:active, .btn-group > .btn:focus, .btn-group > .btn:hover {
  z-index: 1;
}

.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.btn-toolbar .input-group {
  width: auto;
}

.btn-group {
  border-radius: var(--bs-border-radius);
}

.btn-group > .btn-group:not(:first-child), .btn-group > :not(.btn-check:first-child) + .btn {
  margin-left: calc(var(--bs-border-width) * -1);
}

.btn-group > .btn-group:not(:last-child) > .btn, .btn-group > .btn.dropdown-toggle-split:first-child, .btn-group > .btn:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.btn-group > .btn-group:not(:first-child) > .btn, .btn-group > .btn:nth-child(n+3), .btn-group > :not(.btn-check) + .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}

.dropdown-toggle-split::after, .dropend .dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after {
  margin-left: 0;
}

.dropstart .dropdown-toggle-split::before {
  margin-right: 0;
}

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

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

.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.btn-group-vertical > .btn, .btn-group-vertical > .btn-group {
  width: 100%;
}

.btn-group-vertical > .btn-group:not(:first-child), .btn-group-vertical > .btn:not(:first-child) {
  margin-top: calc(var(--bs-border-width) * -1);
}

.btn-group-vertical > .btn-group:not(:last-child) > .btn, .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle) {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group-vertical > .btn-group:not(:first-child) > .btn, .btn-group-vertical > .btn ~ .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

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

.nav-link {
  display: block;
  padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  font-size: var(--bs-nav-link-font-size);
  font-weight: var(--bs-nav-link-font-weight);
  color: var(--bs-nav-link-color);
  text-decoration: none;
  background: 0 0;
  border: 0;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .nav-link {
    transition: none;
  }
}
.nav-link:focus, .nav-link:hover {
  color: var(--bs-nav-link-hover-color);
}

.nav-link:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.nav-link.disabled, .nav-link:disabled {
  color: var(--bs-nav-link-disabled-color);
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  --bs-nav-tabs-border-width:var(--bs-border-width);
  --bs-nav-tabs-border-color:var(--bs-border-color);
  --bs-nav-tabs-border-radius:var(--bs-border-radius);
  --bs-nav-tabs-link-hover-border-color:var(--bs-secondary-bg) var(--bs-secondary-bg) var(--bs-border-color);
  --bs-nav-tabs-link-active-color:var(--bs-emphasis-color);
  --bs-nav-tabs-link-active-bg:var(--bs-body-bg);
  --bs-nav-tabs-link-active-border-color:var(--bs-border-color) var(--bs-border-color) var(--bs-body-bg);
  border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color);
}

.nav-tabs .nav-link {
  margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
  border: var(--bs-nav-tabs-border-width) solid transparent;
  border-top-left-radius: var(--bs-nav-tabs-border-radius);
  border-top-right-radius: var(--bs-nav-tabs-border-radius);
}

.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
  isolation: isolate;
  border-color: var(--bs-nav-tabs-link-hover-border-color);
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  color: var(--bs-nav-tabs-link-active-color);
  background-color: var(--bs-nav-tabs-link-active-bg);
  border-color: var(--bs-nav-tabs-link-active-border-color);
}

.nav-tabs .dropdown-menu {
  margin-top: calc(-1 * var(--bs-nav-tabs-border-width));
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills {
  --bs-nav-pills-border-radius:var(--bs-border-radius);
  --bs-nav-pills-link-active-color:#fff;
  --bs-nav-pills-link-active-bg:#0d6efd;
}

.nav-pills .nav-link {
  border-radius: var(--bs-nav-pills-border-radius);
}

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

.nav-underline {
  --bs-nav-underline-gap:1rem;
  --bs-nav-underline-border-width:0.125rem;
  --bs-nav-underline-link-active-color:var(--bs-emphasis-color);
  gap: var(--bs-nav-underline-gap);
}

.nav-underline .nav-link {
  padding-right: 0;
  padding-left: 0;
  border-bottom: var(--bs-nav-underline-border-width) solid transparent;
}

.nav-underline .nav-link:focus, .nav-underline .nav-link:hover {
  border-bottom-color: currentcolor;
}

.nav-underline .nav-link.active, .nav-underline .show > .nav-link {
  font-weight: 700;
  color: var(--bs-nav-underline-link-active-color);
  border-bottom-color: currentcolor;
}

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

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

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

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

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

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

.navbar > .container, .navbar > .container-fluid, .navbar > .container-lg, .navbar > .container-md, .navbar > .container-sm, .navbar > .container-xl, .navbar > .container-xxl {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  padding-top: var(--bs-navbar-brand-padding-y);
  padding-bottom: var(--bs-navbar-brand-padding-y);
  margin-right: var(--bs-navbar-brand-margin-end);
  font-size: var(--bs-navbar-brand-font-size);
  color: var(--bs-navbar-brand-color);
  text-decoration: none;
  white-space: nowrap;
}

.navbar-brand:focus, .navbar-brand:hover {
  color: var(--bs-navbar-brand-hover-color);
}

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

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
  color: var(--bs-navbar-active-color);
}

.navbar-nav .dropdown-menu {
  position: static;
}

.navbar-text {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: var(--bs-navbar-color);
}

.navbar-text a, .navbar-text a:focus, .navbar-text a:hover {
  color: var(--bs-navbar-active-color);
}

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

.navbar-toggler {
  padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
  font-size: var(--bs-navbar-toggler-font-size);
  line-height: 1;
  color: var(--bs-navbar-color);
  background-color: transparent;
  border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
  border-radius: var(--bs-navbar-toggler-border-radius);
  transition: var(--bs-navbar-toggler-transition);
}

@media (prefers-reduced-motion: reduce) {
  .navbar-toggler {
    transition: none;
  }
}
.navbar-toggler:hover {
  text-decoration: none;
}

.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width);
}

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

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

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

.navbar-expand .navbar-nav {
  flex-direction: row;
}

.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}

.navbar-expand .navbar-nav .nav-link {
  padding-right: var(--bs-navbar-nav-link-padding-x);
  padding-left: var(--bs-navbar-nav-link-padding-x);
}

.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}

.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}

.navbar-expand .navbar-toggler {
  display: none;
}

.navbar-expand .offcanvas {
  position: static;
  z-index: auto;
  flex-grow: 1;
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
  background-color: transparent !important;
  border: 0 !important;
  transform: none !important;
  transition: none;
}

.navbar-expand .offcanvas .offcanvas-header {
  display: none;
}

.navbar-expand .offcanvas .offcanvas-body {
  display: flex;
  flex-grow: 0;
  padding: 0;
  overflow-y: visible;
}

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

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

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

.card > hr {
  margin-right: 0;
  margin-left: 0;
}

.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}

.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: var(--bs-card-inner-border-radius);
  border-top-right-radius: var(--bs-card-inner-border-radius);
}

.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
  border-bottom-left-radius: var(--bs-card-inner-border-radius);
}

.card > .card-header + .list-group, .card > .list-group + .card-footer {
  border-top: 0;
}

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

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

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

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

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

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

.card-header:first-child {
  border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0;
}

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

.card-footer:last-child {
  border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius);
}

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

.card-header-tabs .nav-link.active {
  background-color: var(--bs-card-bg);
  border-bottom-color: var(--bs-card-bg);
}

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

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

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

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

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

.card-group > .card {
  margin-bottom: var(--bs-card-group-margin);
}

@media (min-width: 576px) {
  .card-group {
    display: flex;
    flex-flow: row wrap;
  }
  .card-group > .card {
    flex: 1 0;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-header, .card-group > .card:not(:last-child) .card-img-top {
    border-top-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-footer, .card-group > .card:not(:last-child) .card-img-bottom {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-header, .card-group > .card:not(:first-child) .card-img-top {
    border-top-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-footer, .card-group > .card:not(:first-child) .card-img-bottom {
    border-bottom-left-radius: 0;
  }
}
.accordion {
  --bs-accordion-color:var(--bs-body-color);
  --bs-accordion-bg:var(--bs-body-bg);
  --bs-accordion-transition:color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out,border-radius 0.15s ease;
  --bs-accordion-border-color:var(--bs-border-color);
  --bs-accordion-border-width:var(--bs-border-width);
  --bs-accordion-border-radius:var(--bs-border-radius);
  --bs-accordion-inner-border-radius:calc(var(--bs-border-radius) - (var(--bs-border-width)));
  --bs-accordion-btn-padding-x:1.25rem;
  --bs-accordion-btn-padding-y:1rem;
  --bs-accordion-btn-color:var(--bs-body-color);
  --bs-accordion-btn-bg:var(--bs-accordion-bg);
  --bs-accordion-btn-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-icon-width:1.25rem;
  --bs-accordion-btn-icon-transform:rotate(-180deg);
  --bs-accordion-btn-icon-transition:transform 0.2s ease-in-out;
  --bs-accordion-btn-active-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23052c65'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-focus-border-color:#86b7fe;
  --bs-accordion-btn-focus-box-shadow:0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  --bs-accordion-body-padding-x:1.25rem;
  --bs-accordion-body-padding-y:1rem;
  --bs-accordion-active-color:var(--bs-primary-text-emphasis);
  --bs-accordion-active-bg:var(--bs-primary-bg-subtle);
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  font-size: 1rem;
  color: var(--bs-accordion-btn-color);
  text-align: left;
  background-color: var(--bs-accordion-btn-bg);
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: var(--bs-accordion-transition);
}

@media (prefers-reduced-motion: reduce) {
  .accordion-button {
    transition: none;
  }
}
.accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: var(--bs-accordion-active-bg);
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}

.accordion-button:not(.collapsed)::after {
  background-image: var(--bs-accordion-btn-active-icon);
  transform: var(--bs-accordion-btn-icon-transform);
}

.accordion-button::after {
  flex-shrink: 0;
  width: var(--bs-accordion-btn-icon-width);
  height: var(--bs-accordion-btn-icon-width);
  margin-left: auto;
  content: "";
  background-image: var(--bs-accordion-btn-icon);
  background-repeat: no-repeat;
  background-size: var(--bs-accordion-btn-icon-width);
  transition: var(--bs-accordion-btn-icon-transition);
}

@media (prefers-reduced-motion: reduce) {
  .accordion-button::after {
    transition: none;
  }
}
.accordion-button:hover {
  z-index: 2;
}

.accordion-button:focus {
  z-index: 3;
  border-color: var(--bs-accordion-btn-focus-border-color);
  outline: 0;
  box-shadow: var(--bs-accordion-btn-focus-box-shadow);
}

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

.accordion-item {
  color: var(--bs-accordion-color);
  background-color: var(--bs-accordion-bg);
  border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}

.accordion-item:first-of-type {
  border-top-left-radius: var(--bs-accordion-border-radius);
  border-top-right-radius: var(--bs-accordion-border-radius);
}

.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: var(--bs-accordion-inner-border-radius);
  border-top-right-radius: var(--bs-accordion-inner-border-radius);
}

.accordion-item:not(:first-of-type) {
  border-top: 0;
}

.accordion-item:last-of-type {
  border-bottom-right-radius: var(--bs-accordion-border-radius);
  border-bottom-left-radius: var(--bs-accordion-border-radius);
}

.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
  border-bottom-left-radius: var(--bs-accordion-inner-border-radius);
}

.accordion-item:last-of-type .accordion-collapse {
  border-bottom-right-radius: var(--bs-accordion-border-radius);
  border-bottom-left-radius: var(--bs-accordion-border-radius);
}

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

.accordion-flush .accordion-collapse {
  border-width: 0;
}

.accordion-flush .accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}

.accordion-flush .accordion-item:first-child {
  border-top: 0;
}

.accordion-flush .accordion-item:last-child {
  border-bottom: 0;
}

.accordion-flush .accordion-item .accordion-button, .accordion-flush .accordion-item .accordion-button.collapsed {
  border-radius: 0;
}

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

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

.breadcrumb-item + .breadcrumb-item {
  padding-left: var(--bs-breadcrumb-item-padding-x);
}

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

.breadcrumb-item.active {
  color: var(--bs-breadcrumb-item-active-color);
}

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

.page-link {
  position: relative;
  display: block;
  padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
  font-size: var(--bs-pagination-font-size);
  color: var(--bs-pagination-color);
  text-decoration: none;
  background-color: var(--bs-pagination-bg);
  border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .page-link {
    transition: none;
  }
}
.page-link:hover {
  z-index: 2;
  color: var(--bs-pagination-hover-color);
  background-color: var(--bs-pagination-hover-bg);
  border-color: var(--bs-pagination-hover-border-color);
}

.page-link:focus {
  z-index: 3;
  color: var(--bs-pagination-focus-color);
  background-color: var(--bs-pagination-focus-bg);
  outline: 0;
  box-shadow: var(--bs-pagination-focus-box-shadow);
}

.active > .page-link, .page-link.active {
  z-index: 3;
  color: var(--bs-pagination-active-color);
  background-color: var(--bs-pagination-active-bg);
  border-color: var(--bs-pagination-active-border-color);
}

.disabled > .page-link, .page-link.disabled {
  color: var(--bs-pagination-disabled-color);
  pointer-events: none;
  background-color: var(--bs-pagination-disabled-bg);
  border-color: var(--bs-pagination-disabled-border-color);
}

.page-item:not(:first-child) .page-link {
  margin-left: calc(var(--bs-border-width) * -1);
}

.page-item:first-child .page-link {
  border-top-left-radius: var(--bs-pagination-border-radius);
  border-bottom-left-radius: var(--bs-pagination-border-radius);
}

.page-item:last-child .page-link {
  border-top-right-radius: var(--bs-pagination-border-radius);
  border-bottom-right-radius: var(--bs-pagination-border-radius);
}

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

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

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

.badge:empty {
  display: none;
}

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

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

.alert-heading {
  color: inherit;
}

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

.alert-dismissible {
  padding-right: 3rem;
}

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

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

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

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

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

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

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

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

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

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

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

@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    transition: none;
  }
}
.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: var(--bs-progress-height) var(--bs-progress-height);
}

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

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

.progress-bar-animated {
  animation: 1s linear infinite progress-bar-stripes;
}

@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    animation: none;
  }
}
.list-group {
  --bs-list-group-color:var(--bs-body-color);
  --bs-list-group-bg:var(--bs-body-bg);
  --bs-list-group-border-color:var(--bs-border-color);
  --bs-list-group-border-width:var(--bs-border-width);
  --bs-list-group-border-radius:var(--bs-border-radius);
  --bs-list-group-item-padding-x:1rem;
  --bs-list-group-item-padding-y:0.5rem;
  --bs-list-group-action-color:var(--bs-secondary-color);
  --bs-list-group-action-hover-color:var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg:var(--bs-tertiary-bg);
  --bs-list-group-action-active-color:var(--bs-body-color);
  --bs-list-group-action-active-bg:var(--bs-secondary-bg);
  --bs-list-group-disabled-color:var(--bs-secondary-color);
  --bs-list-group-disabled-bg:var(--bs-body-bg);
  --bs-list-group-active-color:#fff;
  --bs-list-group-active-bg:#0d6efd;
  --bs-list-group-active-border-color:#0d6efd;
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: var(--bs-list-group-border-radius);
}

.list-group-numbered {
  list-style-type: none;
  counter-reset: section;
}

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

.list-group-item-action {
  width: 100%;
  color: var(--bs-list-group-action-color);
  text-align: inherit;
}

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

.list-group-item-action:active {
  color: var(--bs-list-group-action-active-color);
  background-color: var(--bs-list-group-action-active-bg);
}

.list-group-item {
  position: relative;
  display: block;
  padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);
  color: var(--bs-list-group-color);
  text-decoration: none;
  background-color: var(--bs-list-group-bg);
  border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
}

.list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}

.list-group-item.disabled, .list-group-item:disabled {
  color: var(--bs-list-group-disabled-color);
  pointer-events: none;
  background-color: var(--bs-list-group-disabled-bg);
}

.list-group-item.active {
  z-index: 2;
  color: var(--bs-list-group-active-color);
  background-color: var(--bs-list-group-active-bg);
  border-color: var(--bs-list-group-active-border-color);
}

.list-group-item + .list-group-item {
  border-top-width: 0;
}

.list-group-item + .list-group-item.active {
  margin-top: calc(-1 * var(--bs-list-group-border-width));
  border-top-width: var(--bs-list-group-border-width);
}

.list-group-horizontal {
  flex-direction: row;
}

.list-group-horizontal > .list-group-item:first-child:not(:last-child) {
  border-bottom-left-radius: var(--bs-list-group-border-radius);
  border-top-right-radius: 0;
}

.list-group-horizontal > .list-group-item:last-child:not(:first-child) {
  border-top-right-radius: var(--bs-list-group-border-radius);
  border-bottom-left-radius: 0;
}

.list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}

.list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: var(--bs-list-group-border-width);
  border-left-width: 0;
}

.list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: calc(-1 * var(--bs-list-group-border-width));
  border-left-width: var(--bs-list-group-border-width);
}

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

.list-group-flush > .list-group-item {
  border-width: 0 0 var(--bs-list-group-border-width);
}

.list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}

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

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

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

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

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

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

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

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

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

.btn-close:hover {
  color: var(--bs-btn-close-color);
  text-decoration: none;
  opacity: var(--bs-btn-close-hover-opacity);
}

.btn-close:focus {
  outline: 0;
  box-shadow: var(--bs-btn-close-focus-shadow);
  opacity: var(--bs-btn-close-focus-opacity);
}

.btn-close.disabled, .btn-close:disabled {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  opacity: var(--bs-btn-close-disabled-opacity);
}

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

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

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

.toast.showing {
  opacity: 0;
}

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

.toast-container {
  --bs-toast-zindex:1090;
  position: absolute;
  z-index: var(--bs-toast-zindex);
  width: max-content;
  max-width: 100%;
  pointer-events: none;
}

.toast-container > :not(:last-child) {
  margin-bottom: var(--bs-toast-spacing);
}

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

.toast-header .btn-close {
  margin-right: calc(-0.5 * var(--bs-toast-padding-x));
  margin-left: var(--bs-toast-padding-x);
}

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

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

.modal-dialog {
  position: relative;
  width: auto;
  margin: var(--bs-modal-margin);
  pointer-events: none;
}

.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}

.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: calc(100% - var(--bs-modal-margin) * 2);
}

.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

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

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

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

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: var(--bs-backdrop-opacity);
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: var(--bs-modal-header-padding);
  border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
  border-top-left-radius: var(--bs-modal-inner-border-radius);
  border-top-right-radius: var(--bs-modal-inner-border-radius);
}

.modal-header .btn-close {
  padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
  margin: calc(-0.5 * var(--bs-modal-header-padding-y)) calc(-0.5 * var(--bs-modal-header-padding-x)) calc(-0.5 * var(--bs-modal-header-padding-y)) auto;
}

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

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

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

.modal-footer > * {
  margin: calc(var(--bs-modal-footer-gap) * 0.5);
}

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

.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}

.modal-fullscreen .modal-footer, .modal-fullscreen .modal-header {
  border-radius: 0;
}

.modal-fullscreen .modal-body {
  overflow-y: auto;
}

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

.tooltip.show {
  opacity: var(--bs-tooltip-opacity);
}

.tooltip .tooltip-arrow {
  display: block;
  width: var(--bs-tooltip-arrow-width);
  height: var(--bs-tooltip-arrow-height);
}

.tooltip .tooltip-arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow, .bs-tooltip-top .tooltip-arrow {
  bottom: calc(-1 * var(--bs-tooltip-arrow-height));
}

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

.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow, .bs-tooltip-end .tooltip-arrow {
  left: calc(-1 * var(--bs-tooltip-arrow-height));
  width: var(--bs-tooltip-arrow-height);
  height: var(--bs-tooltip-arrow-width);
}

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

.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow, .bs-tooltip-bottom .tooltip-arrow {
  top: calc(-1 * var(--bs-tooltip-arrow-height));
}

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

.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow, .bs-tooltip-start .tooltip-arrow {
  right: calc(-1 * var(--bs-tooltip-arrow-height));
  width: var(--bs-tooltip-arrow-height);
  height: var(--bs-tooltip-arrow-width);
}

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

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

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

.popover .popover-arrow {
  display: block;
  width: var(--bs-popover-arrow-width);
  height: var(--bs-popover-arrow-height);
}

.popover .popover-arrow::after, .popover .popover-arrow::before {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
  border-width: 0;
}

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

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

.bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before, .bs-popover-top > .popover-arrow::before {
  bottom: 0;
  border-top-color: var(--bs-popover-arrow-border);
}

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

.bs-popover-auto[data-popper-placement^=right] > .popover-arrow, .bs-popover-end > .popover-arrow {
  left: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  width: var(--bs-popover-arrow-height);
  height: var(--bs-popover-arrow-width);
}

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

.bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before, .bs-popover-end > .popover-arrow::before {
  left: 0;
  border-right-color: var(--bs-popover-arrow-border);
}

.bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after, .bs-popover-end > .popover-arrow::after {
  left: var(--bs-popover-border-width);
  border-right-color: var(--bs-popover-bg);
}

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

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

.bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before, .bs-popover-bottom > .popover-arrow::before {
  top: 0;
  border-bottom-color: var(--bs-popover-arrow-border);
}

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

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

.bs-popover-auto[data-popper-placement^=left] > .popover-arrow, .bs-popover-start > .popover-arrow {
  right: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  width: var(--bs-popover-arrow-height);
  height: var(--bs-popover-arrow-width);
}

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

.bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before, .bs-popover-start > .popover-arrow::before {
  right: 0;
  border-left-color: var(--bs-popover-arrow-border);
}

.bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after, .bs-popover-start > .popover-arrow::after {
  right: var(--bs-popover-border-width);
  border-left-color: var(--bs-popover-bg);
}

.popover-header {
  padding: var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);
  margin-bottom: 0;
  font-size: var(--bs-popover-header-font-size);
  color: var(--bs-popover-header-color);
  background-color: var(--bs-popover-header-bg);
  border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  border-top-left-radius: var(--bs-popover-inner-border-radius);
  border-top-right-radius: var(--bs-popover-inner-border-radius);
}

.popover-header:empty {
  display: none;
}

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

.carousel {
  position: relative;
}

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

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}
.carousel-item-next, .carousel-item-prev, .carousel-item.active {
  display: block;
}

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

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

.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}

.carousel-fade .carousel-item-next.carousel-item-start, .carousel-fade .carousel-item-prev.carousel-item-end, .carousel-fade .carousel-item.active {
  z-index: 1;
  opacity: 1;
}

.carousel-fade .active.carousel-item-end, .carousel-fade .active.carousel-item-start {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}

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

@media (prefers-reduced-motion: reduce) {
  .carousel-control-next, .carousel-control-prev {
    transition: none;
  }
}
.carousel-control-next:focus, .carousel-control-next:hover, .carousel-control-prev:focus, .carousel-control-prev:hover {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

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

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

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

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

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

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-right: 15%;
  margin-bottom: 1rem;
  margin-left: 15%;
}

.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-indicators [data-bs-target] {
    transition: none;
  }
}
.carousel-indicators .active {
  opacity: 1;
}

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

.carousel-dark .carousel-control-next-icon, .carousel-dark .carousel-control-prev-icon {
  filter: invert(1) grayscale(100);
}

.carousel-dark .carousel-indicators [data-bs-target] {
  background-color: #000;
}

.carousel-dark .carousel-caption {
  color: #000;
}

[data-bs-theme=dark] .carousel .carousel-control-next-icon, [data-bs-theme=dark] .carousel .carousel-control-prev-icon, [data-bs-theme=dark].carousel .carousel-control-next-icon, [data-bs-theme=dark].carousel .carousel-control-prev-icon {
  filter: invert(1) grayscale(100);
}

[data-bs-theme=dark] .carousel .carousel-indicators [data-bs-target], [data-bs-theme=dark].carousel .carousel-indicators [data-bs-target] {
  background-color: #000;
}

[data-bs-theme=dark] .carousel .carousel-caption, [data-bs-theme=dark].carousel .carousel-caption {
  color: #000;
}

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

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

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

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

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

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

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

@media (prefers-reduced-motion: reduce) {
  .offcanvas {
    transition: none;
  }
}
.offcanvas.offcanvas-start {
  top: 0;
  left: 0;
  width: var(--bs-offcanvas-width);
  border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  transform: translateX(-100%);
}

.offcanvas.offcanvas-end {
  top: 0;
  right: 0;
  width: var(--bs-offcanvas-width);
  border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  transform: translateX(100%);
}

.offcanvas.offcanvas-top {
  top: 0;
  right: 0;
  left: 0;
  height: var(--bs-offcanvas-height);
  max-height: 100%;
  border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  transform: translateY(-100%);
}

.offcanvas.offcanvas-bottom {
  right: 0;
  left: 0;
  height: var(--bs-offcanvas-height);
  max-height: 100%;
  border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  transform: translateY(100%);
}

.offcanvas.show:not(.hiding), .offcanvas.showing {
  transform: none;
}

.offcanvas.hiding, .offcanvas.show, .offcanvas.showing {
  visibility: visible;
}

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

.offcanvas-backdrop.fade {
  opacity: 0;
}

.offcanvas-backdrop.show {
  opacity: 0.5;
}

.offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
}

.offcanvas-header .btn-close {
  padding: calc(var(--bs-offcanvas-padding-y) * 0.5) calc(var(--bs-offcanvas-padding-x) * 0.5);
  margin-top: calc(-0.5 * var(--bs-offcanvas-padding-y));
  margin-right: calc(-0.5 * var(--bs-offcanvas-padding-x));
  margin-bottom: calc(-0.5 * var(--bs-offcanvas-padding-y));
}

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

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

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

.placeholder.btn::before {
  display: inline-block;
  content: "";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.link-primary {
  color: RGBA(var(--bs-primary-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-primary-rgb), var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-primary-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

.link-primary:focus, .link-primary:hover {
  color: RGBA(10, 88, 202, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(10, 88, 202, var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(10, 88, 202, var(--bs-link-underline-opacity, 1)) !important;
}

.link-secondary {
  color: RGBA(var(--bs-secondary-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-secondary-rgb), var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-secondary-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

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

.link-success {
  color: RGBA(var(--bs-success-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-success-rgb), var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-success-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

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

.link-info {
  color: RGBA(var(--bs-info-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-info-rgb), var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-info-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

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

.link-warning {
  color: RGBA(var(--bs-warning-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-warning-rgb), var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-warning-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

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

.link-danger {
  color: RGBA(var(--bs-danger-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-danger-rgb), var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-danger-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

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

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

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

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

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

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

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

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

.icon-link {
  display: inline-flex;
  gap: 0.375rem;
  align-items: center;
  -webkit-text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 0.5));
  text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 0.5));
  text-underline-offset: 0.25em;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.icon-link > .bi {
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  fill: currentcolor;
  transition: 0.2s ease-in-out transform;
}

@media (prefers-reduced-motion: reduce) {
  .icon-link > .bi {
    transition: none;
  }
}
.icon-link-hover:focus-visible > .bi, .icon-link-hover:hover > .bi {
  transform: var(--bs-icon-link-transform, translate3d(0.25em, 0, 0));
}

.ratio {
  position: relative;
  width: 100%;
}

.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}

.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

.visually-hidden-focusable:not(:focus):not(:focus-within):not(caption), .visually-hidden:not(caption) {
  position: absolute !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: -webkit-sticky !important;
  position: sticky !important;
}

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

.top-50 {
  top: 50% !important;
}

.top-100 {
  top: 100% !important;
}

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

.bottom-50 {
  bottom: 50% !important;
}

.bottom-100 {
  bottom: 100% !important;
}

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

.start-50 {
  left: 50% !important;
}

.start-100 {
  left: 100% !important;
}

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

.end-50 {
  right: 50% !important;
}

.end-100 {
  right: 100% !important;
}

.translate-middle {
  transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
  transform: translateX(-50%) !important;
}

.translate-middle-y {
  transform: translateY(-50%) !important;
}

.border {
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

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

.border-top {
  border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-end {
  border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-end-0 {
  border-right: 0 !important;
}

.border-bottom {
  border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-start {
  border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-start-0 {
  border-left: 0 !important;
}

.border-primary {
  --bs-border-opacity:1;
  border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
}

.border-secondary {
  --bs-border-opacity:1;
  border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
}

.border-success {
  --bs-border-opacity:1;
  border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;
}

.border-info {
  --bs-border-opacity:1;
  border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
}

.border-warning {
  --bs-border-opacity:1;
  border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;
}

.border-danger {
  --bs-border-opacity:1;
  border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
}

.border-light {
  --bs-border-opacity:1;
  border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
}

.border-dark {
  --bs-border-opacity:1;
  border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
}

.border-black {
  --bs-border-opacity:1;
  border-color: rgba(var(--bs-black-rgb), var(--bs-border-opacity)) !important;
}

.border-white {
  --bs-border-opacity:1;
  border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
}

.border-primary-subtle {
  border-color: var(--bs-primary-border-subtle) !important;
}

.border-secondary-subtle {
  border-color: var(--bs-secondary-border-subtle) !important;
}

.border-success-subtle {
  border-color: var(--bs-success-border-subtle) !important;
}

.border-info-subtle {
  border-color: var(--bs-info-border-subtle) !important;
}

.border-warning-subtle {
  border-color: var(--bs-warning-border-subtle) !important;
}

.border-danger-subtle {
  border-color: var(--bs-danger-border-subtle) !important;
}

.border-light-subtle {
  border-color: var(--bs-light-border-subtle) !important;
}

.border-dark-subtle {
  border-color: var(--bs-dark-border-subtle) !important;
}

.border-1 {
  border-width: 1px !important;
}

.border-2 {
  border-width: 2px !important;
}

.border-3 {
  border-width: 3px !important;
}

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

.border-5 {
  border-width: 5px !important;
}

.border-opacity-10 {
  --bs-border-opacity:0.1;
}

.border-opacity-25 {
  --bs-border-opacity:0.25;
}

.border-opacity-50 {
  --bs-border-opacity:0.5;
}

.border-opacity-75 {
  --bs-border-opacity:0.75;
}

.border-opacity-100 {
  --bs-border-opacity:1;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.vw-100 {
  width: 100vw !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mh-100 {
  max-height: 100% !important;
}

.vh-100 {
  height: 100vh !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

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

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

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

.align-self-stretch {
  align-self: stretch !important;
}

.order-first {
  order: -1 !important;
}

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

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  order: 6 !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.me-auto {
  margin-right: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

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

.gap-1 {
  gap: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.gap-5 {
  gap: 3rem !important;
}

.row-gap-0 {
  row-gap: 0 !important;
}

.row-gap-1 {
  row-gap: 0.25rem !important;
}

.row-gap-2 {
  row-gap: 0.5rem !important;
}

.row-gap-3 {
  row-gap: 1rem !important;
}

.row-gap-4 {
  row-gap: 1.5rem !important;
}

.row-gap-5 {
  row-gap: 3rem !important;
}

.column-gap-0 {
  column-gap: 0 !important;
}

.column-gap-1 {
  column-gap: 0.25rem !important;
}

.column-gap-2 {
  column-gap: 0.5rem !important;
}

.column-gap-3 {
  column-gap: 1rem !important;
}

.column-gap-4 {
  column-gap: 1.5rem !important;
}

.column-gap-5 {
  column-gap: 3rem !important;
}

.font-monospace {
  font-family: var(--bs-font-monospace) !important;
}

.fs-1 {
  font-size: calc(1.375rem + 1.5vw) !important;
}

.fs-2 {
  font-size: calc(1.325rem + 0.9vw) !important;
}

.fs-3 {
  font-size: calc(1.3rem + 0.6vw) !important;
}

.fs-4 {
  font-size: calc(1.275rem + 0.3vw) !important;
}

.fs-5 {
  font-size: 1.25rem !important;
}

.fs-6 {
  font-size: 1rem !important;
}

.fst-italic {
  font-style: italic !important;
}

.fst-normal {
  font-style: normal !important;
}

.fw-lighter {
  font-weight: lighter !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-bolder {
  font-weight: bolder !important;
}

.lh-1 {
  line-height: 1 !important;
}

.lh-sm {
  line-height: 1.25 !important;
}

.lh-base {
  line-height: 1.5 !important;
}

.lh-lg {
  line-height: 2 !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.text-decoration-line-through {
  text-decoration: line-through !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}

.text-primary {
  --bs-text-opacity:1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

.text-secondary {
  --bs-text-opacity:1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

.text-success {
  --bs-text-opacity:1;
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}

.text-info {
  --bs-text-opacity:1;
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}

.text-warning {
  --bs-text-opacity:1;
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}

.text-danger {
  --bs-text-opacity:1;
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}

.text-light {
  --bs-text-opacity:1;
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}

.text-dark {
  --bs-text-opacity:1;
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}

.text-black {
  --bs-text-opacity:1;
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}

.text-white {
  --bs-text-opacity:1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

.text-body {
  --bs-text-opacity:1;
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}

.text-muted {
  --bs-text-opacity:1;
  color: var(--bs-secondary-color) !important;
}

.text-black-50 {
  --bs-text-opacity:1;
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  --bs-text-opacity:1;
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-body-secondary {
  --bs-text-opacity:1;
  color: var(--bs-secondary-color) !important;
}

.text-body-tertiary {
  --bs-text-opacity:1;
  color: var(--bs-tertiary-color) !important;
}

.text-body-emphasis {
  --bs-text-opacity:1;
  color: var(--bs-emphasis-color) !important;
}

.text-reset {
  --bs-text-opacity:1;
  color: inherit !important;
}

.text-opacity-25 {
  --bs-text-opacity:0.25;
}

.text-opacity-50 {
  --bs-text-opacity:0.5;
}

.text-opacity-75 {
  --bs-text-opacity:0.75;
}

.text-opacity-100 {
  --bs-text-opacity:1;
}

.text-primary-emphasis {
  color: var(--bs-primary-text-emphasis) !important;
}

.text-secondary-emphasis {
  color: var(--bs-secondary-text-emphasis) !important;
}

.text-success-emphasis {
  color: var(--bs-success-text-emphasis) !important;
}

.text-info-emphasis {
  color: var(--bs-info-text-emphasis) !important;
}

.text-warning-emphasis {
  color: var(--bs-warning-text-emphasis) !important;
}

.text-danger-emphasis {
  color: var(--bs-danger-text-emphasis) !important;
}

.text-light-emphasis {
  color: var(--bs-light-text-emphasis) !important;
}

.text-dark-emphasis {
  color: var(--bs-dark-text-emphasis) !important;
}

.link-opacity-10 {
  --bs-link-opacity:0.1;
}

.link-opacity-10-hover:hover {
  --bs-link-opacity:0.1;
}

.link-opacity-25 {
  --bs-link-opacity:0.25;
}

.link-opacity-25-hover:hover {
  --bs-link-opacity:0.25;
}

.link-opacity-50 {
  --bs-link-opacity:0.5;
}

.link-opacity-50-hover:hover {
  --bs-link-opacity:0.5;
}

.link-opacity-75 {
  --bs-link-opacity:0.75;
}

.link-opacity-75-hover:hover {
  --bs-link-opacity:0.75;
}

.link-opacity-100 {
  --bs-link-opacity:1;
}

.link-opacity-100-hover:hover {
  --bs-link-opacity:1;
}

.link-offset-1 {
  text-underline-offset: 0.125em !important;
}

.link-offset-1-hover:hover {
  text-underline-offset: 0.125em !important;
}

.link-offset-2 {
  text-underline-offset: 0.25em !important;
}

.link-offset-2-hover:hover {
  text-underline-offset: 0.25em !important;
}

.link-offset-3 {
  text-underline-offset: 0.375em !important;
}

.link-offset-3-hover:hover {
  text-underline-offset: 0.375em !important;
}

.link-underline-primary {
  --bs-link-underline-opacity:1;
  -webkit-text-decoration-color: rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity)) !important;
  text-decoration-color: rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-secondary {
  --bs-link-underline-opacity:1;
  -webkit-text-decoration-color: rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity)) !important;
  text-decoration-color: rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-success {
  --bs-link-underline-opacity:1;
  -webkit-text-decoration-color: rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity)) !important;
  text-decoration-color: rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-info {
  --bs-link-underline-opacity:1;
  -webkit-text-decoration-color: rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity)) !important;
  text-decoration-color: rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-warning {
  --bs-link-underline-opacity:1;
  -webkit-text-decoration-color: rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity)) !important;
  text-decoration-color: rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-danger {
  --bs-link-underline-opacity:1;
  -webkit-text-decoration-color: rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity)) !important;
  text-decoration-color: rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-light {
  --bs-link-underline-opacity:1;
  -webkit-text-decoration-color: rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity)) !important;
  text-decoration-color: rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-dark {
  --bs-link-underline-opacity:1;
  -webkit-text-decoration-color: rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity)) !important;
  text-decoration-color: rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline {
  --bs-link-underline-opacity:1;
  -webkit-text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

.link-underline-opacity-0 {
  --bs-link-underline-opacity:0;
}

.link-underline-opacity-0-hover:hover {
  --bs-link-underline-opacity:0;
}

.link-underline-opacity-10 {
  --bs-link-underline-opacity:0.1;
}

.link-underline-opacity-10-hover:hover {
  --bs-link-underline-opacity:0.1;
}

.link-underline-opacity-25 {
  --bs-link-underline-opacity:0.25;
}

.link-underline-opacity-25-hover:hover {
  --bs-link-underline-opacity:0.25;
}

.link-underline-opacity-50 {
  --bs-link-underline-opacity:0.5;
}

.link-underline-opacity-50-hover:hover {
  --bs-link-underline-opacity:0.5;
}

.link-underline-opacity-75 {
  --bs-link-underline-opacity:0.75;
}

.link-underline-opacity-75-hover:hover {
  --bs-link-underline-opacity:0.75;
}

.link-underline-opacity-100 {
  --bs-link-underline-opacity:1;
}

.link-underline-opacity-100-hover:hover {
  --bs-link-underline-opacity:1;
}

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

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

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

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

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

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

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

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

.bg-black {
  --bs-bg-opacity:1;
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}

.bg-white {
  --bs-bg-opacity:1;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body {
  --bs-bg-opacity:1;
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-transparent {
  --bs-bg-opacity:1;
  background-color: transparent !important;
}

.bg-body-secondary {
  --bs-bg-opacity:1;
  background-color: rgba(var(--bs-secondary-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body-tertiary {
  --bs-bg-opacity:1;
  background-color: rgba(var(--bs-tertiary-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-opacity-10 {
  --bs-bg-opacity:0.1;
}

.bg-opacity-25 {
  --bs-bg-opacity:0.25;
}

.bg-opacity-50 {
  --bs-bg-opacity:0.5;
}

.bg-opacity-75 {
  --bs-bg-opacity:0.75;
}

.bg-opacity-100 {
  --bs-bg-opacity:1;
}

.bg-primary-subtle {
  background-color: var(--bs-primary-bg-subtle) !important;
}

.bg-secondary-subtle {
  background-color: var(--bs-secondary-bg-subtle) !important;
}

.bg-success-subtle {
  background-color: var(--bs-success-bg-subtle) !important;
}

.bg-info-subtle {
  background-color: var(--bs-info-bg-subtle) !important;
}

.bg-warning-subtle {
  background-color: var(--bs-warning-bg-subtle) !important;
}

.bg-danger-subtle {
  background-color: var(--bs-danger-bg-subtle) !important;
}

.bg-light-subtle {
  background-color: var(--bs-light-bg-subtle) !important;
}

.bg-dark-subtle {
  background-color: var(--bs-dark-bg-subtle) !important;
}

.bg-gradient {
  background-image: var(--bs-gradient) !important;
}

.user-select-all {
  -webkit-user-select: all !important;
  -moz-user-select: all !important;
  user-select: all !important;
}

.user-select-auto {
  -webkit-user-select: auto !important;
  -moz-user-select: auto !important;
  user-select: auto !important;
}

.user-select-none {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  user-select: none !important;
}

.pe-none {
  pointer-events: none !important;
}

.pe-auto {
  pointer-events: auto !important;
}

.rounded {
  border-radius: var(--bs-border-radius) !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.rounded-1 {
  border-radius: var(--bs-border-radius-sm) !important;
}

.rounded-2 {
  border-radius: var(--bs-border-radius) !important;
}

.rounded-3 {
  border-radius: var(--bs-border-radius-lg) !important;
}

.rounded-4 {
  border-radius: var(--bs-border-radius-xl) !important;
}

.rounded-5 {
  border-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: var(--bs-border-radius-pill) !important;
}

.rounded-top {
  border-top-left-radius: var(--bs-border-radius) !important;
  border-top-right-radius: var(--bs-border-radius) !important;
}

.rounded-top-0 {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.rounded-top-1 {
  border-top-left-radius: var(--bs-border-radius-sm) !important;
  border-top-right-radius: var(--bs-border-radius-sm) !important;
}

.rounded-top-2 {
  border-top-left-radius: var(--bs-border-radius) !important;
  border-top-right-radius: var(--bs-border-radius) !important;
}

.rounded-top-3 {
  border-top-left-radius: var(--bs-border-radius-lg) !important;
  border-top-right-radius: var(--bs-border-radius-lg) !important;
}

.rounded-top-4 {
  border-top-left-radius: var(--bs-border-radius-xl) !important;
  border-top-right-radius: var(--bs-border-radius-xl) !important;
}

.rounded-top-5 {
  border-top-left-radius: var(--bs-border-radius-xxl) !important;
  border-top-right-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-top-circle {
  border-top-left-radius: 50% !important;
  border-top-right-radius: 50% !important;
}

.rounded-top-pill {
  border-top-left-radius: var(--bs-border-radius-pill) !important;
  border-top-right-radius: var(--bs-border-radius-pill) !important;
}

.rounded-end {
  border-top-right-radius: var(--bs-border-radius) !important;
  border-bottom-right-radius: var(--bs-border-radius) !important;
}

.rounded-end-0 {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.rounded-end-1 {
  border-top-right-radius: var(--bs-border-radius-sm) !important;
  border-bottom-right-radius: var(--bs-border-radius-sm) !important;
}

.rounded-end-2 {
  border-top-right-radius: var(--bs-border-radius) !important;
  border-bottom-right-radius: var(--bs-border-radius) !important;
}

.rounded-end-3 {
  border-top-right-radius: var(--bs-border-radius-lg) !important;
  border-bottom-right-radius: var(--bs-border-radius-lg) !important;
}

.rounded-end-4 {
  border-top-right-radius: var(--bs-border-radius-xl) !important;
  border-bottom-right-radius: var(--bs-border-radius-xl) !important;
}

.rounded-end-5 {
  border-top-right-radius: var(--bs-border-radius-xxl) !important;
  border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-end-circle {
  border-top-right-radius: 50% !important;
  border-bottom-right-radius: 50% !important;
}

.rounded-end-pill {
  border-top-right-radius: var(--bs-border-radius-pill) !important;
  border-bottom-right-radius: var(--bs-border-radius-pill) !important;
}

.rounded-bottom {
  border-bottom-right-radius: var(--bs-border-radius) !important;
  border-bottom-left-radius: var(--bs-border-radius) !important;
}

.rounded-bottom-0 {
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.rounded-bottom-1 {
  border-bottom-right-radius: var(--bs-border-radius-sm) !important;
  border-bottom-left-radius: var(--bs-border-radius-sm) !important;
}

.rounded-bottom-2 {
  border-bottom-right-radius: var(--bs-border-radius) !important;
  border-bottom-left-radius: var(--bs-border-radius) !important;
}

.rounded-bottom-3 {
  border-bottom-right-radius: var(--bs-border-radius-lg) !important;
  border-bottom-left-radius: var(--bs-border-radius-lg) !important;
}

.rounded-bottom-4 {
  border-bottom-right-radius: var(--bs-border-radius-xl) !important;
  border-bottom-left-radius: var(--bs-border-radius-xl) !important;
}

.rounded-bottom-5 {
  border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
  border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-bottom-circle {
  border-bottom-right-radius: 50% !important;
  border-bottom-left-radius: 50% !important;
}

.rounded-bottom-pill {
  border-bottom-right-radius: var(--bs-border-radius-pill) !important;
  border-bottom-left-radius: var(--bs-border-radius-pill) !important;
}

.rounded-start {
  border-bottom-left-radius: var(--bs-border-radius) !important;
  border-top-left-radius: var(--bs-border-radius) !important;
}

.rounded-start-0 {
  border-bottom-left-radius: 0 !important;
  border-top-left-radius: 0 !important;
}

.rounded-start-1 {
  border-bottom-left-radius: var(--bs-border-radius-sm) !important;
  border-top-left-radius: var(--bs-border-radius-sm) !important;
}

.rounded-start-2 {
  border-bottom-left-radius: var(--bs-border-radius) !important;
  border-top-left-radius: var(--bs-border-radius) !important;
}

.rounded-start-3 {
  border-bottom-left-radius: var(--bs-border-radius-lg) !important;
  border-top-left-radius: var(--bs-border-radius-lg) !important;
}

.rounded-start-4 {
  border-bottom-left-radius: var(--bs-border-radius-xl) !important;
  border-top-left-radius: var(--bs-border-radius-xl) !important;
}

.rounded-start-5 {
  border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
  border-top-left-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-start-circle {
  border-bottom-left-radius: 50% !important;
  border-top-left-radius: 50% !important;
}

.rounded-start-pill {
  border-bottom-left-radius: var(--bs-border-radius-pill) !important;
  border-top-left-radius: var(--bs-border-radius-pill) !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.z-n1 {
  z-index: -1 !important;
}

.z-0 {
  z-index: 0 !important;
}

.z-1 {
  z-index: 1 !important;
}

.z-2 {
  z-index: 2 !important;
}

.z-3 {
  z-index: 3 !important;
}

@media (min-width: 576px) {
  .float-sm-start {
    float: left !important;
  }
  .float-sm-end {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
  .object-fit-sm-contain {
    object-fit: contain !important;
  }
  .object-fit-sm-cover {
    object-fit: cover !important;
  }
  .object-fit-sm-fill {
    object-fit: fill !important;
  }
  .object-fit-sm-scale {
    object-fit: scale-down !important;
  }
  .object-fit-sm-none {
    object-fit: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-inline-grid {
    display: inline-grid !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
  .d-sm-none {
    display: none !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
  .order-sm-first {
    order: -1 !important;
  }
  .order-sm-0 {
    order: 0 !important;
  }
  .order-sm-1 {
    order: 1 !important;
  }
  .order-sm-2 {
    order: 2 !important;
  }
  .order-sm-3 {
    order: 3 !important;
  }
  .order-sm-4 {
    order: 4 !important;
  }
  .order-sm-5 {
    order: 5 !important;
  }
  .order-sm-last {
    order: 6 !important;
  }
  .m-sm-0 {
    margin: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mt-sm-5 {
    margin-top: 3rem !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .me-sm-0 {
    margin-right: 0 !important;
  }
  .me-sm-1 {
    margin-right: 0.25rem !important;
  }
  .me-sm-2 {
    margin-right: 0.5rem !important;
  }
  .me-sm-3 {
    margin-right: 1rem !important;
  }
  .me-sm-4 {
    margin-right: 1.5rem !important;
  }
  .me-sm-5 {
    margin-right: 3rem !important;
  }
  .me-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .ms-sm-0 {
    margin-left: 0 !important;
  }
  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }
  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }
  .ms-sm-3 {
    margin-left: 1rem !important;
  }
  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }
  .ms-sm-5 {
    margin-left: 3rem !important;
  }
  .ms-sm-auto {
    margin-left: auto !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pt-sm-5 {
    padding-top: 3rem !important;
  }
  .pe-sm-0 {
    padding-right: 0 !important;
  }
  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pe-sm-3 {
    padding-right: 1rem !important;
  }
  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pe-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  .ps-sm-0 {
    padding-left: 0 !important;
  }
  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }
  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }
  .ps-sm-3 {
    padding-left: 1rem !important;
  }
  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }
  .ps-sm-5 {
    padding-left: 3rem !important;
  }
  .gap-sm-0 {
    gap: 0 !important;
  }
  .gap-sm-1 {
    gap: 0.25rem !important;
  }
  .gap-sm-2 {
    gap: 0.5rem !important;
  }
  .gap-sm-3 {
    gap: 1rem !important;
  }
  .gap-sm-4 {
    gap: 1.5rem !important;
  }
  .gap-sm-5 {
    gap: 3rem !important;
  }
  .row-gap-sm-0 {
    row-gap: 0 !important;
  }
  .row-gap-sm-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-sm-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-sm-3 {
    row-gap: 1rem !important;
  }
  .row-gap-sm-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-sm-5 {
    row-gap: 3rem !important;
  }
  .column-gap-sm-0 {
    column-gap: 0 !important;
  }
  .column-gap-sm-1 {
    column-gap: 0.25rem !important;
  }
  .column-gap-sm-2 {
    column-gap: 0.5rem !important;
  }
  .column-gap-sm-3 {
    column-gap: 1rem !important;
  }
  .column-gap-sm-4 {
    column-gap: 1.5rem !important;
  }
  .column-gap-sm-5 {
    column-gap: 3rem !important;
  }
  .text-sm-start {
    text-align: left !important;
  }
  .text-sm-end {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .float-md-start {
    float: left !important;
  }
  .float-md-end {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
  .object-fit-md-contain {
    object-fit: contain !important;
  }
  .object-fit-md-cover {
    object-fit: cover !important;
  }
  .object-fit-md-fill {
    object-fit: fill !important;
  }
  .object-fit-md-scale {
    object-fit: scale-down !important;
  }
  .object-fit-md-none {
    object-fit: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-inline-grid {
    display: inline-grid !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
  .order-md-first {
    order: -1 !important;
  }
  .order-md-0 {
    order: 0 !important;
  }
  .order-md-1 {
    order: 1 !important;
  }
  .order-md-2 {
    order: 2 !important;
  }
  .order-md-3 {
    order: 3 !important;
  }
  .order-md-4 {
    order: 4 !important;
  }
  .order-md-5 {
    order: 5 !important;
  }
  .order-md-last {
    order: 6 !important;
  }
  .m-md-0 {
    margin: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .mt-md-5 {
    margin-top: 3rem !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .me-md-0 {
    margin-right: 0 !important;
  }
  .me-md-1 {
    margin-right: 0.25rem !important;
  }
  .me-md-2 {
    margin-right: 0.5rem !important;
  }
  .me-md-3 {
    margin-right: 1rem !important;
  }
  .me-md-4 {
    margin-right: 1.5rem !important;
  }
  .me-md-5 {
    margin-right: 3rem !important;
  }
  .me-md-auto {
    margin-right: auto !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .ms-md-0 {
    margin-left: 0 !important;
  }
  .ms-md-1 {
    margin-left: 0.25rem !important;
  }
  .ms-md-2 {
    margin-left: 0.5rem !important;
  }
  .ms-md-3 {
    margin-left: 1rem !important;
  }
  .ms-md-4 {
    margin-left: 1.5rem !important;
  }
  .ms-md-5 {
    margin-left: 3rem !important;
  }
  .ms-md-auto {
    margin-left: auto !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .pt-md-5 {
    padding-top: 3rem !important;
  }
  .pe-md-0 {
    padding-right: 0 !important;
  }
  .pe-md-1 {
    padding-right: 0.25rem !important;
  }
  .pe-md-2 {
    padding-right: 0.5rem !important;
  }
  .pe-md-3 {
    padding-right: 1rem !important;
  }
  .pe-md-4 {
    padding-right: 1.5rem !important;
  }
  .pe-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  .ps-md-0 {
    padding-left: 0 !important;
  }
  .ps-md-1 {
    padding-left: 0.25rem !important;
  }
  .ps-md-2 {
    padding-left: 0.5rem !important;
  }
  .ps-md-3 {
    padding-left: 1rem !important;
  }
  .ps-md-4 {
    padding-left: 1.5rem !important;
  }
  .ps-md-5 {
    padding-left: 3rem !important;
  }
  .gap-md-0 {
    gap: 0 !important;
  }
  .gap-md-1 {
    gap: 0.25rem !important;
  }
  .gap-md-2 {
    gap: 0.5rem !important;
  }
  .gap-md-3 {
    gap: 1rem !important;
  }
  .gap-md-4 {
    gap: 1.5rem !important;
  }
  .gap-md-5 {
    gap: 3rem !important;
  }
  .row-gap-md-0 {
    row-gap: 0 !important;
  }
  .row-gap-md-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-md-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-md-3 {
    row-gap: 1rem !important;
  }
  .row-gap-md-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-md-5 {
    row-gap: 3rem !important;
  }
  .column-gap-md-0 {
    column-gap: 0 !important;
  }
  .column-gap-md-1 {
    column-gap: 0.25rem !important;
  }
  .column-gap-md-2 {
    column-gap: 0.5rem !important;
  }
  .column-gap-md-3 {
    column-gap: 1rem !important;
  }
  .column-gap-md-4 {
    column-gap: 1.5rem !important;
  }
  .column-gap-md-5 {
    column-gap: 3rem !important;
  }
  .text-md-start {
    text-align: left !important;
  }
  .text-md-end {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .float-lg-start {
    float: left !important;
  }
  .float-lg-end {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
  .object-fit-lg-contain {
    object-fit: contain !important;
  }
  .object-fit-lg-cover {
    object-fit: cover !important;
  }
  .object-fit-lg-fill {
    object-fit: fill !important;
  }
  .object-fit-lg-scale {
    object-fit: scale-down !important;
  }
  .object-fit-lg-none {
    object-fit: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-inline-grid {
    display: inline-grid !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
  .d-lg-none {
    display: none !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
  .order-lg-first {
    order: -1 !important;
  }
  .order-lg-0 {
    order: 0 !important;
  }
  .order-lg-1 {
    order: 1 !important;
  }
  .order-lg-2 {
    order: 2 !important;
  }
  .order-lg-3 {
    order: 3 !important;
  }
  .order-lg-4 {
    order: 4 !important;
  }
  .order-lg-5 {
    order: 5 !important;
  }
  .order-lg-last {
    order: 6 !important;
  }
  .m-lg-0 {
    margin: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .me-lg-0 {
    margin-right: 0 !important;
  }
  .me-lg-1 {
    margin-right: 0.25rem !important;
  }
  .me-lg-2 {
    margin-right: 0.5rem !important;
  }
  .me-lg-3 {
    margin-right: 1rem !important;
  }
  .me-lg-4 {
    margin-right: 1.5rem !important;
  }
  .me-lg-5 {
    margin-right: 3rem !important;
  }
  .me-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .ms-lg-0 {
    margin-left: 0 !important;
  }
  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }
  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }
  .ms-lg-3 {
    margin-left: 1rem !important;
  }
  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }
  .ms-lg-5 {
    margin-left: 3rem !important;
  }
  .ms-lg-auto {
    margin-left: auto !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pt-lg-5 {
    padding-top: 3rem !important;
  }
  .pe-lg-0 {
    padding-right: 0 !important;
  }
  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pe-lg-3 {
    padding-right: 1rem !important;
  }
  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pe-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  .ps-lg-0 {
    padding-left: 0 !important;
  }
  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }
  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }
  .ps-lg-3 {
    padding-left: 1rem !important;
  }
  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
  .gap-lg-0 {
    gap: 0 !important;
  }
  .gap-lg-1 {
    gap: 0.25rem !important;
  }
  .gap-lg-2 {
    gap: 0.5rem !important;
  }
  .gap-lg-3 {
    gap: 1rem !important;
  }
  .gap-lg-4 {
    gap: 1.5rem !important;
  }
  .gap-lg-5 {
    gap: 3rem !important;
  }
  .row-gap-lg-0 {
    row-gap: 0 !important;
  }
  .row-gap-lg-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-lg-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-lg-3 {
    row-gap: 1rem !important;
  }
  .row-gap-lg-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-lg-5 {
    row-gap: 3rem !important;
  }
  .column-gap-lg-0 {
    column-gap: 0 !important;
  }
  .column-gap-lg-1 {
    column-gap: 0.25rem !important;
  }
  .column-gap-lg-2 {
    column-gap: 0.5rem !important;
  }
  .column-gap-lg-3 {
    column-gap: 1rem !important;
  }
  .column-gap-lg-4 {
    column-gap: 1.5rem !important;
  }
  .column-gap-lg-5 {
    column-gap: 3rem !important;
  }
  .text-lg-start {
    text-align: left !important;
  }
  .text-lg-end {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-start {
    float: left !important;
  }
  .float-xl-end {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
  .object-fit-xl-contain {
    object-fit: contain !important;
  }
  .object-fit-xl-cover {
    object-fit: cover !important;
  }
  .object-fit-xl-fill {
    object-fit: fill !important;
  }
  .object-fit-xl-scale {
    object-fit: scale-down !important;
  }
  .object-fit-xl-none {
    object-fit: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-inline-grid {
    display: inline-grid !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
  .d-xl-none {
    display: none !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
  .order-xl-first {
    order: -1 !important;
  }
  .order-xl-0 {
    order: 0 !important;
  }
  .order-xl-1 {
    order: 1 !important;
  }
  .order-xl-2 {
    order: 2 !important;
  }
  .order-xl-3 {
    order: 3 !important;
  }
  .order-xl-4 {
    order: 4 !important;
  }
  .order-xl-5 {
    order: 5 !important;
  }
  .order-xl-last {
    order: 6 !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xl-5 {
    margin-top: 3rem !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .me-xl-0 {
    margin-right: 0 !important;
  }
  .me-xl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xl-3 {
    margin-right: 1rem !important;
  }
  .me-xl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xl-5 {
    margin-right: 3rem !important;
  }
  .me-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .ms-xl-0 {
    margin-left: 0 !important;
  }
  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xl-3 {
    margin-left: 1rem !important;
  }
  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xl-5 {
    margin-left: 3rem !important;
  }
  .ms-xl-auto {
    margin-left: auto !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xl-5 {
    padding-top: 3rem !important;
  }
  .pe-xl-0 {
    padding-right: 0 !important;
  }
  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xl-3 {
    padding-right: 1rem !important;
  }
  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xl-0 {
    padding-left: 0 !important;
  }
  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xl-3 {
    padding-left: 1rem !important;
  }
  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xl-5 {
    padding-left: 3rem !important;
  }
  .gap-xl-0 {
    gap: 0 !important;
  }
  .gap-xl-1 {
    gap: 0.25rem !important;
  }
  .gap-xl-2 {
    gap: 0.5rem !important;
  }
  .gap-xl-3 {
    gap: 1rem !important;
  }
  .gap-xl-4 {
    gap: 1.5rem !important;
  }
  .gap-xl-5 {
    gap: 3rem !important;
  }
  .row-gap-xl-0 {
    row-gap: 0 !important;
  }
  .row-gap-xl-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-xl-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-xl-3 {
    row-gap: 1rem !important;
  }
  .row-gap-xl-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-xl-5 {
    row-gap: 3rem !important;
  }
  .column-gap-xl-0 {
    column-gap: 0 !important;
  }
  .column-gap-xl-1 {
    column-gap: 0.25rem !important;
  }
  .column-gap-xl-2 {
    column-gap: 0.5rem !important;
  }
  .column-gap-xl-3 {
    column-gap: 1rem !important;
  }
  .column-gap-xl-4 {
    column-gap: 1.5rem !important;
  }
  .column-gap-xl-5 {
    column-gap: 3rem !important;
  }
  .text-xl-start {
    text-align: left !important;
  }
  .text-xl-end {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1400px) {
  .float-xxl-start {
    float: left !important;
  }
  .float-xxl-end {
    float: right !important;
  }
  .float-xxl-none {
    float: none !important;
  }
  .object-fit-xxl-contain {
    object-fit: contain !important;
  }
  .object-fit-xxl-cover {
    object-fit: cover !important;
  }
  .object-fit-xxl-fill {
    object-fit: fill !important;
  }
  .object-fit-xxl-scale {
    object-fit: scale-down !important;
  }
  .object-fit-xxl-none {
    object-fit: none !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-inline-grid {
    display: inline-grid !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
  .d-xxl-none {
    display: none !important;
  }
  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xxl-row {
    flex-direction: row !important;
  }
  .flex-xxl-column {
    flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    justify-content: center !important;
  }
  .justify-content-xxl-between {
    justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    justify-content: space-around !important;
  }
  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }
  .align-items-xxl-start {
    align-items: flex-start !important;
  }
  .align-items-xxl-end {
    align-items: flex-end !important;
  }
  .align-items-xxl-center {
    align-items: center !important;
  }
  .align-items-xxl-baseline {
    align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    align-items: stretch !important;
  }
  .align-content-xxl-start {
    align-content: flex-start !important;
  }
  .align-content-xxl-end {
    align-content: flex-end !important;
  }
  .align-content-xxl-center {
    align-content: center !important;
  }
  .align-content-xxl-between {
    align-content: space-between !important;
  }
  .align-content-xxl-around {
    align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    align-content: stretch !important;
  }
  .align-self-xxl-auto {
    align-self: auto !important;
  }
  .align-self-xxl-start {
    align-self: flex-start !important;
  }
  .align-self-xxl-end {
    align-self: flex-end !important;
  }
  .align-self-xxl-center {
    align-self: center !important;
  }
  .align-self-xxl-baseline {
    align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
  .order-xxl-first {
    order: -1 !important;
  }
  .order-xxl-0 {
    order: 0 !important;
  }
  .order-xxl-1 {
    order: 1 !important;
  }
  .order-xxl-2 {
    order: 2 !important;
  }
  .order-xxl-3 {
    order: 3 !important;
  }
  .order-xxl-4 {
    order: 4 !important;
  }
  .order-xxl-5 {
    order: 5 !important;
  }
  .order-xxl-last {
    order: 6 !important;
  }
  .m-xxl-0 {
    margin: 0 !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 3rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }
  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }
  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }
  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }
  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
  .mt-xxl-0 {
    margin-top: 0 !important;
  }
  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mt-xxl-3 {
    margin-top: 1rem !important;
  }
  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .mt-xxl-5 {
    margin-top: 3rem !important;
  }
  .mt-xxl-auto {
    margin-top: auto !important;
  }
  .me-xxl-0 {
    margin-right: 0 !important;
  }
  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .me-xxl-3 {
    margin-right: 1rem !important;
  }
  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .me-xxl-5 {
    margin-right: 3rem !important;
  }
  .me-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }
  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .mb-xxl-auto {
    margin-bottom: auto !important;
  }
  .ms-xxl-0 {
    margin-left: 0 !important;
  }
  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .ms-xxl-3 {
    margin-left: 1rem !important;
  }
  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .ms-xxl-5 {
    margin-left: 3rem !important;
  }
  .ms-xxl-auto {
    margin-left: auto !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .p-xxl-3 {
    padding: 1rem !important;
  }
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .p-xxl-5 {
    padding: 3rem !important;
  }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }
  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }
  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }
  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }
  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  .pt-xxl-0 {
    padding-top: 0 !important;
  }
  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pt-xxl-3 {
    padding-top: 1rem !important;
  }
  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .pt-xxl-5 {
    padding-top: 3rem !important;
  }
  .pe-xxl-0 {
    padding-right: 0 !important;
  }
  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pe-xxl-3 {
    padding-right: 1rem !important;
  }
  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pe-xxl-5 {
    padding-right: 3rem !important;
  }
  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }
  .ps-xxl-0 {
    padding-left: 0 !important;
  }
  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .ps-xxl-3 {
    padding-left: 1rem !important;
  }
  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .ps-xxl-5 {
    padding-left: 3rem !important;
  }
  .gap-xxl-0 {
    gap: 0 !important;
  }
  .gap-xxl-1 {
    gap: 0.25rem !important;
  }
  .gap-xxl-2 {
    gap: 0.5rem !important;
  }
  .gap-xxl-3 {
    gap: 1rem !important;
  }
  .gap-xxl-4 {
    gap: 1.5rem !important;
  }
  .gap-xxl-5 {
    gap: 3rem !important;
  }
  .row-gap-xxl-0 {
    row-gap: 0 !important;
  }
  .row-gap-xxl-1 {
    row-gap: 0.25rem !important;
  }
  .row-gap-xxl-2 {
    row-gap: 0.5rem !important;
  }
  .row-gap-xxl-3 {
    row-gap: 1rem !important;
  }
  .row-gap-xxl-4 {
    row-gap: 1.5rem !important;
  }
  .row-gap-xxl-5 {
    row-gap: 3rem !important;
  }
  .column-gap-xxl-0 {
    column-gap: 0 !important;
  }
  .column-gap-xxl-1 {
    column-gap: 0.25rem !important;
  }
  .column-gap-xxl-2 {
    column-gap: 0.5rem !important;
  }
  .column-gap-xxl-3 {
    column-gap: 1rem !important;
  }
  .column-gap-xxl-4 {
    column-gap: 1.5rem !important;
  }
  .column-gap-xxl-5 {
    column-gap: 3rem !important;
  }
  .text-xxl-start {
    text-align: left !important;
  }
  .text-xxl-end {
    text-align: right !important;
  }
  .text-xxl-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .fs-1 {
    font-size: 2.5rem !important;
  }
  .fs-2 {
    font-size: 2rem !important;
  }
  .fs-3 {
    font-size: 1.75rem !important;
  }
  .fs-4 {
    font-size: 1.5rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-grid {
    display: grid !important;
  }
  .d-print-inline-grid {
    display: inline-grid !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
  .d-print-none {
    display: none !important;
  }
}
/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[13].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[13].use[3]!./node_modules/next/dist/build/webpack/loaders/resolve-url-loader/index.js??ruleSet[1].rules[14].oneOf[13].use[4]!./node_modules/next/dist/compiled/sass-loader/cjs.js??ruleSet[1].rules[14].oneOf[13].use[5]!./public/assets/css/default-icons.css ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
@font-face {
  font-family: "flaticon_tg_default";
  font-display: swap;
  src: url(/_next/static/media/flaticon_tg_default.e16705e9.ttf) format("truetype"), url(/_next/static/media/flaticon_tg_default.d49ca20d.woff) format("woff"), url(/_next/static/media/flaticon_tg_default.db877af3.woff2) format("woff2"), url(/_next/static/media/flaticon_tg_default.28681198.eot) format("embedded-opentype"), url(/_next/static/media/flaticon_tg_default.1e59deba.svg) format("svg");
}
i[class^=tg-flaticon-]:before, i[class*=" tg-flaticon-"]:before {
  font-family: flaticon_tg_default !important;
  font-style: normal;
  font-weight: normal !important;
  font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class*=tg-flaticon-] {
  display: block;
  line-height: 0;
}

.tg-flaticon-menu:before {
  content: "\f101";
}

.tg-flaticon-menu-1:before {
  content: "\f102";
}

.tg-flaticon-dots-menu:before {
  content: "\f103";
}

.tg-flaticon-menu-2:before {
  content: "\f104";
}

.tg-flaticon-close:before {
  content: "\f105";
}

.tg-flaticon-close-1:before {
  content: "\f106";
}

.tg-flaticon-arrowhead-up:before {
  content: "\f107";
}

.tg-flaticon-arrow-up:before {
  content: "\f108";
}

.tg-flaticon-plus:before {
  content: "\f109";
}

.tg-flaticon-minus-sign:before {
  content: "\f10a";
}
/*!*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[13].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[13].use[3]!./node_modules/next/dist/build/webpack/loaders/resolve-url-loader/index.js??ruleSet[1].rules[14].oneOf[13].use[4]!./node_modules/next/dist/compiled/sass-loader/cjs.js??ruleSet[1].rules[14].oneOf[13].use[5]!./public/assets/css/flaticon-skillgro-new.css ***!
  \*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/*!
*    ______ _       _   _
*    |  ____| |     | | (_)
*    | |__  | | __  | |_ _  ___ ___  _ __
*    |  __| | |/ _` | __| |/ __/ _ \| '_ \
*    | |    | | (_| | |_| | (_| (_) | | | |
*    |_|    |_|\__,_|\__|_|\___\___/|_| |_|
*
*         https://www.skillgro.com
*/
/*  TODO ICONS HERE */
@font-face {
  font-family: "flaticon-skillgro-new";
  font-display: swap;
  src: url(/_next/static/media/flaticon_skillgro.c8697021.woff2) format("woff2"), url(/_next/static/media/flaticon_skillgro.85696db4.woff) format("woff"), url(/_next/static/media/flaticon_skillgro.ae02038d.ttf) format("truetype");
}
i[class^=skillgro-]:before,
i[class*=" skillgro-"]:before {
  font-family: flaticon-skillgro-new !important;
  font-style: normal;
  font-weight: normal !important;
  font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class*=skillgro-] {
  display: block;
  line-height: 0;
}

.skillgro-book:before {
  content: "\f101";
}

.skillgro-lotus:before {
  content: "\f102";
}

.skillgro-text-file:before {
  content: "\f103";
}

.skillgro-happy-face:before {
  content: "\f104";
}

.skillgro-taxes:before {
  content: "\f105";
}

.skillgro-vector:before {
  content: "\f106";
}

.skillgro-notepad:before {
  content: "\f107";
}

.skillgro-writing:before {
  content: "\f108";
}

.skillgro-audio-book:before {
  content: "\f109";
}

.skillgro-financial-profit:before {
  content: "\f10a";
}

.skillgro-development-plan:before {
  content: "\f10b";
}

.skillgro-smart-watch:before {
  content: "\f10c";
}

.skillgro-browser:before {
  content: "\f10d";
}

.skillgro-heart:before {
  content: "\f10e";
}

.skillgro-mortarboard:before {
  content: "\f10f";
}

.skillgro-stone:before {
  content: "\f110";
}

.skillgro-label:before {
  content: "\f111";
}

.skillgro-menu:before {
  content: "\f112";
}

.skillgro-satchel:before {
  content: "\f113";
}

.skillgro-law:before {
  content: "\f114";
}

.skillgro-profit:before {
  content: "\f115";
}

.skillgro-ribbon:before {
  content: "\f116";
}

.skillgro-time:before {
  content: "\f117";
}

.skillgro-book-1:before {
  content: "\f118";
}

.skillgro-magnifying-glass:before {
  content: "\f119";
}

.skillgro-heart-1:before {
  content: "\f11a";
}

.skillgro-group:before {
  content: "\f11b";
}

.skillgro-review:before {
  content: "\f11c";
}

.skillgro-anahata:before {
  content: "\f11d";
}

.skillgro-search:before {
  content: "\f11e";
}

.skillgro-users:before {
  content: "\f11f";
}

.skillgro-gear:before {
  content: "\f120";
}

.skillgro-avatar:before {
  content: "\f121";
}

.skillgro-sliders:before {
  content: "\f122";
}

.skillgro-file:before {
  content: "\f123";
}

.skillgro-arrow-up:before {
  content: "\f124";
}

.skillgro-closed-book:before {
  content: "\f125";
}

.skillgro-graduation:before {
  content: "\f126";
}

.skillgro-right-arrow:before {
  content: "\f127";
}

.skillgro-heart-2:before {
  content: "\f128";
}

.skillgro-instructor:before {
  content: "\f129";
}

.skillgro-arrow-up-1:before {
  content: "\f12a";
}

.skillgro-tutorial:before {
  content: "\f12b";
}

.skillgro-lotus-flower:before {
  content: "\f12c";
}

.skillgro-bulb:before {
  content: "\f12d";
}

.skillgro-presentation:before {
  content: "\f12e";
}

.skillgro-flash:before {
  content: "\f12f";
}

.skillgro-web-programming:before {
  content: "\f130";
}

.skillgro-development:before {
  content: "\f131";
}

.skillgro-hatha-yoga:before {
  content: "\f132";
}

.skillgro-exchange:before {
  content: "\f133";
}

.skillgro-customer-support:before {
  content: "\f134";
}

.skillgro-investment:before {
  content: "\f135";
}

.skillgro-email:before {
  content: "\f136";
}

.skillgro-next:before {
  content: "\f137";
}

.skillgro-fashion:before {
  content: "\f138";
}

.skillgro-group-1:before {
  content: "\f139";
}

.skillgro-placeholder:before {
  content: "\f13a";
}

.skillgro-photo-camera:before {
  content: "\f13b";
}

.skillgro-diploma:before {
  content: "\f13c";
}

.skillgro-diploma-1:before {
  content: "\f13d";
}

.skillgro-cup:before {
  content: "\f13e";
}

.skillgro-happiness:before {
  content: "\f13f";
}

.skillgro-idea:before {
  content: "\f140";
}

.skillgro-video-camera:before {
  content: "\f141";
}

.skillgro-database:before {
  content: "\f142";
}

.skillgro-book-2:before {
  content: "\f143";
}

.skillgro-phone-call:before {
  content: "\f144";
}

.skillgro-brain:before {
  content: "\f145";
}

.skillgro-finance:before {
  content: "\f146";
}

.skillgro-webinar:before {
  content: "\f147";
}

.skillgro-atom:before {
  content: "\f148";
}

.skillgro-next-1:before {
  content: "\f149";
}

.skillgro-money-bag:before {
  content: "\f14a";
}

.skillgro-calendar:before {
  content: "\f14b";
}

.skillgro-graduating-student:before {
  content: "\f14c";
}

.skillgro-tooth:before {
  content: "\f14d";
}

.skillgro-video-tutorial:before {
  content: "\f14e";
}

.skillgro-mortarboard-1:before {
  content: "\f14f";
}

.skillgro-idea-1:before {
  content: "\f150";
}

.skillgro-presentation-1:before {
  content: "\f151";
}

.skillgro-three-o-clock-clock:before {
  content: "\f152";
}

.skillgro-customize:before {
  content: "\f153";
}

.skillgro-certificate:before {
  content: "\f154";
}

.skillgro-calculator:before {
  content: "\f155";
}

.skillgro-verified:before {
  content: "\f156";
}

.skillgro-graduated:before {
  content: "\f157";
}

.skillgro-shopping-cart:before {
  content: "\f158";
}

.skillgro-diploma-2:before {
  content: "\f159";
}

.skillgro-mat:before {
  content: "\f15a";
}

.skillgro-user:before {
  content: "\f15b";
}

.skillgro-demand:before {
  content: "\f15c";
}

.skillgro-dashboard:before {
  content: "\f15d";
}

.skillgro-bookmark-white:before {
  content: "\f15e";
}

.skillgro-question:before {
  content: "\f15f";
}

.skillgro-clipboard:before {
  content: "\f160";
}

.skillgro-marketing:before {
  content: "\f161";
}

.skillgro-chat:before {
  content: "\f162";
}

.skillgro-list:before {
  content: "\f163";
}

.skillgro-settings:before {
  content: "\f164";
}

.skillgro-logout:before {
  content: "\f165";
}

.skillgro-dollar-currency-symbol:before {
  content: "\f166";
}

.skillgro-quality:before {
  content: "\f167";
}

.skillgro-group-2:before {
  content: "\f168";
}

.skillgro-badge:before {
  content: "\f169";
}

.skillgro-twitter:before {
  content: "\f16a";
}

.skillgro-maps-and-flags:before {
  content: "\f16b";
}

.skillgro-email-1:before {
  content: "\f16c";
}

.skillgro-next-2:before {
  content: "\f16d";
}

.skillgro-back:before {
  content: "\f16e";
}

.skillgro-edit:before {
  content: "\f16f";
}

.skillgro-bin:before {
  content: "\f170";
}

.skillgro-instructor:before {
  content: "\f129";
}
/*!***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[13].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[13].use[3]!./node_modules/next/dist/build/webpack/loaders/resolve-url-loader/index.js??ruleSet[1].rules[14].oneOf[13].use[4]!./node_modules/next/dist/compiled/sass-loader/cjs.js??ruleSet[1].rules[14].oneOf[13].use[5]!./public/assets/css/flaticon-skillgro.css ***!
  \***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
@font-face {
  font-family: "flaticon_skill_grow";
  font-display: swap;
  src: url(/_next/static/media/flaticon_skill_grow.241e90f7.ttf) format("truetype"), url(/_next/static/media/flaticon_skill_grow.624faeee.woff) format("woff"), url(/_next/static/media/flaticon_skill_grow.a0b5f04d.woff2) format("woff2");
}
i[class^=flaticon-]:before,
i[class*=" flaticon-"]:before {
  font-family: flaticon_skill_grow !important;
  font-style: normal;
  font-weight: normal !important;
  font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class*=flaticon-] {
  display: block;
  line-height: 0;
}

.flaticon-search:before {
  content: "\f101";
}

.flaticon-search-1:before {
  content: "\f102";
}

.flaticon-back:before {
  content: "\f103";
}

.flaticon-arrow-right:before {
  content: "\f104";
}

.flaticon-angle-right:before {
  content: "\f105";
}

.flaticon-right:before {
  content: "\f106";
}

.flaticon-scribble:before {
  content: "\f107";
}

.flaticon-placeholder:before {
  content: "\f108";
}

.flaticon-map:before {
  content: "\f109";
}

.flaticon-calendar:before {
  content: "\f10a";
}

.flaticon-calendar-1:before {
  content: "\f10b";
}

.flaticon-clock:before {
  content: "\f10c";
}

.flaticon-book:before {
  content: "\f10d";
}

.flaticon-shopping-cart:before {
  content: "\f10e";
}

.flaticon-mortarboard:before {
  content: "\f10f";
}

.flaticon-user:before {
  content: "\f110";
}

.flaticon-user-1:before {
  content: "\f111";
}

.flaticon-graphic-design:before {
  content: "\f112";
}

.flaticon-email:before {
  content: "\f113";
}

.flaticon-investment:before {
  content: "\f114";
}

.flaticon-profit:before {
  content: "\f115";
}

.flaticon-fashion:before {
  content: "\f116";
}

.flaticon-web-design:before {
  content: "\f117";
}

.flaticon-data-management:before {
  content: "\f118";
}

.flaticon-interaction:before {
  content: "\f119";
}

.flaticon-coding:before {
  content: "\f11a";
}

.flaticon-rating-stars:before {
  content: "\f11b";
}

.flaticon-webinar:before {
  content: "\f11c";
}

.flaticon-certificate:before {
  content: "\f11d";
}
/*!*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[13].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[13].use[3]!./node_modules/next/dist/build/webpack/loaders/resolve-url-loader/index.js??ruleSet[1].rules[14].oneOf[13].use[4]!./node_modules/next/dist/compiled/sass-loader/cjs.js??ruleSet[1].rules[14].oneOf[13].use[5]!./public/assets/css/fontawesome-all.min.css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/*!
 * Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa,
.fab,
.fad,
.fal,
.far,
.fas {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-feature-settings: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -0.0667em;
}

.fa-xs {
  font-size: 0.75em;
}

.fa-sm {
  font-size: 0.875em;
}

.fa-1x {
  font-size: 1em;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-6x {
  font-size: 6em;
}

.fa-7x {
  font-size: 7em;
}

.fa-8x {
  font-size: 8em;
}

.fa-9x {
  font-size: 9em;
}

.fa-10x {
  font-size: 10em;
}

.fa-fw {
  text-align: center;
  width: 1.25em;
}

.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0;
}

.fa-ul > li {
  position: relative;
}

.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit;
}

.fa-border {
  border: 0.08em solid #eee;
  border-radius: 0.1em;
  padding: 0.2em 0.25em 0.15em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left,
.fab.fa-pull-left,
.fal.fa-pull-left,
.far.fa-pull-left,
.fas.fa-pull-left {
  margin-right: 0.3em;
}

.fa.fa-pull-right,
.fab.fa-pull-right,
.fal.fa-pull-right,
.far.fa-pull-right,
.fas.fa-pull-right {
  margin-left: 0.3em;
}

.fa-spin {
  animation: fa-spin 2s linear infinite;
}

.fa-pulse {
  animation: fa-spin 1s steps(8) infinite;
}
@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  transform: scaleX(-1);
}

.fa-flip-vertical {
  transform: scaleY(-1);
}

.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical,
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
}

.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical {
  transform: scale(-1);
}

:root .fa-flip-both,
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270 {
  filter: none;
}

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em;
}

.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

.fa-500px:before {
  content: "\f26e";
}

.fa-accessible-icon:before {
  content: "\f368";
}

.fa-accusoft:before {
  content: "\f369";
}

.fa-acquisitions-incorporated:before {
  content: "\f6af";
}

.fa-ad:before {
  content: "\f641";
}

.fa-address-book:before {
  content: "\f2b9";
}

.fa-address-card:before {
  content: "\f2bb";
}

.fa-adjust:before {
  content: "\f042";
}

.fa-adn:before {
  content: "\f170";
}

.fa-adversal:before {
  content: "\f36a";
}

.fa-affiliatetheme:before {
  content: "\f36b";
}

.fa-air-freshener:before {
  content: "\f5d0";
}

.fa-airbnb:before {
  content: "\f834";
}

.fa-algolia:before {
  content: "\f36c";
}

.fa-align-center:before {
  content: "\f037";
}

.fa-align-justify:before {
  content: "\f039";
}

.fa-align-left:before {
  content: "\f036";
}

.fa-align-right:before {
  content: "\f038";
}

.fa-alipay:before {
  content: "\f642";
}

.fa-allergies:before {
  content: "\f461";
}

.fa-amazon:before {
  content: "\f270";
}

.fa-amazon-pay:before {
  content: "\f42c";
}

.fa-ambulance:before {
  content: "\f0f9";
}

.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}

.fa-amilia:before {
  content: "\f36d";
}

.fa-anchor:before {
  content: "\f13d";
}

.fa-android:before {
  content: "\f17b";
}

.fa-angellist:before {
  content: "\f209";
}

.fa-angle-double-down:before {
  content: "\f103";
}

.fa-angle-double-left:before {
  content: "\f100";
}

.fa-angle-double-right:before {
  content: "\f101";
}

.fa-angle-double-up:before {
  content: "\f102";
}

.fa-angle-down:before {
  content: "\f107";
}

.fa-angle-left:before {
  content: "\f104";
}

.fa-angle-right:before {
  content: "\f105";
}

.fa-angle-up:before {
  content: "\f106";
}

.fa-angry:before {
  content: "\f556";
}

.fa-angrycreative:before {
  content: "\f36e";
}

.fa-angular:before {
  content: "\f420";
}

.fa-ankh:before {
  content: "\f644";
}

.fa-app-store:before {
  content: "\f36f";
}

.fa-app-store-ios:before {
  content: "\f370";
}

.fa-apper:before {
  content: "\f371";
}

.fa-apple:before {
  content: "\f179";
}

.fa-apple-alt:before {
  content: "\f5d1";
}

.fa-apple-pay:before {
  content: "\f415";
}

.fa-archive:before {
  content: "\f187";
}

.fa-archway:before {
  content: "\f557";
}

.fa-arrow-alt-circle-down:before {
  content: "\f358";
}

.fa-arrow-alt-circle-left:before {
  content: "\f359";
}

.fa-arrow-alt-circle-right:before {
  content: "\f35a";
}

.fa-arrow-alt-circle-up:before {
  content: "\f35b";
}

.fa-arrow-circle-down:before {
  content: "\f0ab";
}

.fa-arrow-circle-left:before {
  content: "\f0a8";
}

.fa-arrow-circle-right:before {
  content: "\f0a9";
}

.fa-arrow-circle-up:before {
  content: "\f0aa";
}

.fa-arrow-down:before {
  content: "\f063";
}

.fa-arrow-left:before {
  content: "\f060";
}

.fa-arrow-right:before {
  content: "\f061";
}

.fa-arrow-up:before {
  content: "\f062";
}

.fa-arrows-alt:before {
  content: "\f0b2";
}

.fa-arrows-alt-h:before {
  content: "\f337";
}

.fa-arrows-alt-v:before {
  content: "\f338";
}

.fa-artstation:before {
  content: "\f77a";
}

.fa-assistive-listening-systems:before {
  content: "\f2a2";
}

.fa-asterisk:before {
  content: "\f069";
}

.fa-asymmetrik:before {
  content: "\f372";
}

.fa-at:before {
  content: "\f1fa";
}

.fa-atlas:before {
  content: "\f558";
}

.fa-atlassian:before {
  content: "\f77b";
}

.fa-atom:before {
  content: "\f5d2";
}

.fa-audible:before {
  content: "\f373";
}

.fa-audio-description:before {
  content: "\f29e";
}

.fa-autoprefixer:before {
  content: "\f41c";
}

.fa-avianex:before {
  content: "\f374";
}

.fa-aviato:before {
  content: "\f421";
}

.fa-award:before {
  content: "\f559";
}

.fa-aws:before {
  content: "\f375";
}

.fa-baby:before {
  content: "\f77c";
}

.fa-baby-carriage:before {
  content: "\f77d";
}

.fa-backspace:before {
  content: "\f55a";
}

.fa-backward:before {
  content: "\f04a";
}

.fa-bacon:before {
  content: "\f7e5";
}

.fa-bacteria:before {
  content: "\e059";
}

.fa-bacterium:before {
  content: "\e05a";
}

.fa-bahai:before {
  content: "\f666";
}

.fa-balance-scale:before {
  content: "\f24e";
}

.fa-balance-scale-left:before {
  content: "\f515";
}

.fa-balance-scale-right:before {
  content: "\f516";
}

.fa-ban:before {
  content: "\f05e";
}

.fa-band-aid:before {
  content: "\f462";
}

.fa-bandcamp:before {
  content: "\f2d5";
}

.fa-barcode:before {
  content: "\f02a";
}

.fa-bars:before {
  content: "\f0c9";
}

.fa-baseball-ball:before {
  content: "\f433";
}

.fa-basketball-ball:before {
  content: "\f434";
}

.fa-bath:before {
  content: "\f2cd";
}

.fa-battery-empty:before {
  content: "\f244";
}

.fa-battery-full:before {
  content: "\f240";
}

.fa-battery-half:before {
  content: "\f242";
}

.fa-battery-quarter:before {
  content: "\f243";
}

.fa-battery-three-quarters:before {
  content: "\f241";
}

.fa-battle-net:before {
  content: "\f835";
}

.fa-bed:before {
  content: "\f236";
}

.fa-beer:before {
  content: "\f0fc";
}

.fa-behance:before {
  content: "\f1b4";
}

.fa-behance-square:before {
  content: "\f1b5";
}

.fa-bell:before {
  content: "\f0f3";
}

.fa-bell-slash:before {
  content: "\f1f6";
}

.fa-bezier-curve:before {
  content: "\f55b";
}

.fa-bible:before {
  content: "\f647";
}

.fa-bicycle:before {
  content: "\f206";
}

.fa-biking:before {
  content: "\f84a";
}

.fa-bimobject:before {
  content: "\f378";
}

.fa-binoculars:before {
  content: "\f1e5";
}

.fa-biohazard:before {
  content: "\f780";
}

.fa-birthday-cake:before {
  content: "\f1fd";
}

.fa-bitbucket:before {
  content: "\f171";
}

.fa-bitcoin:before {
  content: "\f379";
}

.fa-bity:before {
  content: "\f37a";
}

.fa-black-tie:before {
  content: "\f27e";
}

.fa-blackberry:before {
  content: "\f37b";
}

.fa-blender:before {
  content: "\f517";
}

.fa-blender-phone:before {
  content: "\f6b6";
}

.fa-blind:before {
  content: "\f29d";
}

.fa-blog:before {
  content: "\f781";
}

.fa-blogger:before {
  content: "\f37c";
}

.fa-blogger-b:before {
  content: "\f37d";
}

.fa-bluetooth:before {
  content: "\f293";
}

.fa-bluetooth-b:before {
  content: "\f294";
}

.fa-bold:before {
  content: "\f032";
}

.fa-bolt:before {
  content: "\f0e7";
}

.fa-bomb:before {
  content: "\f1e2";
}

.fa-bone:before {
  content: "\f5d7";
}

.fa-bong:before {
  content: "\f55c";
}

.fa-book:before {
  content: "\f02d";
}

.fa-book-dead:before {
  content: "\f6b7";
}

.fa-book-medical:before {
  content: "\f7e6";
}

.fa-book-open:before {
  content: "\f518";
}

.fa-book-reader:before {
  content: "\f5da";
}

.fa-bookmark:before {
  content: "\f02e";
}

.fa-bootstrap:before {
  content: "\f836";
}

.fa-border-all:before {
  content: "\f84c";
}

.fa-border-none:before {
  content: "\f850";
}

.fa-border-style:before {
  content: "\f853";
}

.fa-bowling-ball:before {
  content: "\f436";
}

.fa-box:before {
  content: "\f466";
}

.fa-box-open:before {
  content: "\f49e";
}

.fa-box-tissue:before {
  content: "\e05b";
}

.fa-boxes:before {
  content: "\f468";
}

.fa-braille:before {
  content: "\f2a1";
}

.fa-brain:before {
  content: "\f5dc";
}

.fa-bread-slice:before {
  content: "\f7ec";
}

.fa-briefcase:before {
  content: "\f0b1";
}

.fa-briefcase-medical:before {
  content: "\f469";
}

.fa-broadcast-tower:before {
  content: "\f519";
}

.fa-broom:before {
  content: "\f51a";
}

.fa-brush:before {
  content: "\f55d";
}

.fa-btc:before {
  content: "\f15a";
}

.fa-buffer:before {
  content: "\f837";
}

.fa-bug:before {
  content: "\f188";
}

.fa-building:before {
  content: "\f1ad";
}

.fa-bullhorn:before {
  content: "\f0a1";
}

.fa-bullseye:before {
  content: "\f140";
}

.fa-burn:before {
  content: "\f46a";
}

.fa-buromobelexperte:before {
  content: "\f37f";
}

.fa-bus:before {
  content: "\f207";
}

.fa-bus-alt:before {
  content: "\f55e";
}

.fa-business-time:before {
  content: "\f64a";
}

.fa-buy-n-large:before {
  content: "\f8a6";
}

.fa-buysellads:before {
  content: "\f20d";
}

.fa-calculator:before {
  content: "\f1ec";
}

.fa-calendar:before {
  content: "\f133";
}

.fa-calendar-alt:before {
  content: "\f073";
}

.fa-calendar-check:before {
  content: "\f274";
}

.fa-calendar-day:before {
  content: "\f783";
}

.fa-calendar-minus:before {
  content: "\f272";
}

.fa-calendar-plus:before {
  content: "\f271";
}

.fa-calendar-times:before {
  content: "\f273";
}

.fa-calendar-week:before {
  content: "\f784";
}

.fa-camera:before {
  content: "\f030";
}

.fa-camera-retro:before {
  content: "\f083";
}

.fa-campground:before {
  content: "\f6bb";
}

.fa-canadian-maple-leaf:before {
  content: "\f785";
}

.fa-candy-cane:before {
  content: "\f786";
}

.fa-cannabis:before {
  content: "\f55f";
}

.fa-capsules:before {
  content: "\f46b";
}

.fa-car:before {
  content: "\f1b9";
}

.fa-car-alt:before {
  content: "\f5de";
}

.fa-car-battery:before {
  content: "\f5df";
}

.fa-car-crash:before {
  content: "\f5e1";
}

.fa-car-side:before {
  content: "\f5e4";
}

.fa-caravan:before {
  content: "\f8ff";
}

.fa-caret-down:before {
  content: "\f0d7";
}

.fa-caret-left:before {
  content: "\f0d9";
}

.fa-caret-right:before {
  content: "\f0da";
}

.fa-caret-square-down:before {
  content: "\f150";
}

.fa-caret-square-left:before {
  content: "\f191";
}

.fa-caret-square-right:before {
  content: "\f152";
}

.fa-caret-square-up:before {
  content: "\f151";
}

.fa-caret-up:before {
  content: "\f0d8";
}

.fa-carrot:before {
  content: "\f787";
}

.fa-cart-arrow-down:before {
  content: "\f218";
}

.fa-cart-plus:before {
  content: "\f217";
}

.fa-cash-register:before {
  content: "\f788";
}

.fa-cat:before {
  content: "\f6be";
}

.fa-cc-amazon-pay:before {
  content: "\f42d";
}

.fa-cc-amex:before {
  content: "\f1f3";
}

.fa-cc-apple-pay:before {
  content: "\f416";
}

.fa-cc-diners-club:before {
  content: "\f24c";
}

.fa-cc-discover:before {
  content: "\f1f2";
}

.fa-cc-jcb:before {
  content: "\f24b";
}

.fa-cc-mastercard:before {
  content: "\f1f1";
}

.fa-cc-paypal:before {
  content: "\f1f4";
}

.fa-cc-stripe:before {
  content: "\f1f5";
}

.fa-cc-visa:before {
  content: "\f1f0";
}

.fa-centercode:before {
  content: "\f380";
}

.fa-centos:before {
  content: "\f789";
}

.fa-certificate:before {
  content: "\f0a3";
}

.fa-chair:before {
  content: "\f6c0";
}

.fa-chalkboard:before {
  content: "\f51b";
}

.fa-chalkboard-teacher:before {
  content: "\f51c";
}

.fa-charging-station:before {
  content: "\f5e7";
}

.fa-chart-area:before {
  content: "\f1fe";
}

.fa-chart-bar:before {
  content: "\f080";
}

.fa-chart-line:before {
  content: "\f201";
}

.fa-chart-pie:before {
  content: "\f200";
}

.fa-check:before {
  content: "\f00c";
}

.fa-check-circle:before {
  content: "\f058";
}

.fa-check-double:before {
  content: "\f560";
}

.fa-check-square:before {
  content: "\f14a";
}

.fa-cheese:before {
  content: "\f7ef";
}

.fa-chess:before {
  content: "\f439";
}

.fa-chess-bishop:before {
  content: "\f43a";
}

.fa-chess-board:before {
  content: "\f43c";
}

.fa-chess-king:before {
  content: "\f43f";
}

.fa-chess-knight:before {
  content: "\f441";
}

.fa-chess-pawn:before {
  content: "\f443";
}

.fa-chess-queen:before {
  content: "\f445";
}

.fa-chess-rook:before {
  content: "\f447";
}

.fa-chevron-circle-down:before {
  content: "\f13a";
}

.fa-chevron-circle-left:before {
  content: "\f137";
}

.fa-chevron-circle-right:before {
  content: "\f138";
}

.fa-chevron-circle-up:before {
  content: "\f139";
}

.fa-chevron-down:before {
  content: "\f078";
}

.fa-chevron-left:before {
  content: "\f053";
}

.fa-chevron-right:before {
  content: "\f054";
}

.fa-chevron-up:before {
  content: "\f077";
}

.fa-child:before {
  content: "\f1ae";
}

.fa-chrome:before {
  content: "\f268";
}

.fa-chromecast:before {
  content: "\f838";
}

.fa-church:before {
  content: "\f51d";
}

.fa-circle:before {
  content: "\f111";
}

.fa-circle-notch:before {
  content: "\f1ce";
}

.fa-city:before {
  content: "\f64f";
}

.fa-clinic-medical:before {
  content: "\f7f2";
}

.fa-clipboard:before {
  content: "\f328";
}

.fa-clipboard-check:before {
  content: "\f46c";
}

.fa-clipboard-list:before {
  content: "\f46d";
}

.fa-clock:before {
  content: "\f017";
}

.fa-clone:before {
  content: "\f24d";
}

.fa-closed-captioning:before {
  content: "\f20a";
}

.fa-cloud:before {
  content: "\f0c2";
}

.fa-cloud-download-alt:before {
  content: "\f381";
}

.fa-cloud-meatball:before {
  content: "\f73b";
}

.fa-cloud-moon:before {
  content: "\f6c3";
}

.fa-cloud-moon-rain:before {
  content: "\f73c";
}

.fa-cloud-rain:before {
  content: "\f73d";
}

.fa-cloud-showers-heavy:before {
  content: "\f740";
}

.fa-cloud-sun:before {
  content: "\f6c4";
}

.fa-cloud-sun-rain:before {
  content: "\f743";
}

.fa-cloud-upload-alt:before {
  content: "\f382";
}

.fa-cloudflare:before {
  content: "\e07d";
}

.fa-cloudscale:before {
  content: "\f383";
}

.fa-cloudsmith:before {
  content: "\f384";
}

.fa-cloudversify:before {
  content: "\f385";
}

.fa-cocktail:before {
  content: "\f561";
}

.fa-code:before {
  content: "\f121";
}

.fa-code-branch:before {
  content: "\f126";
}

.fa-codepen:before {
  content: "\f1cb";
}

.fa-codiepie:before {
  content: "\f284";
}

.fa-coffee:before {
  content: "\f0f4";
}

.fa-cog:before {
  content: "\f013";
}

.fa-cogs:before {
  content: "\f085";
}

.fa-coins:before {
  content: "\f51e";
}

.fa-columns:before {
  content: "\f0db";
}

.fa-comment:before {
  content: "\f075";
}

.fa-comment-alt:before {
  content: "\f27a";
}

.fa-comment-dollar:before {
  content: "\f651";
}

.fa-comment-dots:before {
  content: "\f4ad";
}

.fa-comment-medical:before {
  content: "\f7f5";
}

.fa-comment-slash:before {
  content: "\f4b3";
}

.fa-comments:before {
  content: "\f086";
}

.fa-comments-dollar:before {
  content: "\f653";
}

.fa-compact-disc:before {
  content: "\f51f";
}

.fa-compass:before {
  content: "\f14e";
}

.fa-compress:before {
  content: "\f066";
}

.fa-compress-alt:before {
  content: "\f422";
}

.fa-compress-arrows-alt:before {
  content: "\f78c";
}

.fa-concierge-bell:before {
  content: "\f562";
}

.fa-confluence:before {
  content: "\f78d";
}

.fa-connectdevelop:before {
  content: "\f20e";
}

.fa-contao:before {
  content: "\f26d";
}

.fa-cookie:before {
  content: "\f563";
}

.fa-cookie-bite:before {
  content: "\f564";
}

.fa-copy:before {
  content: "\f0c5";
}

.fa-copyright:before {
  content: "\f1f9";
}

.fa-cotton-bureau:before {
  content: "\f89e";
}

.fa-couch:before {
  content: "\f4b8";
}

.fa-cpanel:before {
  content: "\f388";
}

.fa-creative-commons:before {
  content: "\f25e";
}

.fa-creative-commons-by:before {
  content: "\f4e7";
}

.fa-creative-commons-nc:before {
  content: "\f4e8";
}

.fa-creative-commons-nc-eu:before {
  content: "\f4e9";
}

.fa-creative-commons-nc-jp:before {
  content: "\f4ea";
}

.fa-creative-commons-nd:before {
  content: "\f4eb";
}

.fa-creative-commons-pd:before {
  content: "\f4ec";
}

.fa-creative-commons-pd-alt:before {
  content: "\f4ed";
}

.fa-creative-commons-remix:before {
  content: "\f4ee";
}

.fa-creative-commons-sa:before {
  content: "\f4ef";
}

.fa-creative-commons-sampling:before {
  content: "\f4f0";
}

.fa-creative-commons-sampling-plus:before {
  content: "\f4f1";
}

.fa-creative-commons-share:before {
  content: "\f4f2";
}

.fa-creative-commons-zero:before {
  content: "\f4f3";
}

.fa-credit-card:before {
  content: "\f09d";
}

.fa-critical-role:before {
  content: "\f6c9";
}

.fa-crop:before {
  content: "\f125";
}

.fa-crop-alt:before {
  content: "\f565";
}

.fa-cross:before {
  content: "\f654";
}

.fa-crosshairs:before {
  content: "\f05b";
}

.fa-crow:before {
  content: "\f520";
}

.fa-crown:before {
  content: "\f521";
}

.fa-crutch:before {
  content: "\f7f7";
}

.fa-css3:before {
  content: "\f13c";
}

.fa-css3-alt:before {
  content: "\f38b";
}

.fa-cube:before {
  content: "\f1b2";
}

.fa-cubes:before {
  content: "\f1b3";
}

.fa-cut:before {
  content: "\f0c4";
}

.fa-cuttlefish:before {
  content: "\f38c";
}

.fa-d-and-d:before {
  content: "\f38d";
}

.fa-d-and-d-beyond:before {
  content: "\f6ca";
}

.fa-dailymotion:before {
  content: "\e052";
}

.fa-dashcube:before {
  content: "\f210";
}

.fa-database:before {
  content: "\f1c0";
}

.fa-deaf:before {
  content: "\f2a4";
}

.fa-deezer:before {
  content: "\e077";
}

.fa-delicious:before {
  content: "\f1a5";
}

.fa-democrat:before {
  content: "\f747";
}

.fa-deploydog:before {
  content: "\f38e";
}

.fa-deskpro:before {
  content: "\f38f";
}

.fa-desktop:before {
  content: "\f108";
}

.fa-dev:before {
  content: "\f6cc";
}

.fa-deviantart:before {
  content: "\f1bd";
}

.fa-dharmachakra:before {
  content: "\f655";
}

.fa-dhl:before {
  content: "\f790";
}

.fa-diagnoses:before {
  content: "\f470";
}

.fa-diaspora:before {
  content: "\f791";
}

.fa-dice:before {
  content: "\f522";
}

.fa-dice-d20:before {
  content: "\f6cf";
}

.fa-dice-d6:before {
  content: "\f6d1";
}

.fa-dice-five:before {
  content: "\f523";
}

.fa-dice-four:before {
  content: "\f524";
}

.fa-dice-one:before {
  content: "\f525";
}

.fa-dice-six:before {
  content: "\f526";
}

.fa-dice-three:before {
  content: "\f527";
}

.fa-dice-two:before {
  content: "\f528";
}

.fa-digg:before {
  content: "\f1a6";
}

.fa-digital-ocean:before {
  content: "\f391";
}

.fa-digital-tachograph:before {
  content: "\f566";
}

.fa-directions:before {
  content: "\f5eb";
}

.fa-discord:before {
  content: "\f392";
}

.fa-discourse:before {
  content: "\f393";
}

.fa-disease:before {
  content: "\f7fa";
}

.fa-divide:before {
  content: "\f529";
}

.fa-dizzy:before {
  content: "\f567";
}

.fa-dna:before {
  content: "\f471";
}

.fa-dochub:before {
  content: "\f394";
}

.fa-docker:before {
  content: "\f395";
}

.fa-dog:before {
  content: "\f6d3";
}

.fa-dollar-sign:before {
  content: "\f155";
}

.fa-dolly:before {
  content: "\f472";
}

.fa-dolly-flatbed:before {
  content: "\f474";
}

.fa-donate:before {
  content: "\f4b9";
}

.fa-door-closed:before {
  content: "\f52a";
}

.fa-door-open:before {
  content: "\f52b";
}

.fa-dot-circle:before {
  content: "\f192";
}

.fa-dove:before {
  content: "\f4ba";
}

.fa-download:before {
  content: "\f019";
}

.fa-draft2digital:before {
  content: "\f396";
}

.fa-drafting-compass:before {
  content: "\f568";
}

.fa-dragon:before {
  content: "\f6d5";
}

.fa-draw-polygon:before {
  content: "\f5ee";
}

.fa-dribbble:before {
  content: "\f17d";
}

.fa-dribbble-square:before {
  content: "\f397";
}

.fa-dropbox:before {
  content: "\f16b";
}

.fa-drum:before {
  content: "\f569";
}

.fa-drum-steelpan:before {
  content: "\f56a";
}

.fa-drumstick-bite:before {
  content: "\f6d7";
}

.fa-drupal:before {
  content: "\f1a9";
}

.fa-dumbbell:before {
  content: "\f44b";
}

.fa-dumpster:before {
  content: "\f793";
}

.fa-dumpster-fire:before {
  content: "\f794";
}

.fa-dungeon:before {
  content: "\f6d9";
}

.fa-dyalog:before {
  content: "\f399";
}

.fa-earlybirds:before {
  content: "\f39a";
}

.fa-ebay:before {
  content: "\f4f4";
}

.fa-edge:before {
  content: "\f282";
}

.fa-edge-legacy:before {
  content: "\e078";
}

.fa-edit:before {
  content: "\f044";
}

.fa-egg:before {
  content: "\f7fb";
}

.fa-eject:before {
  content: "\f052";
}

.fa-elementor:before {
  content: "\f430";
}

.fa-ellipsis-h:before {
  content: "\f141";
}

.fa-ellipsis-v:before {
  content: "\f142";
}

.fa-ello:before {
  content: "\f5f1";
}

.fa-ember:before {
  content: "\f423";
}

.fa-empire:before {
  content: "\f1d1";
}

.fa-envelope:before {
  content: "\f0e0";
}

.fa-envelope-open:before {
  content: "\f2b6";
}

.fa-envelope-open-text:before {
  content: "\f658";
}

.fa-envelope-square:before {
  content: "\f199";
}

.fa-envira:before {
  content: "\f299";
}

.fa-equals:before {
  content: "\f52c";
}

.fa-eraser:before {
  content: "\f12d";
}

.fa-erlang:before {
  content: "\f39d";
}

.fa-ethereum:before {
  content: "\f42e";
}

.fa-ethernet:before {
  content: "\f796";
}

.fa-etsy:before {
  content: "\f2d7";
}

.fa-euro-sign:before {
  content: "\f153";
}

.fa-evernote:before {
  content: "\f839";
}

.fa-exchange-alt:before {
  content: "\f362";
}

.fa-exclamation:before {
  content: "\f12a";
}

.fa-exclamation-circle:before {
  content: "\f06a";
}

.fa-exclamation-triangle:before {
  content: "\f071";
}

.fa-expand:before {
  content: "\f065";
}

.fa-expand-alt:before {
  content: "\f424";
}

.fa-expand-arrows-alt:before {
  content: "\f31e";
}

.fa-expeditedssl:before {
  content: "\f23e";
}

.fa-external-link-alt:before {
  content: "\f35d";
}

.fa-external-link-square-alt:before {
  content: "\f360";
}

.fa-eye:before {
  content: "\f06e";
}

.fa-eye-dropper:before {
  content: "\f1fb";
}

.fa-eye-slash:before {
  content: "\f070";
}

.fa-facebook:before {
  content: "\f09a";
}

.fa-facebook-f:before {
  content: "\f39e";
}

.fa-facebook-messenger:before {
  content: "\f39f";
}

.fa-facebook-square:before {
  content: "\f082";
}

.fa-fan:before {
  content: "\f863";
}

.fa-fantasy-flight-games:before {
  content: "\f6dc";
}

.fa-fast-backward:before {
  content: "\f049";
}

.fa-fast-forward:before {
  content: "\f050";
}

.fa-faucet:before {
  content: "\e005";
}

.fa-fax:before {
  content: "\f1ac";
}

.fa-feather:before {
  content: "\f52d";
}

.fa-feather-alt:before {
  content: "\f56b";
}

.fa-fedex:before {
  content: "\f797";
}

.fa-fedora:before {
  content: "\f798";
}

.fa-female:before {
  content: "\f182";
}

.fa-fighter-jet:before {
  content: "\f0fb";
}

.fa-figma:before {
  content: "\f799";
}

.fa-file:before {
  content: "\f15b";
}

.fa-file-alt:before {
  content: "\f15c";
}

.fa-file-archive:before {
  content: "\f1c6";
}

.fa-file-audio:before {
  content: "\f1c7";
}

.fa-file-code:before {
  content: "\f1c9";
}

.fa-file-contract:before {
  content: "\f56c";
}

.fa-file-csv:before {
  content: "\f6dd";
}

.fa-file-download:before {
  content: "\f56d";
}

.fa-file-excel:before {
  content: "\f1c3";
}

.fa-file-export:before {
  content: "\f56e";
}

.fa-file-image:before {
  content: "\f1c5";
}

.fa-file-import:before {
  content: "\f56f";
}

.fa-file-invoice:before {
  content: "\f570";
}

.fa-file-invoice-dollar:before {
  content: "\f571";
}

.fa-file-medical:before {
  content: "\f477";
}

.fa-file-medical-alt:before {
  content: "\f478";
}

.fa-file-pdf:before {
  content: "\f1c1";
}

.fa-file-powerpoint:before {
  content: "\f1c4";
}

.fa-file-prescription:before {
  content: "\f572";
}

.fa-file-signature:before {
  content: "\f573";
}

.fa-file-upload:before {
  content: "\f574";
}

.fa-file-video:before {
  content: "\f1c8";
}

.fa-file-word:before {
  content: "\f1c2";
}

.fa-fill:before {
  content: "\f575";
}

.fa-fill-drip:before {
  content: "\f576";
}

.fa-film:before {
  content: "\f008";
}

.fa-filter:before {
  content: "\f0b0";
}

.fa-fingerprint:before {
  content: "\f577";
}

.fa-fire:before {
  content: "\f06d";
}

.fa-fire-alt:before {
  content: "\f7e4";
}

.fa-fire-extinguisher:before {
  content: "\f134";
}

.fa-firefox:before {
  content: "\f269";
}

.fa-firefox-browser:before {
  content: "\e007";
}

.fa-first-aid:before {
  content: "\f479";
}

.fa-first-order:before {
  content: "\f2b0";
}

.fa-first-order-alt:before {
  content: "\f50a";
}

.fa-firstdraft:before {
  content: "\f3a1";
}

.fa-fish:before {
  content: "\f578";
}

.fa-fist-raised:before {
  content: "\f6de";
}

.fa-flag:before {
  content: "\f024";
}

.fa-flag-checkered:before {
  content: "\f11e";
}

.fa-flag-usa:before {
  content: "\f74d";
}

.fa-flask:before {
  content: "\f0c3";
}

.fa-flickr:before {
  content: "\f16e";
}

.fa-flipboard:before {
  content: "\f44d";
}

.fa-flushed:before {
  content: "\f579";
}

.fa-fly:before {
  content: "\f417";
}

.fa-folder:before {
  content: "\f07b";
}

.fa-folder-minus:before {
  content: "\f65d";
}

.fa-folder-open:before {
  content: "\f07c";
}

.fa-folder-plus:before {
  content: "\f65e";
}

.fa-font:before {
  content: "\f031";
}

.fa-font-awesome:before {
  content: "\f2b4";
}

.fa-font-awesome-alt:before {
  content: "\f35c";
}

.fa-font-awesome-flag:before {
  content: "\f425";
}

.fa-font-awesome-logo-full:before {
  content: "\f4e6";
}

.fa-fonticons:before {
  content: "\f280";
}

.fa-fonticons-fi:before {
  content: "\f3a2";
}

.fa-football-ball:before {
  content: "\f44e";
}

.fa-fort-awesome:before {
  content: "\f286";
}

.fa-fort-awesome-alt:before {
  content: "\f3a3";
}

.fa-forumbee:before {
  content: "\f211";
}

.fa-forward:before {
  content: "\f04e";
}

.fa-foursquare:before {
  content: "\f180";
}

.fa-free-code-camp:before {
  content: "\f2c5";
}

.fa-freebsd:before {
  content: "\f3a4";
}

.fa-frog:before {
  content: "\f52e";
}

.fa-frown:before {
  content: "\f119";
}

.fa-frown-open:before {
  content: "\f57a";
}

.fa-fulcrum:before {
  content: "\f50b";
}

.fa-funnel-dollar:before {
  content: "\f662";
}

.fa-futbol:before {
  content: "\f1e3";
}

.fa-galactic-republic:before {
  content: "\f50c";
}

.fa-galactic-senate:before {
  content: "\f50d";
}

.fa-gamepad:before {
  content: "\f11b";
}

.fa-gas-pump:before {
  content: "\f52f";
}

.fa-gavel:before {
  content: "\f0e3";
}

.fa-gem:before {
  content: "\f3a5";
}

.fa-genderless:before {
  content: "\f22d";
}

.fa-get-pocket:before {
  content: "\f265";
}

.fa-gg:before {
  content: "\f260";
}

.fa-gg-circle:before {
  content: "\f261";
}

.fa-ghost:before {
  content: "\f6e2";
}

.fa-gift:before {
  content: "\f06b";
}

.fa-gifts:before {
  content: "\f79c";
}

.fa-git:before {
  content: "\f1d3";
}

.fa-git-alt:before {
  content: "\f841";
}

.fa-git-square:before {
  content: "\f1d2";
}

.fa-github:before {
  content: "\f09b";
}

.fa-github-alt:before {
  content: "\f113";
}

.fa-github-square:before {
  content: "\f092";
}

.fa-gitkraken:before {
  content: "\f3a6";
}

.fa-gitlab:before {
  content: "\f296";
}

.fa-gitter:before {
  content: "\f426";
}

.fa-glass-cheers:before {
  content: "\f79f";
}

.fa-glass-martini:before {
  content: "\f000";
}

.fa-glass-martini-alt:before {
  content: "\f57b";
}

.fa-glass-whiskey:before {
  content: "\f7a0";
}

.fa-glasses:before {
  content: "\f530";
}

.fa-glide:before {
  content: "\f2a5";
}

.fa-glide-g:before {
  content: "\f2a6";
}

.fa-globe:before {
  content: "\f0ac";
}

.fa-globe-africa:before {
  content: "\f57c";
}

.fa-globe-americas:before {
  content: "\f57d";
}

.fa-globe-asia:before {
  content: "\f57e";
}

.fa-globe-europe:before {
  content: "\f7a2";
}

.fa-gofore:before {
  content: "\f3a7";
}

.fa-golf-ball:before {
  content: "\f450";
}

.fa-goodreads:before {
  content: "\f3a8";
}

.fa-goodreads-g:before {
  content: "\f3a9";
}

.fa-google:before {
  content: "\f1a0";
}

.fa-google-drive:before {
  content: "\f3aa";
}

.fa-google-pay:before {
  content: "\e079";
}

.fa-google-play:before {
  content: "\f3ab";
}

.fa-google-plus:before {
  content: "\f2b3";
}

.fa-google-plus-g:before {
  content: "\f0d5";
}

.fa-google-plus-square:before {
  content: "\f0d4";
}

.fa-google-wallet:before {
  content: "\f1ee";
}

.fa-gopuram:before {
  content: "\f664";
}

.fa-graduation-cap:before {
  content: "\f19d";
}

.fa-gratipay:before {
  content: "\f184";
}

.fa-grav:before {
  content: "\f2d6";
}

.fa-greater-than:before {
  content: "\f531";
}

.fa-greater-than-equal:before {
  content: "\f532";
}

.fa-grimace:before {
  content: "\f57f";
}

.fa-grin:before {
  content: "\f580";
}

.fa-grin-alt:before {
  content: "\f581";
}

.fa-grin-beam:before {
  content: "\f582";
}

.fa-grin-beam-sweat:before {
  content: "\f583";
}

.fa-grin-hearts:before {
  content: "\f584";
}

.fa-grin-squint:before {
  content: "\f585";
}

.fa-grin-squint-tears:before {
  content: "\f586";
}

.fa-grin-stars:before {
  content: "\f587";
}

.fa-grin-tears:before {
  content: "\f588";
}

.fa-grin-tongue:before {
  content: "\f589";
}

.fa-grin-tongue-squint:before {
  content: "\f58a";
}

.fa-grin-tongue-wink:before {
  content: "\f58b";
}

.fa-grin-wink:before {
  content: "\f58c";
}

.fa-grip-horizontal:before {
  content: "\f58d";
}

.fa-grip-lines:before {
  content: "\f7a4";
}

.fa-grip-lines-vertical:before {
  content: "\f7a5";
}

.fa-grip-vertical:before {
  content: "\f58e";
}

.fa-gripfire:before {
  content: "\f3ac";
}

.fa-grunt:before {
  content: "\f3ad";
}

.fa-guilded:before {
  content: "\e07e";
}

.fa-guitar:before {
  content: "\f7a6";
}

.fa-gulp:before {
  content: "\f3ae";
}

.fa-h-square:before {
  content: "\f0fd";
}

.fa-hacker-news:before {
  content: "\f1d4";
}

.fa-hacker-news-square:before {
  content: "\f3af";
}

.fa-hackerrank:before {
  content: "\f5f7";
}

.fa-hamburger:before {
  content: "\f805";
}

.fa-hammer:before {
  content: "\f6e3";
}

.fa-hamsa:before {
  content: "\f665";
}

.fa-hand-holding:before {
  content: "\f4bd";
}

.fa-hand-holding-heart:before {
  content: "\f4be";
}

.fa-hand-holding-medical:before {
  content: "\e05c";
}

.fa-hand-holding-usd:before {
  content: "\f4c0";
}

.fa-hand-holding-water:before {
  content: "\f4c1";
}

.fa-hand-lizard:before {
  content: "\f258";
}

.fa-hand-middle-finger:before {
  content: "\f806";
}

.fa-hand-paper:before {
  content: "\f256";
}

.fa-hand-peace:before {
  content: "\f25b";
}

.fa-hand-point-down:before {
  content: "\f0a7";
}

.fa-hand-point-left:before {
  content: "\f0a5";
}

.fa-hand-point-right:before {
  content: "\f0a4";
}

.fa-hand-point-up:before {
  content: "\f0a6";
}

.fa-hand-pointer:before {
  content: "\f25a";
}

.fa-hand-rock:before {
  content: "\f255";
}

.fa-hand-scissors:before {
  content: "\f257";
}

.fa-hand-sparkles:before {
  content: "\e05d";
}

.fa-hand-spock:before {
  content: "\f259";
}

.fa-hands:before {
  content: "\f4c2";
}

.fa-hands-helping:before {
  content: "\f4c4";
}

.fa-hands-wash:before {
  content: "\e05e";
}

.fa-handshake:before {
  content: "\f2b5";
}

.fa-handshake-alt-slash:before {
  content: "\e05f";
}

.fa-handshake-slash:before {
  content: "\e060";
}

.fa-hanukiah:before {
  content: "\f6e6";
}

.fa-hard-hat:before {
  content: "\f807";
}

.fa-hashtag:before {
  content: "\f292";
}

.fa-hat-cowboy:before {
  content: "\f8c0";
}

.fa-hat-cowboy-side:before {
  content: "\f8c1";
}

.fa-hat-wizard:before {
  content: "\f6e8";
}

.fa-hdd:before {
  content: "\f0a0";
}

.fa-head-side-cough:before {
  content: "\e061";
}

.fa-head-side-cough-slash:before {
  content: "\e062";
}

.fa-head-side-mask:before {
  content: "\e063";
}

.fa-head-side-virus:before {
  content: "\e064";
}

.fa-heading:before {
  content: "\f1dc";
}

.fa-headphones:before {
  content: "\f025";
}

.fa-headphones-alt:before {
  content: "\f58f";
}

.fa-headset:before {
  content: "\f590";
}

.fa-heart:before {
  content: "\f004";
}

.fa-heart-broken:before {
  content: "\f7a9";
}

.fa-heartbeat:before {
  content: "\f21e";
}

.fa-helicopter:before {
  content: "\f533";
}

.fa-highlighter:before {
  content: "\f591";
}

.fa-hiking:before {
  content: "\f6ec";
}

.fa-hippo:before {
  content: "\f6ed";
}

.fa-hips:before {
  content: "\f452";
}

.fa-hire-a-helper:before {
  content: "\f3b0";
}

.fa-history:before {
  content: "\f1da";
}

.fa-hive:before {
  content: "\e07f";
}

.fa-hockey-puck:before {
  content: "\f453";
}

.fa-holly-berry:before {
  content: "\f7aa";
}

.fa-home:before {
  content: "\f015";
}

.fa-hooli:before {
  content: "\f427";
}

.fa-hornbill:before {
  content: "\f592";
}

.fa-horse:before {
  content: "\f6f0";
}

.fa-horse-head:before {
  content: "\f7ab";
}

.fa-hospital:before {
  content: "\f0f8";
}

.fa-hospital-alt:before {
  content: "\f47d";
}

.fa-hospital-symbol:before {
  content: "\f47e";
}

.fa-hospital-user:before {
  content: "\f80d";
}

.fa-hot-tub:before {
  content: "\f593";
}

.fa-hotdog:before {
  content: "\f80f";
}

.fa-hotel:before {
  content: "\f594";
}

.fa-hotjar:before {
  content: "\f3b1";
}

.fa-hourglass:before {
  content: "\f254";
}

.fa-hourglass-end:before {
  content: "\f253";
}

.fa-hourglass-half:before {
  content: "\f252";
}

.fa-hourglass-start:before {
  content: "\f251";
}

.fa-house-damage:before {
  content: "\f6f1";
}

.fa-house-user:before {
  content: "\e065";
}

.fa-houzz:before {
  content: "\f27c";
}

.fa-hryvnia:before {
  content: "\f6f2";
}

.fa-html5:before {
  content: "\f13b";
}

.fa-hubspot:before {
  content: "\f3b2";
}

.fa-i-cursor:before {
  content: "\f246";
}

.fa-ice-cream:before {
  content: "\f810";
}

.fa-icicles:before {
  content: "\f7ad";
}

.fa-icons:before {
  content: "\f86d";
}

.fa-id-badge:before {
  content: "\f2c1";
}

.fa-id-card:before {
  content: "\f2c2";
}

.fa-id-card-alt:before {
  content: "\f47f";
}

.fa-ideal:before {
  content: "\e013";
}

.fa-igloo:before {
  content: "\f7ae";
}

.fa-image:before {
  content: "\f03e";
}

.fa-images:before {
  content: "\f302";
}

.fa-imdb:before {
  content: "\f2d8";
}

.fa-inbox:before {
  content: "\f01c";
}

.fa-indent:before {
  content: "\f03c";
}

.fa-industry:before {
  content: "\f275";
}

.fa-infinity:before {
  content: "\f534";
}

.fa-info:before {
  content: "\f129";
}

.fa-info-circle:before {
  content: "\f05a";
}

.fa-innosoft:before {
  content: "\e080";
}

.fa-instagram:before {
  content: "\f16d";
}

.fa-instagram-square:before {
  content: "\e055";
}

.fa-instalod:before {
  content: "\e081";
}

.fa-intercom:before {
  content: "\f7af";
}

.fa-internet-explorer:before {
  content: "\f26b";
}

.fa-invision:before {
  content: "\f7b0";
}

.fa-ioxhost:before {
  content: "\f208";
}

.fa-italic:before {
  content: "\f033";
}

.fa-itch-io:before {
  content: "\f83a";
}

.fa-itunes:before {
  content: "\f3b4";
}

.fa-itunes-note:before {
  content: "\f3b5";
}

.fa-java:before {
  content: "\f4e4";
}

.fa-jedi:before {
  content: "\f669";
}

.fa-jedi-order:before {
  content: "\f50e";
}

.fa-jenkins:before {
  content: "\f3b6";
}

.fa-jira:before {
  content: "\f7b1";
}

.fa-joget:before {
  content: "\f3b7";
}

.fa-joint:before {
  content: "\f595";
}

.fa-joomla:before {
  content: "\f1aa";
}

.fa-journal-whills:before {
  content: "\f66a";
}

.fa-js:before {
  content: "\f3b8";
}

.fa-js-square:before {
  content: "\f3b9";
}

.fa-jsfiddle:before {
  content: "\f1cc";
}

.fa-kaaba:before {
  content: "\f66b";
}

.fa-kaggle:before {
  content: "\f5fa";
}

.fa-key:before {
  content: "\f084";
}

.fa-keybase:before {
  content: "\f4f5";
}

.fa-keyboard:before {
  content: "\f11c";
}

.fa-keycdn:before {
  content: "\f3ba";
}

.fa-khanda:before {
  content: "\f66d";
}

.fa-kickstarter:before {
  content: "\f3bb";
}

.fa-kickstarter-k:before {
  content: "\f3bc";
}

.fa-kiss:before {
  content: "\f596";
}

.fa-kiss-beam:before {
  content: "\f597";
}

.fa-kiss-wink-heart:before {
  content: "\f598";
}

.fa-kiwi-bird:before {
  content: "\f535";
}

.fa-korvue:before {
  content: "\f42f";
}

.fa-landmark:before {
  content: "\f66f";
}

.fa-language:before {
  content: "\f1ab";
}

.fa-laptop:before {
  content: "\f109";
}

.fa-laptop-code:before {
  content: "\f5fc";
}

.fa-laptop-house:before {
  content: "\e066";
}

.fa-laptop-medical:before {
  content: "\f812";
}

.fa-laravel:before {
  content: "\f3bd";
}

.fa-lastfm:before {
  content: "\f202";
}

.fa-lastfm-square:before {
  content: "\f203";
}

.fa-laugh:before {
  content: "\f599";
}

.fa-laugh-beam:before {
  content: "\f59a";
}

.fa-laugh-squint:before {
  content: "\f59b";
}

.fa-laugh-wink:before {
  content: "\f59c";
}

.fa-layer-group:before {
  content: "\f5fd";
}

.fa-leaf:before {
  content: "\f06c";
}

.fa-leanpub:before {
  content: "\f212";
}

.fa-lemon:before {
  content: "\f094";
}

.fa-less:before {
  content: "\f41d";
}

.fa-less-than:before {
  content: "\f536";
}

.fa-less-than-equal:before {
  content: "\f537";
}

.fa-level-down-alt:before {
  content: "\f3be";
}

.fa-level-up-alt:before {
  content: "\f3bf";
}

.fa-life-ring:before {
  content: "\f1cd";
}

.fa-lightbulb:before {
  content: "\f0eb";
}

.fa-line:before {
  content: "\f3c0";
}

.fa-link:before {
  content: "\f0c1";
}

.fa-linkedin:before {
  content: "\f08c";
}

.fa-linkedin-in:before {
  content: "\f0e1";
}

.fa-linode:before {
  content: "\f2b8";
}

.fa-linux:before {
  content: "\f17c";
}

.fa-lira-sign:before {
  content: "\f195";
}

.fa-list:before {
  content: "\f03a";
}

.fa-list-alt:before {
  content: "\f022";
}

.fa-list-ol:before {
  content: "\f0cb";
}

.fa-list-ul:before {
  content: "\f0ca";
}

.fa-location-arrow:before {
  content: "\f124";
}

.fa-lock:before {
  content: "\f023";
}

.fa-lock-open:before {
  content: "\f3c1";
}

.fa-long-arrow-alt-down:before {
  content: "\f309";
}

.fa-long-arrow-alt-left:before {
  content: "\f30a";
}

.fa-long-arrow-alt-right:before {
  content: "\f30b";
}

.fa-long-arrow-alt-up:before {
  content: "\f30c";
}

.fa-low-vision:before {
  content: "\f2a8";
}

.fa-luggage-cart:before {
  content: "\f59d";
}

.fa-lungs:before {
  content: "\f604";
}

.fa-lungs-virus:before {
  content: "\e067";
}

.fa-lyft:before {
  content: "\f3c3";
}

.fa-magento:before {
  content: "\f3c4";
}

.fa-magic:before {
  content: "\f0d0";
}

.fa-magnet:before {
  content: "\f076";
}

.fa-mail-bulk:before {
  content: "\f674";
}

.fa-mailchimp:before {
  content: "\f59e";
}

.fa-male:before {
  content: "\f183";
}

.fa-mandalorian:before {
  content: "\f50f";
}

.fa-map:before {
  content: "\f279";
}

.fa-map-marked:before {
  content: "\f59f";
}

.fa-map-marked-alt:before {
  content: "\f5a0";
}

.fa-map-marker:before {
  content: "\f041";
}

.fa-map-marker-alt:before {
  content: "\f3c5";
}

.fa-map-pin:before {
  content: "\f276";
}

.fa-map-signs:before {
  content: "\f277";
}

.fa-markdown:before {
  content: "\f60f";
}

.fa-marker:before {
  content: "\f5a1";
}

.fa-mars:before {
  content: "\f222";
}

.fa-mars-double:before {
  content: "\f227";
}

.fa-mars-stroke:before {
  content: "\f229";
}

.fa-mars-stroke-h:before {
  content: "\f22b";
}

.fa-mars-stroke-v:before {
  content: "\f22a";
}

.fa-mask:before {
  content: "\f6fa";
}

.fa-mastodon:before {
  content: "\f4f6";
}

.fa-maxcdn:before {
  content: "\f136";
}

.fa-mdb:before {
  content: "\f8ca";
}

.fa-medal:before {
  content: "\f5a2";
}

.fa-medapps:before {
  content: "\f3c6";
}

.fa-medium:before {
  content: "\f23a";
}

.fa-medium-m:before {
  content: "\f3c7";
}

.fa-medkit:before {
  content: "\f0fa";
}

.fa-medrt:before {
  content: "\f3c8";
}

.fa-meetup:before {
  content: "\f2e0";
}

.fa-megaport:before {
  content: "\f5a3";
}

.fa-meh:before {
  content: "\f11a";
}

.fa-meh-blank:before {
  content: "\f5a4";
}

.fa-meh-rolling-eyes:before {
  content: "\f5a5";
}

.fa-memory:before {
  content: "\f538";
}

.fa-mendeley:before {
  content: "\f7b3";
}

.fa-menorah:before {
  content: "\f676";
}

.fa-mercury:before {
  content: "\f223";
}

.fa-meteor:before {
  content: "\f753";
}

.fa-microblog:before {
  content: "\e01a";
}

.fa-microchip:before {
  content: "\f2db";
}

.fa-microphone:before {
  content: "\f130";
}

.fa-microphone-alt:before {
  content: "\f3c9";
}

.fa-microphone-alt-slash:before {
  content: "\f539";
}

.fa-microphone-slash:before {
  content: "\f131";
}

.fa-microscope:before {
  content: "\f610";
}

.fa-microsoft:before {
  content: "\f3ca";
}

.fa-minus:before {
  content: "\f068";
}

.fa-minus-circle:before {
  content: "\f056";
}

.fa-minus-square:before {
  content: "\f146";
}

.fa-mitten:before {
  content: "\f7b5";
}

.fa-mix:before {
  content: "\f3cb";
}

.fa-mixcloud:before {
  content: "\f289";
}

.fa-mixer:before {
  content: "\e056";
}

.fa-mizuni:before {
  content: "\f3cc";
}

.fa-mobile:before {
  content: "\f10b";
}

.fa-mobile-alt:before {
  content: "\f3cd";
}

.fa-modx:before {
  content: "\f285";
}

.fa-monero:before {
  content: "\f3d0";
}

.fa-money-bill:before {
  content: "\f0d6";
}

.fa-money-bill-alt:before {
  content: "\f3d1";
}

.fa-money-bill-wave:before {
  content: "\f53a";
}

.fa-money-bill-wave-alt:before {
  content: "\f53b";
}

.fa-money-check:before {
  content: "\f53c";
}

.fa-money-check-alt:before {
  content: "\f53d";
}

.fa-monument:before {
  content: "\f5a6";
}

.fa-moon:before {
  content: "\f186";
}

.fa-mortar-pestle:before {
  content: "\f5a7";
}

.fa-mosque:before {
  content: "\f678";
}

.fa-motorcycle:before {
  content: "\f21c";
}

.fa-mountain:before {
  content: "\f6fc";
}

.fa-mouse:before {
  content: "\f8cc";
}

.fa-mouse-pointer:before {
  content: "\f245";
}

.fa-mug-hot:before {
  content: "\f7b6";
}

.fa-music:before {
  content: "\f001";
}

.fa-napster:before {
  content: "\f3d2";
}

.fa-neos:before {
  content: "\f612";
}

.fa-network-wired:before {
  content: "\f6ff";
}

.fa-neuter:before {
  content: "\f22c";
}

.fa-newspaper:before {
  content: "\f1ea";
}

.fa-nimblr:before {
  content: "\f5a8";
}

.fa-node:before {
  content: "\f419";
}

.fa-node-js:before {
  content: "\f3d3";
}

.fa-not-equal:before {
  content: "\f53e";
}

.fa-notes-medical:before {
  content: "\f481";
}

.fa-npm:before {
  content: "\f3d4";
}

.fa-ns8:before {
  content: "\f3d5";
}

.fa-nutritionix:before {
  content: "\f3d6";
}

.fa-object-group:before {
  content: "\f247";
}

.fa-object-ungroup:before {
  content: "\f248";
}

.fa-octopus-deploy:before {
  content: "\e082";
}

.fa-odnoklassniki:before {
  content: "\f263";
}

.fa-odnoklassniki-square:before {
  content: "\f264";
}

.fa-oil-can:before {
  content: "\f613";
}

.fa-old-republic:before {
  content: "\f510";
}

.fa-om:before {
  content: "\f679";
}

.fa-opencart:before {
  content: "\f23d";
}

.fa-openid:before {
  content: "\f19b";
}

.fa-opera:before {
  content: "\f26a";
}

.fa-optin-monster:before {
  content: "\f23c";
}

.fa-orcid:before {
  content: "\f8d2";
}

.fa-osi:before {
  content: "\f41a";
}

.fa-otter:before {
  content: "\f700";
}

.fa-outdent:before {
  content: "\f03b";
}

.fa-page4:before {
  content: "\f3d7";
}

.fa-pagelines:before {
  content: "\f18c";
}

.fa-pager:before {
  content: "\f815";
}

.fa-paint-brush:before {
  content: "\f1fc";
}

.fa-paint-roller:before {
  content: "\f5aa";
}

.fa-palette:before {
  content: "\f53f";
}

.fa-palfed:before {
  content: "\f3d8";
}

.fa-pallet:before {
  content: "\f482";
}

.fa-paper-plane:before {
  content: "\f1d8";
}

.fa-paperclip:before {
  content: "\f0c6";
}

.fa-parachute-box:before {
  content: "\f4cd";
}

.fa-paragraph:before {
  content: "\f1dd";
}

.fa-parking:before {
  content: "\f540";
}

.fa-passport:before {
  content: "\f5ab";
}

.fa-pastafarianism:before {
  content: "\f67b";
}

.fa-paste:before {
  content: "\f0ea";
}

.fa-patreon:before {
  content: "\f3d9";
}

.fa-pause:before {
  content: "\f04c";
}

.fa-pause-circle:before {
  content: "\f28b";
}

.fa-paw:before {
  content: "\f1b0";
}

.fa-paypal:before {
  content: "\f1ed";
}

.fa-peace:before {
  content: "\f67c";
}

.fa-pen:before {
  content: "\f304";
}

.fa-pen-alt:before {
  content: "\f305";
}

.fa-pen-fancy:before {
  content: "\f5ac";
}

.fa-pen-nib:before {
  content: "\f5ad";
}

.fa-pen-square:before {
  content: "\f14b";
}

.fa-pencil-alt:before {
  content: "\f303";
}

.fa-pencil-ruler:before {
  content: "\f5ae";
}

.fa-penny-arcade:before {
  content: "\f704";
}

.fa-people-arrows:before {
  content: "\e068";
}

.fa-people-carry:before {
  content: "\f4ce";
}

.fa-pepper-hot:before {
  content: "\f816";
}

.fa-perbyte:before {
  content: "\e083";
}

.fa-percent:before {
  content: "\f295";
}

.fa-percentage:before {
  content: "\f541";
}

.fa-periscope:before {
  content: "\f3da";
}

.fa-person-booth:before {
  content: "\f756";
}

.fa-phabricator:before {
  content: "\f3db";
}

.fa-phoenix-framework:before {
  content: "\f3dc";
}

.fa-phoenix-squadron:before {
  content: "\f511";
}

.fa-phone:before {
  content: "\f095";
}

.fa-phone-alt:before {
  content: "\f879";
}

.fa-phone-slash:before {
  content: "\f3dd";
}

.fa-phone-square:before {
  content: "\f098";
}

.fa-phone-square-alt:before {
  content: "\f87b";
}

.fa-phone-volume:before {
  content: "\f2a0";
}

.fa-photo-video:before {
  content: "\f87c";
}

.fa-php:before {
  content: "\f457";
}

.fa-pied-piper:before {
  content: "\f2ae";
}

.fa-pied-piper-alt:before {
  content: "\f1a8";
}

.fa-pied-piper-hat:before {
  content: "\f4e5";
}

.fa-pied-piper-pp:before {
  content: "\f1a7";
}

.fa-pied-piper-square:before {
  content: "\e01e";
}

.fa-piggy-bank:before {
  content: "\f4d3";
}

.fa-pills:before {
  content: "\f484";
}

.fa-pinterest:before {
  content: "\f0d2";
}

.fa-pinterest-p:before {
  content: "\f231";
}

.fa-pinterest-square:before {
  content: "\f0d3";
}

.fa-pizza-slice:before {
  content: "\f818";
}

.fa-place-of-worship:before {
  content: "\f67f";
}

.fa-plane:before {
  content: "\f072";
}

.fa-plane-arrival:before {
  content: "\f5af";
}

.fa-plane-departure:before {
  content: "\f5b0";
}

.fa-plane-slash:before {
  content: "\e069";
}

.fa-play:before {
  content: "\f04b";
}

.fa-play-circle:before {
  content: "\f144";
}

.fa-playstation:before {
  content: "\f3df";
}

.fa-plug:before {
  content: "\f1e6";
}

.fa-plus:before {
  content: "\f067";
}

.fa-plus-circle:before {
  content: "\f055";
}

.fa-plus-square:before {
  content: "\f0fe";
}

.fa-podcast:before {
  content: "\f2ce";
}

.fa-poll:before {
  content: "\f681";
}

.fa-poll-h:before {
  content: "\f682";
}

.fa-poo:before {
  content: "\f2fe";
}

.fa-poo-storm:before {
  content: "\f75a";
}

.fa-poop:before {
  content: "\f619";
}

.fa-portrait:before {
  content: "\f3e0";
}

.fa-pound-sign:before {
  content: "\f154";
}

.fa-power-off:before {
  content: "\f011";
}

.fa-pray:before {
  content: "\f683";
}

.fa-praying-hands:before {
  content: "\f684";
}

.fa-prescription:before {
  content: "\f5b1";
}

.fa-prescription-bottle:before {
  content: "\f485";
}

.fa-prescription-bottle-alt:before {
  content: "\f486";
}

.fa-print:before {
  content: "\f02f";
}

.fa-procedures:before {
  content: "\f487";
}

.fa-product-hunt:before {
  content: "\f288";
}

.fa-project-diagram:before {
  content: "\f542";
}

.fa-pump-medical:before {
  content: "\e06a";
}

.fa-pump-soap:before {
  content: "\e06b";
}

.fa-pushed:before {
  content: "\f3e1";
}

.fa-puzzle-piece:before {
  content: "\f12e";
}

.fa-python:before {
  content: "\f3e2";
}

.fa-qq:before {
  content: "\f1d6";
}

.fa-qrcode:before {
  content: "\f029";
}

.fa-question:before {
  content: "\f128";
}

.fa-question-circle:before {
  content: "\f059";
}

.fa-quidditch:before {
  content: "\f458";
}

.fa-quinscape:before {
  content: "\f459";
}

.fa-quora:before {
  content: "\f2c4";
}

.fa-quote-left:before {
  content: "\f10d";
}

.fa-quote-right:before {
  content: "\f10e";
}

.fa-quran:before {
  content: "\f687";
}

.fa-r-project:before {
  content: "\f4f7";
}

.fa-radiation:before {
  content: "\f7b9";
}

.fa-radiation-alt:before {
  content: "\f7ba";
}

.fa-rainbow:before {
  content: "\f75b";
}

.fa-random:before {
  content: "\f074";
}

.fa-raspberry-pi:before {
  content: "\f7bb";
}

.fa-ravelry:before {
  content: "\f2d9";
}

.fa-react:before {
  content: "\f41b";
}

.fa-reacteurope:before {
  content: "\f75d";
}

.fa-readme:before {
  content: "\f4d5";
}

.fa-rebel:before {
  content: "\f1d0";
}

.fa-receipt:before {
  content: "\f543";
}

.fa-record-vinyl:before {
  content: "\f8d9";
}

.fa-recycle:before {
  content: "\f1b8";
}

.fa-red-river:before {
  content: "\f3e3";
}

.fa-reddit:before {
  content: "\f1a1";
}

.fa-reddit-alien:before {
  content: "\f281";
}

.fa-reddit-square:before {
  content: "\f1a2";
}

.fa-redhat:before {
  content: "\f7bc";
}

.fa-redo:before {
  content: "\f01e";
}

.fa-redo-alt:before {
  content: "\f2f9";
}

.fa-registered:before {
  content: "\f25d";
}

.fa-remove-format:before {
  content: "\f87d";
}

.fa-renren:before {
  content: "\f18b";
}

.fa-reply:before {
  content: "\f3e5";
}

.fa-reply-all:before {
  content: "\f122";
}

.fa-replyd:before {
  content: "\f3e6";
}

.fa-republican:before {
  content: "\f75e";
}

.fa-researchgate:before {
  content: "\f4f8";
}

.fa-resolving:before {
  content: "\f3e7";
}

.fa-restroom:before {
  content: "\f7bd";
}

.fa-retweet:before {
  content: "\f079";
}

.fa-rev:before {
  content: "\f5b2";
}

.fa-ribbon:before {
  content: "\f4d6";
}

.fa-ring:before {
  content: "\f70b";
}

.fa-road:before {
  content: "\f018";
}

.fa-robot:before {
  content: "\f544";
}

.fa-rocket:before {
  content: "\f135";
}

.fa-rocketchat:before {
  content: "\f3e8";
}

.fa-rockrms:before {
  content: "\f3e9";
}

.fa-route:before {
  content: "\f4d7";
}

.fa-rss:before {
  content: "\f09e";
}

.fa-rss-square:before {
  content: "\f143";
}

.fa-ruble-sign:before {
  content: "\f158";
}

.fa-ruler:before {
  content: "\f545";
}

.fa-ruler-combined:before {
  content: "\f546";
}

.fa-ruler-horizontal:before {
  content: "\f547";
}

.fa-ruler-vertical:before {
  content: "\f548";
}

.fa-running:before {
  content: "\f70c";
}

.fa-rupee-sign:before {
  content: "\f156";
}

.fa-rust:before {
  content: "\e07a";
}

.fa-sad-cry:before {
  content: "\f5b3";
}

.fa-sad-tear:before {
  content: "\f5b4";
}

.fa-safari:before {
  content: "\f267";
}

.fa-salesforce:before {
  content: "\f83b";
}

.fa-sass:before {
  content: "\f41e";
}

.fa-satellite:before {
  content: "\f7bf";
}

.fa-satellite-dish:before {
  content: "\f7c0";
}

.fa-save:before {
  content: "\f0c7";
}

.fa-schlix:before {
  content: "\f3ea";
}

.fa-school:before {
  content: "\f549";
}

.fa-screwdriver:before {
  content: "\f54a";
}

.fa-scribd:before {
  content: "\f28a";
}

.fa-scroll:before {
  content: "\f70e";
}

.fa-sd-card:before {
  content: "\f7c2";
}

.fa-search:before {
  content: "\f002";
}

.fa-search-dollar:before {
  content: "\f688";
}

.fa-search-location:before {
  content: "\f689";
}

.fa-search-minus:before {
  content: "\f010";
}

.fa-search-plus:before {
  content: "\f00e";
}

.fa-searchengin:before {
  content: "\f3eb";
}

.fa-seedling:before {
  content: "\f4d8";
}

.fa-sellcast:before {
  content: "\f2da";
}

.fa-sellsy:before {
  content: "\f213";
}

.fa-server:before {
  content: "\f233";
}

.fa-servicestack:before {
  content: "\f3ec";
}

.fa-shapes:before {
  content: "\f61f";
}

.fa-share:before {
  content: "\f064";
}

.fa-share-alt:before {
  content: "\f1e0";
}

.fa-share-alt-square:before {
  content: "\f1e1";
}

.fa-share-square:before {
  content: "\f14d";
}

.fa-shekel-sign:before {
  content: "\f20b";
}

.fa-shield-alt:before {
  content: "\f3ed";
}

.fa-shield-virus:before {
  content: "\e06c";
}

.fa-ship:before {
  content: "\f21a";
}

.fa-shipping-fast:before {
  content: "\f48b";
}

.fa-shirtsinbulk:before {
  content: "\f214";
}

.fa-shoe-prints:before {
  content: "\f54b";
}

.fa-shopify:before {
  content: "\e057";
}

.fa-shopping-bag:before {
  content: "\f290";
}

.fa-shopping-basket:before {
  content: "\f291";
}

.fa-shopping-cart:before {
  content: "\f07a";
}

.fa-shopware:before {
  content: "\f5b5";
}

.fa-shower:before {
  content: "\f2cc";
}

.fa-shuttle-van:before {
  content: "\f5b6";
}

.fa-sign:before {
  content: "\f4d9";
}

.fa-sign-in-alt:before {
  content: "\f2f6";
}

.fa-sign-language:before {
  content: "\f2a7";
}

.fa-sign-out-alt:before {
  content: "\f2f5";
}

.fa-signal:before {
  content: "\f012";
}

.fa-signature:before {
  content: "\f5b7";
}

.fa-sim-card:before {
  content: "\f7c4";
}

.fa-simplybuilt:before {
  content: "\f215";
}

.fa-sink:before {
  content: "\e06d";
}

.fa-sistrix:before {
  content: "\f3ee";
}

.fa-sitemap:before {
  content: "\f0e8";
}

.fa-sith:before {
  content: "\f512";
}

.fa-skating:before {
  content: "\f7c5";
}

.fa-sketch:before {
  content: "\f7c6";
}

.fa-skiing:before {
  content: "\f7c9";
}

.fa-skiing-nordic:before {
  content: "\f7ca";
}

.fa-skull:before {
  content: "\f54c";
}

.fa-skull-crossbones:before {
  content: "\f714";
}

.fa-skyatlas:before {
  content: "\f216";
}

.fa-skype:before {
  content: "\f17e";
}

.fa-slack:before {
  content: "\f198";
}

.fa-slack-hash:before {
  content: "\f3ef";
}

.fa-slash:before {
  content: "\f715";
}

.fa-sleigh:before {
  content: "\f7cc";
}

.fa-sliders-h:before {
  content: "\f1de";
}

.fa-slideshare:before {
  content: "\f1e7";
}

.fa-smile:before {
  content: "\f118";
}

.fa-smile-beam:before {
  content: "\f5b8";
}

.fa-smile-wink:before {
  content: "\f4da";
}

.fa-smog:before {
  content: "\f75f";
}

.fa-smoking:before {
  content: "\f48d";
}

.fa-smoking-ban:before {
  content: "\f54d";
}

.fa-sms:before {
  content: "\f7cd";
}

.fa-snapchat:before {
  content: "\f2ab";
}

.fa-snapchat-ghost:before {
  content: "\f2ac";
}

.fa-snapchat-square:before {
  content: "\f2ad";
}

.fa-snowboarding:before {
  content: "\f7ce";
}

.fa-snowflake:before {
  content: "\f2dc";
}

.fa-snowman:before {
  content: "\f7d0";
}

.fa-snowplow:before {
  content: "\f7d2";
}

.fa-soap:before {
  content: "\e06e";
}

.fa-socks:before {
  content: "\f696";
}

.fa-solar-panel:before {
  content: "\f5ba";
}

.fa-sort:before {
  content: "\f0dc";
}

.fa-sort-alpha-down:before {
  content: "\f15d";
}

.fa-sort-alpha-down-alt:before {
  content: "\f881";
}

.fa-sort-alpha-up:before {
  content: "\f15e";
}

.fa-sort-alpha-up-alt:before {
  content: "\f882";
}

.fa-sort-amount-down:before {
  content: "\f160";
}

.fa-sort-amount-down-alt:before {
  content: "\f884";
}

.fa-sort-amount-up:before {
  content: "\f161";
}

.fa-sort-amount-up-alt:before {
  content: "\f885";
}

.fa-sort-down:before {
  content: "\f0dd";
}

.fa-sort-numeric-down:before {
  content: "\f162";
}

.fa-sort-numeric-down-alt:before {
  content: "\f886";
}

.fa-sort-numeric-up:before {
  content: "\f163";
}

.fa-sort-numeric-up-alt:before {
  content: "\f887";
}

.fa-sort-up:before {
  content: "\f0de";
}

.fa-soundcloud:before {
  content: "\f1be";
}

.fa-sourcetree:before {
  content: "\f7d3";
}

.fa-spa:before {
  content: "\f5bb";
}

.fa-space-shuttle:before {
  content: "\f197";
}

.fa-speakap:before {
  content: "\f3f3";
}

.fa-speaker-deck:before {
  content: "\f83c";
}

.fa-spell-check:before {
  content: "\f891";
}

.fa-spider:before {
  content: "\f717";
}

.fa-spinner:before {
  content: "\f110";
}

.fa-splotch:before {
  content: "\f5bc";
}

.fa-spotify:before {
  content: "\f1bc";
}

.fa-spray-can:before {
  content: "\f5bd";
}

.fa-square:before {
  content: "\f0c8";
}

.fa-square-full:before {
  content: "\f45c";
}

.fa-square-root-alt:before {
  content: "\f698";
}

.fa-squarespace:before {
  content: "\f5be";
}

.fa-stack-exchange:before {
  content: "\f18d";
}

.fa-stack-overflow:before {
  content: "\f16c";
}

.fa-stackpath:before {
  content: "\f842";
}

.fa-stamp:before {
  content: "\f5bf";
}

.fa-star:before {
  content: "\f005";
}

.fa-star-and-crescent:before {
  content: "\f699";
}

.fa-star-half:before {
  content: "\f089";
}

.fa-star-half-alt:before {
  content: "\f5c0";
}

.fa-star-of-david:before {
  content: "\f69a";
}

.fa-star-of-life:before {
  content: "\f621";
}

.fa-staylinked:before {
  content: "\f3f5";
}

.fa-steam:before {
  content: "\f1b6";
}

.fa-steam-square:before {
  content: "\f1b7";
}

.fa-steam-symbol:before {
  content: "\f3f6";
}

.fa-step-backward:before {
  content: "\f048";
}

.fa-step-forward:before {
  content: "\f051";
}

.fa-stethoscope:before {
  content: "\f0f1";
}

.fa-sticker-mule:before {
  content: "\f3f7";
}

.fa-sticky-note:before {
  content: "\f249";
}

.fa-stop:before {
  content: "\f04d";
}

.fa-stop-circle:before {
  content: "\f28d";
}

.fa-stopwatch:before {
  content: "\f2f2";
}

.fa-stopwatch-20:before {
  content: "\e06f";
}

.fa-store:before {
  content: "\f54e";
}

.fa-store-alt:before {
  content: "\f54f";
}

.fa-store-alt-slash:before {
  content: "\e070";
}

.fa-store-slash:before {
  content: "\e071";
}

.fa-strava:before {
  content: "\f428";
}

.fa-stream:before {
  content: "\f550";
}

.fa-street-view:before {
  content: "\f21d";
}

.fa-strikethrough:before {
  content: "\f0cc";
}

.fa-stripe:before {
  content: "\f429";
}

.fa-stripe-s:before {
  content: "\f42a";
}

.fa-stroopwafel:before {
  content: "\f551";
}

.fa-studiovinari:before {
  content: "\f3f8";
}

.fa-stumbleupon:before {
  content: "\f1a4";
}

.fa-stumbleupon-circle:before {
  content: "\f1a3";
}

.fa-subscript:before {
  content: "\f12c";
}

.fa-subway:before {
  content: "\f239";
}

.fa-suitcase:before {
  content: "\f0f2";
}

.fa-suitcase-rolling:before {
  content: "\f5c1";
}

.fa-sun:before {
  content: "\f185";
}

.fa-superpowers:before {
  content: "\f2dd";
}

.fa-superscript:before {
  content: "\f12b";
}

.fa-supple:before {
  content: "\f3f9";
}

.fa-surprise:before {
  content: "\f5c2";
}

.fa-suse:before {
  content: "\f7d6";
}

.fa-swatchbook:before {
  content: "\f5c3";
}

.fa-swift:before {
  content: "\f8e1";
}

.fa-swimmer:before {
  content: "\f5c4";
}

.fa-swimming-pool:before {
  content: "\f5c5";
}

.fa-symfony:before {
  content: "\f83d";
}

.fa-synagogue:before {
  content: "\f69b";
}

.fa-sync:before {
  content: "\f021";
}

.fa-sync-alt:before {
  content: "\f2f1";
}

.fa-syringe:before {
  content: "\f48e";
}

.fa-table:before {
  content: "\f0ce";
}

.fa-table-tennis:before {
  content: "\f45d";
}

.fa-tablet:before {
  content: "\f10a";
}

.fa-tablet-alt:before {
  content: "\f3fa";
}

.fa-tablets:before {
  content: "\f490";
}

.fa-tachometer-alt:before {
  content: "\f3fd";
}

.fa-tag:before {
  content: "\f02b";
}

.fa-tags:before {
  content: "\f02c";
}

.fa-tape:before {
  content: "\f4db";
}

.fa-tasks:before {
  content: "\f0ae";
}

.fa-taxi:before {
  content: "\f1ba";
}

.fa-teamspeak:before {
  content: "\f4f9";
}

.fa-teeth:before {
  content: "\f62e";
}

.fa-teeth-open:before {
  content: "\f62f";
}

.fa-telegram:before {
  content: "\f2c6";
}

.fa-telegram-plane:before {
  content: "\f3fe";
}

.fa-temperature-high:before {
  content: "\f769";
}

.fa-temperature-low:before {
  content: "\f76b";
}

.fa-tencent-weibo:before {
  content: "\f1d5";
}

.fa-tenge:before {
  content: "\f7d7";
}

.fa-terminal:before {
  content: "\f120";
}

.fa-text-height:before {
  content: "\f034";
}

.fa-text-width:before {
  content: "\f035";
}

.fa-th:before {
  content: "\f00a";
}

.fa-th-large:before {
  content: "\f009";
}

.fa-th-list:before {
  content: "\f00b";
}

.fa-the-red-yeti:before {
  content: "\f69d";
}

.fa-theater-masks:before {
  content: "\f630";
}

.fa-themeco:before {
  content: "\f5c6";
}

.fa-themeisle:before {
  content: "\f2b2";
}

.fa-thermometer:before {
  content: "\f491";
}

.fa-thermometer-empty:before {
  content: "\f2cb";
}

.fa-thermometer-full:before {
  content: "\f2c7";
}

.fa-thermometer-half:before {
  content: "\f2c9";
}

.fa-thermometer-quarter:before {
  content: "\f2ca";
}

.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}

.fa-think-peaks:before {
  content: "\f731";
}

.fa-thumbs-down:before {
  content: "\f165";
}

.fa-thumbs-up:before {
  content: "\f164";
}

.fa-thumbtack:before {
  content: "\f08d";
}

.fa-ticket-alt:before {
  content: "\f3ff";
}

.fa-tiktok:before {
  content: "\e07b";
}

.fa-times:before {
  content: "\f00d";
}

.fa-times-circle:before {
  content: "\f057";
}

.fa-tint:before {
  content: "\f043";
}

.fa-tint-slash:before {
  content: "\f5c7";
}

.fa-tired:before {
  content: "\f5c8";
}

.fa-toggle-off:before {
  content: "\f204";
}

.fa-toggle-on:before {
  content: "\f205";
}

.fa-toilet:before {
  content: "\f7d8";
}

.fa-toilet-paper:before {
  content: "\f71e";
}

.fa-toilet-paper-slash:before {
  content: "\e072";
}

.fa-toolbox:before {
  content: "\f552";
}

.fa-tools:before {
  content: "\f7d9";
}

.fa-tooth:before {
  content: "\f5c9";
}

.fa-torah:before {
  content: "\f6a0";
}

.fa-torii-gate:before {
  content: "\f6a1";
}

.fa-tractor:before {
  content: "\f722";
}

.fa-trade-federation:before {
  content: "\f513";
}

.fa-trademark:before {
  content: "\f25c";
}

.fa-traffic-light:before {
  content: "\f637";
}

.fa-trailer:before {
  content: "\e041";
}

.fa-train:before {
  content: "\f238";
}

.fa-tram:before {
  content: "\f7da";
}

.fa-transgender:before {
  content: "\f224";
}

.fa-transgender-alt:before {
  content: "\f225";
}

.fa-trash:before {
  content: "\f1f8";
}

.fa-trash-alt:before {
  content: "\f2ed";
}

.fa-trash-restore:before {
  content: "\f829";
}

.fa-trash-restore-alt:before {
  content: "\f82a";
}

.fa-tree:before {
  content: "\f1bb";
}

.fa-trello:before {
  content: "\f181";
}

.fa-trophy:before {
  content: "\f091";
}

.fa-truck:before {
  content: "\f0d1";
}

.fa-truck-loading:before {
  content: "\f4de";
}

.fa-truck-monster:before {
  content: "\f63b";
}

.fa-truck-moving:before {
  content: "\f4df";
}

.fa-truck-pickup:before {
  content: "\f63c";
}

.fa-tshirt:before {
  content: "\f553";
}

.fa-tty:before {
  content: "\f1e4";
}

.fa-tumblr:before {
  content: "\f173";
}

.fa-tumblr-square:before {
  content: "\f174";
}

.fa-tv:before {
  content: "\f26c";
}

.fa-twitch:before {
  content: "\f1e8";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-twitter-square:before {
  content: "\f081";
}

.fa-typo3:before {
  content: "\f42b";
}

.fa-uber:before {
  content: "\f402";
}

.fa-ubuntu:before {
  content: "\f7df";
}

.fa-uikit:before {
  content: "\f403";
}

.fa-umbraco:before {
  content: "\f8e8";
}

.fa-umbrella:before {
  content: "\f0e9";
}

.fa-umbrella-beach:before {
  content: "\f5ca";
}

.fa-uncharted:before {
  content: "\e084";
}

.fa-underline:before {
  content: "\f0cd";
}

.fa-undo:before {
  content: "\f0e2";
}

.fa-undo-alt:before {
  content: "\f2ea";
}

.fa-uniregistry:before {
  content: "\f404";
}

.fa-unity:before {
  content: "\e049";
}

.fa-universal-access:before {
  content: "\f29a";
}

.fa-university:before {
  content: "\f19c";
}

.fa-unlink:before {
  content: "\f127";
}

.fa-unlock:before {
  content: "\f09c";
}

.fa-unlock-alt:before {
  content: "\f13e";
}

.fa-unsplash:before {
  content: "\e07c";
}

.fa-untappd:before {
  content: "\f405";
}

.fa-upload:before {
  content: "\f093";
}

.fa-ups:before {
  content: "\f7e0";
}

.fa-usb:before {
  content: "\f287";
}

.fa-user:before {
  content: "\f007";
}

.fa-user-alt:before {
  content: "\f406";
}

.fa-user-alt-slash:before {
  content: "\f4fa";
}

.fa-user-astronaut:before {
  content: "\f4fb";
}

.fa-user-check:before {
  content: "\f4fc";
}

.fa-user-circle:before {
  content: "\f2bd";
}

.fa-user-clock:before {
  content: "\f4fd";
}

.fa-user-cog:before {
  content: "\f4fe";
}

.fa-user-edit:before {
  content: "\f4ff";
}

.fa-user-friends:before {
  content: "\f500";
}

.fa-user-graduate:before {
  content: "\f501";
}

.fa-user-injured:before {
  content: "\f728";
}

.fa-user-lock:before {
  content: "\f502";
}

.fa-user-md:before {
  content: "\f0f0";
}

.fa-user-minus:before {
  content: "\f503";
}

.fa-user-ninja:before {
  content: "\f504";
}

.fa-user-nurse:before {
  content: "\f82f";
}

.fa-user-plus:before {
  content: "\f234";
}

.fa-user-secret:before {
  content: "\f21b";
}

.fa-user-shield:before {
  content: "\f505";
}

.fa-user-slash:before {
  content: "\f506";
}

.fa-user-tag:before {
  content: "\f507";
}

.fa-user-tie:before {
  content: "\f508";
}

.fa-user-times:before {
  content: "\f235";
}

.fa-users:before {
  content: "\f0c0";
}

.fa-users-cog:before {
  content: "\f509";
}

.fa-users-slash:before {
  content: "\e073";
}

.fa-usps:before {
  content: "\f7e1";
}

.fa-ussunnah:before {
  content: "\f407";
}

.fa-utensil-spoon:before {
  content: "\f2e5";
}

.fa-utensils:before {
  content: "\f2e7";
}

.fa-vaadin:before {
  content: "\f408";
}

.fa-vector-square:before {
  content: "\f5cb";
}

.fa-venus:before {
  content: "\f221";
}

.fa-venus-double:before {
  content: "\f226";
}

.fa-venus-mars:before {
  content: "\f228";
}

.fa-vest:before {
  content: "\e085";
}

.fa-vest-patches:before {
  content: "\e086";
}

.fa-viacoin:before {
  content: "\f237";
}

.fa-viadeo:before {
  content: "\f2a9";
}

.fa-viadeo-square:before {
  content: "\f2aa";
}

.fa-vial:before {
  content: "\f492";
}

.fa-vials:before {
  content: "\f493";
}

.fa-viber:before {
  content: "\f409";
}

.fa-video:before {
  content: "\f03d";
}

.fa-video-slash:before {
  content: "\f4e2";
}

.fa-vihara:before {
  content: "\f6a7";
}

.fa-vimeo:before {
  content: "\f40a";
}

.fa-vimeo-square:before {
  content: "\f194";
}

.fa-vimeo-v:before {
  content: "\f27d";
}

.fa-vine:before {
  content: "\f1ca";
}

.fa-virus:before {
  content: "\e074";
}

.fa-virus-slash:before {
  content: "\e075";
}

.fa-viruses:before {
  content: "\e076";
}

.fa-vk:before {
  content: "\f189";
}

.fa-vnv:before {
  content: "\f40b";
}

.fa-voicemail:before {
  content: "\f897";
}

.fa-volleyball-ball:before {
  content: "\f45f";
}

.fa-volume-down:before {
  content: "\f027";
}

.fa-volume-mute:before {
  content: "\f6a9";
}

.fa-volume-off:before {
  content: "\f026";
}

.fa-volume-up:before {
  content: "\f028";
}

.fa-vote-yea:before {
  content: "\f772";
}

.fa-vr-cardboard:before {
  content: "\f729";
}

.fa-vuejs:before {
  content: "\f41f";
}

.fa-walking:before {
  content: "\f554";
}

.fa-wallet:before {
  content: "\f555";
}

.fa-warehouse:before {
  content: "\f494";
}

.fa-watchman-monitoring:before {
  content: "\e087";
}

.fa-water:before {
  content: "\f773";
}

.fa-wave-square:before {
  content: "\f83e";
}

.fa-waze:before {
  content: "\f83f";
}

.fa-weebly:before {
  content: "\f5cc";
}

.fa-weibo:before {
  content: "\f18a";
}

.fa-weight:before {
  content: "\f496";
}

.fa-weight-hanging:before {
  content: "\f5cd";
}

.fa-weixin:before {
  content: "\f1d7";
}

.fa-whatsapp:before {
  content: "\f232";
}

.fa-whatsapp-square:before {
  content: "\f40c";
}

.fa-wheelchair:before {
  content: "\f193";
}

.fa-whmcs:before {
  content: "\f40d";
}

.fa-wifi:before {
  content: "\f1eb";
}

.fa-wikipedia-w:before {
  content: "\f266";
}

.fa-wind:before {
  content: "\f72e";
}

.fa-window-close:before {
  content: "\f410";
}

.fa-window-maximize:before {
  content: "\f2d0";
}

.fa-window-minimize:before {
  content: "\f2d1";
}

.fa-window-restore:before {
  content: "\f2d2";
}

.fa-windows:before {
  content: "\f17a";
}

.fa-wine-bottle:before {
  content: "\f72f";
}

.fa-wine-glass:before {
  content: "\f4e3";
}

.fa-wine-glass-alt:before {
  content: "\f5ce";
}

.fa-wix:before {
  content: "\f5cf";
}

.fa-wizards-of-the-coast:before {
  content: "\f730";
}

.fa-wodu:before {
  content: "\e088";
}

.fa-wolf-pack-battalion:before {
  content: "\f514";
}

.fa-won-sign:before {
  content: "\f159";
}

.fa-wordpress:before {
  content: "\f19a";
}

.fa-wordpress-simple:before {
  content: "\f411";
}

.fa-wpbeginner:before {
  content: "\f297";
}

.fa-wpexplorer:before {
  content: "\f2de";
}

.fa-wpforms:before {
  content: "\f298";
}

.fa-wpressr:before {
  content: "\f3e4";
}

.fa-wrench:before {
  content: "\f0ad";
}

.fa-x-ray:before {
  content: "\f497";
}

.fa-xbox:before {
  content: "\f412";
}

.fa-xing:before {
  content: "\f168";
}

.fa-xing-square:before {
  content: "\f169";
}

.fa-y-combinator:before {
  content: "\f23b";
}

.fa-yahoo:before {
  content: "\f19e";
}

.fa-yammer:before {
  content: "\f840";
}

.fa-yandex:before {
  content: "\f413";
}

.fa-yandex-international:before {
  content: "\f414";
}

.fa-yarn:before {
  content: "\f7e3";
}

.fa-yelp:before {
  content: "\f1e9";
}

.fa-yen-sign:before {
  content: "\f157";
}

.fa-yin-yang:before {
  content: "\f6ad";
}

.fa-yoast:before {
  content: "\f2b1";
}

.fa-youtube:before {
  content: "\f167";
}

.fa-youtube-square:before {
  content: "\f431";
}

.fa-zhihu:before {
  content: "\f63f";
}

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

.sr-only-focusable:active,
.sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

@font-face {
  font-family: "Font Awesome 5 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/_next/static/media/fa-brands-400.b2970adc.eot);
  src: url(/_next/static/media/fa-brands-400.b2970adc.eot) format("embedded-opentype"), url(/_next/static/media/fa-brands-400.7edea186.woff2) format("woff2"), url(/_next/static/media/fa-brands-400.0e53fe4f.woff) format("woff"), url(/_next/static/media/fa-brands-400.9c02eaf6.ttf) format("truetype"), url(/_next/static/media/fa-brands-400.796fa1d1.svg) format("svg");
}
.fab {
  font-family: "Font Awesome 5 Brands";
}

@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/_next/static/media/fa-regular-400.a0140e7c.eot);
  src: url(/_next/static/media/fa-regular-400.a0140e7c.eot) format("embedded-opentype"), url(/_next/static/media/fa-regular-400.e2b3a9dc.woff2) format("woff2"), url(/_next/static/media/fa-regular-400.04dd5282.woff) format("woff"), url(/_next/static/media/fa-regular-400.7346017c.ttf) format("truetype"), url(/_next/static/media/fa-regular-400.d1d07af3.svg) format("svg");
}
.fab,
.far {
  font-weight: 400;
}

@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url(/_next/static/media/fa-solid-900.974801a4.eot);
  src: url(/_next/static/media/fa-solid-900.974801a4.eot) format("embedded-opentype"), url(/_next/static/media/fa-solid-900.620019ed.woff2) format("woff2"), url(/_next/static/media/fa-solid-900.e67670b0.woff) format("woff"), url(/_next/static/media/fa-solid-900.d5b0a356.ttf) format("truetype"), url(/_next/static/media/fa-solid-900.9fa9fe03.svg) format("svg");
}
.fa,
.far,
.fas {
  font-family: "Font Awesome 5 Free";
}

.fa,
.fas {
  font-weight: 900;
}
/*!*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[13].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[13].use[3]!./node_modules/next/dist/build/webpack/loaders/resolve-url-loader/index.js??ruleSet[1].rules[14].oneOf[13].use[4]!./node_modules/next/dist/compiled/sass-loader/cjs.js??ruleSet[1].rules[14].oneOf[13].use[5]!./public/assets/css/spacing.css ***!
  \*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-55 {
  margin-top: 55px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-65 {
  margin-top: 65px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-75 {
  margin-top: 75px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-85 {
  margin-top: 85px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-95 {
  margin-top: 95px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-105 {
  margin-top: 105px;
}

.mt-110 {
  margin-top: 110px;
}

.mt-115 {
  margin-top: 115px;
}

.mt-120 {
  margin-top: 120px;
}

.mt-125 {
  margin-top: 125px;
}

.mt-130 {
  margin-top: 130px;
}

.mt-135 {
  margin-top: 135px;
}

.mt-140 {
  margin-top: 140px;
}

.mt-145 {
  margin-top: 145px;
}

.mt-150 {
  margin-top: 150px;
}

.mt-155 {
  margin-top: 155px;
}

.mt-160 {
  margin-top: 160px;
}

.mt-165 {
  margin-top: 165px;
}

.mt-170 {
  margin-top: 170px;
}

.mt-175 {
  margin-top: 175px;
}

.mt-180 {
  margin-top: 180px;
}

.mt-185 {
  margin-top: 185px;
}

.mt-190 {
  margin-top: 190px;
}

.mt-195 {
  margin-top: 195px;
}

.mt-200 {
  margin-top: 200px;
}

.mt-205 {
  margin-top: 205px;
}

.mt-210 {
  margin-top: 210px;
}

.mt-215 {
  margin-top: 215px;
}

.mt-220 {
  margin-top: 220px;
}

.mt-225 {
  margin-top: 225px;
}

.mt-230 {
  margin-top: 230px;
}

.mt-235 {
  margin-top: 235px;
}

.mt-240 {
  margin-top: 240px;
}

.mt-245 {
  margin-top: 245px;
}

.mt-250 {
  margin-top: 250px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-85 {
  margin-bottom: 85px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-95 {
  margin-bottom: 95px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-105 {
  margin-bottom: 105px;
}

.mb-110 {
  margin-bottom: 110px;
}

.mb-115 {
  margin-bottom: 115px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb-125 {
  margin-bottom: 125px;
}

.mb-130 {
  margin-bottom: 130px;
}

.mb-135 {
  margin-bottom: 135px;
}

.mb-140 {
  margin-bottom: 140px;
}

.mb-145 {
  margin-bottom: 145px;
}

.mb-150 {
  margin-bottom: 150px;
}

.mb-155 {
  margin-bottom: 155px;
}

.mb-160 {
  margin-bottom: 160px;
}

.mb-165 {
  margin-bottom: 165px;
}

.mb-170 {
  margin-bottom: 170px;
}

.mb-175 {
  margin-bottom: 175px;
}

.mb-180 {
  margin-bottom: 180px;
}

.mb-185 {
  margin-bottom: 185px;
}

.mb-190 {
  margin-bottom: 190px;
}

.mb-195 {
  margin-bottom: 195px;
}

.mb-200 {
  margin-bottom: 200px;
}

.mb-205 {
  margin-bottom: 205px;
}

.mb-210 {
  margin-bottom: 210px;
}

.mb-215 {
  margin-bottom: 215px;
}

.mb-220 {
  margin-bottom: 220px;
}

.mb-225 {
  margin-bottom: 225px;
}

.mb-230 {
  margin-bottom: 230px;
}

.mb-235 {
  margin-bottom: 235px;
}

.mb-240 {
  margin-bottom: 240px;
}

.mb-245 {
  margin-bottom: 245px;
}

.mb-250 {
  margin-bottom: 250px;
}

.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-105 {
  padding-top: 105px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-115 {
  padding-top: 115px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-125 {
  padding-top: 125px;
}

.pt-130 {
  padding-top: 130px;
}

.pt-135 {
  padding-top: 135px;
}

.pt-140 {
  padding-top: 140px;
}

.pt-145 {
  padding-top: 145px;
}

.pt-150 {
  padding-top: 150px;
}

.pt-155 {
  padding-top: 155px;
}

.pt-160 {
  padding-top: 160px;
}

.pt-165 {
  padding-top: 165px;
}

.pt-170 {
  padding-top: 170px;
}

.pt-175 {
  padding-top: 175px;
}

.pt-180 {
  padding-top: 180px;
}

.pt-185 {
  padding-top: 185px;
}

.pt-190 {
  padding-top: 190px;
}

.pt-195 {
  padding-top: 195px;
}

.pt-200 {
  padding-top: 200px;
}

.pt-205 {
  padding-top: 205px;
}

.pt-210 {
  padding-top: 210px;
}

.pt-215 {
  padding-top: 215px;
}

.pt-220 {
  padding-top: 220px;
}

.pt-225 {
  padding-top: 225px;
}

.pt-230 {
  padding-top: 230px;
}

.pt-235 {
  padding-top: 235px;
}

.pt-240 {
  padding-top: 240px;
}

.pt-245 {
  padding-top: 245px;
}

.pt-250 {
  padding-top: 250px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-105 {
  padding-bottom: 105px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-125 {
  padding-bottom: 125px;
}

.pb-130 {
  padding-bottom: 130px;
}

.pb-135 {
  padding-bottom: 135px;
}

.pb-140 {
  padding-bottom: 140px;
}

.pb-145 {
  padding-bottom: 145px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pb-155 {
  padding-bottom: 155px;
}

.pb-160 {
  padding-bottom: 160px;
}

.pb-165 {
  padding-bottom: 165px;
}

.pb-170 {
  padding-bottom: 170px;
}

.pb-175 {
  padding-bottom: 175px;
}

.pb-180 {
  padding-bottom: 180px;
}

.pb-185 {
  padding-bottom: 185px;
}

.pb-190 {
  padding-bottom: 190px;
}

.pb-195 {
  padding-bottom: 195px;
}

.pb-200 {
  padding-bottom: 200px;
}

.pb-205 {
  padding-bottom: 205px;
}

.pb-210 {
  padding-bottom: 210px;
}

.pb-215 {
  padding-bottom: 215px;
}

.pb-220 {
  padding-bottom: 220px;
}

.pb-225 {
  padding-bottom: 225px;
}

.pb-230 {
  padding-bottom: 230px;
}

.pb-235 {
  padding-bottom: 235px;
}

.pb-240 {
  padding-bottom: 240px;
}

.pb-245 {
  padding-bottom: 245px;
}

.pb-250 {
  padding-bottom: 250px;
}
/*!**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[13].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[13].use[3]!./node_modules/next/dist/build/webpack/loaders/resolve-url-loader/index.js??ruleSet[1].rules[14].oneOf[13].use[4]!./node_modules/next/dist/compiled/sass-loader/cjs.js??ruleSet[1].rules[14].oneOf[13].use[5]!./public/assets/css/plyr.css ***!
  \**************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
@keyframes plyr-progress {
  to {
    background-position: 25px 0;
    background-position: var(--plyr-progress-loading-size, 25px) 0;
  }
}
@keyframes plyr-popup {
  0% {
    opacity: 0.5;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes plyr-fade-in {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.plyr {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  align-items: center;
  direction: ltr;
  display: flex;
  flex-direction: column;
  font-family: inherit;
  font-family: var(--plyr-font-family, inherit);
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
  font-weight: 400;
  font-weight: var(--plyr-font-weight-regular, 400);
  line-height: 1.7;
  line-height: var(--plyr-line-height, 1.7);
  max-width: 100%;
  min-width: 200px;
  position: relative;
  text-shadow: none;
  transition: box-shadow 0.3s ease;
  z-index: 0;
}

.plyr audio,
.plyr iframe,
.plyr video {
  display: block;
  height: 100%;
  width: 100%;
}

.plyr button {
  font: inherit;
  line-height: inherit;
  width: auto;
}

.plyr:focus {
  outline: 0;
}

.plyr--full-ui {
  box-sizing: border-box;
}

.plyr--full-ui *,
.plyr--full-ui :after,
.plyr--full-ui :before {
  box-sizing: inherit;
}

.plyr--full-ui a,
.plyr--full-ui button,
.plyr--full-ui input,
.plyr--full-ui label {
  touch-action: manipulation;
}

.plyr__badge {
  background: #4a5464;
  background: var(--plyr-badge-background, #4a5464);
  border-radius: 2px;
  border-radius: var(--plyr-badge-border-radius, 2px);
  color: #fff;
  color: var(--plyr-badge-text-color, #fff);
  font-size: 9px;
  font-size: var(--plyr-font-size-badge, 9px);
  line-height: 1;
  padding: 3px 4px;
}

.plyr--full-ui ::-webkit-media-text-track-container {
  display: none;
}

.plyr__captions {
  animation: plyr-fade-in 0.3s ease;
  bottom: 0;
  display: none;
  font-size: 13px;
  font-size: var(--plyr-font-size-small, 13px);
  left: 0;
  padding: 10px;
  padding: var(--plyr-control-spacing, 10px);
  position: absolute;
  text-align: center;
  transition: transform 0.4s ease-in-out;
  width: 100%;
}

.plyr__captions span:empty {
  display: none;
}

@media (min-width: 480px) {
  .plyr__captions {
    font-size: 15px;
    font-size: var(--plyr-font-size-base, 15px);
    padding: 20px;
    padding: calc(var(--plyr-control-spacing, 10px) * 2);
  }
}
@media (min-width: 768px) {
  .plyr__captions {
    font-size: 18px;
    font-size: var(--plyr-font-size-large, 18px);
  }
}
.plyr--captions-active .plyr__captions {
  display: block;
}

.plyr:not(.plyr--hide-controls) .plyr__controls:not(:empty) ~ .plyr__captions {
  transform: translateY(-40px);
  transform: translateY(calc(var(--plyr-control-spacing, 10px) * -4));
}

.plyr__caption {
  background: rgba(0, 0, 0, 0.8);
  background: var(--plyr-captions-background, rgba(0, 0, 0, 0.8));
  border-radius: 2px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  color: #fff;
  color: var(--plyr-captions-text-color, #fff);
  line-height: 185%;
  padding: 0.2em 0.5em;
  white-space: pre-wrap;
}

.plyr__caption div {
  display: inline;
}

.plyr__control {
  background: 0 0;
  border: 0;
  border-radius: 3px;
  border-radius: var(--plyr-control-radius, 3px);
  color: inherit;
  cursor: pointer;
  flex-shrink: 0;
  overflow: visible;
  padding: 7px;
  padding: calc(var(--plyr-control-spacing, 10px) * 0.7);
  position: relative;
  transition: all 0.3s ease;
}

.plyr__control svg {
  fill: currentColor;
  display: block;
  height: 18px;
  height: var(--plyr-control-icon-size, 18px);
  pointer-events: none;
  width: 18px;
  width: var(--plyr-control-icon-size, 18px);
}

.plyr__control:focus {
  outline: 0;
}

.plyr__control.plyr__tab-focus {
  outline: 3px dotted #00b2ff;
  outline: var(--plyr-tab-focus-color, var(--plyr-color-main, var(--plyr-color-main, #00b2ff))) dotted 3px;
  outline-offset: 2px;
}

a.plyr__control {
  text-decoration: none;
}

.plyr__control.plyr__control--pressed .icon--not-pressed,
.plyr__control.plyr__control--pressed .label--not-pressed,
.plyr__control:not(.plyr__control--pressed) .icon--pressed,
.plyr__control:not(.plyr__control--pressed) .label--pressed,
a.plyr__control:after,
a.plyr__control:before {
  display: none;
}

.plyr--full-ui ::-webkit-media-controls {
  display: none;
}

.plyr__controls {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  text-align: center;
}

.plyr__controls .plyr__progress__container {
  flex: 1 1;
  min-width: 0;
}

.plyr__controls .plyr__controls__item {
  margin-left: 2.5px;
  margin-left: calc(var(--plyr-control-spacing, 10px) / 4);
}

.plyr__controls .plyr__controls__item:first-child {
  margin-left: 0;
  margin-right: auto;
}

.plyr__controls .plyr__controls__item.plyr__progress__container {
  padding-left: 2.5px;
  padding-left: calc(var(--plyr-control-spacing, 10px) / 4);
}

.plyr__controls .plyr__controls__item.plyr__time {
  padding: 0 5px;
  padding: 0 calc(var(--plyr-control-spacing, 10px) / 2);
}

.plyr__controls .plyr__controls__item.plyr__progress__container:first-child,
.plyr__controls .plyr__controls__item.plyr__time + .plyr__time,
.plyr__controls .plyr__controls__item.plyr__time:first-child {
  padding-left: 0;
}

.plyr [data-plyr=airplay],
.plyr [data-plyr=captions],
.plyr [data-plyr=fullscreen],
.plyr [data-plyr=pip],
.plyr__controls:empty {
  display: none;
}

.plyr--airplay-supported [data-plyr=airplay],
.plyr--captions-enabled [data-plyr=captions],
.plyr--fullscreen-enabled [data-plyr=fullscreen],
.plyr--pip-supported [data-plyr=pip] {
  display: inline-block;
}

.plyr__menu {
  display: flex;
  position: relative;
}

.plyr__menu .plyr__control svg {
  transition: transform 0.3s ease;
}

.plyr__menu .plyr__control[aria-expanded=true] svg {
  transform: rotate(90deg);
}

.plyr__menu .plyr__control[aria-expanded=true] .plyr__tooltip {
  display: none;
}

.plyr__menu__container {
  animation: plyr-popup 0.2s ease;
  background: hsla(0, 0%, 100%, 0.9);
  background: var(--plyr-menu-background, hsla(0, 0%, 100%, 0.9));
  border-radius: 4px;
  bottom: 100%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  box-shadow: var(--plyr-menu-shadow, 0 1px 2px rgba(0, 0, 0, 0.15));
  color: #4a5464;
  color: var(--plyr-menu-color, #4a5464);
  font-size: 15px;
  font-size: var(--plyr-font-size-base, 15px);
  margin-bottom: 10px;
  position: absolute;
  right: -3px;
  text-align: left;
  white-space: nowrap;
  z-index: 3;
}

.plyr__menu__container > div {
  overflow: hidden;
  transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1), width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.plyr__menu__container:after {
  border: 4px solid transparent;
  border-top-color: hsla(0, 0%, 100%, 0.9);
  border: var(--plyr-menu-arrow-size, 4px) solid transparent;
  border-top-color: var(--plyr-menu-background, hsla(0, 0%, 100%, 0.9));
  content: "";
  height: 0;
  position: absolute;
  right: 14px;
  right: calc(var(--plyr-control-icon-size, 18px) / 2 + var(--plyr-control-spacing, 10px) * 0.7 - var(--plyr-menu-arrow-size, 4px) / 2);
  top: 100%;
  width: 0;
}

.plyr__menu__container [role=menu] {
  padding: 7px;
  padding: calc(var(--plyr-control-spacing, 10px) * 0.7);
}

.plyr__menu__container [role=menuitem],
.plyr__menu__container [role=menuitemradio] {
  margin-top: 2px;
}

.plyr__menu__container [role=menuitem]:first-child,
.plyr__menu__container [role=menuitemradio]:first-child {
  margin-top: 0;
}

.plyr__menu__container .plyr__control {
  align-items: center;
  color: #4a5464;
  color: var(--plyr-menu-color, #4a5464);
  display: flex;
  font-size: 13px;
  font-size: var(--plyr-font-size-menu, var(--plyr-font-size-small, 13px));
  padding: 4.66667px 10.5px;
  padding: calc(var(--plyr-control-spacing, 10px) * 0.7 / 1.5) calc(var(--plyr-control-spacing, 10px) * 0.7 * 1.5);
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
  width: 100%;
}

.plyr__menu__container .plyr__control > span {
  align-items: inherit;
  display: flex;
  width: 100%;
}

.plyr__menu__container .plyr__control:after {
  border: 4px solid transparent;
  border: var(--plyr-menu-item-arrow-size, 4px) solid transparent;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.plyr__menu__container .plyr__control--forward {
  padding-right: 28px;
  padding-right: calc(var(--plyr-control-spacing, 10px) * 0.7 * 4);
}

.plyr__menu__container .plyr__control--forward:after {
  border-left-color: #728197;
  border-left-color: var(--plyr-menu-arrow-color, #728197);
  right: 6.5px;
  right: calc(var(--plyr-control-spacing, 10px) * 0.7 * 1.5 - var(--plyr-menu-item-arrow-size, 4px));
}

.plyr__menu__container .plyr__control--forward.plyr__tab-focus:after,
.plyr__menu__container .plyr__control--forward:hover:after {
  border-left-color: currentColor;
}

.plyr__menu__container .plyr__control--back {
  font-weight: 400;
  font-weight: var(--plyr-font-weight-regular, 400);
  margin: 7px;
  margin: calc(var(--plyr-control-spacing, 10px) * 0.7);
  margin-bottom: 3.5px;
  margin-bottom: calc(var(--plyr-control-spacing, 10px) * 0.7 / 2);
  padding-left: 28px;
  padding-left: calc(var(--plyr-control-spacing, 10px) * 0.7 * 4);
  position: relative;
  width: calc(100% - 14px);
  width: calc(100% - var(--plyr-control-spacing, 10px) * 0.7 * 2);
}

.plyr__menu__container .plyr__control--back:after {
  border-right-color: #728197;
  border-right-color: var(--plyr-menu-arrow-color, #728197);
  left: 6.5px;
  left: calc(var(--plyr-control-spacing, 10px) * 0.7 * 1.5 - var(--plyr-menu-item-arrow-size, 4px));
}

.plyr__menu__container .plyr__control--back:before {
  background: #dcdfe5;
  background: var(--plyr-menu-back-border-color, #dcdfe5);
  box-shadow: 0 1px 0 #fff;
  box-shadow: 0 1px 0 var(--plyr-menu-back-border-shadow-color, #fff);
  content: "";
  height: 1px;
  left: 0;
  margin-top: 3.5px;
  margin-top: calc(var(--plyr-control-spacing, 10px) * 0.7 / 2);
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 100%;
}

.plyr__menu__container .plyr__control--back.plyr__tab-focus:after,
.plyr__menu__container .plyr__control--back:hover:after {
  border-right-color: currentColor;
}

.plyr__menu__container .plyr__control[role=menuitemradio] {
  padding-left: 7px;
  padding-left: calc(var(--plyr-control-spacing, 10px) * 0.7);
}

.plyr__menu__container .plyr__control[role=menuitemradio]:after,
.plyr__menu__container .plyr__control[role=menuitemradio]:before {
  border-radius: 100%;
}

.plyr__menu__container .plyr__control[role=menuitemradio]:before {
  background: rgba(0, 0, 0, 0.1);
  content: "";
  display: block;
  flex-shrink: 0;
  height: 16px;
  margin-right: 10px;
  margin-right: var(--plyr-control-spacing, 10px);
  transition: all 0.3s ease;
  width: 16px;
}

.plyr__menu__container .plyr__control[role=menuitemradio]:after {
  background: #fff;
  border: 0;
  height: 6px;
  left: 12px;
  opacity: 0;
  top: 50%;
  transform: translateY(-50%) scale(0);
  transition: transform 0.3s ease, opacity 0.3s ease;
  width: 6px;
}

.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]:before {
  background: #00b2ff;
  background: var(--plyr-control-toggle-checked-background, var(--plyr-color-main, var(--plyr-color-main, #00b2ff)));
}

.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]:after {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.plyr__menu__container .plyr__control[role=menuitemradio].plyr__tab-focus:before,
.plyr__menu__container .plyr__control[role=menuitemradio]:hover:before {
  background: rgba(35, 40, 47, 0.1);
}

.plyr__menu__container .plyr__menu__value {
  align-items: center;
  display: flex;
  margin-left: auto;
  margin-right: -5px;
  margin-right: calc(var(--plyr-control-spacing, 10px) * 0.7 * -1 + 2);
  overflow: hidden;
  padding-left: 24.5px;
  padding-left: calc(var(--plyr-control-spacing, 10px) * 0.7 * 3.5);
  pointer-events: none;
}

.plyr--full-ui input[type=range] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: 0 0;
  border: 0;
  border-radius: 26px;
  border-radius: calc(var(--plyr-range-thumb-height, 13px) * 2);
  color: #00b2ff;
  color: var(--plyr-range-fill-background, var(--plyr-color-main, var(--plyr-color-main, #00b2ff)));
  display: block;
  height: 19px;
  height: calc(var(--plyr-range-thumb-active-shadow-width, 3px) * 2 + var(--plyr-range-thumb-height, 13px));
  margin: 0;
  min-width: 0;
  padding: 0;
  transition: box-shadow 0.3s ease;
  width: 100%;
}

.plyr--full-ui input[type=range]::-webkit-slider-runnable-track {
  background: 0 0;
  background-image: linear-gradient(90deg, currentColor 0, transparent 0);
  background-image: linear-gradient(to right, currentColor var(--value, 0), transparent var(--value, 0));
  border: 0;
  border-radius: 2.5px;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: 5px;
  height: var(--plyr-range-track-height, 5px);
  -webkit-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  -webkit-user-select: none;
  user-select: none;
}

.plyr--full-ui input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  background: #fff;
  background: var(--plyr-range-thumb-background, #fff);
  border: 0;
  border-radius: 100%;
  box-shadow: 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2);
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2));
  height: 13px;
  height: var(--plyr-range-thumb-height, 13px);
  margin-top: -4px;
  margin-top: calc((var(--plyr-range-thumb-height, 13px) - var(--plyr-range-track-height, 5px)) / 2 * -1);
  position: relative;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 13px;
  width: var(--plyr-range-thumb-height, 13px);
}

.plyr--full-ui input[type=range]::-moz-range-track {
  background: 0 0;
  border: 0;
  border-radius: 2.5px;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: 5px;
  height: var(--plyr-range-track-height, 5px);
  -moz-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  -moz-user-select: none;
       user-select: none;
}

.plyr--full-ui input[type=range]::-moz-range-thumb {
  background: #fff;
  background: var(--plyr-range-thumb-background, #fff);
  border: 0;
  border-radius: 100%;
  box-shadow: 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2);
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2));
  height: 13px;
  height: var(--plyr-range-thumb-height, 13px);
  position: relative;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 13px;
  width: var(--plyr-range-thumb-height, 13px);
}

.plyr--full-ui input[type=range]::-moz-range-progress {
  background: currentColor;
  border-radius: 2.5px;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: 5px;
  height: var(--plyr-range-track-height, 5px);
}

.plyr--full-ui input[type=range]::-ms-track {
  color: transparent;
}

.plyr--full-ui input[type=range]::-ms-fill-upper,
.plyr--full-ui input[type=range]::-ms-track {
  background: 0 0;
  border: 0;
  border-radius: 2.5px;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: 5px;
  height: var(--plyr-range-track-height, 5px);
  -ms-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  user-select: none;
}

.plyr--full-ui input[type=range]::-ms-fill-lower {
  background: 0 0;
  background: currentColor;
  border: 0;
  border-radius: 2.5px;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: 5px;
  height: var(--plyr-range-track-height, 5px);
  -ms-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  user-select: none;
}

.plyr--full-ui input[type=range]::-ms-thumb {
  background: #fff;
  background: var(--plyr-range-thumb-background, #fff);
  border: 0;
  border-radius: 100%;
  box-shadow: 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2);
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2));
  height: 13px;
  height: var(--plyr-range-thumb-height, 13px);
  margin-top: 0;
  position: relative;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 13px;
  width: var(--plyr-range-thumb-height, 13px);
}

.plyr--full-ui input[type=range]::-ms-tooltip {
  display: none;
}

.plyr--full-ui input[type=range]::-moz-focus-outer {
  border: 0;
}

.plyr--full-ui input[type=range]:focus {
  outline: 0;
}

.plyr--full-ui input[type=range].plyr__tab-focus::-webkit-slider-runnable-track {
  outline: 3px dotted #00b2ff;
  outline: var(--plyr-tab-focus-color, var(--plyr-color-main, var(--plyr-color-main, #00b2ff))) dotted 3px;
  outline-offset: 2px;
}

.plyr--full-ui input[type=range].plyr__tab-focus::-moz-range-track {
  outline: 3px dotted #00b2ff;
  outline: var(--plyr-tab-focus-color, var(--plyr-color-main, var(--plyr-color-main, #00b2ff))) dotted 3px;
  outline-offset: 2px;
}

.plyr--full-ui input[type=range].plyr__tab-focus::-ms-track {
  outline: 3px dotted #00b2ff;
  outline: var(--plyr-tab-focus-color, var(--plyr-color-main, var(--plyr-color-main, #00b2ff))) dotted 3px;
  outline-offset: 2px;
}

.plyr__poster {
  background-color: #000;
  background-color: var(--plyr-video-background, var(--plyr-video-background, #000));
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 0.2s ease;
  width: 100%;
  z-index: 1;
}

.plyr--stopped.plyr__poster-enabled .plyr__poster {
  opacity: 1;
}

.plyr--youtube.plyr--paused.plyr__poster-enabled:not(.plyr--stopped) .plyr__poster {
  display: none;
}

.plyr__time {
  font-size: 13px;
  font-size: var(--plyr-font-size-time, var(--plyr-font-size-small, 13px));
}

.plyr__time + .plyr__time:before {
  content: "⁄";
  margin-right: 10px;
  margin-right: var(--plyr-control-spacing, 10px);
}

@media (max-width: 767px) {
  .plyr__time + .plyr__time {
    display: none;
  }
}
.plyr__tooltip {
  background: hsla(0, 0%, 100%, 0.9);
  background: var(--plyr-tooltip-background, hsla(0, 0%, 100%, 0.9));
  border-radius: 5px;
  border-radius: var(--plyr-tooltip-radius, 5px);
  bottom: 100%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  box-shadow: var(--plyr-tooltip-shadow, 0 1px 2px rgba(0, 0, 0, 0.15));
  color: #4a5464;
  color: var(--plyr-tooltip-color, #4a5464);
  font-size: 13px;
  font-size: var(--plyr-font-size-small, 13px);
  font-weight: 400;
  font-weight: var(--plyr-font-weight-regular, 400);
  left: 50%;
  line-height: 1.3;
  margin-bottom: 10px;
  margin-bottom: calc(var(--plyr-control-spacing, 10px) / 2 * 2);
  opacity: 0;
  padding: 5px 7.5px;
  padding: calc(var(--plyr-control-spacing, 10px) / 2) calc(var(--plyr-control-spacing, 10px) / 2 * 1.5);
  pointer-events: none;
  position: absolute;
  transform: translate(-50%, 10px) scale(0.8);
  transform-origin: 50% 100%;
  transition: transform 0.2s ease 0.1s, opacity 0.2s ease 0.1s;
  white-space: nowrap;
  z-index: 2;
}

.plyr__tooltip:before {
  border-left: 4px solid transparent;
  border-left: var(--plyr-tooltip-arrow-size, 4px) solid transparent;
  border-right: 4px solid transparent;
  border-right: var(--plyr-tooltip-arrow-size, 4px) solid transparent;
  border-top: 4px solid hsla(0, 0%, 100%, 0.9);
  border-top: var(--plyr-tooltip-arrow-size, 4px) solid var(--plyr-tooltip-background, hsla(0, 0%, 100%, 0.9));
  bottom: -4px;
  bottom: calc(var(--plyr-tooltip-arrow-size, 4px) * -1);
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 0;
  z-index: 2;
}

.plyr .plyr__control.plyr__tab-focus .plyr__tooltip,
.plyr .plyr__control:hover .plyr__tooltip,
.plyr__tooltip--visible {
  opacity: 1;
  transform: translate(-50%) scale(1);
}

.plyr .plyr__control:hover .plyr__tooltip {
  z-index: 3;
}

.plyr__controls > .plyr__control:first-child .plyr__tooltip,
.plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip {
  left: 0;
  transform: translateY(10px) scale(0.8);
  transform-origin: 0 100%;
}

.plyr__controls > .plyr__control:first-child .plyr__tooltip:before,
.plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip:before {
  left: 16px;
  left: calc(var(--plyr-control-icon-size, 18px) / 2 + var(--plyr-control-spacing, 10px) * 0.7);
}

.plyr__controls > .plyr__control:last-child .plyr__tooltip {
  left: auto;
  right: 0;
  transform: translateY(10px) scale(0.8);
  transform-origin: 100% 100%;
}

.plyr__controls > .plyr__control:last-child .plyr__tooltip:before {
  left: auto;
  right: 16px;
  right: calc(var(--plyr-control-icon-size, 18px) / 2 + var(--plyr-control-spacing, 10px) * 0.7);
  transform: translateX(50%);
}

.plyr__controls > .plyr__control:first-child .plyr__tooltip--visible,
.plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip--visible,
.plyr__controls > .plyr__control:first-child + .plyr__control.plyr__tab-focus .plyr__tooltip,
.plyr__controls > .plyr__control:first-child + .plyr__control:hover .plyr__tooltip,
.plyr__controls > .plyr__control:first-child.plyr__tab-focus .plyr__tooltip,
.plyr__controls > .plyr__control:first-child:hover .plyr__tooltip,
.plyr__controls > .plyr__control:last-child .plyr__tooltip--visible,
.plyr__controls > .plyr__control:last-child.plyr__tab-focus .plyr__tooltip,
.plyr__controls > .plyr__control:last-child:hover .plyr__tooltip {
  transform: translate(0) scale(1);
}

.plyr__progress {
  left: 6.5px;
  left: calc(var(--plyr-range-thumb-height, 13px) * 0.5);
  margin-right: 13px;
  margin-right: var(--plyr-range-thumb-height, 13px);
  position: relative;
}

.plyr__progress input[type=range],
.plyr__progress__buffer {
  margin-left: -6.5px;
  margin-left: calc(var(--plyr-range-thumb-height, 13px) * -0.5);
  margin-right: -6.5px;
  margin-right: calc(var(--plyr-range-thumb-height, 13px) * -0.5);
  width: calc(100% + 13px);
  width: calc(100% + var(--plyr-range-thumb-height, 13px));
}

.plyr__progress input[type=range] {
  position: relative;
  z-index: 2;
}

.plyr__progress .plyr__tooltip {
  left: 0;
  max-width: 120px;
  overflow-wrap: break-word;
  white-space: normal;
}

.plyr__progress__buffer {
  -webkit-appearance: none;
  background: 0 0;
  border: 0;
  border-radius: 100px;
  height: 5px;
  height: var(--plyr-range-track-height, 5px);
  left: 0;
  margin-top: -2.5px;
  margin-top: calc(var(--plyr-range-track-height, 5px) / 2 * -1);
  padding: 0;
  position: absolute;
  top: 50%;
}

.plyr__progress__buffer::-webkit-progress-bar {
  background: 0 0;
}

.plyr__progress__buffer::-webkit-progress-value {
  background: currentColor;
  border-radius: 100px;
  min-width: 5px;
  min-width: var(--plyr-range-track-height, 5px);
  -webkit-transition: width 0.2s ease;
  transition: width 0.2s ease;
}

.plyr__progress__buffer::-moz-progress-bar {
  background: currentColor;
  border-radius: 100px;
  min-width: 5px;
  min-width: var(--plyr-range-track-height, 5px);
  -moz-transition: width 0.2s ease;
  transition: width 0.2s ease;
}

.plyr__progress__buffer::-ms-fill {
  border-radius: 100px;
  -ms-transition: width 0.2s ease;
  transition: width 0.2s ease;
}

.plyr--loading .plyr__progress__buffer {
  animation: plyr-progress 1s linear infinite;
  background-image: linear-gradient(-45deg, rgba(35, 40, 47, 0.6) 25%, transparent 0, transparent 50%, rgba(35, 40, 47, 0.6) 0, rgba(35, 40, 47, 0.6) 75%, transparent 0, transparent);
  background-image: linear-gradient(-45deg, var(--plyr-progress-loading-background, rgba(35, 40, 47, 0.6)) 25%, transparent 25%, transparent 50%, var(--plyr-progress-loading-background, rgba(35, 40, 47, 0.6)) 50%, var(--plyr-progress-loading-background, rgba(35, 40, 47, 0.6)) 75%, transparent 75%, transparent);
  background-repeat: repeat-x;
  background-size: 25px 25px;
  background-size: var(--plyr-progress-loading-size, 25px) var(--plyr-progress-loading-size, 25px);
  color: transparent;
}

.plyr--video.plyr--loading .plyr__progress__buffer {
  background-color: hsla(0, 0%, 100%, 0.25);
  background-color: var(--plyr-video-progress-buffered-background, hsla(0, 0%, 100%, 0.25));
}

.plyr--audio.plyr--loading .plyr__progress__buffer {
  background-color: rgba(193, 200, 209, 0.6);
  background-color: var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6));
}

.plyr__progress__marker {
  background-color: #fff;
  background-color: var(--plyr-progress-marker-background, #fff);
  border-radius: 1px;
  height: 5px;
  height: var(--plyr-range-track-height, 5px);
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 3px;
  width: var(--plyr-progress-marker-width, 3px);
  z-index: 3;
}

.plyr__volume {
  align-items: center;
  display: flex;
  max-width: 110px;
  min-width: 80px;
  position: relative;
  width: 20%;
}

.plyr__volume input[type=range] {
  margin-left: 5px;
  margin-left: calc(var(--plyr-control-spacing, 10px) / 2);
  margin-right: 5px;
  margin-right: calc(var(--plyr-control-spacing, 10px) / 2);
  position: relative;
  z-index: 2;
}

.plyr--is-ios .plyr__volume {
  min-width: 0;
  width: auto;
}

.plyr--audio {
  display: block;
}

.plyr--audio .plyr__controls {
  background: #fff;
  background: var(--plyr-audio-controls-background, #fff);
  border-radius: inherit;
  color: #4a5464;
  color: var(--plyr-audio-control-color, #4a5464);
  padding: 10px;
  padding: var(--plyr-control-spacing, 10px);
}

.plyr--audio .plyr__control.plyr__tab-focus,
.plyr--audio .plyr__control:hover,
.plyr--audio .plyr__control[aria-expanded=true] {
  background: #00b2ff;
  background: var(--plyr-audio-control-background-hover, var(--plyr-color-main, var(--plyr-color-main, #00b2ff)));
  color: #fff;
  color: var(--plyr-audio-control-color-hover, #fff);
}

.plyr--full-ui.plyr--audio input[type=range]::-webkit-slider-runnable-track {
  background-color: rgba(193, 200, 209, 0.6);
  background-color: var(--plyr-audio-range-track-background, var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6)));
}

.plyr--full-ui.plyr--audio input[type=range]::-moz-range-track {
  background-color: rgba(193, 200, 209, 0.6);
  background-color: var(--plyr-audio-range-track-background, var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6)));
}

.plyr--full-ui.plyr--audio input[type=range]::-ms-track {
  background-color: rgba(193, 200, 209, 0.6);
  background-color: var(--plyr-audio-range-track-background, var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6)));
}

.plyr--full-ui.plyr--audio input[type=range]:active::-webkit-slider-thumb {
  box-shadow: 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2), 0 0 0 3px rgba(35, 40, 47, 0.1);
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(35, 40, 47, 0.1));
}

.plyr--full-ui.plyr--audio input[type=range]:active::-moz-range-thumb {
  box-shadow: 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2), 0 0 0 3px rgba(35, 40, 47, 0.1);
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(35, 40, 47, 0.1));
}

.plyr--full-ui.plyr--audio input[type=range]:active::-ms-thumb {
  box-shadow: 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2), 0 0 0 3px rgba(35, 40, 47, 0.1);
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(35, 40, 47, 0.1));
}

.plyr--audio .plyr__progress__buffer {
  color: rgba(193, 200, 209, 0.6);
  color: var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6));
}

.plyr--video {
  background: #000;
  background: var(--plyr-video-background, var(--plyr-video-background, #000));
  overflow: hidden;
}

.plyr--video.plyr--menu-open {
  overflow: visible;
}

.plyr__video-wrapper {
  background: #000;
  background: var(--plyr-video-background, var(--plyr-video-background, #000));
  height: 100%;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.plyr__video-embed,
.plyr__video-wrapper--fixed-ratio {
  aspect-ratio: 16/9;
}

@supports not (aspect-ratio: 16/9) {
  .plyr__video-embed,
  .plyr__video-wrapper--fixed-ratio {
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
  }
}
.plyr__video-embed iframe,
.plyr__video-wrapper--fixed-ratio video {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.plyr--full-ui .plyr__video-embed > .plyr__video-embed__container {
  padding-bottom: 240%;
  position: relative;
  transform: translateY(-38.28125%);
}

.plyr--video .plyr__controls {
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  background: var(--plyr-video-controls-background, linear-gradient(transparent, rgba(0, 0, 0, 0.75)));
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
  bottom: 0;
  color: #fff;
  color: var(--plyr-video-control-color, #fff);
  left: 0;
  padding: 5px;
  padding: calc(var(--plyr-control-spacing, 10px) / 2);
  padding-top: 20px;
  padding-top: calc(var(--plyr-control-spacing, 10px) * 2);
  position: absolute;
  right: 0;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
  z-index: 3;
}

@media (min-width: 480px) {
  .plyr--video .plyr__controls {
    padding: 10px;
    padding: var(--plyr-control-spacing, 10px);
    padding-top: 35px;
    padding-top: calc(var(--plyr-control-spacing, 10px) * 3.5);
  }
}
.plyr--video.plyr--hide-controls .plyr__controls {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}

.plyr--video .plyr__control.plyr__tab-focus,
.plyr--video .plyr__control:hover,
.plyr--video .plyr__control[aria-expanded=true] {
  background: #00b2ff;
  background: var(--plyr-video-control-background-hover, var(--plyr-color-main, var(--plyr-color-main, #00b2ff)));
  color: #fff;
  color: var(--plyr-video-control-color-hover, #fff);
}

.plyr__control--overlaid {
  background: #00b2ff;
  background: var(--plyr-video-control-background-hover, var(--plyr-color-main, var(--plyr-color-main, #00b2ff)));
  border: 0;
  border-radius: 100%;
  color: #fff;
  color: var(--plyr-video-control-color, #fff);
  display: none;
  left: 50%;
  opacity: 0.9;
  padding: 15px;
  padding: calc(var(--plyr-control-spacing, 10px) * 1.5);
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
  z-index: 2;
}

.plyr__control--overlaid svg {
  left: 2px;
  position: relative;
}

.plyr__control--overlaid:focus,
.plyr__control--overlaid:hover {
  opacity: 1;
}

.plyr--playing .plyr__control--overlaid {
  opacity: 0;
  visibility: hidden;
}

.plyr--full-ui.plyr--video .plyr__control--overlaid {
  display: block;
}

.plyr--full-ui.plyr--video input[type=range]::-webkit-slider-runnable-track {
  background-color: hsla(0, 0%, 100%, 0.25);
  background-color: var(--plyr-video-range-track-background, var(--plyr-video-progress-buffered-background, hsla(0, 0%, 100%, 0.25)));
}

.plyr--full-ui.plyr--video input[type=range]::-moz-range-track {
  background-color: hsla(0, 0%, 100%, 0.25);
  background-color: var(--plyr-video-range-track-background, var(--plyr-video-progress-buffered-background, hsla(0, 0%, 100%, 0.25)));
}

.plyr--full-ui.plyr--video input[type=range]::-ms-track {
  background-color: hsla(0, 0%, 100%, 0.25);
  background-color: var(--plyr-video-range-track-background, var(--plyr-video-progress-buffered-background, hsla(0, 0%, 100%, 0.25)));
}

.plyr--full-ui.plyr--video input[type=range]:active::-webkit-slider-thumb {
  box-shadow: 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2), 0 0 0 3px hsla(0, 0%, 100%, 0.5);
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, hsla(0, 0%, 100%, 0.5));
}

.plyr--full-ui.plyr--video input[type=range]:active::-moz-range-thumb {
  box-shadow: 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2), 0 0 0 3px hsla(0, 0%, 100%, 0.5);
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, hsla(0, 0%, 100%, 0.5));
}

.plyr--full-ui.plyr--video input[type=range]:active::-ms-thumb {
  box-shadow: 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2), 0 0 0 3px hsla(0, 0%, 100%, 0.5);
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, hsla(0, 0%, 100%, 0.5));
}

.plyr--video .plyr__progress__buffer {
  color: hsla(0, 0%, 100%, 0.25);
  color: var(--plyr-video-progress-buffered-background, hsla(0, 0%, 100%, 0.25));
}

.plyr:-webkit-full-screen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}

.plyr:fullscreen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}

.plyr:-webkit-full-screen video {
  height: 100%;
}

.plyr:fullscreen video {
  height: 100%;
}

.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr:fullscreen .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr:fullscreen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr:-webkit-full-screen.plyr--hide-controls {
  cursor: none;
}

.plyr:fullscreen.plyr--hide-controls {
  cursor: none;
}

@media (min-width: 1024px) {
  .plyr:-webkit-full-screen .plyr__captions {
    font-size: 21px;
    font-size: var(--plyr-font-size-xlarge, 21px);
  }
  .plyr:fullscreen .plyr__captions {
    font-size: 21px;
    font-size: var(--plyr-font-size-xlarge, 21px);
  }
}
.plyr--fullscreen-fallback {
  background: #000;
  border-radius: 0 !important;
  bottom: 0;
  display: block;
  height: 100%;
  left: 0;
  margin: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 10000000;
}

.plyr--fullscreen-fallback video {
  height: 100%;
}

.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr--fullscreen-fallback.plyr--hide-controls {
  cursor: none;
}

@media (min-width: 1024px) {
  .plyr--fullscreen-fallback .plyr__captions {
    font-size: 21px;
    font-size: var(--plyr-font-size-xlarge, 21px);
  }
}
.plyr__ads {
  border-radius: inherit;
  bottom: 0;
  cursor: pointer;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.plyr__ads > div,
.plyr__ads > div iframe {
  height: 100%;
  position: absolute;
  width: 100%;
}

.plyr__ads:after {
  background: #23282f;
  border-radius: 2px;
  bottom: 10px;
  bottom: var(--plyr-control-spacing, 10px);
  color: #fff;
  content: attr(data-badge-text);
  font-size: 11px;
  padding: 2px 6px;
  pointer-events: none;
  position: absolute;
  right: 10px;
  right: var(--plyr-control-spacing, 10px);
  z-index: 3;
}

.plyr__ads:empty:after {
  display: none;
}

.plyr__cues {
  background: currentColor;
  display: block;
  height: 5px;
  height: var(--plyr-range-track-height, 5px);
  left: 0;
  opacity: 0.8;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  z-index: 3;
}

.plyr__preview-thumb {
  background-color: hsla(0, 0%, 100%, 0.9);
  background-color: var(--plyr-tooltip-background, hsla(0, 0%, 100%, 0.9));
  border-radius: 5px;
  border-radius: var(--plyr-tooltip-radius, 5px);
  bottom: 100%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  box-shadow: var(--plyr-tooltip-shadow, 0 1px 2px rgba(0, 0, 0, 0.15));
  margin-bottom: 10px;
  margin-bottom: calc(var(--plyr-control-spacing, 10px) / 2 * 2);
  opacity: 0;
  padding: 3px;
  pointer-events: none;
  position: absolute;
  transform: translateY(10px) scale(0.8);
  transform-origin: 50% 100%;
  transition: transform 0.2s ease 0.1s, opacity 0.2s ease 0.1s;
  z-index: 2;
}

.plyr__preview-thumb--is-shown {
  opacity: 1;
  transform: translate(0) scale(1);
}

.plyr__preview-thumb:before {
  border-left: 4px solid transparent;
  border-left: var(--plyr-tooltip-arrow-size, 4px) solid transparent;
  border-right: 4px solid transparent;
  border-right: var(--plyr-tooltip-arrow-size, 4px) solid transparent;
  border-top: 4px solid hsla(0, 0%, 100%, 0.9);
  border-top: var(--plyr-tooltip-arrow-size, 4px) solid var(--plyr-tooltip-background, hsla(0, 0%, 100%, 0.9));
  bottom: -4px;
  bottom: calc(var(--plyr-tooltip-arrow-size, 4px) * -1);
  content: "";
  height: 0;
  left: calc(50% + var(--preview-arrow-offset));
  position: absolute;
  transform: translateX(-50%);
  width: 0;
  z-index: 2;
}

.plyr__preview-thumb__image-container {
  background: #c1c8d1;
  border-radius: 4px;
  border-radius: calc(var(--plyr-tooltip-radius, 5px) - 1px);
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.plyr__preview-thumb__image-container img,
.plyr__preview-thumb__image-container:after {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.plyr__preview-thumb__image-container:after {
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15);
  content: "";
  pointer-events: none;
}

.plyr__preview-thumb__image-container img {
  max-height: none;
  max-width: none;
}

.plyr__preview-thumb__time-container {
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  background: var(--plyr-video-controls-background, linear-gradient(transparent, rgba(0, 0, 0, 0.75)));
  border-bottom-left-radius: 4px;
  border-bottom-left-radius: calc(var(--plyr-tooltip-radius, 5px) - 1px);
  border-bottom-right-radius: 4px;
  border-bottom-right-radius: calc(var(--plyr-tooltip-radius, 5px) - 1px);
  bottom: 0;
  left: 0;
  line-height: 1.1;
  padding: 20px 6px 6px;
  position: absolute;
  right: 0;
  z-index: 3;
}

.plyr__preview-thumb__time-container span {
  color: #fff;
  font-size: 13px;
  font-size: var(--plyr-font-size-time, var(--plyr-font-size-small, 13px));
}

.plyr__preview-scrubbing {
  bottom: 0;
  filter: blur(1px);
  height: 100%;
  left: 0;
  margin: auto;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 0.3s ease;
  width: 100%;
  z-index: 1;
}

.plyr__preview-scrubbing--is-shown {
  opacity: 1;
}

.plyr__preview-scrubbing img {
  height: 100%;
  left: 0;
  max-height: none;
  max-width: none;
  object-fit: contain;
  position: absolute;
  top: 0;
  width: 100%;
}

.plyr--no-transition {
  transition: none !important;
}

.plyr__sr-only {
  clip: rect(1px, 1px, 1px, 1px);
  border: 0 !important;
  height: 1px !important;
  overflow: hidden;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}

.plyr [hidden] {
  display: none !important;
}
/*!*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[13].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[13].use[3]!./node_modules/next/dist/build/webpack/loaders/resolve-url-loader/index.js??ruleSet[1].rules[14].oneOf[13].use[4]!./node_modules/next/dist/compiled/sass-loader/cjs.js??ruleSet[1].rules[14].oneOf[13].use[5]!./public/assets/css/tg-cursor.css ***!
  \*******************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
.cb-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1100;
  contain: layout style size;
  pointer-events: none;
  will-change: transform;
  transition: opacity 3s, color 0.4s;
  /* mix-blend-mode: exclusion; */
}

.cb-cursor:before {
  content: "";
  position: absolute;
  top: -25px;
  left: -25px;
  width: 50px;
  height: 50px;
  transform: scale(0);
  background: var(--tg-theme-primary);
  border-radius: 50%;
  transition: transform 0.3s ease-in-out, opacity 1s;
  opacity: 1 !important;
}

.cb-cursor-text {
  position: absolute;
  top: -50px;
  left: -50px;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0) rotate(10deg);
  opacity: 0;
  color: white;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0;
  transition: opacity 0.4s, transform 0.3s;
}

@supports (mix-blend-mode: exclusion) {
  .cb-cursor.-exclusion,
  .cb-cursor.-opaque {
    mix-blend-mode: exclusion;
  }
}
@supports (mix-blend-mode: exclusion) {
  .cb-cursor.-exclusion:before,
  .cb-cursor.-opaque:before {
    background: white;
  }
}
.cb-cursor.-normal, .cb-cursor.-text {
  mix-blend-mode: normal;
}

.cb-cursor.-black {
  color: #182029;
}

.cb-cursor.-black::before {
  background: currentColor;
  opacity: 0.95 !important;
}

.cb-cursor.-theme {
  color: var(--tg-theme-primary);
}

.cb-cursor.-theme .cb-cursor-text {
  font-weight: var(--tg-fw-extra-bold);
  color: var(--tg-common-color-black-2);
}

.cb-cursor.-theme::before {
  background: currentColor;
  opacity: 0.95 !important;
}

.cb-cursor.-inverse {
  color: white;
}

.cb-cursor.-visible:before {
  transform: scale(0.2);
}

.cb-cursor.-visible.-active:before {
  transform: scale(0.23);
  transition-duration: 0.2s;
}

.cb-cursor.-pointer:before {
  transform: scale(0.15);
}

.cb-cursor.-text:before {
  opacity: 0.85;
  transform: scale(1.7);
}

.cb-cursor.-text .cb-cursor-text {
  opacity: 1;
  transform: scale(1);
}

.cb-cursor.-text.-active:before {
  transform: scale(1.6);
  transition-duration: 0.2s;
}

.cb-cursor.-opaque:before {
  transform: scale(1.32);
}

.cb-cursor.-opaque.-active:before {
  transform: scale(1.2);
}

.cb-cursor.-lg:before {
  transform: scale(2);
}

.cb-cursor.-hidden:before {
  transform: scale(0);
}

@media (max-width: 767.98px) {
  .cb-cursor {
    display: none !important;
  }
}
/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[13].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[13].use[3]!./node_modules/next/dist/build/webpack/loaders/resolve-url-loader/index.js??ruleSet[1].rules[14].oneOf[13].use[4]!./node_modules/next/dist/compiled/sass-loader/cjs.js??ruleSet[1].rules[14].oneOf[13].use[5]!./src/styles/index.scss ***!
  \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/**
 * Swiper 11.2.10
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 28, 2025
 */
/* FONT_START */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600&display=swap");
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
/* FONT_END */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}

.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
}

.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
  transform: rotate(180deg);
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-lock {
  display: none;
}

/* Navigation font start */
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-feature-settings: ;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

/* Navigation font end */
:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

:root {
  /*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-vertical > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-vertical {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

/* Zoom container styles start */
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Zoom container styles end */
.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

/* a11y */
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

/* Cube slide shadows start */
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Cube slide shadows end */
.swiper.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

/* Flip slide shadows start */
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Flip slide shadows end */
.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

/*============================================

   Theme Name: SkillGro - Online Courses & Education Template
   Author : ThemeGenix
   Support: themegenix@gmail.com
   Description: SkillGro - Online Courses & Education Template
   Version: 1.0

==============================================*/
/* CSS Index
==============================================

    01. Theme Default CSS
    02. Header
    03. Mobile Menu
    04. Banner
    05. Slider
    06. Brand
    07. About
    08. Courses
    09. Categories
    10. Online
    11. Testimonial
    12. Instructor
    13. Mentor
    14. CTA
    15. Fact
    16. Events
    17. Quick Action
    18. FAQ
    19. Shop
    20. Blog
    21. Newsletter
    22. Contact
    23. 404 Error
    24. Footer

==============================================*/
/*============================================
/*  01. Theme Default CSS
==============================================*/
:root {
  --tg-body-font-family: 'Inter', sans-serif;
  --tg-heading-font-family: 'Poppins', sans-serif;
  --tg-icon-font-family: "Font Awesome 5 Free";
  --tg-body-font-size: 16px;
  --tg-body-line-height: 1.75;
  --tg-heading-line-height: 1.3;
  --tg-body-color: #6D6C80;
  --tg-heading-color: #161439;
  --tg-theme-primary: #5751E1;
  --tg-theme-secondary: #FFC224;
  --tg-common-color-blue: #050071;
  --tg-common-color-blue-2: #282568;
  --tg-common-color-indigo: #9B51E0;
  --tg-common-color-purple: #8121FB;
  --tg-common-color-pink: #FF429D;
  --tg-common-color-red: #E11B24;
  --tg-common-color-orange: #fd7e14;
  --tg-common-color-yellow: #F8BC24;
  --tg-common-color-yellow-2: #FBE67B;
  --tg-common-color-yellow-3: #FCB428;
  --tg-common-color-green: #12BB6A;
  --tg-common-color-teal: #219653;
  --tg-common-color-cyan: #00AEE5;
  --tg-common-color-white: #fff;
  --tg-common-color-gray: #F7F7F9;
  --tg-common-color-gray-2: #EFEEFE;
  --tg-common-color-gray-3: #7F7E97;
  --tg-common-color-gray-4: #ACAACC;
  --tg-common-color-gray-5: #B2BBCC;
  --tg-common-color-gray-6: #d7d7df;
  --tg-common-color-gray-7: #f6f6f6;
  --tg-common-color-gray-8: #F5F5F4;
  --tg-common-color-gray-9: #F9F9F9;
  --tg-common-color-gray-10: #F8F8F8;
  --tg-common-color-gray-11: #F8F8FC;
  --tg-common-color-dark: #1C1A4A;
  --tg-common-color-black: #06042E;
  --tg-common-color-black-2: #161439;
  --tg-common-color-black-3: #000;
  --tg-border-1: #C9C9DD;
  --tg-border-2: #D0DAE9;
  --tg-border-3: #E2E2E2;
  --tg-border-4: #D7DCE3;
  --tg-border-5: #2F466A;
  --tg-border-6: #dfdfdf;
  --tg-border-7: #E7E7E7;
  --tg-fw-extra-bold: 800;
  --tg-fw-bold: 700;
  --tg-fw-semi-bold: 600;
  --tg-fw-medium: 500;
  --tg-fw-regular: 400;
  --tg-fw-light: 300;
}

/*=============================
	Typography css start
===============================*/
body {
  font-family: var(--tg-body-font-family);
  font-size: var(--tg-body-font-size);
  font-weight: var(--tg-fw-regular);
  color: var(--tg-body-color);
  line-height: var(--tg-body-line-height);
}

img,
.img {
  max-width: 100%;
  height: auto;
  transition: all 0.3s ease-out 0s;
}

a,
button {
  color: var(--tg-theme-primary);
  outline: none;
  text-decoration: none;
  transition: all 0.3s ease-out 0s;
}

a:focus,
.btn:focus,
.button:focus {
  text-decoration: none;
  outline: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}

a:hover,
button:hover {
  color: var(--tg-theme-secondary);
  text-decoration: none;
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
  outline: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--tg-heading-font-family);
  color: var(--tg-heading-color);
  margin-top: 0px;
  font-weight: var(--tg-fw-semi-bold);
  line-height: var(--tg-heading-line-height);
  text-transform: unset;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

.list-wrap {
  margin: 0px;
  padding: 0px;
}

.list-wrap li {
  list-style: none;
}

p {
  font-family: var(--tg-body-font-family);
  font-size: var(--tg-body-font-size);
  line-height: var(--tg-body-line-height);
  font-weight: var(--tg-fw-regular);
  color: var(--tg-body-color);
  margin-bottom: 15px;
}

hr {
  border-bottom: 1px solid var(--tg-common-color-gray);
  border-top: 0 none;
  margin: 30px 0;
  padding: 0;
}

label {
  color: var(--tg-heading-color);
  cursor: pointer;
  font-size: var(--tg-body-font-size);
  font-weight: var(--tg-fw-regular);
}

input[type=color] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  padding: 0;
  border-radius: 50%;
}

::selection {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
  text-shadow: none;
}

/*=============================
    - Input Placeholder
===============================*/
input,
textarea {
  color: var(--tg-body-color);
}

*::placeholder {
  color: var(--tg-body-color);
  font-size: var(--tg-body-font-size);
  opacity: 1;
}

/*=============================
    - Common Classes
===============================*/
.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

/*=============================
    - Bootstrap Custom
=============================*/
.container {
  padding-left: 15px;
  padding-right: 15px;
}

.row {
  --bs-gutter-x: 30px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

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

.gutter-20 {
  --bs-gutter-x: 20px;
}

.container {
  max-width: 1440px;
}

@media (max-width: 1500px) {
  .container {
    max-width: 1320px;
  }
}
@media (max-width: 1199.98px) {
  .container {
    max-width: 960px;
  }
}
@media (max-width: 991.98px) {
  .container {
    max-width: 720px;
  }
}
@media (max-width: 767.98px) {
  .container {
    max-width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .container {
    max-width: 540px;
  }
}
.custom-container {
  max-width: 1680px;
}

@media (max-width: 1800px) {
  .custom-container {
    max-width: 1680px;
  }
}
@media (max-width: 1500px) {
  .custom-container {
    max-width: 1320px;
  }
}
@media (max-width: 1199.98px) {
  .custom-container {
    max-width: 960px;
  }
}
@media (max-width: 991.98px) {
  .custom-container {
    max-width: 720px;
  }
}
@media (max-width: 767.98px) {
  .custom-container {
    max-width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .custom-container {
    max-width: 540px;
  }
}
.include-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/*=============================
	1. Button style
===============================*/
.tg-button-wrap {
  display: flex;
}

.btn {
  -webkit-user-select: none;
          user-select: none;
  -moz-user-select: none;
  background: var(--tg-theme-primary) none repeat scroll 0 0;
  border: medium none;
  color: var(--tg-common-color-white);
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  font-weight: var(--tg-fw-semi-bold);
  font-family: var(--tg-heading-font-family);
  letter-spacing: 0;
  line-height: 1.12;
  margin-bottom: 0;
  padding: 16px 30px;
  text-align: center;
  text-transform: capitalize;
  touch-action: manipulation;
  transition: all 0.3s ease-out 0s;
  vertical-align: middle;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 4px 6px 0px 0px var(--tg-common-color-blue);
  overflow: hidden;
}

.btn:hover, .btn:focus-visible {
  background: var(--tg-theme-secondary);
  color: var(--tg-heading-color);
  box-shadow: 0 0 0 0 var(--tg-common-color-blue);
}

.btn .text {
  display: block;
}

.btn.tg-svg {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn .svg-icon {
  width: 14px;
  display: block;
  margin-top: -3px;
}

.btn.btn-border {
  background: var(--tg-common-color-white);
  border: 1px solid var(--tg-theme-primary);
  color: var(--tg-theme-primary);
  padding: 19px 23px 16px 23px;
}

.btn.btn-border svg path {
  stroke: var(--tg-theme-primary);
}

.btn.btn-border:focus-visible, .btn.btn-border:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
}

.btn.btn-border:focus-visible svg path, .btn.btn-border:hover svg path {
  stroke: var(--tg-common-color-white);
}

.btn.white-btn {
  background: var(--tg-common-color-white);
  color: var(--tg-theme-secondary);
}

.btn.white-btn svg path {
  stroke: var(--tg-theme-secondary);
}

.btn-two {
  background: var(--tg-theme-secondary);
  border: 2px solid var(--tg-common-color-black-3);
  -ms-box-shadow: 4px 4px 0px 0px #3D3D3D;
  -o-box-shadow: 4px 4px 0px 0px #3D3D3D;
  box-shadow: 4px 4px 0px 0px #3D3D3D;
  color: var(--tg-common-color-black-3);
}

.btn-two svg {
  color: var(--tg-common-color-black-3) !important;
}

.btn-two:hover, .btn-two:focus-visible {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
  box-shadow: 0 0 0 0 var(--tg-common-color-blue);
  border-color: var(--tg-theme-primary);
}

.btn-two:hover svg, .btn-two:focus-visible svg {
  color: var(--tg-common-color-white) !important;
}

.btn-three {
  background: var(--tg-theme-secondary);
  box-shadow: none;
  color: var(--tg-common-color-black-3) !important;
}

.btn-three svg {
  color: var(--tg-common-color-black-3) !important;
}

.btn-four {
  box-shadow: none;
  border-radius: 8px;
}

.arrow-btn {
  --arrow-hover-move-x: -110%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s linear;
}

.arrow-btn svg {
  color: var(--tg-common-color-white);
  width: 15px;
  transition: all 0.3s ease-out 0s;
  transform: translateY(-1px);
}

.arrow-btn svg path {
  transition: transform 0.38s cubic-bezier(0.37, 0.08, 0.02, 0.93), opacity 0.18s ease-out;
}

.arrow-btn svg path:nth-of-type(1) {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0.15s, 0.15s;
}

.arrow-btn svg path:nth-of-type(2) {
  transform: translateX(calc(1 * var(--arrow-hover-move-x)));
  opacity: 0.5;
  transition-delay: 0s, 0s;
}

.arrow-btn:focus-visible svg, .arrow-btn:hover svg {
  color: var(--tg-heading-color);
}

.arrow-btn:focus-visible svg path:nth-of-type(1), .arrow-btn:hover svg path:nth-of-type(1) {
  transform: translateX(calc(-1 * var(--arrow-hover-move-x)));
  opacity: 0;
  transition-delay: 0s, 0s;
}

.arrow-btn:focus-visible svg path:nth-of-type(2), .arrow-btn:hover svg path:nth-of-type(2) {
  transform: translateX(0) translateY(0);
  opacity: 1;
  transition-delay: 0.15s, 0.15s;
}

/*=============================
    00. Preloader
===============================*/
#preloader {
  background-color: var(--tg-common-color-white);
  height: 100%;
  width: 100%;
  position: fixed;
  margin-top: 0px;
  top: 0px;
  z-index: 9999;
}

#preloader .loader .loader-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border: 3px solid var(--tg-common-color-gray);
  border-radius: 50%;
}

#preloader .loader .loader-container::before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-top: 3px solid var(--tg-theme-primary);
  border-radius: 50%;
  animation: loaderspin 1.8s infinite ease-in-out;
  -webkit-animation: loaderspin 1.8s infinite ease-in-out;
}

#preloader .loader .loader-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  text-align: center;
}

#preloader .loader .loader-icon img {
  animation: loaderpulse alternate 900ms infinite;
  width: 40px;
}

@keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes loaderpulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
/*=============================
    - Background color
===============================*/
.grey-bg {
  background: var(--tg-common-color-gray);
}

.grey-bg-two {
  background: var(--tg-common-color-gray-9);
}

.white-bg {
  background: var(--tg-common-color-white);
}

.black-bg {
  background: var(--tg-common-color-black);
}

.custom-cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: black;
  transition: transform 0.1s ease, background-color 0.3s ease;
  z-index: 9999;
}

/*=============================
	04. OffCanvas
===============================*/
.offCanvas__info {
  background: var(--tg-common-color-white) none repeat scroll 0 0;
  height: 100%;
  padding: 30px;
  position: fixed;
  right: 0;
  top: 0;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -ms-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  width: 340px;
  z-index: 999;
  overflow-y: scroll;
  transform: translateX(100%);
}

.offCanvas__info.active {
  transform: translateX(0);
}

.offCanvas__info::-webkit-scrollbar {
  width: 0px;
}

.offCanvas__close-icon {
  margin-top: -16px;
  text-align: right;
}

.offCanvas__close-icon button {
  background: transparent;
  border: 0 none;
  color: var(--tg-theme-primary);
  cursor: pointer;
  font-size: 20px;
  padding: 0;
}

.offCanvas__logo img {
  max-height: 34px;
}

.offCanvas__side-info {
  border-top: 1px solid var(--tg-theme-primary);
  padding-top: 25px;
}

.offCanvas__side-info .contact-list h4 {
  color: var(--tg-heading-color);
  font-weight: 700;
  font-size: 18px;
}

.offCanvas__side-info .contact-list p {
  color: var(--tg-body-color);
  margin: 0;
  margin-bottom: 2px;
  line-height: 26px;
}

.offCanvas__social-icon a {
  color: var(--tg-theme-primary);
  display: inline-block;
  margin-right: 20px;
  text-align: center;
}

.offCanvas__social-icon a:hover {
  color: var(--tg-theme-secondary);
}

.offCanvas__overly {
  position: fixed;
  background: #000;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-out 0s;
}

.offCanvas__overly.active {
  opacity: 0.7;
  visibility: visible;
}

/*=========================
04. Breadcrumb
===========================*/
.breadcrumb__bg {
  background-size: cover;
  background-position: center;
  padding: 107px 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

@media (max-width: 1500px) {
  .breadcrumb__bg {
    padding: 100px 0;
  }
}
.breadcrumb__bg-two {
  padding: 61px 0;
}

.breadcrumb__bg-two .breadcrumb__shape-wrap img:nth-child(3) {
  display: none;
}

.breadcrumb__bg-three {
  min-height: 300px;
}

.breadcrumb__content .title {
  margin-bottom: 10px;
  font-size: 40px;
  line-height: 1.2;
}

@media (max-width: 1199.98px) {
  .breadcrumb__content .title {
    font-size: 36px;
  }
}
@media (max-width: 767.98px) {
  .breadcrumb__content .title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .breadcrumb__content .title {
    font-size: 36px;
  }
}
.breadcrumb__content .breadcrumb {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  gap: 10px;
}

.breadcrumb__content .breadcrumb > * {
  font-size: 16px;
  color: var(--tg-theme-primary);
}

.breadcrumb__content .breadcrumb > * a {
  color: var(--tg-common-color-dark);
}

.breadcrumb__content .breadcrumb .breadcrumb-separator {
  line-height: 1;
  font-size: 16px;
  margin-top: 1px;
  font-weight: 700;
  margin-top: 2px;
  opacity: 0.5;
  color: var(--tg-common-color-gray-3);
}

.breadcrumb__shape-wrap img {
  position: absolute;
  z-index: -1;
}

.breadcrumb__shape-wrap img:nth-child(1) {
  left: 100px;
  top: 62px;
}

@media (max-width: 1500px) {
  .breadcrumb__shape-wrap img:nth-child(1) {
    left: 69px;
    top: 52px;
  }
}
.breadcrumb__shape-wrap img:nth-child(2) {
  right: 32%;
  top: 21%;
}

@media (max-width: 1500px) {
  .breadcrumb__shape-wrap img:nth-child(2) {
    right: 38%;
  }
}
@media (max-width: 991.98px) {
  .breadcrumb__shape-wrap img:nth-child(2) {
    right: 31%;
  }
}
@media (max-width: 767.98px) {
  .breadcrumb__shape-wrap img:nth-child(2) {
    display: none;
  }
}
.breadcrumb__shape-wrap img:nth-child(3) {
  right: 20%;
  bottom: 15%;
}

@media (max-width: 1500px) {
  .breadcrumb__shape-wrap img:nth-child(3) {
    right: 23%;
    bottom: 13%;
  }
}
.breadcrumb__shape-wrap img:nth-child(4) {
  right: 8%;
  top: 8%;
}

@media (max-width: 991.98px) {
  .breadcrumb__shape-wrap img:nth-child(4) {
    right: 11%;
    top: 16%;
  }
}
.breadcrumb__shape-wrap img:nth-child(5) {
  right: 0;
  top: 0;
}

@media (max-width: 1199.98px) {
  .breadcrumb__shape-wrap img:nth-child(5) {
    right: -30px;
    width: 400px;
    height: 285px;
  }
}
@media (max-width: 991.98px) {
  .breadcrumb__shape-wrap img:nth-child(5) {
    display: none;
  }
}
/*=============================
    00. Select2 CSS
===============================*/
.tgmenu__search-form .select2-container {
  margin-left: -29px;
}

.tgmenu__search-form .select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 37px;
  padding-right: 28px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  font-size: 14px;
  font-family: var(--tg-heading-font-family);
  color: var(--tg-heading-color);
  font-weight: 500;
}

.tgmenu__search-form .select2-container .select2-selection--single {
  height: auto;
}

.course-category-dropdown {
  background: var(--tg-common-color-white);
  border: 1px solid var(--tg-border-2);
  margin: 0 0;
}

.course-category-dropdown .select2-results__options {
  margin-top: 7px;
}

.course-category-dropdown .select2-results__option {
  padding: 1px 10px;
  transition: all 0.3s ease-out 0s;
}

.course-category-dropdown .select2-results__option--selectable:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
}

.tgmenu__search-form .select-grp {
  z-index: 999;
}

.tgmenu__search-form .css-hlgwow {
  padding: 0;
}

.tgmenu__search-form .css-t3ipsp-control,
.tgmenu__search-form .css-13cymwt-control {
  border: none !important;
  box-shadow: none;
}

.tgmenu__search-form .css-1u9des2-indicatorSeparator {
  display: none;
}

.tgmenu__search-form .css-1xc3v61-indicatorContainer {
  padding: 0px;
}

.tgmenu__search-form .course-category-dropdown__indicators.css-1wy0on6 {
  display: none;
}

.tgmenu__search-form .css-1jqq78o-placeholder {
  padding-left: 6px;
  padding-right: 28px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  font-size: 14px;
  font-family: var(--tg-heading-font-family);
  color: var(--tg-heading-color);
  font-weight: 500;
}

/*=============================
    00. Scroll Top
===============================*/
.scroll__top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  position: fixed;
  bottom: -10%;
  right: 50px;
  font-size: 16px;
  border-radius: 50px;
  z-index: 99;
  color: var(--tg-common-color-white);
  text-align: center;
  cursor: pointer;
  background: var(--tg-theme-primary);
  transition: 1s ease;
  border: none;
}

@media (max-width: 1199.98px) {
  .scroll__top {
    right: 25px;
  }
}
@media (max-width: 991.98px) {
  .scroll__top {
    right: 30px;
  }
}
@media (max-width: 767.98px) {
  .scroll__top {
    right: 15px;
    width: 30px;
    height: 30px;
  }
}
.scroll__top.open {
  bottom: 30px;
}

@media (max-width: 1199.98px) {
  .scroll__top.open {
    bottom: 25px;
  }
}
@media (max-width: 767.98px) {
  .scroll__top.open {
    bottom: 15px;
  }
}
.scroll__top::after {
  position: absolute;
  z-index: -1;
  content: "";
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 1;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
}

.scroll__top:hover {
  background: var(--tg-theme-secondary);
  color: var(--tg-heading-color);
}

/*=============================
	00. Section Title
===============================*/
.section__title .sub-title {
  display: inline-block;
  line-height: 1.62;
  background: var(--tg-common-color-gray-2);
  border-radius: 30px;
  padding: 3px 16px;
  font-weight: var(--tg-fw-medium);
  color: var(--tg-theme-primary);
  margin: 0 0 14px;
}

.section__title .title {
  font-size: 36px;
  line-height: 1.33;
  margin: 0 0;
  letter-spacing: -0.75px;
  text-transform: capitalize;
}

@media (max-width: 767.98px) {
  .section__title .title {
    font-size: 29px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section__title .title {
    font-size: 36px;
  }
}
.section__title .title span:not(.svg-icon) {
  color: var(--tg-theme-primary);
  position: relative;
  color: var(--tg-common-color-white);
  padding: 0 13px 0 20px;
  font-weight: var(--tg-fw-bold);
  display: inline-block;
  z-index: 1;
}

.section__title .title span:not(.svg-icon) > svg {
  position: absolute;
  left: 0;
  top: -5px;
  width: 100%;
  height: 59px;
  z-index: -1;
  color: var(--tg-theme-secondary);
}

@media (max-width: 767.98px) {
  .section__title .title span:not(.svg-icon) > svg {
    height: 45px;
    top: -2px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .section__title .title span:not(.svg-icon) > svg {
    top: 0;
  }
}
.section__title .title.bold {
  font-weight: 700;
}

.section__title .title .svg-icon {
  position: absolute;
  right: -50px;
  top: -50px;
  width: 61px;
  height: 68px;
}

.section__title .title .svg-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.section__title .title .svg-icon path {
  stroke: var(--tg-heading-color);
}

.section__title p {
  margin-bottom: 0;
  margin-top: 15px;
}

@media (max-width: 767.98px) {
  .section__title p br {
    display: none;
  }
}
.section__title.white-title .sub-title {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
}

.section__title.white-title .title {
  color: var(--tg-common-color-white);
}

.section__title.white-title .title span:not(.svg-icon) {
  color: var(--tg-common-color-white);
}

.section__title.white-title p {
  color: #ACAACC;
}

.section__title .desc {
  margin: 10px 0 0;
}

.section__content p {
  margin-bottom: 0;
  color: #bcbad8;
}

span.title-shape-wrap {
  margin-right: 8px;
  margin-left: 8px;
}

/*=============================
	04. Search
===============================*/
.search__popup {
  padding-top: 70px;
  padding-bottom: 100px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--tg-common-color-white);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 99;
  transform: translateY(calc(-100% - 80px));
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition-delay: 0.5s;
}

.search__popup.search-opened {
  transform: translateY(0%);
  transition-delay: 0s;
  z-index: 99999999;
}

.search__popup.search-opened .search__input {
  transform: translateY(0px);
  opacity: 1;
  transition-delay: 0.3s;
}

.search__popup.search-opened .search__input::after {
  width: 100%;
  transition-delay: 0.5s;
}

.search__input {
  position: relative;
  height: 80px;
  transform: translateY(-40px);
  transition: all 0.3s ease-out 0s;
  transition-delay: 0.5s;
  opacity: 0;
}

.search__input::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background-color: var(--tg-theme-primary);
  transition-delay: 0.3s;
  transition: all 0.3s ease-out 0s;
}

.search__input input {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 0;
  outline: 0;
  font-size: 24px;
  color: var(--tg-heading-color);
  border-bottom: 1px solid transparent;
  padding: 0;
  padding-right: 30px;
}

.search__input input::placeholder {
  font-size: 24px;
}

.search__input button {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--tg-theme-primary);
  border: none;
  padding: 0 0;
  background: transparent;
}

.search__input-two::after {
  background: var(--tg-theme-primary-two);
}

.search__input-two button {
  color: var(--tg-theme-primary-two);
}

.search__close {
  position: absolute;
  top: 10%;
  right: 2%;
  z-index: 2;
}

.search-close-btn {
  margin: 0;
  padding: 0;
  border: none;
  color: var(--tg-theme-primary);
  cursor: pointer;
  background: transparent;
}

.search-close-btn-two {
  color: var(--tg-theme-primary-two);
}

.search-popup-overlay {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  transition: all 0.3s ease-out 0s;
  transition-delay: 0.5s;
  opacity: 0;
  visibility: hidden;
  background: #000d25;
}

.search-popup-overlay.search-popup-overlay-open {
  opacity: 0.55;
  visibility: visible;
  transition-delay: 0s;
}

.search-input-field ~ .search-focus-border {
  position: absolute;
  bottom: 0;
  left: auto;
  right: 0;
  width: 0;
  height: 1px;
  background-color: var(--tg-theme-primary);
  transition: all 0.5s;
}

.search-input-field:focus ~ .search-focus-border {
  width: 100%;
  left: 0;
  right: auto;
  transition: all 0.5s;
}

/*=============================
	02. Header
===============================*/
.transparent-header {
  position: absolute;
  left: 0;
  top: 0px;
  width: 100%;
  z-index: 9;
  height: auto;
}

@media (max-width: 767.98px) {
  .transparent-header {
    top: 0;
  }
}
.tg-header__top {
  background-color: var(--tg-common-color-black-2);
  padding: 11px 0;
}

@media (max-width: 991.98px) {
  .tg-header__top {
    display: none;
  }
}
.tg-header__top-info {
  display: flex;
  align-items: center;
  gap: 10px 27px;
}

@media (max-width: 991.98px) {
  .tg-header__top-info {
    display: none;
  }
}
.tg-header__top-info li {
  display: flex;
  align-items: center;
  color: #E6EAEF;
  font-size: 14px;
  font-weight: var(--tg-fw-medium);
  gap: 7px;
}

.tg-header__top-info li img {
  opacity: 0.6;
}

.tg-header__top-info li i {
  color: var(--tg-common-color-white);
  font-size: 20px;
}

.tg-header__top-info li a {
  color: #E6EAEF;
}

.tg-header__top-info li a:hover {
  color: var(--tg-common-color-white);
}

@media (max-width: 991.98px) {
  .tg-header__top-info li::after {
    display: none;
  }
  .tg-header__top-info li:last-child {
    display: none;
  }
}
.tg-header__top-right {
  display: flex;
  align-items: center;
  gap: 10px 27px;
  justify-content: flex-end;
}

@media (max-width: 991.98px) {
  .tg-header__top-right {
    justify-content: center;
  }
}
.tg-header__top-social {
  display: flex;
  align-items: center;
  gap: 10px 12px;
  justify-content: flex-end;
}

@media (max-width: 767.98px) {
  .tg-header__top-social {
    justify-content: center;
  }
}
.tg-header__top-social li {
  color: var(--tg-common-color-white);
  font-size: 14px;
  font-weight: var(--tg-fw-medium);
}

.tg-header__top-social li:first-child {
  opacity: 0.5;
}

.tg-header__top-social li a {
  color: #E7EFFC;
}

.tg-header__top-social li a:hover {
  color: var(--tg-common-color-white);
}

.tg-header__top-btn .btn {
  border-radius: 0;
  box-shadow: none;
  padding: 14px 22px;
}

.tg-header__top-two {
  padding: 0 0;
}

.tg-header__phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #E6EAEF;
  font-size: 14px;
  font-weight: var(--tg-fw-medium);
}

.tg-header__phone a {
  color: #E6EAEF;
}

.tg-header__phone a:hover {
  color: var(--tg-common-color-white);
}

.tg-header__phone img {
  opacity: 0.6;
}

.tg-header__area {
  padding: 5px 0;
}

@media (max-width: 1500px) {
  .tg-header__area {
    padding: 10px 0;
  }
}
@media (max-width: 1199.98px) {
  .tg-header__area {
    padding: 20px 0;
  }
}
.tg-header__area .mobile-nav-toggler {
  position: relative;
  font-size: 30px;
  cursor: pointer;
  line-height: 1;
  color: var(--tg-theme-primary);
  display: none;
}

@media (max-width: 1199.98px) {
  .tg-header__area .mobile-nav-toggler {
    display: block;
  }
}
.tg-header__area.sticky-menu {
  padding: 0 0;
}

@media (max-width: 1199.98px) {
  .tg-header__area.sticky-menu {
    padding: 20px 0;
  }
}
.tg-header__style-two .tgmenu__search-form {
  width: 460px;
}

@media (max-width: 1500px) {
  .tg-header__style-two .tgmenu__search-form {
    width: 330px;
  }
}
@media (max-width: 1199.98px) {
  .tg-header__style-two .tgmenu__search-form {
    width: 400px;
  }
}
@media (max-width: 991.98px) {
  .tg-header__style-two .tgmenu__search-form {
    width: auto;
  }
}
.tg-header__style-two .tgmenu__navbar-wrap ul {
  margin: 0 auto 0 50px;
}

@media (max-width: 1500px) {
  .tg-header__style-two .tgmenu__navbar-wrap ul {
    margin: 0 auto 0 25px;
  }
}
.tg-header__style-two .tgmenu__navbar-wrap ul li .mega-menu {
  left: -192px;
}

@media (max-width: 1500px) {
  .tg-header__style-two .tgmenu__navbar-wrap ul li .mega-menu {
    left: -100px;
  }
}
.tg-header__style-three {
  border-bottom: 1px solid #E0E0E0;
}

.tg-header__style-three .tgmenu__navbar-wrap ul {
  margin: 0 auto 0 170px;
}

@media (max-width: 1500px) {
  .tg-header__style-three .tgmenu__navbar-wrap ul {
    margin: 0 auto 0 100px;
  }
}
.tg-header__style-three .tgmenu__navbar-wrap ul li .mega-menu {
  left: -318px;
}

@media (max-width: 1500px) {
  .tg-header__style-three .tgmenu__navbar-wrap ul li .mega-menu {
    left: -185px;
  }
}
@media (max-width: 1199.98px) {
  .tg-header__style-four {
    padding: 25px 0;
  }
}
.tg-header__style-four .tgmenu__navbar-wrap ul {
  margin: 0 auto;
}

.tg-header__style-four .tgmenu__navbar-wrap ul li .mega-menu {
  left: -345px;
}

@media (max-width: 1500px) {
  .tg-header__style-four .tgmenu__navbar-wrap ul li .mega-menu {
    left: -185px;
  }
}
.tg-header__style-four .tgmenu__navbar-wrap ul li a {
  padding: 37px 15px;
}

.tg-header__style-five .tgmenu__navbar-wrap ul {
  margin: 0 auto 0 30px;
}

@media (max-width: 1500px) {
  .tg-header__style-five .tgmenu__navbar-wrap ul {
    margin: 0 auto 0 20px;
  }
}
.tg-header__style-five .tgmenu__navbar-wrap ul li .mega-menu {
  left: -180px;
}

@media (max-width: 1500px) {
  .tg-header__style-five .tgmenu__navbar-wrap ul li .mega-menu {
    left: -300px;
  }
}
.tg-header__style-six .tgmenu__navbar-wrap ul {
  margin: 0 auto;
}

.tg-header__style-six .tgmenu__navbar-wrap ul li .mega-menu {
  left: -390px;
}

@media (max-width: 1500px) {
  .tg-header__style-six .tgmenu__navbar-wrap ul li .mega-menu {
    left: -250px;
  }
}
.tg-header__style-seven .tgmenu__navbar-wrap ul {
  margin: 0 auto 0 100px;
}

@media (max-width: 1500px) {
  .tg-header__style-seven .tgmenu__navbar-wrap ul li .mega-menu {
    left: -195px;
  }
}
.tg-header__style-eight .tgmenu__navbar-wrap ul {
  margin: 0 auto;
}

.tg-header__style-eight .tgmenu__navbar-wrap ul a {
  padding: 32px 10px;
}

@media (max-width: 1500px) {
  .tg-header__style-eight .tgmenu__navbar-wrap ul a {
    padding: 25px 10px;
  }
}
.tg-header__style-eight .tgmenu__navbar-wrap ul li .mega-menu {
  left: -515px;
}

@media (max-width: 1500px) {
  .tg-header__style-eight .tgmenu__navbar-wrap ul li .mega-menu {
    left: -360px;
  }
}
@media (max-width: 1199.98px) {
  .tg-header__style-eight .logo.d-none {
    display: block !important;
  }
}
.tg-header__logo-area {
  margin-top: 32px;
}

@media (max-width: 1500px) {
  .tg-header__logo-area {
    margin-top: 25px;
  }
}
@media (max-width: 1199.98px) {
  .tg-header__logo-area {
    display: none;
  }
}
.tg-header__contact {
  display: flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 1199.98px) {
  .tg-header__contact {
    display: none;
  }
}
.tg-header__contact .icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: #F3F3F3;
  color: var(--tg-heading-color);
  font-size: 18px;
  border-radius: 50%;
}

.tg-header__contact .content span {
  display: block;
  font-weight: 500;
  font-size: 12px;
  color: #868686;
  line-height: 1;
}

.tg-header__contact .content a {
  display: inline-block;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  color: var(--tg-heading-color);
}

.tg-header__contact .content a:hover {
  color: var(--tg-theme-primary);
}

.tgmenu__nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
}

@media (max-width: 991.98px) {
  .tgmenu__nav {
    justify-content: space-between;
  }
}
.tgmenu__navbar-wrap {
  display: flex;
  flex-grow: 1;
}

.tgmenu__navbar-wrap ul {
  display: flex;
  padding: 0;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 auto 0 73px;
}

@media (max-width: 1500px) {
  .tgmenu__navbar-wrap ul {
    margin: 0 auto 0 20px;
  }
}
.tgmenu__navbar-wrap ul li {
  display: block;
  position: relative;
  list-style: none;
}

.tgmenu__navbar-wrap ul li a {
  font-size: 16px;
  font-weight: var(--tg-fw-medium);
  text-transform: capitalize;
  color: var(--tg-heading-color);
  font-family: var(--tg-heading-font-family);
  padding: 37px 10px;
  display: flex;
  align-items: center;
  line-height: 1;
  position: relative;
  z-index: 1;
}

@media (max-width: 1500px) {
  .tgmenu__navbar-wrap ul li a {
    padding: 37px 7px;
  }
}
.tgmenu__navbar-wrap ul li .sub-menu {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 230px;
  border: 1px solid #f5f5f5;
  background: var(--tg-common-color-white);
  margin: 0;
  transform: scale(1, 0);
  transform-origin: 0 0;
  transition: all 0.3s ease-out 0s;
  box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
  border-radius: 6px;
  padding: 18px 0;
  display: block;
  visibility: hidden;
  opacity: 0;
  z-index: 9;
}

.tgmenu__navbar-wrap ul li .sub-menu .sub-menu {
  right: auto;
  left: 100%;
  top: 0;
}

.tgmenu__navbar-wrap ul li .sub-menu li {
  margin-left: 0;
  text-align: left;
  display: block;
}

.tgmenu__navbar-wrap ul li .sub-menu li a {
  padding: 8px 15px 8px 25px;
  line-height: 1.4;
  display: block;
  color: var(--tg-heading-color);
  text-transform: capitalize;
  font-size: 15px;
}

.tgmenu__navbar-wrap ul li .sub-menu li:hover > a, .tgmenu__navbar-wrap ul li .sub-menu li.active > a {
  color: var(--tg-theme-primary);
}

.tgmenu__navbar-wrap ul li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.tgmenu__navbar-wrap ul li .mega-menu {
  min-width: 1400px;
  display: flex;
  align-items: flex-start;
  left: -100px;
  padding: 60px 60px 60px 50px;
}

@media (max-width: 1500px) {
  .tgmenu__navbar-wrap ul li .mega-menu {
    min-width: 1100px;
    padding: 60px 40px 60px 20px;
  }
}
.tgmenu__navbar-wrap ul li .mega-menu > li {
  border-right: 1px solid #D6D6D6;
}

.tgmenu__navbar-wrap ul li .mega-menu > li:nth-child(2) {
  border: none;
}

.tgmenu__navbar-wrap ul li .mega-menu > li:nth-child(3) {
  border: none;
  margin-left: auto;
}

.tgmenu__navbar-wrap ul li .mega-menu > li > .mega-sub-menu {
  display: flex;
  flex-direction: column;
  min-width: 260px;
  margin-left: 10px !important;
}

.tgmenu__navbar-wrap > ul > li.active a, .tgmenu__navbar-wrap > ul > li:hover a {
  color: var(--tg-theme-primary);
}

.tgmenu__main-menu li.menu-item-has-children .dropdown-btn {
  display: none;
}

.tgmenu__main-menu li.menu-item-has-children > a::after {
  content: "\f105";
  display: block;
  font-family: "flaticon_skill_grow";
  transform: rotate(90deg);
  font-size: 14px;
  font-weight: var(--tg-fw-bold);
  margin-left: 6px;
}

@media (max-width: 1500px) {
  .tgmenu__main-menu li.menu-item-has-children > a::after {
    margin-left: 4px;
  }
}
.tgmenu__main-menu li.menu-item-has-children > .sub-menu .menu-item-has-children {
  position: relative;
}

.tgmenu__main-menu li.menu-item-has-children > .sub-menu .menu-item-has-children > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tgmenu__main-menu li.menu-item-has-children > .sub-menu .menu-item-has-children > a::after {
  content: "\f105";
  font-family: "flaticon_skill_grow";
  transform: rotate(90deg);
  font-size: 14px;
  font-weight: var(--tg-fw-bold);
  margin-left: 6px;
  transition: all 0.3s ease-out 0s;
}

.tgmenu__main-menu li.menu-item-has-children > .sub-menu .menu-item-has-children:hover a::after, .tgmenu__main-menu li.menu-item-has-children > .sub-menu .menu-item-has-children.active a::after {
  transform: rotate(0deg);
}

.tgmenu__search {
  -webkit-margin-end: 25px;
          margin-inline-end: 25px;
}

@media (max-width: 1500px) {
  .tgmenu__search {
    -webkit-margin-end: 15px;
            margin-inline-end: 15px;
  }
}
@media (max-width: 1199.98px) {
  .tgmenu__search {
    margin-left: auto;
  }
}
.tgmenu__search-form {
  display: flex;
  width: 535px;
  border-radius: 100px;
  border: 1px solid #D3D2DF;
}

@media (max-width: 1800px) {
  .tgmenu__search-form {
    width: 485px;
  }
}
@media (max-width: 1500px) {
  .tgmenu__search-form {
    width: 355px;
  }
}
@media (max-width: 1199.98px) {
  .tgmenu__search-form {
    width: 410px;
  }
}
@media (max-width: 991.98px) {
  .tgmenu__search-form {
    width: auto;
  }
}
.tgmenu__search-form .select-grp {
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
  padding: 0px 0 0px 17px;
  border-radius: 0;
  width: 153px;
  flex: 0 0 auto;
  position: relative;
}

@media (max-width: 1500px) {
  .tgmenu__search-form .select-grp {
    padding: 12px 0 12px 12px;
    width: 140px;
  }
}
.tgmenu__search-form .select-grp::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background: #BDBABB;
}

@media (max-width: 991.98px) {
  .tgmenu__search-form .select-grp::after {
    display: none;
  }
}
.tgmenu__search-form .select-grp svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.tgmenu__search-form .select-grp path {
  fill: var(--tg-theme-primary);
}

.tgmenu__search-form .form-select {
  outline: none;
  box-shadow: none;
  border: none;
  padding-left: 8px;
  color: var(--tg-heading-color);
  font-family: var(--tg-heading-font-family);
  font-size: 14px;
}

.tgmenu__search-form .input-grp {
  position: relative;
  flex-grow: 1;
  margin-left: -1px;
}

@media (max-width: 991.98px) {
  .tgmenu__search-form .input-grp {
    display: none;
  }
}
.tgmenu__search-form input {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 12px 50px 10px 20px;
  height: 50px;
  font-size: 15px;
  font-family: var(--tg-heading-font-family);
}

@media (max-width: 1500px) {
  .tgmenu__search-form input {
    padding: 12px 50px 10px 10px;
  }
}
@media (max-width: 1199.98px) {
  .tgmenu__search-form input {
    padding: 12px 50px 10px 20px;
  }
}
.tgmenu__search-form input::placeholder {
  color: #8D9DB5;
  font-size: 14px;
}

.tgmenu__search-form [type=submit] {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  transform: translateY(-50%);
  right: 4px;
  width: 44px;
  height: 44px;
  border: none;
  padding: 0 0;
  background: var(--tg-theme-primary);
  font-size: 20px;
  color: var(--tg-common-color-white);
  border-radius: 50%;
}

.tgmenu__search-form [type=submit]:hover {
  background: var(--tg-theme-secondary);
  color: var(--tg-heading-color);
}

.tgmenu__search-form-two {
  width: 348px;
  background: var(--tg-common-color-gray-7);
  border-color: var(--tg-border-6);
}

@media (max-width: 1800px) {
  .tgmenu__search-form-two {
    width: 300px;
  }
}
@media (max-width: 1500px) {
  .tgmenu__search-form-two {
    width: 220px;
  }
}
@media (max-width: 991.98px) {
  .tgmenu__search-form-two {
    display: none;
  }
}
.tgmenu__search-form-two input {
  padding: 12px 50px 10px 20px;
  height: 44px;
  font-size: 13px;
  color: var(--tg-heading-color);
  font-weight: 500;
}

.tgmenu__search-form-two input::placeholder {
  font-size: 13px;
  color: var(--tg-body-color);
  font-weight: 500;
}

.tgmenu__search-form-two [type=submit] {
  width: auto;
  height: auto;
  background: transparent;
  font-size: 24px;
  color: var(--tg-theme-primary);
  right: 12px;
}

.tgmenu__search-form-two [type=submit]:hover {
  color: var(--tg-theme-secondary);
  background: transparent;
}

.tgmenu__search-bar {
  flex-grow: 1;
}

@media (max-width: 1500px) {
  .tgmenu__search-bar {
    max-width: 240px;
  }
}
@media (max-width: 1199.98px) {
  .tgmenu__search-bar {
    max-width: 100%;
  }
}
@media (max-width: 991.98px) {
  .tgmenu__search-bar {
    display: none;
  }
}
.tgmenu__search-bar form {
  position: relative;
}

.tgmenu__search-bar form input {
  display: block;
  width: 100%;
  background: var(--tg-common-color-white);
  border: 1px solid var(--tg-border-2);
  border-radius: 50px;
  padding: 12px 50px 10px 20px;
  height: 45px;
  font-size: 15px;
  font-family: var(--tg-heading-font-family);
}

.tgmenu__search-bar form input::placeholder {
  color: #8D9DB5;
  font-size: 14px;
}

.tgmenu__search-bar form [type=submit] {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  right: 10px;
  border: none;
  padding: 0 0;
  background: transparent;
  font-size: 24px;
  color: #8D9DB5;
}

.tgmenu__search-bar form [type=submit]:hover {
  color: var(--tg-theme-primary);
}

.tgmenu__search-two {
  -webkit-margin-end: 0;
          margin-inline-end: 0;
}

@media (max-width: 1199.98px) {
  .tgmenu__action {
    margin: 0 25px 0 0;
  }
}
@media (max-width: 767.98px) {
  .tgmenu__action {
    display: none;
  }
}
.tgmenu__action > ul {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tgmenu__action > ul li {
  position: relative;
  padding: 0 6px 0 0;
  flex: 0 0 auto;
}

.tgmenu__action > ul li .cart-count {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #7F7E97;
  color: #7F7E97;
  border-radius: 50%;
}

.tgmenu__action > ul li .cart-count span {
  position: absolute;
  top: -9px;
  right: 0;
  width: 22px;
  height: 22px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tg-theme-secondary);
  color: var(--tg-heading-color);
  border-radius: 50%;
  z-index: 1;
}

.tgmenu__action > ul li .cart-count:hover {
  background: var(--tg-theme-primary);
  border-color: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
}

.tgmenu__action > ul li:first-child {
  margin-left: 0;
}

@media (max-width: 1500px) {
  .tgmenu__action > ul li.free-btn {
    display: none;
  }
}
.tgmenu__action > ul li.header-search a {
  font-size: 24px;
  line-height: 0;
  color: var(--tg-body-color);
}

.tgmenu__action > ul li.header-search a:hover {
  color: var(--tg-theme-secondary);
}

.tgmenu__action > ul li.login-btn {
  padding: 0 0;
  -webkit-margin-start: 15px;
          margin-inline-start: 15px;
}

@media (max-width: 1500px) {
  .tgmenu__action > ul li.login-btn {
    -webkit-margin-start: 0;
            margin-inline-start: 0;
  }
}
.tgmenu__action > ul li.login-btn a {
  display: block;
  border-radius: 50px;
  padding: 12px 26px;
  border: 1px solid rgba(6, 35, 91, 0.19);
  background: var(--tg-theme-secondary);
  font-size: 15px;
  color: var(--tg-heading-color);
  font-weight: 600;
  line-height: 18px;
}

.tgmenu__action > ul li.login-btn a:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
}

.tgmenu__action > ul li.header-user a {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tg-common-color-gray-7);
  border-radius: 50%;
  color: var(--tg-body-color);
  line-height: 0;
  font-size: 18px;
}

.tgmenu__action > ul li.header-user a:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
}

.tgmenu__action > ul li.header-contact {
  display: flex;
  align-items: center;
  gap: 5px;
}

@media (max-width: 1500px) {
  .tgmenu__action > ul li.header-contact {
    display: none;
  }
}
.tgmenu__action > ul li.header-contact .icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tg-theme-secondary);
  color: var(--tg-heading-color);
  border-radius: 50%;
  font-size: 20px;
  line-height: 0;
}

.tgmenu__action > ul li.header-contact .icon svg {
  width: 20px;
  height: 20px;
}

.tgmenu__action > ul li.header-contact .content span {
  display: block;
  line-height: 1;
  font-weight: 500;
  font-size: 13px;
  color: #868686;
  margin-bottom: 6px;
}

.tgmenu__action > ul li.header-contact .content a {
  font-weight: 600;
  font-size: 18px;
  display: block;
  line-height: 1;
  color: var(--tg-heading-color);
}

.tgmenu__action > ul li.header-contact .content a:hover {
  color: var(--tg-theme-primary);
}

.tgmenu__action-two .mini-cart-icon {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.tgmenu__action-two .mini-cart-icon .cart-count-two {
  position: relative;
  font-size: 30px;
  line-height: 0;
  color: var(--tg-common-color-black-2);
}

.tgmenu__action-two .mini-cart-icon .cart-count-two .mini-cart-count {
  position: absolute;
  width: 23px;
  height: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
  border-radius: 50%;
  top: -10px;
  right: -13px;
}

.tgmenu__action-two .mini-cart-icon .cart-count-two:hover {
  color: var(--tg-theme-secondary);
}

.tgmenu__action-two .mini-cart-icon strong {
  font-size: 14px;
  font-weight: 500;
  color: var(--tg-common-color-black-2);
  line-height: 1.2;
}

.tgmenu__action-three {
  margin-left: auto;
}

.tgmenu__action-three > ul {
  gap: 14px;
}

.tgmenu__action-three > ul li.header-btn .btn {
  font-size: 14px;
  font-weight: 600;
  padding: 16px 26px;
}

.tgmenu__action-four {
  margin-left: 80px;
}

@media (max-width: 1199.98px) {
  .tgmenu__action-four {
    margin-left: auto;
  }
}
.tgmenu__action-four > ul li.header-search a {
  width: 40px;
  height: 40px;
  background: var(--tg-common-color-white);
  border: 1px solid #d9d9d9;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 20px;
  line-height: 0;
}

.tgmenu__action-four > ul li.header-search a:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
  border-color: var(--tg-theme-primary);
}

.tgmenu__action-four > ul li .cart-count {
  width: 40px;
  height: 40px;
  background: var(--tg-common-color-white);
  border: 1px solid #d9d9d9;
}

.tgmenu__action-four > ul li .cart-count:hover {
  border-color: var(--tg-theme-primary);
}

.tgmenu__action-four > ul li.header-btn {
  margin-left: 5px;
}

.tgmenu__action-four > ul li.header-btn .btn {
  font-size: 14px;
  font-weight: 600;
  padding: 13px 23px;
  box-shadow: none;
}

.tgmenu__action-four > ul li.offCanvas-menu {
  padding-right: 0;
}

.tgmenu__action-four > ul li.offCanvas-menu .menu-tigger {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d9d9d9;
  background: var(--tg-common-color-white);
  border-radius: 50%;
  color: var(--tg-body-color);
}

.tgmenu__action-four > ul li.offCanvas-menu .menu-tigger:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
  border-color: var(--tg-theme-primary);
}

.tgmenu__action-five {
  margin-left: auto;
}

.tgmenu__action-five > ul li .cart-count {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: var(--tg-common-color-gray-7);
  color: var(--tg-body-color);
  font-size: 20px;
  line-height: 0;
}

.tgmenu__action-five > ul li .cart-count span {
  background: var(--tg-heading-color);
  color: var(--tg-common-color-white);
}

.tgmenu__action-six {
  margin-left: auto;
}

.tgmenu__action-six .list-wrap {
  gap: 10px;
}

.tgmenu__action-six .list-wrap li {
  padding: 0;
}

.tgmenu__action-six .list-wrap li.mini-cart-icon a, .tgmenu__action-six .list-wrap li.header-user a, .tgmenu__action-six .list-wrap li.header-search a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #c5c5c5;
  border-radius: 50%;
  background: var(--tg-common-color-white);
  font-size: 20px;
  color: var(--tg-body-color);
}

.tgmenu__action-six .list-wrap li.mini-cart-icon a:hover, .tgmenu__action-six .list-wrap li.header-user a:hover, .tgmenu__action-six .list-wrap li.header-search a:hover {
  background: var(--tg-theme-primary);
  border-color: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
}

.tgmenu__action-six .list-wrap li.header-btn .btn {
  box-shadow: none;
  border-radius: 8px;
  padding: 16px 20px;
}

.tgmenu__action-six .list-wrap li.mini-cart-icon {
  padding: 0 6px 0 0;
}

.tgmenu__action-seven {
  margin-left: auto;
}

@media (max-width: 1199.98px) {
  .tgmenu__action-seven {
    margin: 0 10px 0 0;
    margin-left: auto;
  }
}
.tgmenu__action-seven .list-wrap li .select-grp-two {
  margin-left: 0;
}

.tgmenu__action-seven .list-wrap li .select-grp-two .dropdown-toggle {
  background: var(--tg-common-color-white);
  color: var(--tg-heading-color);
  font-weight: 500;
}

.tgmenu__action-seven .list-wrap li.mini-cart-icon a, .tgmenu__action-seven .list-wrap li.header-search a {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tg-common-color-white);
  border: 1px solid #CFCFCF;
  border-radius: 50%;
  font-size: 20px;
  color: var(--tg-body-color);
}

.tgmenu__action-seven .list-wrap li.mini-cart-icon a:hover, .tgmenu__action-seven .list-wrap li.header-search a:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
  border-color: var(--tg-theme-primary);
}

.tgmenu__action-seven .list-wrap li.header-btn .btn {
  box-shadow: none;
}

.tgmenu__action-eight .list-wrap li.mini-cart-icon a, .tgmenu__action-eight .list-wrap li.header-user a {
  width: 40px;
  height: 40px;
  color: var(--tg-heading-color);
}

.tgmenu__action-eight .list-wrap li.mini-cart-icon a svg, .tgmenu__action-eight .list-wrap li.header-user a svg {
  width: 17px;
  height: auto;
}

.tgmenu__action-eight .list-wrap li.mini-cart-icon a:hover, .tgmenu__action-eight .list-wrap li.header-user a:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
}

.tgmenu__action-eight .list-wrap li .mini-cart-count {
  background: var(--tg-theme-secondary);
  color: var(--tg-common-color-white);
}

@media (max-width: 1199.98px) {
  .tgmenu__categories {
    margin-left: auto;
  }
}
.tgmenu__categories .dropdown-toggle {
  display: flex;
  align-items: center;
  border: 1px solid var(--tg-border-6);
  border-radius: 100px;
  background: #f6f6f6;
  position: relative;
  padding: 10px 16px;
  font-size: 14px;
  font-family: var(--tg-heading-font-family);
  color: var(--tg-body-color);
  font-weight: 400;
  gap: 0 13px;
}

.tgmenu__categories .dropdown-toggle i {
  color: var(--tg-theme-primary);
  font-size: 16px;
}

.tgmenu__categories .dropdown-toggle::after {
  content: "";
  display: block;
  margin: 0 0 0 4px;
  border: none;
  background-image: url(/assets/img/icons/down_arrow.svg);
  width: 12px;
  height: 8px;
}

.tgmenu__categories .dropdown-menu {
  width: 100%;
  min-width: 100%;
  background-color: var(--tg-common-color-white);
  border: 1px solid var(--tg-border-2);
  border-radius: 15px;
}

.tgmenu__categories .dropdown-item {
  color: var(--tg-body-color);
}

.tgmenu__categories .dropdown-item:hover, .tgmenu__categories .dropdown-item:focus {
  background-color: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
}

.mega-sub-menu li a {
  display: flex !important;
  align-items: center;
  gap: 8px;
}

.tg-badge {
  background: linear-gradient(90deg, #ff1515 0%, #ed0fbc 100%);
  display: inline-block;
  line-height: 1;
  color: var(--tg-common-color-white);
  font-weight: 600;
  font-size: 13px;
  font-family: var(--tg-heading-font-family);
  border-radius: 3px;
  padding: 3px 8px;
}

.tg-badge-two {
  display: inline-block;
  line-height: 1;
  color: var(--tg-common-color-white);
  font-weight: 600;
  font-size: 13px;
  font-family: var(--tg-heading-font-family);
  border-radius: 3px;
  padding: 3px 8px;
  background: #39cabd;
}

.mega-menu-img a {
  padding: 0 !important;
}

.mega-menu-img a img {
  border-radius: 15px;
}

.sticky-menu {
  position: fixed;
  left: 0;
  margin: auto;
  top: 0;
  width: 100%;
  z-index: 99;
  background: var(--tg-common-color-white);
  animation: 1000ms ease-in-out 0s normal none 1 running fadeInDown;
  box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
  border-radius: 0;
}

.sticky-menu ul li .sub-menu {
  border-radius: 0 0 6px 6px;
}

#header-fixed-height.active-height {
  display: block;
  height: 90px;
}

@media (max-width: 767.98px) {
  #header-fixed-height.active-height {
    height: 80px;
  }
}
.mobile-login-btn {
  margin-left: auto;
  display: none;
}

@media (max-width: 767.98px) {
  .mobile-login-btn {
    display: flex;
  }
}
.mobile-login-btn a {
  margin-right: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  background: #F4F4F4;
  justify-content: center;
  border-radius: 50%;
  line-height: 0;
  color: var(--tg-body-color);
}

.mobile-login-btn a:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
}

.mobile-login-btn-two a {
  background: var(--tg-common-color-white);
  border: 1px solid #d9d9d9;
  color: var(--tg-body-color);
}

.select-grp-two {
  margin-left: 55px;
}

@media (max-width: 1800px) {
  .select-grp-two {
    margin-left: 30px;
  }
}
@media (max-width: 767.98px) {
  .select-grp-two {
    display: none;
  }
}
.select-grp-two .select2-container .select2-selection--single {
  height: auto;
}

.select-grp-two .select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 25px;
  padding-right: 18px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.1rem center;
  background-size: 16px 12px;
  font-size: 14px;
  font-family: var(--tg-heading-font-family);
  color: var(--tg-body-color);
  font-weight: 400;
}

.tgmenu__main-menu li.menu-item-has-children > .sub-menu .menu-item-has-children > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/*=============================
	03. Mobile Menu
===============================*/
.tgmobile__search {
  padding: 0 20px 25px 25px;
}

.tgmobile__search form {
  position: relative;
}

.tgmobile__search input {
  display: block;
  width: 100%;
  border: none;
  padding: 10px 45px 10px 20px;
  font-size: 15px;
  height: 45px;
  background: var(--tg-common-color-gray);
  border-radius: 4px;
}

.tgmobile__search input::placeholder {
  font-size: 15px;
  color: var(--tg-body-color);
}

.tgmobile__search button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  padding: 0;
  right: 20px;
  line-height: 1;
  background: transparent;
  color: var(--tg-heading-color);
}

.tgmobile__menu {
  position: fixed;
  right: 0;
  top: 0;
  width: 300px;
  padding-right: 30px;
  max-width: 100%;
  height: 100%;
  z-index: 99;
  border-radius: 0px;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -ms-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) e;
  -o-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transform: translateX(101%);
}

.tgmobile__menu .navbar-collapse {
  display: block !important;
}

.tgmobile__menu .nav-logo {
  position: relative;
  padding: 30px 25px;
  text-align: left;
}

.tgmobile__menu .nav-logo img {
  width: 150px;
}

.tgmobile__menu .navigation {
  position: relative;
  display: block;
  width: 100%;
  float: none;
  margin: 0;
  padding: 0;
}

.tgmobile__menu .navigation li {
  position: relative;
  display: block;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.tgmobile__menu .navigation li.active > a {
  color: var(--tg-theme-primary);
}

.tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn {
  position: absolute;
  right: 20px;
  top: 6px;
  width: 32px;
  height: 32px;
  text-align: center;
  font-size: 16px;
  line-height: 32px;
  color: var(--tg-heading-color);
  background: var(--tg-common-color-gray);
  cursor: pointer;
  border-radius: 2px;
  transition: all 500ms ease;
  z-index: 5;
}

.tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn .plus-line {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(0);
  border-radius: 10px;
  width: 12px;
  height: 2px;
  background-color: var(--tg-common-color-black);
  transition: all 500ms ease;
}

.tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn .plus-line::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(0);
  border-radius: 10px;
  width: 2px;
  height: 12px;
  background-color: var(--tg-common-color-black);
  transition: all 500ms ease;
}

.tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn.open {
  background-color: var(--tg-theme-primary);
}

.tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn.open .plus-line {
  background-color: var(--tg-common-color-white);
}

.tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn.open .plus-line::after {
  display: none;
}

.tgmobile__menu .navigation li > a {
  position: relative;
  display: block;
  line-height: 1.5;
  padding: 10px 60px 10px 25px;
  font-size: 16px;
  font-weight: 500;
  color: var(--tg-heading-color);
  text-transform: capitalize;
  transition: all 500ms ease;
  border: none;
}

.tgmobile__menu .navigation li > a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 0;
  transition: all 500ms ease;
  width: 2px;
  background: var(--tg-theme-primary);
  pointer-events: none;
}

.tgmobile__menu .navigation li ul li > a {
  margin-left: 20px;
}

.tgmobile__menu .navigation li ul li ul li a {
  margin-left: 40px;
}

.tgmobile__menu .navigation li ul li ul li ul li a {
  margin-left: 60px;
}

.tgmobile__menu .navigation li > ul {
  display: none;
}

.tgmobile__menu .navigation li > ul > li > ul {
  display: none;
}

.tgmobile__menu .navigation ul {
  padding: 0;
  margin: 0;
}

.tgmobile__menu .navigation ul li a {
  display: block;
}

.tgmobile__menu .navigation ul li ul li > a {
  font-size: 16px;
  margin-left: 20px;
  text-transform: capitalize;
}

.tgmobile__menu .navigation:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.tgmobile__menu .navigation > li > ul > li:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.tgmobile__menu .navigation > li.active > a::before {
  height: 100%;
}

.tgmobile__menu .close-btn {
  position: absolute;
  right: 15px;
  top: 28px;
  line-height: 30px;
  width: 35px;
  text-align: center;
  font-size: 14px;
  color: var(--tg-theme-primary);
  cursor: pointer;
  padding: 8px;
  z-index: 10;
  transition: all 0.5s ease;
}

.tgmobile__menu .close-btn i[class^=flaticon-]:before {
  font-weight: var(--tg-fw-bold) !important;
}

.tgmobile__menu-backdrop {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  transition: all 700ms ease;
  -moz-transition: all 700ms ease;
  -webkit-transition: all 700ms ease;
  -ms-transition: all 700ms ease;
  -o-transition: all 700ms ease;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.5);
}

.tgmobile__menu .social-links ul {
  display: flex;
  position: relative;
  text-align: center;
  padding: 30px 20px 20px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.tgmobile__menu .social-links ul li {
  position: relative;
  display: inline-block;
  margin: 0px 6px 10px;
}

.tgmobile__menu .social-links ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  position: relative;
  line-height: 32px;
  font-size: 16px;
  color: var(--tg-body-color);
  transition: all 500ms ease;
  border: 1px solid #efefef;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.tgmobile__menu .social-links ul li a:hover {
  border-color: var(--tg-theme-primary);
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
}

.tgmobile__menu .tgmenu__action {
  padding: 0 0;
  margin: 0 0;
}

.tgmobile__menu .tgmenu__action > ul {
  margin: 0 0;
  padding: 30px 20px 0;
  justify-content: center;
  gap: 0 15px;
}

.tgmobile__menu .tgmenu__action > ul li {
  margin: 0 0;
}

.tgmobile__menu .tgmenu__action > ul .header-btn {
  display: block;
}

.tgmobile__menu-box {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  background: var(--tg-common-color-white);
  padding: 0px 0px;
  z-index: 5;
  box-shadow: -9px 0 14px 0px rgba(0, 0, 0, 0.06);
}

.tgmobile__menu-outer .mobile-nav-toggler {
  position: relative;
  float: right;
  font-size: 40px;
  line-height: 50px;
  cursor: pointer;
  display: none;
  color: var(--tg-common-color-white);
  margin-right: 30px;
  top: 15px;
}

.mobile-menu-visible {
  overflow: hidden;
}

.mobile-menu-visible .tgmobile__menu {
  transform: translateX(0%);
}

.mobile-menu-visible .tgmobile__menu-backdrop {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-visible .tgmobile__menu .close-btn {
  transform: rotate(360deg);
}

.tgmobile__menu .mega-menu > li > .mega-sub-menu {
  display: flex !important;
  flex-direction: column;
  min-width: auto;
  margin-left: 0 !important;
}

.tgmobile__menu .mega-menu > li:nth-child(3) {
  display: none;
}

.tgmobile__menu .mega-menu > li > .mega-sub-menu a {
  margin-left: 20px;
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 10px 25px 10px 25px;
}

.tgmobile__menu .navigation li > .mega-menu > li .mega-sub-menu li:first-child {
  border: none;
}

/*=============================
    04. Banner
===============================*/
.banner-bg {
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 1500px) {
  .banner-bg {
    min-height: auto;
  }
}
.banner-bg .line-shape {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 767.98px) {
  .banner-bg .line-shape {
    display: none;
  }
}
.banner-bg-two {
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
  background-size: cover;
  background-position: bottom;
  z-index: 1;
}

@media (max-width: 1500px) {
  .banner-bg-two {
    padding: 60px 0 60px;
  }
}
@media (max-width: 991.98px) {
  .banner-bg-two {
    padding: 60px 0 25px;
  }
}
.banner-bg-two .line-shape-two {
  position: absolute;
  left: 0;
  top: 20%;
  z-index: -1;
  pointer-events: none;
}

@media (max-width: 767.98px) {
  .banner-bg-two .line-shape-two {
    display: none;
  }
}
.banner-bg-three {
  background-size: cover;
  background-position: center;
  padding: 60px 0 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.banner-bg-four {
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 140px 0 0;
}

@media (max-width: 767.98px) {
  .banner-bg-four {
    padding: 130px 0 0;
  }
}
.banner-bg-five {
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
  padding: 70px 0 0;
}

@media (max-width: 991.98px) {
  .banner-bg-five {
    padding: 90px 0 0;
  }
}
@media (max-width: 767.98px) {
  .banner-bg-five {
    padding: 80px 0 0;
  }
}
.banner-bg-five-shape {
  position: absolute;
  left: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 91px;
  z-index: 3;
}

.banner-bg-six {
  position: relative;
  z-index: 1;
  padding: 280px 0 150px;
  background-position: center;
  background-size: cover;
}

@media (max-width: 1500px) {
  .banner-bg-six {
    padding: 220px 0 130px;
  }
}
@media (max-width: 1199.98px) {
  .banner-bg-six {
    padding: 200px 0 110px;
  }
}
@media (max-width: 991.98px) {
  .banner-bg-six {
    padding: 160px 0 110px;
  }
}
@media (max-width: 767.98px) {
  .banner-bg-six {
    padding: 130px 0 100px;
  }
}
.banner-bg-seven {
  background-size: cover;
  background-position: center;
  padding-top: 45px;
  position: relative;
  z-index: 1;
}

@media (max-width: 991.98px) {
  .banner-bg-seven {
    padding-top: 60px;
  }
}
.banner__content {
  margin: 60px 0 100px;
  position: relative;
  z-index: 3;
}

@media (max-width: 1500px) {
  .banner__content {
    margin: 60px 0 70px;
  }
}
@media (max-width: 1199.98px) {
  .banner__content {
    margin: 40px 0 60px;
  }
}
@media (max-width: 991.98px) {
  .banner__content {
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  .banner__content {
    margin: 0 0 60px;
  }
}
.banner__content .sub-title {
  display: inline-block;
  line-height: 1;
  background: var(--tg-common-color-gray);
  border-radius: 4px;
  padding: 7px 15px;
  font-weight: var(--tg-fw-medium);
  color: var(--tg-theme-primary);
  margin: 0 0 16px;
}

.banner__content .title {
  font-size: 40px;
  line-height: 1.5;
  font-weight: var(--tg-fw-medium);
  margin: 0 0 12px;
}

@media (max-width: 1199.98px) {
  .banner__content .title {
    font-size: 35px;
  }
}
@media (max-width: 767.98px) {
  .banner__content .title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner__content .title {
    font-size: 40px;
  }
}
.banner__content .title span:not(.svg-icon) {
  color: var(--tg-theme-primary);
  position: relative;
  color: var(--tg-common-color-white);
  padding: 0 13px 0 20px;
  font-weight: var(--tg-fw-bold);
  z-index: 1;
}

.banner__content .title span:not(.svg-icon) > svg {
  position: absolute;
  left: 0;
  top: 3px;
  width: 100%;
  height: 100%;
  z-index: -1;
  color: var(--tg-theme-secondary);
}

.banner__content .title .svg-icon {
  position: absolute;
  right: -50px;
  top: -50px;
  width: 61px;
  height: 68px;
}

@media (max-width: 767.98px) {
  .banner__content .title .svg-icon {
    display: none;
  }
}
.banner__content .title .svg-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.banner__content .title .svg-icon path {
  stroke: var(--tg-heading-color);
}

.banner__content p {
  max-width: 90%;
  margin: 0 0 0;
  font-size: 18px;
  line-height: 1.6;
}

@media (max-width: 1199.98px) {
  .banner__content p {
    max-width: 100%;
  }
}
.banner__content-two {
  margin: 120px 0 60px;
}

@media (max-width: 1500px) {
  .banner__content-two {
    margin: 80px 0 60px;
  }
}
@media (max-width: 991.98px) {
  .banner__content-two {
    margin: 0 0 60px;
    text-align: center;
  }
}
.banner__content-two .title {
  margin-bottom: 25px;
  font-size: 44px;
  font-weight: 700;
}

@media (max-width: 1199.98px) {
  .banner__content-two .title {
    font-size: 38px;
  }
}
@media (max-width: 767.98px) {
  .banner__content-two .title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner__content-two .title {
    font-size: 40px;
  }
}
.banner__content-two .title span {
  position: relative;
  color: var(--tg-common-color-white);
  padding: 0 13px 0 20px;
  font-weight: var(--tg-fw-bold);
  z-index: 1;
}

@media (max-width: 767.98px) {
  .banner__content-two .title span {
    padding: 0 10px 0 10px;
  }
}
.banner__content-two .title span svg {
  position: absolute;
  left: 0;
  top: 3px;
  width: 100%;
  height: 100%;
  z-index: -1;
  color: var(--tg-theme-secondary);
}

.banner__content-three {
  position: relative;
  margin-top: 120px;
}

@media (max-width: 1199.98px) {
  .banner__content-three {
    margin-top: 50px;
  }
}
@media (max-width: 991.98px) {
  .banner__content-three {
    text-align: center;
    margin-bottom: 60px;
  }
}
@media (max-width: 767.98px) {
  .banner__content-three {
    margin-top: 30px;
  }
}
.banner__content-three .sub-title {
  font-size: 15px;
  text-transform: uppercase;
  display: block;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 10px;
}

.banner__content-three .title {
  margin-bottom: 8px;
  font-size: 60px;
  font-weight: 600;
  letter-spacing: -0.8px;
  text-transform: capitalize;
}

@media (max-width: 1500px) {
  .banner__content-three .title {
    font-size: 54px;
  }
}
@media (max-width: 1199.98px) {
  .banner__content-three .title {
    font-size: 42px;
  }
}
@media (max-width: 991.98px) {
  .banner__content-three .title {
    font-size: 44px;
  }
}
@media (max-width: 767.98px) {
  .banner__content-three .title {
    font-size: 38px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner__content-three .title {
    font-size: 42px;
  }
}
.banner__content-three .title span {
  position: relative;
  z-index: 1;
  display: inline-block;
}

.banner__content-three .title span::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 14px;
  width: 100%;
  height: 16px;
  background: var(--tg-theme-secondary);
  z-index: -1;
}

@media (max-width: 1199.98px) {
  .banner__content-three .title span::before {
    bottom: 8px;
  }
}
.banner__content-three p {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 500;
  width: 90%;
}

@media (max-width: 991.98px) {
  .banner__content-three p {
    width: 100%;
  }
}
.banner__content-three .banner__btn-wrap {
  margin: 25px 0 0;
}

.banner__content-three .shape img {
  position: absolute;
  right: 45%;
  top: -24px;
  z-index: -1;
}

@media (max-width: 1199.98px) {
  .banner__content-three .shape img {
    right: 27%;
    top: -48px;
    width: 55px;
  }
}
@media (max-width: 991.98px) {
  .banner__content-three .shape img {
    right: 15%;
  }
}
.banner__content-four {
  margin-top: 150px;
}

@media (max-width: 1500px) {
  .banner__content-four {
    margin-top: 70px;
  }
}
@media (max-width: 991.98px) {
  .banner__content-four {
    margin-top: 0px;
    text-align: center;
    margin-bottom: 50px;
  }
}
.banner__content-four .sub-title {
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 500;
  color: var(--tg-common-color-black-2);
  line-height: 1;
}

.banner__content-four .title {
  margin-bottom: 8px;
  font-size: 60px;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--tg-common-color-black-2);
  position: relative;
  display: inline-block;
}

@media (max-width: 1199.98px) {
  .banner__content-four .title {
    font-size: 52px;
  }
}
@media (max-width: 767.98px) {
  .banner__content-four .title {
    font-size: 42px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner__content-four .title {
    font-size: 46px;
  }
}
.banner__content-four .title .title__shape {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: -1;
  line-height: 0;
  display: block;
}

.banner__content-four .title .title__shape svg {
  color: var(--tg-theme-secondary);
}

@media (max-width: 767.98px) {
  .banner__content-four .title .title__shape svg {
    width: 160px;
    height: 22px;
  }
}
.banner__content-four .sub-title-two {
  display: block;
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--tg-common-color-black-2);
  line-height: 1;
  margin-bottom: 30px;
}

@media (max-width: 767.98px) {
  .banner__content-four .sub-title-two {
    margin-bottom: 20px;
  }
}
.banner__content-four p {
  margin-bottom: 35px;
  font-size: 18px;
  text-transform: capitalize;
  width: 90%;
}

@media (max-width: 1500px) {
  .banner__content-four p {
    width: 100%;
  }
}
.banner__content-five {
  margin-bottom: 40px;
}

@media (max-width: 1199.98px) {
  .banner__content-five {
    margin-bottom: 70px;
  }
}
@media (max-width: 991.98px) {
  .banner__content-five {
    margin-bottom: 50px;
    text-align: center;
  }
}
.banner__content-five .sub-title {
  display: block;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tg-body-color);
  line-height: 1.2;
  margin-bottom: 5px;
}

.banner__content-five .title {
  margin-bottom: 15px;
  font-size: 60px;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: -1.5px;
}

@media (max-width: 1500px) {
  .banner__content-five .title {
    font-size: 54px;
  }
}
@media (max-width: 1199.98px) {
  .banner__content-five .title {
    font-size: 42px;
    margin-bottom: 10px;
  }
}
@media (max-width: 991.98px) {
  .banner__content-five .title {
    font-size: 45px;
  }
}
@media (max-width: 767.98px) {
  .banner__content-five .title {
    font-size: 38px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner__content-five .title {
    font-size: 42px;
  }
}
.banner__content-five .title span {
  position: relative;
  display: inline-block;
}

.banner__content-five .title span::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 15px;
  width: 100%;
  height: 16px;
  background: var(--tg-theme-secondary);
  z-index: -1;
}

@media (max-width: 1199.98px) {
  .banner__content-five .title span::before {
    height: 10px;
    bottom: 10px;
  }
}
.banner__content-five p {
  margin-bottom: 25px;
  font-size: 17px;
}

@media (max-width: 1199.98px) {
  .banner__content-five p {
    margin-bottom: 15px;
    font-size: 16px;
  }
}
.banner__content-five .btn {
  box-shadow: none;
}

.banner__content-six .title {
  margin-bottom: 15px;
  font-size: 50px;
  font-weight: 700;
  width: 95%;
  text-transform: capitalize;
}

@media (max-width: 1500px) {
  .banner__content-six .title {
    width: 100%;
  }
}
@media (max-width: 1199.98px) {
  .banner__content-six .title {
    font-size: 45px;
  }
}
@media (max-width: 991.98px) {
  .banner__content-six .title {
    font-size: 42px;
  }
}
@media (max-width: 767.98px) {
  .banner__content-six .title {
    font-size: 36px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner__content-six .title {
    font-size: 38px;
  }
}
.banner__content-six .title span {
  padding: 0 13px 0 15px;
  display: inline-block;
}

.banner__content-six .title span svg {
  position: absolute;
  left: 0;
  top: 2px;
  width: 100%;
  height: 100%;
  z-index: -1;
  color: var(--tg-theme-secondary);
}

.banner__content-six .sub-title {
  display: block;
  font-size: 18px;
  font-family: var(--tg-heading-font-family);
  font-weight: 500;
  text-transform: capitalize;
  color: var(--tg-heading-color);
  line-height: 1.2;
  margin-bottom: 30px;
}

.banner__content-six .about__info-list-item {
  margin-bottom: 12px;
}

.banner__content-six .about__info-list-item:last-child {
  margin-bottom: 0;
}

.banner__content-six .about__info-list-item i {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.banner__content-six .about__info-list-item p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}

.banner__content-six .banner__info-list {
  margin-bottom: 35px;
}

.banner__content-seven {
  margin-right: 35px;
}

@media (max-width: 1199.98px) {
  .banner__content-seven {
    margin-right: 20px;
  }
}
@media (max-width: 991.98px) {
  .banner__content-seven {
    margin-right: 0;
    text-align: center;
    margin-bottom: 50px;
  }
}
.banner__content-seven .title {
  font-size: 50px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 15px;
  line-height: 1.1;
}

@media (max-width: 1199.98px) {
  .banner__content-seven .title {
    font-size: 42px;
  }
}
@media (max-width: 767.98px) {
  .banner__content-seven .title {
    font-size: 38px;
    line-height: 1.2;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner__content-seven .title {
    font-size: 40px;
  }
}
.banner__content-seven .title span {
  position: relative;
  display: inline-block;
}

.banner__content-seven .title span svg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 21px;
  color: var(--tg-theme-secondary);
  z-index: -1;
}

.banner__content-seven p {
  margin-bottom: 30px;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.55;
  width: 70%;
}

@media (max-width: 1199.98px) {
  .banner__content-seven p {
    width: 100%;
  }
}
@media (max-width: 991.98px) {
  .banner__content-seven p {
    margin-bottom: 20px;
  }
}
.banner__search {
  margin-bottom: 25px;
}

.banner__search .slider__search-form input {
  border: 1px solid var(--tg-border-6);
}

.banner__search .slider__search-form button {
  right: 6px;
}

.banner__btn-wrap {
  margin: 34px 0 0;
}

@media (max-width: 991.98px) {
  .banner__btn-wrap {
    margin: 28px 0 0;
  }
  .banner__btn-wrap .tg-button-wrap {
    justify-content: center;
  }
}
.banner__btn-wrap-two {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 30px;
}

@media (max-width: 1199.98px) {
  .banner__btn-wrap-two {
    gap: 20px 15px;
  }
}
@media (max-width: 991.98px) {
  .banner__btn-wrap-two {
    gap: 20px 30px;
    justify-content: center;
  }
}
.banner__btn-wrap-three {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.banner__btn-wrap-three .play-btn {
  display: flex;
  gap: 18px;
  align-items: center;
}

.banner__btn-wrap-three .play-btn i {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid #B6B6B6;
  border-radius: 50%;
  font-size: 15px;
  color: var(--tg-heading-color);
  background: linear-gradient(180deg, #fff 0%, #d9d9d9 100%);
}

.banner__btn-wrap-three .play-btn span {
  color: var(--tg-heading-color);
  font-size: 18px;
  font-weight: 500;
  text-decoration: underline;
  font-family: var(--tg-heading-font-family);
  transition: all 0.3s ease-out 0s;
}

.banner__btn-wrap-three .play-btn:hover span {
  color: var(--tg-theme-primary);
}

.banner__btn-two {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

@media (max-width: 991.98px) {
  .banner__btn-two {
    justify-content: center;
  }
}
.banner__btn-two .play-btn {
  font-size: 15px;
  font-weight: 500;
  font-family: var(--tg-heading-font-family);
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--tg-heading-color);
}

.banner__btn-two .play-btn i {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--tg-theme-secondary);
  border: 1px solid var(--tg-heading-color);
  color: var(--tg-heading-color);
  font-size: 16px;
  -ms-box-shadow: 4px 4px 0px 0px #3D3D3D;
  -o-box-shadow: 4px 4px 0px 0px #3D3D3D;
  box-shadow: 4px 4px 0px 0px #3D3D3D;
  transition: all 0.3s ease-out 0s;
}

.banner__btn-two .play-btn:hover {
  color: var(--tg-theme-secondary);
}

.banner__btn-two .play-btn:hover i {
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}

.banner__contact {
  display: flex;
  align-items: center;
  gap: 8px;
}

.banner__contact .icon {
  width: 57px;
  height: 57px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tg-theme-secondary);
  color: var(--tg-common-color-black-2);
  border-radius: 50%;
  line-height: 0;
}

.banner__contact .icon svg {
  width: 25px;
  height: 25px;
}

.banner__contact .content span {
  display: block;
  line-height: 1;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tg-common-color-black-3);
  font-family: var(--tg-heading-font-family);
  margin-bottom: 5px;
}

.banner__contact .content a {
  text-transform: uppercase;
  font-size: 19px;
  font-weight: 600;
  color: var(--tg-common-color-black-3);
  line-height: 1;
}

.banner__contact .content a:hover {
  color: var(--tg-theme-secondary);
}

.banner__images {
  position: relative;
  padding-right: 118px;
  text-align: right;
  z-index: 1;
}

@media (max-width: 1199.98px) {
  .banner__images {
    padding-right: 105px;
  }
}
@media (max-width: 991.98px) {
  .banner__images {
    margin: 0 auto;
    text-align: center;
    max-width: 80%;
    padding: 0;
  }
}
@media (max-width: 767.98px) {
  .banner__images {
    max-width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner__images {
    max-width: 90%;
  }
}
.banner__images .main-img {
  max-width: inherit;
}

@media (max-width: 1500px) {
  .banner__images .main-img {
    max-width: 100%;
  }
}
.banner__images .shape {
  position: absolute;
  z-index: -1;
}

.banner__images .shape.big-shape {
  max-width: 618px;
  bottom: -85px;
  right: -22px;
}

.banner__images .shape.bg-dots {
  max-width: 495px;
  right: 30px;
  bottom: -33px;
  z-index: -2;
}

@media (max-width: 767.98px) {
  .banner__images .shape.bg-dots {
    max-width: 100%;
    right: 0;
    bottom: 18%;
  }
}
.banner__images .shape.small-shape {
  max-width: 136px;
  left: 35px;
  bottom: -24px;
  z-index: -2;
}

@media (max-width: 1199.98px) {
  .banner__images .shape.small-shape {
    left: 10px;
  }
}
.banner__images-two {
  position: relative;
  text-align: center;
  margin-right: 60px;
}

@media (max-width: 1199.98px) {
  .banner__images-two {
    margin-right: 0;
  }
}
@media (max-width: 1500px) {
  .banner__images-two img {
    width: 400px;
  }
}
@media (max-width: 1199.98px) {
  .banner__images-two img {
    width: 350px;
  }
}
.banner__images-two .big-shape {
  position: absolute;
  z-index: -1;
  left: 8%;
  top: 2%;
  color: #FFC738;
}

@media (max-width: 1500px) {
  .banner__images-two .big-shape {
    top: 5%;
  }
}
@media (max-width: 1199.98px) {
  .banner__images-two .big-shape {
    left: 0;
    width: 400px;
    top: 2%;
  }
  .banner__images-two .big-shape svg {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 767.98px) {
  .banner__images-two .big-shape {
    width: 100%;
    max-width: 400px;
  }
}
.banner__images-two .svg-icon {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 35%;
  top: -5%;
}

@media (max-width: 991.98px) {
  .banner__images-two .svg-icon {
    left: 30%;
    top: -8%;
  }
}
.banner__images-two .svg-icon svg {
  width: 100%;
  height: 100%;
  color: #031333;
  display: block;
}

.banner__images-two .about__enrolled {
  left: 0;
  top: 41%;
  bottom: auto;
}

@media (max-width: 1199.98px) {
  .banner__images-two .about__enrolled {
    display: none;
  }
}
.banner__images-three {
  position: relative;
  z-index: 1;
  text-align: right;
}

@media (max-width: 991.98px) {
  .banner__images-three {
    text-align: center;
    width: 80%;
    margin: 0 auto;
  }
}
@media (max-width: 767.98px) {
  .banner__images-three {
    width: 100%;
  }
}
.banner__images-three .big-shape {
  position: absolute;
  right: -15px;
  bottom: -55px;
  z-index: -1;
}

.banner__images-three .shape__wrap img {
  position: absolute;
  z-index: -1;
}

.banner__images-three .shape__wrap img:nth-child(1) {
  left: 0;
  top: 18%;
  max-width: 58px;
}

@media (max-width: 1199.98px) {
  .banner__images-three .shape__wrap img:nth-child(1) {
    max-width: 50px;
  }
}
.banner__images-three .shape__wrap img:nth-child(2) {
  right: 0;
  top: 24%;
  max-width: 74px;
}

@media (max-width: 1199.98px) {
  .banner__images-three .shape__wrap img:nth-child(2) {
    max-width: 60px;
  }
}
@media (max-width: 767.98px) {
  .banner__images-three .shape__wrap img:nth-child(2) {
    display: none;
  }
}
.banner__images-three .about__enrolled {
  left: -90px;
  bottom: auto;
  top: 35%;
}

@media (max-width: 1199.98px) {
  .banner__images-three .about__enrolled {
    left: -73px;
    top: 52%;
  }
}
@media (max-width: 991.98px) {
  .banner__images-three .about__enrolled {
    display: block;
  }
}
@media (max-width: 767.98px) {
  .banner__images-three .about__enrolled {
    display: none;
  }
}
.banner__images-four {
  position: relative;
  text-align: right;
}

@media (max-width: 1500px) {
  .banner__images-four {
    text-align: center;
  }
}
@media (max-width: 1500px) {
  .banner__images-four > img {
    max-width: 460px;
  }
}
@media (max-width: 1199.98px) {
  .banner__images-four > img {
    max-width: 420px;
  }
}
@media (max-width: 767.98px) {
  .banner__images-four > img {
    max-width: 100%;
  }
}
.banner__images-four .shape {
  position: absolute;
  z-index: -1;
}

.banner__images-four .shape.big-shape {
  left: 43%;
  bottom: 6%;
}

@media (max-width: 1500px) {
  .banner__images-four .shape.big-shape {
    left: 31%;
    bottom: 3%;
  }
}
@media (max-width: 1199.98px) {
  .banner__images-four .shape.big-shape {
    left: 21%;
  }
}
@media (max-width: 991.98px) {
  .banner__images-four .shape.big-shape {
    left: 24%;
  }
}
@media (max-width: 767.98px) {
  .banner__images-four .shape.big-shape {
    left: 19%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner__images-four .shape.big-shape {
    left: 18%;
  }
}
@media (max-width: 1500px) {
  .banner__images-four .shape.big-shape img {
    max-width: 310px;
  }
}
@media (max-width: 1199.98px) {
  .banner__images-four .shape.big-shape img {
    max-width: 290px;
  }
}
@media (max-width: 767.98px) {
  .banner__images-four .shape.big-shape img {
    max-width: 250px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner__images-four .shape.big-shape img {
    max-width: 285px;
  }
}
.banner__images-four .shape.big-shape-two {
  right: -13%;
  bottom: 18%;
  z-index: -2;
}

@media (max-width: 1500px) {
  .banner__images-four .shape.big-shape-two {
    right: 7%;
    bottom: 16%;
  }
}
@media (max-width: 1199.98px) {
  .banner__images-four .shape.big-shape-two {
    right: -9%;
    bottom: 20%;
  }
}
@media (max-width: 991.98px) {
  .banner__images-four .shape.big-shape-two {
    right: -8%;
    bottom: 14%;
  }
}
@media (max-width: 767.98px) {
  .banner__images-four .shape.big-shape-two {
    right: auto;
    bottom: 19%;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 1500px) {
  .banner__images-four .shape.big-shape-two img {
    max-width: 600px;
  }
}
@media (max-width: 1199.98px) {
  .banner__images-four .shape.big-shape-two img {
    max-width: 520px;
  }
}
@media (max-width: 991.98px) {
  .banner__images-four .shape.big-shape-two img {
    max-width: 570px;
  }
}
@media (max-width: 767.98px) {
  .banner__images-four .shape.big-shape-two img {
    max-width: 400px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner__images-four .shape.big-shape-two img {
    max-width: 530px;
  }
}
.banner__images-five {
  position: relative;
  text-align: right;
  margin-right: -50px;
}

@media (max-width: 1500px) {
  .banner__images-five {
    margin-right: 0;
  }
}
@media (max-width: 1500px) {
  .banner__images-five > img {
    max-width: 700px;
  }
}
@media (max-width: 1199.98px) {
  .banner__images-five > img {
    max-width: 100%;
  }
}
.banner__images-five .shape-one {
  position: absolute;
  z-index: -1;
  left: -3%;
  bottom: 19%;
}

@media (max-width: 1500px) {
  .banner__images-five .shape-one {
    bottom: 15%;
  }
}
@media (max-width: 1199.98px) {
  .banner__images-five .shape-one {
    bottom: 18%;
    max-width: 85px;
  }
}
.banner__images-five .shape-two {
  position: absolute;
  z-index: -1;
  right: -50px;
  top: 60px;
}

@media (max-width: 1500px) {
  .banner__images-five .shape-two {
    right: 0px;
    top: 52px;
    max-width: 80px;
  }
}
@media (max-width: 1199.98px) {
  .banner__images-five .shape-two {
    right: 8px;
    top: 34px;
    max-width: 60px;
  }
}
.banner__images-five .shape-three {
  position: absolute;
  z-index: -1;
  right: 11%;
  bottom: 18%;
}

@media (max-width: 1199.98px) {
  .banner__images-five .shape-three {
    right: 11%;
    bottom: 22%;
  }
}
.banner__images-six {
  text-align: center;
  position: relative;
}

@media (max-width: 991.98px) {
  .banner__images-six {
    margin-bottom: 60px;
  }
}
@media (max-width: 767.98px) {
  .banner__images-six {
    margin-bottom: 50px;
  }
}
.banner__images-six .main-img {
  position: relative;
  display: inline-block;
}

@media (max-width: 1199.98px) {
  .banner__images-six .main-img {
    max-width: 400px;
  }
}
@media (max-width: 767.98px) {
  .banner__images-six .main-img {
    max-width: 100%;
  }
}
.banner__images-six .main-img img {
  border-radius: 100px;
}

@media (max-width: 767.98px) {
  .banner__images-six .main-img img {
    border-radius: 40px;
    width: 100%;
  }
}
.banner__images-six .main-img .svg-icon {
  width: 81px;
  height: 70px;
  position: absolute;
  left: -9%;
  top: -8%;
}

@media (max-width: 767.98px) {
  .banner__images-six .main-img .svg-icon {
    width: 60px;
    height: auto;
    left: -3%;
    top: -10%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner__images-six .main-img .svg-icon {
    left: -9%;
    top: -7%;
  }
}
.banner__images-six .main-img .svg-icon svg {
  width: 100%;
  height: 100%;
  color: var(--tg-theme-secondary);
}

.banner__images-six .about__enrolled-two {
  box-shadow: -8px 8px 0 0 rgba(0, 0, 0, 0.25);
  background: #fff;
  border: 1px solid #6d6c80;
  border-radius: 15px 15px 0 15px;
  padding: 16px 25px;
  left: 8%;
  bottom: auto;
  top: 19%;
}

@media (max-width: 1199.98px) {
  .banner__images-six .about__enrolled-two {
    left: 0;
  }
}
.banner__images-six .about__enrolled-two img {
  margin-bottom: 10px;
}

.banner__images-six .about__enrolled-two p {
  margin-bottom: 0;
  font-weight: 600;
  color: var(--tg-heading-color);
  font-family: var(--tg-heading-font-family);
  line-height: 1;
}

.banner__images-six .shape-wrap img {
  position: absolute;
  z-index: -1;
}

.banner__images-six .shape-wrap img:nth-child(1) {
  left: 0;
  top: 11%;
}

@media (max-width: 767.98px) {
  .banner__images-six .shape-wrap img:nth-child(1) {
    display: none;
  }
}
.banner__images-six .shape-wrap img:nth-child(2) {
  right: 17%;
  bottom: -5%;
}

@media (max-width: 1500px) {
  .banner__images-six .shape-wrap img:nth-child(2) {
    right: 13%;
  }
}
@media (max-width: 1199.98px) {
  .banner__images-six .shape-wrap img:nth-child(2) {
    right: 7%;
  }
}
@media (max-width: 767.98px) {
  .banner__images-six .shape-wrap img:nth-child(2) {
    display: none;
  }
}
.banner__images-seven {
  text-align: center;
  position: relative;
}

@media (max-width: 1199.98px) {
  .banner__images-seven .main-img {
    max-width: 330px;
  }
}
.banner__images-seven .big_shape {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--tg-theme-secondary);
  z-index: -1;
  width: 506px;
  height: 506px;
}

@media (max-width: 1199.98px) {
  .banner__images-seven .big_shape {
    width: 420px;
    height: 420px;
  }
}
@media (max-width: 767.98px) {
  .banner__images-seven .big_shape {
    width: 90%;
    height: 90%;
  }
}
.banner__images-seven .big_shape svg {
  width: 100%;
  height: 100%;
}

.banner__images-seven .shape {
  position: absolute;
  z-index: -2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 592px;
}

@media (max-width: 1199.98px) {
  .banner__images-seven .shape {
    width: 490px;
  }
}
@media (max-width: 767.98px) {
  .banner__images-seven .shape {
    width: 100%;
  }
}
.banner__images-seven .about__enrolled {
  left: -24px;
  bottom: auto;
  top: 41%;
}

@media (max-width: 991.98px) {
  .banner__images-seven .about__enrolled {
    display: block;
  }
}
@media (max-width: 767.98px) {
  .banner__images-seven .about__enrolled {
    display: none;
  }
}
.banner__all-recipe {
  position: absolute;
  right: 1%;
  bottom: 33%;
  background: var(--tg-theme-primary);
  box-shadow: -8px 8px 0 0 rgba(0, 0, 0, 0.15);
  border: 1px solid #b2bbcc;
  border-radius: 10px;
  text-align: center;
  padding: 15px 28px;
}

.banner__all-recipe .count {
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  margin-bottom: 5px;
  color: var(--tg-common-color-white);
}

.banner__all-recipe span {
  display: block;
  line-height: 1;
  font-weight: 500;
  font-size: 14px;
  text-transform: capitalize;
  color: var(--tg-common-color-white);
}

.banner__student {
  display: inline-flex;
  align-items: center;
  border-radius: 10px;
  border: 1px solid var(--tg-common-color-gray-5);
  background: var(--tg-common-color-white);
  -ms-box-shadow: 8px 8px 0px 0px rgba(0, 0, 0, 0.15);
  -o-box-shadow: 8px 8px 0px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 8px 8px 0px 0px rgba(0, 0, 0, 0.15);
  position: absolute;
  right: 18%;
  top: 16%;
  padding: 15px 18px;
  gap: 10px;
}

@media (max-width: 1199.98px) {
  .banner__student {
    right: 0;
    top: 13%;
  }
}
.banner__student .icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tg-common-color-green);
  color: var(--tg-common-color-white);
  border-radius: 50%;
  -ms-box-shadow: 4px 4px 0px rgba(33, 150, 83, 0.5);
  -o-box-shadow: 4px 4px 0px rgba(33, 150, 83, 0.5);
  box-shadow: 4px 4px 0px rgba(33, 150, 83, 0.5);
  border: 1px solid #149959;
}

.banner__student .content {
  text-align: left;
}

.banner__student .content span {
  display: block;
  line-height: 1;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.banner__student .content .title {
  margin-bottom: 0;
  font-size: 24px;
  font-family: var(--tg-body-font-family);
  font-weight: 800;
  line-height: 1;
}

.banner__author {
  position: absolute;
  top: 30px;
  left: 23px;
  width: 175px;
  padding: 11px 30px 11px 14px;
  border-radius: 6px;
  background: var(--tg-common-color-white);
  box-shadow: 9px 10px 0px 0px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

@media (max-width: 1199.98px) {
  .banner__author {
    top: -30px;
    left: -10px;
    width: 155px;
    padding: 10px 10px 10px 10px;
  }
}
@media (max-width: 991.98px) {
  .banner__author {
    top: 0px;
    left: 10px;
  }
}
@media (max-width: 767.98px) {
  .banner__author {
    display: none;
  }
}
.banner__author-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.banner__author-item .image {
  flex: 0 0 auto;
}

.banner__author-item .image img {
  max-width: 30px;
  border-radius: 50%;
}

.banner__author-item .name {
  flex-grow: 1;
  margin-bottom: 0;
  font-size: 14px;
}

.banner__author .arrow-shape {
  position: absolute;
  left: calc(100% - 11px);
  top: 9px;
  z-index: -1;
}

.banner__review {
  display: flex;
  align-items: center;
  box-shadow: -8px 8px 0 0 rgba(0, 0, 0, 0.25);
  background: #fff;
  gap: 8px;
  border: 1px solid var(--tg-body-color);
  border-radius: 15px 15px 15px 0;
  position: absolute;
  right: 3%;
  top: 25%;
  padding: 15px 15px;
}

@media (max-width: 1199.98px) {
  .banner__review {
    right: 0;
  }
}
@media (max-width: 767.98px) {
  .banner__review {
    display: none;
  }
}
.banner__review .icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tg-theme-secondary);
  border-radius: 8px;
}

.banner__review .title {
  margin-bottom: 0;
  text-align: left;
  font-weight: 700;
  font-size: 22px;
  text-transform: capitalize;
  line-height: 1;
}

.banner__review .title span {
  display: block;
  font-weight: 500;
  font-size: 16px;
  color: var(--tg-body-color);
  margin-top: 2px;
}

.banner__courses {
  background: #27ae60;
  display: flex;
  align-items: center;
  border-radius: 20px 20px 20px 0;
  gap: 8px;
  padding: 16px 20px;
  position: absolute;
  right: 11%;
  bottom: 15%;
}

@media (max-width: 1199.98px) {
  .banner__courses {
    right: 4%;
  }
}
@media (max-width: 767.98px) {
  .banner__courses {
    display: none;
  }
}
.banner__courses .icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--tg-common-color-white);
  font-size: 24px;
}

.banner__courses .title {
  margin-bottom: 0;
  font-weight: 700;
  font-size: 26px;
  color: var(--tg-common-color-white);
  line-height: 1;
  text-align: left;
}

.banner__courses .title span {
  display: block;
  font-weight: 500;
  font-size: 18px;
}

.banner__shape-wrap img {
  position: absolute;
  z-index: -2;
}

.banner__shape-wrap img:nth-child(1) {
  left: 0;
  top: 0;
  max-width: 276px;
}

@media (max-width: 767.98px) {
  .banner__shape-wrap img:nth-child(1) {
    max-width: 200px;
  }
}
.banner__shape-wrap img:nth-child(2) {
  right: 0;
  bottom: 0;
  max-width: 330px;
}

@media (max-width: 1199.98px) {
  .banner__shape-wrap img:nth-child(2) {
    max-width: 270px;
  }
}
@media (max-width: 767.98px) {
  .banner__shape-wrap img:nth-child(2) {
    display: none;
  }
}
.banner__shape-wrap img:nth-child(3) {
  left: 70px;
  bottom: -15px;
  max-width: 157px;
}

@media (max-width: 1199.98px) {
  .banner__shape-wrap img:nth-child(3) {
    max-width: 120px;
  }
}
@media (max-width: 767.98px) {
  .banner__shape-wrap img:nth-child(3) {
    display: none;
  }
}
.banner__shape-wrap-two img {
  position: absolute;
  z-index: -1;
}

.banner__shape-wrap-two img:nth-child(1) {
  left: 0;
  bottom: 39%;
  max-width: 185px;
}

@media (max-width: 1500px) {
  .banner__shape-wrap-two img:nth-child(1) {
    bottom: auto;
    max-width: 160px;
    top: 21%;
  }
}
@media (max-width: 1199.98px) {
  .banner__shape-wrap-two img:nth-child(1) {
    display: none;
  }
}
.banner__shape-wrap-two img:nth-child(2) {
  left: 14%;
  top: 50px;
  max-width: 84px;
}

@media (max-width: 1199.98px) {
  .banner__shape-wrap-two img:nth-child(2) {
    left: 10%;
    top: 35px;
    max-width: 60px;
  }
}
@media (max-width: 767.98px) {
  .banner__shape-wrap-two img:nth-child(2) {
    left: 8%;
    top: 15px;
    max-width: 50px;
  }
}
.banner__shape-wrap-two img:nth-child(3) {
  left: 35%;
  top: 43px;
  max-width: 183px;
}

@media (max-width: 1199.98px) {
  .banner__shape-wrap-two img:nth-child(3) {
    left: 38%;
    top: 25px;
    max-width: 120px;
  }
}
@media (max-width: 991.98px) {
  .banner__shape-wrap-two img:nth-child(3) {
    left: auto;
    top: 20px;
    max-width: 100px;
    right: 10%;
  }
}
/*=============================
    05. Slider
===============================*/
.slider__bg {
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
  min-height: 795px;
  display: flex;
  align-items: center;
  padding: 100px 0 140px;
}

@media (max-width: 1500px) {
  .slider__bg {
    min-height: 700px;
  }
}
.slider__bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 22.99%, rgba(0, 0, 2, 0) 58.33%);
}

.slider__content {
  margin-right: 90px;
  margin-top: -40px;
}

@media (max-width: 1500px) {
  .slider__content {
    margin-right: 50px;
  }
}
@media (max-width: 1199.98px) {
  .slider__content {
    margin-right: 0;
  }
}
@media (max-width: 991.98px) {
  .slider__content {
    text-align: center;
  }
}
.slider__content .sub-title {
  display: block;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--tg-theme-secondary);
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}

.slider__content .title {
  margin-bottom: 0;
  font-weight: 700;
  font-size: 50px;
  color: var(--tg-common-color-white);
  margin-bottom: 10px;
}

@media (max-width: 1199.98px) {
  .slider__content .title {
    font-size: 45px;
  }
}
@media (max-width: 767.98px) {
  .slider__content .title {
    font-size: 38px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .slider__content .title {
    font-size: 42px;
  }
}
.slider__content .title span {
  position: relative;
  display: inline-block;
}

.slider__content .title span svg {
  position: absolute;
  z-index: -1;
  width: 100%;
  left: 0;
  bottom: 0;
  color: var(--tg-theme-secondary);
}

.slider__content p {
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 500;
  color: var(--tg-common-color-gray-6);
  width: 75%;
}

@media (max-width: 1199.98px) {
  .slider__content p {
    width: 100%;
  }
}
.slider__search-form {
  position: relative;
}

.slider__search-form input {
  width: 100%;
  background: var(--tg-common-color-white);
  border: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--tg-heading-color);
  padding: 18px 185px 18px 25px;
  border-radius: 100px;
  height: 60px;
}

.slider__search-form button {
  border: none;
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
  padding: 11px 32px;
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  font-weight: 600;
  border-radius: 100px;
}

.slider__search-form button:hover {
  background: var(--tg-theme-secondary);
  color: var(--tg-heading-color);
}

.slider__single.swiper-slide-active .slider__content .sub-title {
  animation-delay: 0.3s;
  animation-duration: 0.8s;
  animation-fill-mode: both;
  animation-name: fadeInUp2;
}

.slider__single.swiper-slide-active .slider__content .title {
  animation-delay: 0.6s;
  animation-duration: 0.8s;
  animation-fill-mode: both;
  animation-name: fadeInUp2;
}

.slider__single.swiper-slide-active .slider__content p {
  animation-delay: 0.9s;
  animation-duration: 0.8s;
  animation-fill-mode: both;
  animation-name: fadeInUp2;
}

.slider__single.swiper-slide-active .slider__content .slider__search {
  animation-delay: 1.2s;
  animation-duration: 0.8s;
  animation-fill-mode: both;
  animation-name: fadeInUp2;
}

/*=============================
    06. Brand
===============================*/
.brand-area {
  background: var(--tg-common-color-black);
  padding: 20px 0;
}

.brand-area .container-fluid {
  padding: 0 0;
}

.brand-area-two {
  transform: rotate(-3.5deg);
  position: relative;
  z-index: 2;
  margin-top: -60px;
}

@media (max-width: 767.98px) {
  .brand-area-two {
    transform: rotate(0);
  }
}
.brand__item {
  display: flex;
  align-items: center;
  gap: 0 35px;
  margin-left: 35px !important;
}

.brand__item a {
  display: flex;
  height: 42px;
  align-items: center;
  justify-content: center;
}

.brand__item a:hover img {
  opacity: 0.7;
}

.brand__item-two {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand__item-two img {
  cursor: pointer;
}

.marquee_mode {
  overflow: hidden;
  position: relative;
}

.marquee_mode .js-marquee {
  display: flex;
  align-items: center;
  gap: 0 35px;
}

/*=============================
    07. About
===============================*/
.about-area-five {
  position: relative;
  z-index: 1;
}

.about__bg {
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
  padding: 140px 0 230px;
}

@media (max-width: 767.98px) {
  .about__bg {
    padding: 100px 0 190px;
  }
}
.about__images {
  margin-left: 196px;
  margin-right: -25px;
  position: relative;
}

@media (max-width: 1199.98px) {
  .about__images {
    margin-left: 50px;
    margin-right: 0;
  }
}
@media (max-width: 991.98px) {
  .about__images {
    margin-left: 0;
    margin-bottom: 50px;
  }
}
.about__images .shape {
  position: absolute;
  top: 36px;
  right: 132px;
  z-index: 1;
}

@media (max-width: 1199.98px) {
  .about__images .shape {
    right: 95px;
  }
}
@media (max-width: 991.98px) {
  .about__images .shape {
    right: 135px;
  }
}
@media (max-width: 767.98px) {
  .about__images .shape {
    right: 80px;
  }
}
.about__images .popup-video {
  position: absolute;
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--tg-common-color-white);
  color: var(--tg-common-color-red);
  z-index: 1;
}

.about__images .popup-video:hover {
  color: var(--tg-common-color-white);
  background: var(--tg-common-color-red);
}

.about__images-three {
  position: relative;
}

@media (max-width: 991.98px) {
  .about__images-three {
    margin-bottom: 50px;
  }
}
.about__images-three img {
  border-radius: 400px;
}

.about__images-three .svg-icon {
  width: 55px;
  height: 55px;
  position: absolute;
  right: 5%;
  top: 2%;
}

@media (max-width: 1199.98px) {
  .about__images-three .svg-icon {
    right: 0;
    top: 0;
  }
}
.about__images-three .svg-icon svg {
  width: 100%;
  height: 100%;
  color: var(--tg-theme-primary);
}

.about__images-three .popup-video {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tg-common-color-white);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.about__images-three .popup-video svg {
  width: 16px;
  color: var(--tg-theme-primary);
  transition: all 0.3s ease-out 0s;
}

.about__images-three .popup-video:hover {
  background: var(--tg-theme-primary);
}

.about__images-three .popup-video:hover svg {
  color: var(--tg-common-color-white);
}

.about__images-four {
  position: relative;
  padding-bottom: 60px;
  margin-left: 22px;
}

@media (max-width: 1199.98px) {
  .about__images-four {
    margin-left: 0;
  }
}
@media (max-width: 991.98px) {
  .about__images-four {
    margin-bottom: 50px;
  }
}
.about__images-four::before {
  content: "";
  position: absolute;
  right: 10%;
  bottom: 0;
  height: 135px;
  width: 80%;
  background: var(--tg-theme-secondary);
  z-index: -1;
  border-radius: 0 0 0 24px;
}

.about__images-four > img {
  border-radius: 20px;
}

.about__images-four .shape img {
  position: absolute;
  z-index: -1;
}

.about__images-four .shape img:nth-child(1) {
  left: -65px;
  bottom: -10px;
  z-index: -2;
}

@media (max-width: 1199.98px) {
  .about__images-four .shape img:nth-child(1) {
    left: -35px;
  }
}
.about__images-four .shape img:nth-child(2) {
  right: 4%;
  top: 25%;
}

.about__images-four .about__enrolled {
  left: -35px;
  bottom: 25px;
  z-index: 2;
}

@media (max-width: 1500px) {
  .about__images-four .about__enrolled {
    left: -45px;
  }
}
@media (max-width: 1199.98px) {
  .about__images-four .about__enrolled {
    display: none;
  }
}
.about__images-five {
  position: relative;
  text-align: right;
  margin-right: 20px;
}

@media (max-width: 1199.98px) {
  .about__images-five {
    margin-right: 0;
  }
}
@media (max-width: 991.98px) {
  .about__images-five {
    margin-bottom: 50px;
  }
}
.about__images-five .shape img {
  position: absolute;
}

.about__images-five .shape img:nth-child(1) {
  right: -1%;
  top: -3%;
  max-width: 72px;
}

@media (max-width: 767.98px) {
  .about__images-five .shape img:nth-child(1) {
    right: -3%;
    top: -4%;
    max-width: 65px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about__images-five .shape img:nth-child(1) {
    right: 5%;
  }
}
.about__images-five .shape img:nth-child(2) {
  left: 8%;
  bottom: -3%;
  max-width: 109px;
}

@media (max-width: 1199.98px) {
  .about__images-five .shape img:nth-child(2) {
    left: 2%;
    bottom: -2%;
    max-width: 80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about__images-five .shape img:nth-child(2) {
    left: 6%;
    bottom: 3%;
  }
}
.about__images-five .shape img:nth-child(3) {
  right: 1%;
  bottom: -5%;
  animation-duration: 30s;
  max-width: 149px;
}

@media (max-width: 767.98px) {
  .about__images-five .shape img:nth-child(3) {
    bottom: -7%;
    max-width: 95px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about__images-five .shape img:nth-child(3) {
    bottom: -6%;
    right: 11%;
  }
}
.about__images-six {
  position: relative;
  margin-left: 85px;
  padding-bottom: 115px;
}

@media (max-width: 1500px) {
  .about__images-six {
    margin-left: 20px;
  }
}
@media (max-width: 1199.98px) {
  .about__images-six {
    margin-left: 0;
  }
}
@media (max-width: 991.98px) {
  .about__images-six {
    margin-bottom: 50px;
  }
}
@media (max-width: 767.98px) {
  .about__images-six {
    padding-bottom: 0;
  }
}
.about__images-six > img:nth-child(1) {
  border: 8px solid var(--tg-common-color-white);
  border-radius: 20px 80px;
}

@media (max-width: 767.98px) {
  .about__images-six > img:nth-child(1) {
    width: 100%;
  }
}
.about__images-six > img:nth-child(2) {
  border: 8px solid var(--tg-common-color-white);
  border-radius: 10px 40px 40px 40px;
  position: absolute;
  right: 40px;
  bottom: 0;
}

@media (max-width: 1199.98px) {
  .about__images-six > img:nth-child(2) {
    right: 0;
  }
}
@media (max-width: 767.98px) {
  .about__images-six > img:nth-child(2) {
    display: none;
  }
}
.about__images-six .shape img {
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: -5%;
}

.about__mask-img-one {
  -webkit-mask-image: url(/assets/img/others/h5_about_mask_img01.png);
  mask-image: url(/assets/img/others/h5_about_mask_img01.png);
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  height: 505px;
  width: 544px;
  margin-left: auto;
}

@media (max-width: 1199.98px) {
  .about__mask-img-one {
    height: 412px;
    width: 440px;
  }
}
@media (max-width: 767.98px) {
  .about__mask-img-one {
    width: 345px;
    height: 325px;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about__mask-img-one {
    width: 450px;
    height: 420px;
    margin: 0 auto;
  }
}
.about__mask-img-one img {
  max-width: unset;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__mask-img-two {
  -webkit-mask-image: url(/assets/img/others/h5_about_mask_img02.png);
  mask-image: url(/assets/img/others/h5_about_mask_img02.png);
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  height: 251px;
  width: 271px;
  position: absolute;
  left: 80px;
  bottom: 0;
}

@media (max-width: 1199.98px) {
  .about__mask-img-two {
    height: 205px;
    width: 220px;
    left: 30px;
  }
}
@media (max-width: 767.98px) {
  .about__mask-img-two {
    display: none;
  }
}
.about__mask-img-two img {
  max-width: unset;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__success {
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
  background: var(--tg-common-color-white);
  border-radius: 10px 10px 10px 30px;
  display: flex;
  align-items: center;
  padding: 12px 30px 12px 12px;
  gap: 13px;
  position: absolute;
  left: 35px;
  bottom: 3px;
}

@media (max-width: 767.98px) {
  .about__success {
    display: none;
  }
}
.about__success .icon {
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: var(--tg-theme-secondary);
  color: var(--tg-heading-color);
  border-radius: 8px 15px 20px 20px;
  font-size: 35px;
}

.about__success .content .title {
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 0;
  line-height: 1;
}

.about__success .content span {
  display: block;
  font-weight: 500;
  font-size: 16px;
  font-family: var(--tg-heading-font-family);
  line-height: 1;
  text-transform: capitalize;
  color: var(--tg-heading-color);
}

.about__enrolled {
  position: absolute;
  left: -90px;
  bottom: 35px;
  background: var(--tg-common-color-white);
  border-radius: 10px;
  border: 1px solid #B2BBCC;
  box-shadow: -8px 8px 0px 0px rgba(0, 0, 0, 0.15);
  text-align: center;
  padding: 12px 20px;
}

@media (max-width: 1199.98px) {
  .about__enrolled {
    left: -50px;
    bottom: 30px;
  }
}
@media (max-width: 991.98px) {
  .about__enrolled {
    display: none;
  }
}
.about__enrolled .title {
  font-size: 16px;
  font-weight: var(--tg-fw-medium);
  color: var(--tg-theme-primary);
  margin: 0 0 2px;
}

.about__enrolled .title span {
  font-weight: var(--tg-fw-bold);
  color: var(--tg-heading-color);
}

.about__enrolled img {
  max-width: 155px;
}

.about__content {
  margin-left: 65px;
  margin-right: 110px;
}

@media (max-width: 1199.98px) {
  .about__content {
    margin: 0 0;
  }
}
.about__content .section__title {
  margin: 0 0 12px;
}

.about__content .desc {
  margin: 0 0 22px;
}

.about__content .tg-button-wrap {
  margin-top: 40px;
}

.about__content-three {
  margin-left: 40px;
  width: 90%;
}

@media (max-width: 1199.98px) {
  .about__content-three {
    margin-left: 0;
    width: 100%;
  }
}
.about__content-three .desc {
  margin-bottom: 22px;
}

.about__content-three .about__info-list {
  margin-bottom: 30px;
}

.about__content-four {
  margin-left: 40px;
  position: relative;
}

@media (max-width: 1500px) {
  .about__content-four {
    margin-left: 15px;
  }
}
@media (max-width: 1199.98px) {
  .about__content-four {
    margin-left: 0;
  }
}
.about__content-four .info-bold {
  margin-bottom: 25px;
  font-weight: 500;
  color: var(--tg-heading-color);
  width: 90%;
}

@media (max-width: 1199.98px) {
  .about__content-four .info-bold {
    width: 100%;
  }
}
.about__content-four .shape {
  position: absolute;
  z-index: -1;
  right: 8%;
  top: 6%;
}

@media (max-width: 1199.98px) {
  .about__content-four .shape {
    right: 2%;
    top: -3%;
  }
}
@media (max-width: 767.98px) {
  .about__content-four .shape {
    display: none;
  }
}
.about__content-five {
  margin-left: 60px;
  margin-right: 105px;
  position: relative;
}

@media (max-width: 1500px) {
  .about__content-five {
    margin-left: 25px;
  }
}
@media (max-width: 1199.98px) {
  .about__content-five {
    margin-left: 0;
    margin-right: 0;
  }
}
.about__content-five p {
  margin-bottom: 22px;
}

.about__content-five .about__info-list {
  margin-bottom: 40px;
}

.about__content-five .shape img {
  position: absolute;
  right: -30%;
  top: 5%;
  z-index: -1;
}

@media (max-width: 1500px) {
  .about__content-five .shape img {
    right: -20%;
  }
}
@media (max-width: 1199.98px) {
  .about__content-five .shape img {
    right: -2%;
    top: -13%;
    max-width: 90px;
  }
}
@media (max-width: 767.98px) {
  .about__content-five .shape img {
    display: none;
  }
}
.about__content-six {
  width: 78%;
}

@media (max-width: 1199.98px) {
  .about__content-six {
    width: 100%;
  }
}
.about__content-six > p {
  margin-bottom: 20px;
}

.about__content-six .about__info-list {
  margin-bottom: 40px;
}

.about__content-inner {
  margin-bottom: 35px;
}

.about__content-inner p {
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .about__content-inner p {
    margin-bottom: 25px;
  }
}
.about__content-bottom {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.about__content-bottom .btn {
  box-shadow: none;
}

.about__contact {
  display: flex;
  align-items: center;
  gap: 10px;
}

.about__contact .icon {
  position: relative;
  width: 60px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--tg-heading-color);
}

.about__contact .icon svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  color: var(--tg-theme-secondary);
}

.about__contact .content a {
  font-weight: 600;
  font-size: 20px;
  font-family: var(--tg-heading-font-family);
  color: var(--tg-heading-color);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.about__contact .content a:hover {
  color: var(--tg-theme-primary);
}

.about__contact .content span {
  display: block;
  line-height: 1;
}

.about__info-list-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin: 0 0 15px;
}

.about__info-list-item:last-child {
  margin: 0 0;
}

.about__info-list-item i {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 30px;
  background: var(--tg-theme-secondary);
  border: 1px solid #282568;
  border-radius: 50%;
  box-shadow: 4px 3px 0px 0px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease-out 0s;
  color: var(--tg-heading-color);
}

.about__info-list-item p {
  font-family: var(--tg-heading-font-family);
  color: var(--tg-heading-color);
  font-size: 18px;
  font-weight: var(--tg-fw-semi-bold);
  margin: 0 0;
}

.about__info-list-item:hover i {
  box-shadow: none;
}

.about__video {
  background: var(--tg-theme-secondary);
  padding: 40px 31px;
  border-radius: 24px 0 0 24px;
  position: absolute;
  right: 105px;
  bottom: 0;
}

@media (max-width: 1500px) {
  .about__video {
    right: 90px;
  }
}
@media (max-width: 1199.98px) {
  .about__video {
    padding: 30px 20px;
    right: 100px;
  }
}
@media (max-width: 767.98px) {
  .about__video {
    padding: 20px 12px;
  }
}
.about__video a {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--tg-common-color-white);
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  font-family: var(--tg-heading-font-family);
  line-height: 1.2;
}

@media (max-width: 1199.98px) {
  .about__video a {
    gap: 10px;
    font-size: 16px;
  }
}
.about__video a i {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tg-common-color-black-2);
  border-radius: 50%;
  background: var(--tg-common-color-white);
  flex: 0 0 auto;
  transition: all 0.3s ease-out 0s;
}

.about__video a:hover i {
  background: var(--tg-common-color-black-2);
  color: var(--tg-common-color-white);
}

.about__year-wrap {
  display: flex;
  align-items: center;
  background: var(--tg-body-color);
  position: absolute;
  right: -105px;
  bottom: 105px;
  transform: rotate(-90deg);
  line-height: 1;
  gap: 10px;
  padding: 22px 27px;
  border-radius: 0 0 15px 24px;
}

@media (max-width: 1199.98px) {
  .about__year-wrap {
    right: -95px;
    bottom: 94px;
  }
}
.about__year-wrap .count {
  font-size: 70px;
  font-weight: 800;
  color: var(--tg-common-color-white);
  margin-bottom: 0;
  line-height: 0.8;
}

@media (max-width: 1199.98px) {
  .about__year-wrap .count {
    font-size: 60px;
  }
}
.about__year-wrap .title {
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.1em;
  text-transform: capitalize;
  color: var(--tg-common-color-white);
  margin-bottom: 0;
}

@media (max-width: 1199.98px) {
  .about__year-wrap .title {
    font-size: 22px;
  }
}
.about__shape img {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  max-width: 370px;
}

@media (max-width: 1800px) {
  .about__shape img {
    max-width: 250px;
  }
}
@media (max-width: 1500px) {
  .about__shape img {
    max-width: 210px;
    top: -4%;
    left: -4%;
  }
}
@media (max-width: 767.98px) {
  .about__shape img {
    display: none;
  }
}
.about__shape-wrap img {
  position: absolute;
  z-index: -1;
}

.about__shape-wrap img:nth-child(1) {
  left: 8%;
  top: 21%;
  max-width: 96px;
}

@media (max-width: 1800px) {
  .about__shape-wrap img:nth-child(1) {
    left: 3%;
    top: 10%;
  }
}
@media (max-width: 1500px) {
  .about__shape-wrap img:nth-child(1) {
    left: 3%;
    top: 2%;
    max-width: 65px;
  }
}
.about__shape-wrap img:nth-child(2) {
  right: 5%;
  bottom: 13%;
  max-width: 162px;
}

@media (max-width: 1500px) {
  .about__shape-wrap img:nth-child(2) {
    max-width: 120px;
  }
}
@media (max-width: 767.98px) {
  .about__shape-wrap img:nth-child(2) {
    max-width: 80px;
    bottom: 9%;
  }
}
.mfp-iframe-holder .mfp-content {
  max-width: 1200px;
}

@media (max-width: 1199.98px) {
  .section__title .title br {
    display: none;
  }
}
/*=============================
    08. Courses
===============================*/
.section-pt-120 {
  padding-top: 120px;
}

@media (max-width: 767.98px) {
  .section-pt-120 {
    padding-top: 100px;
  }
}
.section-pb-90 {
  padding-bottom: 90px;
}

@media (max-width: 767.98px) {
  .section-pb-90 {
    padding-bottom: 70px;
  }
}
.section-pb-120 {
  padding-bottom: 120px;
}

@media (max-width: 767.98px) {
  .section-pb-120 {
    padding-bottom: 100px;
  }
}
.courses-area {
  position: relative;
  background-position: center;
  background-size: cover;
  z-index: 1;
}

@media (max-width: 767.98px) {
  .courses-area {
    padding: 100px 0;
  }
}
.courses-area .section__title-wrap {
  margin: 0 0 50px;
}

@media (max-width: 767.98px) {
  .courses-area .section__title-wrap {
    margin: 0 0 40px;
  }
}
@media (max-width: 1199.98px) {
  .courses-area .section__title-wrap {
    margin: 0 0 30px;
  }
}
.courses-area-six {
  padding: 140px 0 225px;
}

@media (max-width: 767.98px) {
  .courses-area-six {
    padding: 100px 0 185px;
  }
}
.courses-area-seven {
  position: relative;
}

.courses__bg {
  background-size: cover;
  background-position: center;
  padding: 130px 0;
  position: relative;
  z-index: 1;
}

@media (max-width: 767.98px) {
  .courses__bg {
    padding: 100px 0;
  }
}
.courses__bg-two {
  overflow: hidden;
  position: relative;
  z-index: 1;
  background-size: cover;
  background-position: center;
}

.courses__bg-three {
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
  padding: 140px 0 110px;
  margin: 22px 0 22px;
}

@media (max-width: 767.98px) {
  .courses__bg-three {
    padding: 100px 0 70px;
  }
}
.courses__bg-four {
  background-size: cover;
  background-position: center;
}

.courses__bg-shape-one {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 22px;
  position: absolute;
  left: 0;
  top: -26px;
  z-index: -1;
}

.courses__bg-shape-one svg {
  color: var(--tg-common-color-gray-10);
  width: 100%;
  height: 22px;
}

.courses__bg-shape-two {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 22px;
  position: absolute;
  left: 0;
  bottom: 4px;
  z-index: -1;
}

.courses__bg-shape-two svg {
  width: 100%;
  height: 22px;
  color: var(--tg-common-color-white);
}

.courses__nav .nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 0 0 18px;
  border: none;
  gap: 5px 35px;
  position: relative;
  z-index: 1;
}

.courses__nav .nav::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #D9D9F3;
  border-radius: 30px;
  z-index: -1;
}

@media (max-width: 767.98px) {
  .courses__nav .nav {
    gap: 15px 20px;
    padding: 0 0 7px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .courses__nav .nav {
    padding: 0 0 15px;
  }
}
.courses__nav .nav .nav-item .nav-link {
  font-weight: var(--tg-fw-medium);
  color: #7F7E97;
  padding: 0 0;
  border: none;
  position: relative;
  background: transparent;
}

.courses__nav .nav .nav-item .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -18px;
  right: 0;
  width: 0;
  height: 6px;
  background: var(--tg-theme-primary);
  border-radius: 30px;
  margin: 0 auto;
  z-index: 1;
  transition: all 0.3s ease-out 0s;
}

@media (max-width: 767.98px) {
  .courses__nav .nav .nav-item .nav-link::after {
    bottom: -7px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .courses__nav .nav .nav-item .nav-link::after {
    bottom: -15px;
  }
}
.courses__nav .nav .nav-item .nav-link.active {
  color: var(--tg-heading-color);
}

.courses__nav .nav .nav-item .nav-link.active::after {
  width: 60px;
}

.courses__nav-two .nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
}

.courses__nav-two .nav-link {
  background: #efeff3;
  border: none;
  padding: 12px 20px;
  color: var(--tg-heading-color);
  font-weight: 500;
  font-size: 16px;
  text-transform: capitalize;
  border-radius: 6px;
  line-height: 1;
}

.courses__nav-two .nav-link.active {
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.15);
  background: #fff;
}

.courses__item {
  margin: 0 0 30px;
  background: var(--tg-common-color-white);
  border-radius: 10px;
  padding: 25px 25px 32px;
  border: 1px solid #B5B5C3;
  transition: all 0.2s ease-out 0s;
}

@media (max-width: 1199.98px) {
  .courses__item {
    padding: 25px 20px 32px;
  }
}
.courses__item:hover {
  filter: drop-shadow(10px 10px 0px #CAC9D6);
}

.courses__item-two {
  padding: 0;
}

.courses__item-three {
  display: flex;
  gap: 30px;
  padding: 25px 30px 25px 25px;
}

@media (max-width: 1199.98px) {
  .courses__item-three {
    gap: 20px;
    padding: 20px 20px 20px 20px;
  }
}
@media (max-width: 767.98px) {
  .courses__item-three {
    flex-direction: column;
  }
}
.courses__item-three .courses__item-thumb {
  margin: 0;
  flex: 0 0 auto;
}

.courses__item-three .courses__item-thumb a {
  height: 100%;
}

.courses__item-three .courses__item-thumb img {
  width: 280px;
  object-fit: cover;
  height: 100%;
  min-height: 210px;
}

@media (max-width: 767.98px) {
  .courses__item-three .courses__item-thumb img {
    width: 100%;
  }
}
.courses__item-three .courses__item-content {
  flex-grow: 1;
}

.courses__item-three .courses__item-content .info {
  margin-bottom: 0;
  margin-top: 8px;
}

.courses__item-three .courses__item-tag {
  gap: 15px;
}

.courses__item-three .courses__item-meta {
  margin: 0 0 8px;
}

.courses__item-three .courses__item-meta .price {
  display: flex;
  font-size: 20px;
  font-weight: 700;
  color: var(--tg-theme-primary);
  gap: 8px;
}

.courses__item-three .courses__item-meta .price del {
  font-size: 14px;
  font-weight: 500;
  color: #B2BBCC;
}

.courses__item-four {
  border: 1px solid #dfdfdf;
  border-radius: 15px;
  background: var(--tg-common-color-white);
  margin-bottom: 30px;
  padding: 25px 25px 35px;
}

.courses__item-five {
  border: 1px solid #dfdfdf;
  background: var(--tg-common-color-white);
  padding: 30px 30px 30px;
  border-radius: 15px;
  margin-bottom: 30px;
}

@media (max-width: 1500px) {
  .courses__item-five {
    padding: 25px 22px 25px;
  }
}
@media (max-width: 991.98px) {
  .courses__item-five {
    padding: 25px 25px 25px;
  }
}
.courses__item-six {
  border: 1px solid var(--tg-border-6);
  border-radius: 20px;
  background: var(--tg-common-color-white);
  margin-bottom: 30px;
  padding: 25px 30px 25px;
}

@media (max-width: 1500px) {
  .courses__item-six {
    padding: 25px 25px 25px;
  }
}
.courses__item-seven {
  margin-bottom: 30px;
  background: var(--tg-common-color-white);
  border-radius: 10px;
  overflow: hidden;
}

.courses__item-eight {
  border: 1px solid #e7e7e7;
  border-radius: 10px;
  overflow: hidden;
  background: var(--tg-common-color-white);
  margin-bottom: 30px;
}

.courses__item-nine {
  border: 1px solid #e7e7e7;
  border-radius: 10px;
  overflow: hidden;
  background: var(--tg-common-color-white);
  margin-bottom: 30px;
}

.courses__item-thumb {
  position: relative;
  margin: 0 0 20px;
}

.courses__item-thumb-two {
  padding: 25px 25px 0 25px;
}

@media (max-width: 1500px) {
  .courses__item-thumb-two {
    padding: 20px 20px 0 20px;
  }
}
.courses__item-thumb img {
  width: 100%;
  height: 190px;
  object-fit: fill;
  border-radius: 6px;
}

@media (max-width: 767.98px) {
  .courses__item-thumb img {
    height: auto;
  }
}
.courses__item-thumb-three {
  position: relative;
  margin-bottom: 20px;
}

.courses__item-thumb-three img {
  border-radius: 10px;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .courses__item-thumb-three img {
    height: 270px;
  }
}
.courses__item-thumb-four {
  margin-bottom: 24px;
}

.courses__item-thumb-four img {
  border-radius: 12px;
  width: 100%;
  height: 248px;
  object-fit: cover;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .courses__item-thumb-four img {
    height: 320px;
  }
}
.courses__item-thumb-five {
  position: relative;
  margin-bottom: 20px;
}

.courses__item-thumb-five img {
  border-radius: 10px;
  width: 100%;
  object-fit: cover;
  height: 200px;
}

@media (max-width: 767.98px) {
  .courses__item-thumb-five img {
    height: auto;
  }
}
.courses__item-thumb-five .courses__wishlist-two {
  width: 36px;
  height: 36px;
  color: var(--tg-heading-color);
}

.courses__item-thumb-six {
  position: relative;
}

.courses__item-thumb-six::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.31);
  pointer-events: none;
}

.courses__item-thumb-six img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

@media (max-width: 767.98px) {
  .courses__item-thumb-six img {
    height: auto;
  }
}
.courses__item-thumb-six .courses__wishlist-two {
  z-index: 1;
  width: 36px;
  height: 36px;
  font-size: 20px;
  color: var(--tg-heading-color);
  right: 24px;
  top: 24px;
}

.courses__item-thumb-six .courses__review {
  position: absolute;
  left: 30px;
  bottom: 25px;
  margin-bottom: 0;
  z-index: 2;
  line-height: 1;
}

.courses__item-thumb-six .courses__review span {
  color: var(--tg-common-color-white);
}

.courses__item-thumb-six .courses__review .rating {
  color: var(--tg-common-color-yellow);
}

.courses__item-thumb-seven {
  position: relative;
}

.courses__item-thumb-seven::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.31);
  opacity: 0.2;
  pointer-events: none;
}

.courses__item-thumb-seven img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

@media (max-width: 767.98px) {
  .courses__item-thumb-seven img {
    height: auto;
  }
}
.courses__item-thumb-eight {
  position: relative;
}

.courses__item-thumb-eight::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.31);
  opacity: 0.2;
  pointer-events: none;
}

.courses__item-thumb-eight img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

@media (max-width: 767.98px) {
  .courses__item-thumb-eight img {
    height: auto;
  }
}
.courses__item-thumb-eight .courses__wishlist {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 25px;
  top: 25px;
  border-radius: 50%;
  background: var(--tg-common-color-white);
  z-index: 1;
}

.courses__item-thumb-eight .courses__wishlist svg {
  width: 20px;
  height: auto;
}

.courses__item-thumb-eight .courses__wishlist:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
}

.courses__item-thumb-eight .courses__item-tag-three {
  background: var(--tg-theme-secondary);
}

.courses__item-content .title {
  font-size: 18px;
  font-weight: var(--tg-fw-semi-bold);
  line-height: 1.4;
  margin: 0 0 15px;
}

.courses__item-content .title a {
  display: inline;
  background-image: linear-gradient(var(--tg-heading-color), var(--tg-heading-color)), linear-gradient(var(--tg-heading-color), var(--tg-heading-color));
  background-size: 0% 2px, 0 2px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}

.courses__item-content .title a:hover {
  color: inherit;
  background-size: 0 2px, 100% 2px;
}

.courses__item-content-two {
  padding: 0 25px 20px;
}

@media (max-width: 1500px) {
  .courses__item-content-two {
    padding: 0 20px 20px;
  }
}
.courses__item-content-two .price {
  display: flex;
  gap: 8px;
  font-size: 18px;
  font-weight: 600;
  color: var(--tg-theme-primary);
}

.courses__item-content-two .price del {
  font-size: 14px;
  font-weight: 400;
  color: var(--tg-common-color-gray-3);
}

.courses__item-content-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.courses__item-content-bottom > .author-two a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--tg-body-color);
}

.courses__item-content-bottom > .author-two a img {
  border-radius: 50%;
  width: 32px;
  height: 32px;
}

.courses__item-content-bottom > .author-two a:hover {
  color: var(--tg-theme-secondary);
}

.courses__item-content-bottom-two .list-wrap {
  display: flex;
  align-items: center;
  gap: 20px 48px;
}

@media (max-width: 1500px) {
  .courses__item-content-bottom-two .list-wrap {
    gap: 20px 30px;
  }
}
.courses__item-content-bottom-two .list-wrap li {
  display: flex;
  align-items: center;
  gap: 9px;
  position: relative;
}

.courses__item-content-bottom-two .list-wrap li::before {
  content: "";
  position: absolute;
  right: -26px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 30px;
  background: #CCCCCC;
  border-radius: 3px;
}

@media (max-width: 1500px) {
  .courses__item-content-bottom-two .list-wrap li::before {
    right: -16px;
  }
}
.courses__item-content-bottom-two .list-wrap li:last-child::before {
  display: none;
}

.courses__item-content-bottom-two .list-wrap li .icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: #f3f3f4;
  border-radius: 6px;
  font-size: 20px;
  font-weight: 700;
  color: var(--tg-body-color);
}

.courses__item-content-bottom-two .list-wrap li p {
  font-size: 14px;
  line-height: 1.28;
  margin-bottom: 0;
}

.courses__item-content-bottom-two .list-wrap li p span {
  display: block;
  font-weight: 500;
  color: var(--tg-heading-color);
}

.courses__item-content-three .title {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
}

.courses__item-content-three .title a {
  display: inline;
  background-image: linear-gradient(var(--tg-heading-color), var(--tg-heading-color)), linear-gradient(var(--tg-heading-color), var(--tg-heading-color));
  background-size: 0% 2px, 0 2px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}

.courses__item-content-three .title a:hover {
  color: inherit;
  background-size: 0 2px, 100% 2px;
}

.courses__item-content-four .avg-rating {
  color: #7F7E97;
  font-size: 14px;
  line-height: 1;
}

.courses__item-content-four .avg-rating i {
  color: var(--tg-common-color-yellow);
  letter-spacing: 0;
  margin-right: 5px;
}

.courses__item-content-four .title {
  margin-bottom: 18px;
  font-weight: 600;
  font-size: 20px;
  text-transform: capitalize;
}

.courses__item-content-four .title a {
  display: inline;
  background-image: linear-gradient(var(--tg-heading-color), var(--tg-heading-color)), linear-gradient(var(--tg-heading-color), var(--tg-heading-color));
  background-size: 0% 2px, 0 2px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}

.courses__item-content-four .title a:hover {
  color: inherit;
  background-size: 0 2px, 100% 2px;
}

.courses__item-content-five .courses__item-meta .price {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  font-family: var(--tg-heading-font-family);
  color: var(--tg-theme-primary);
}

.courses__item-content-five .title {
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: 600;
}

.courses__item-content-five .title a {
  display: inline;
  background-image: linear-gradient(var(--tg-heading-color), var(--tg-heading-color)), linear-gradient(var(--tg-heading-color), var(--tg-heading-color));
  background-size: 0% 2px, 0 2px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}

.courses__item-content-five .title a:hover {
  color: inherit;
  background-size: 0 2px, 100% 2px;
}

.courses__item-content-five > p {
  margin-bottom: 22px;
}

.courses__item-content-six {
  padding: 25px 22px 20px;
}

.courses__item-content-six-top {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 5px;
}

.courses__item-content-six-top .title {
  margin-bottom: 0;
  font-size: 22px;
  text-transform: capitalize;
}

.courses__item-content-six-top .title a:hover {
  color: var(--tg-theme-primary);
}

.courses__item-content-six-top .price {
  margin-bottom: 0;
  color: var(--tg-theme-primary);
  font-size: 22px;
  font-weight: 700;
}

.courses__item-content-six > span {
  font-size: 15px;
  text-transform: capitalize;
  font-weight: 400;
  display: block;
  color: var(--tg-body-color);
  line-height: 1.4;
  margin-bottom: 15px;
}

.courses__item-content-six > p {
  margin-bottom: 0;
  line-height: 1.5;
}

.courses__item-content-seven {
  padding: 20px 30px 25px;
}

@media (max-width: 1500px) {
  .courses__item-content-seven {
    padding: 20px 20px 25px;
  }
}
.courses__item-content-seven .price {
  font-size: 22px;
  font-weight: 700;
  font-family: var(--tg-heading-font-family);
  color: var(--tg-theme-primary);
  line-height: 1;
}

.courses__item-content-seven .courses__wishlist a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #EBEBF0;
  border-radius: 50%;
  color: var(--tg-body-color);
}

.courses__item-content-seven .courses__wishlist a svg {
  width: 18px;
  height: auto;
}

.courses__item-content-seven .courses__wishlist a:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
}

.courses__item-content-seven .title {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
}

.courses__item-content-seven .title a {
  display: inline;
  background-image: linear-gradient(var(--tg-heading-color), var(--tg-heading-color)), linear-gradient(var(--tg-heading-color), var(--tg-heading-color));
  background-size: 0% 2px, 0 2px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}

.courses__item-content-seven .title a:hover {
  color: inherit;
  background-size: 0 2px, 100% 2px;
}

.courses__item-content-seven .courses__review {
  margin-bottom: 0;
}

.courses__item-content-eight {
  padding: 25px 30px 25px;
}

@media (max-width: 1500px) {
  .courses__item-content-eight {
    padding: 25px 20px 25px;
  }
}
.courses__item-content-eight .title {
  margin-bottom: 20px;
  font-size: 20px;
  text-transform: capitalize;
}

.courses__item-content-eight .title a {
  display: inline;
  background-image: linear-gradient(var(--tg-heading-color), var(--tg-heading-color)), linear-gradient(var(--tg-heading-color), var(--tg-heading-color));
  background-size: 0% 2px, 0 2px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}

.courses__item-content-eight .title a:hover {
  color: inherit;
  background-size: 0 2px, 100% 2px;
}

.courses__item-content-eight .price {
  margin-bottom: 0;
  font-weight: 700;
  font-size: 22px;
  color: var(--tg-theme-primary);
  line-height: 1;
}

.courses__item-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px 20px;
  margin: 0 0 15px;
  flex-wrap: wrap;
}

.courses__item-meta li {
  display: flex;
  align-items: center;
}

.courses__item-meta li i {
  margin-right: 7px;
}

.courses__item-meta-two {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-bottom: 14px;
}

.courses__item-meta-two li {
  color: var(--tg-heading-color);
  font-weight: 500;
  font-size: 14px;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  line-height: 1;
  gap: 8px;
}

.courses__item-meta-two li svg {
  transform: translateY(-3px);
}

.courses__item-meta-two li svg path {
  color: var(--tg-theme-secondary);
}

.courses__item-meta-two li svg path:nth-child(5) {
  color: #B9B8C0;
}

.courses__item-meta-two li:nth-child(2) svg path:nth-child(4), .courses__item-meta-two li:nth-child(2) svg path:nth-child(5) {
  color: #B9B8C0;
}

.courses__item-tag a, .courses__item-tag span {
  font-size: 13px;
  font-weight: var(--tg-fw-medium);
  color: var(--tg-heading-color);
  background: #EFEFF2;
  display: block;
  line-height: 1;
  border-radius: 50px;
  padding: 7px 13px;
}

.courses__item-tag a:hover, .courses__item-tag span:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
}

.courses__item-tag-two a {
  background: #f1f0ff;
  color: var(--tg-theme-primary);
}

.courses__item-tag-three {
  font-weight: 500;
  font-size: 14px;
  position: absolute;
  left: 30px;
  top: 27px;
  padding: 8px 12px;
  color: var(--tg-heading-color);
  background: var(--tg-common-color-white);
  z-index: 1;
  border-radius: 4px;
  line-height: 1;
}

.courses__item-tag-three:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
}

.courses__item .avg-rating {
  color: #7F7E97;
  font-size: 14px;
  line-height: 1;
}

.courses__item .avg-rating i {
  color: var(--tg-common-color-yellow);
  letter-spacing: 0;
  margin-right: 5px;
}

.courses__item .avg-rating-two .rating {
  display: flex;
  align-items: center;
}

.courses__item .author {
  display: flex;
  align-items: center;
  font-size: 15px;
  margin: 0 0;
  line-height: 1;
  gap: 5px;
}

.courses__item .author a {
  flex: 0 0 auto;
  color: var(--tg-heading-color);
}

.courses__item .author a:hover {
  color: var(--tg-theme-primary);
}

.courses__item-bottom {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 23px 0 0;
}

.courses__item-bottom .button a {
  display: flex;
  padding: 10px 19px;
  align-items: center;
  gap: 6px;
  border-radius: 50px;
  border: 1px solid #000;
  background: var(--tg-theme-secondary);
  box-shadow: 4px 4px 0px 0px #3D3D3D;
  font-family: var(--tg-heading-font-family);
  font-size: 14px;
  line-height: 18px;
  font-weight: var(--tg-fw-semi-bold);
  color: var(--tg-heading-color);
}

.courses__item-bottom .button a:hover {
  box-shadow: none;
}

.courses__item-bottom .price {
  font-size: 20px;
  line-height: 1;
  color: var(--tg-theme-primary);
  font-weight: var(--tg-fw-bold);
  margin: 0 0;
}

@media (max-width: 991.98px) {
  .courses__item-bottom .price {
    font-size: 18px;
  }
}
.courses__item-bottom .price del {
  font-size: 16px;
  color: #8D9DB5;
  margin-right: 4px;
}

.courses__item-bottom-two {
  border-top: 1px solid #B5B5C3;
  padding: 13px 25px;
}

@media (max-width: 1500px) {
  .courses__item-bottom-two {
    padding: 13px 20px;
  }
}
.courses__item-bottom-two .list-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 30px;
}

@media (max-width: 1199.98px) {
  .courses__item-bottom-two .list-wrap {
    gap: 10px 20px;
  }
}
.courses__item-bottom-two .list-wrap li {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 16px;
  color: var(--tg-common-color-dark);
  gap: 7px;
}

.courses__item-bottom-two .list-wrap li i {
  color: var(--tg-common-color-gray-3);
  font-size: 20px;
  line-height: 0;
}

.courses__item-bottom-two .list-wrap li::before {
  content: "";
  position: absolute;
  right: -17px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #8C9AB4;
}

@media (max-width: 1199.98px) {
  .courses__item-bottom-two .list-wrap li::before {
    right: -12px;
  }
}
.courses__item-bottom-two .list-wrap li:last-child::before {
  display: none;
}

.courses__item-bottom-three .list-wrap {
  display: flex;
  align-items: center;
  gap: 10px 20px;
  flex-wrap: wrap;
}

.courses__item-bottom-three .list-wrap li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  line-height: 1;
}

.courses__item-bottom-three .list-wrap li i {
  font-size: 20px;
  line-height: 0;
}

.courses__item-bottom-four {
  border-top: 1px solid #e7e7e7;
  padding: 18px 22px 19px;
}

.courses__item-bottom-four .list-wrap li {
  color: var(--tg-heading-color);
  font-size: 15px;
}

.courses__item-bottom-four .list-wrap li i {
  color: var(--tg-body-color);
}

.courses__item-bottom-five {
  border-top: 1px solid #e7e7e7;
  padding: 17px 30px;
}

@media (max-width: 1500px) {
  .courses__item-bottom-five {
    padding: 17px 20px;
  }
}
.courses__item-bottom-six {
  border-top: 1px solid #e7e7e7;
  padding: 17px 30px;
}

@media (max-width: 1500px) {
  .courses__item-bottom-six {
    padding: 17px 20px;
  }
}
.courses__item-bottom-six .list-wrap {
  justify-content: space-between;
}

.courses__price {
  background: var(--tg-theme-secondary);
  position: absolute;
  right: 0;
  top: 20px;
  color: var(--tg-heading-color);
  font-size: 16px;
  font-weight: 700;
  display: block;
  line-height: 1;
  border-radius: 6px 0 0 6px;
  padding: 9px 9px;
}

.courses__price-two {
  font-size: 15px;
  font-weight: 700;
  color: var(--tg-heading-color);
  background: var(--tg-theme-secondary);
  display: block;
  position: absolute;
  left: 20px;
  top: 20px;
  border-radius: 6px;
  line-height: 1;
  padding: 8px 10px;
}

.courses__wishlist a {
  font-size: 20px;
  line-height: 0;
  color: #BABACA;
}

.courses__wishlist a i {
  margin: 0;
}

.courses__wishlist a:hover {
  color: var(--tg-theme-primary);
}

.courses__wishlist-two {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tg-common-color-white);
  line-height: 1;
  position: absolute;
  right: 20px;
  top: 20px;
  border-radius: 50%;
  color: var(--tg-body-color);
}

.courses__wishlist-two svg {
  width: 18px;
  height: auto;
}

.courses__wishlist-two:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
}

.courses__review {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.courses__review .rating {
  display: flex;
  font-size: 14px;
  gap: 4px;
  color: var(--tg-theme-secondary);
}

.courses__review .rating i {
  margin: 0;
}

.courses__review span {
  font-size: 14px;
  color: var(--tg-common-color-gray-3);
}

.courses__review-two {
  margin-bottom: 0;
  line-height: 1;
}

@media (max-width: 767.98px) {
  .courses__nav {
    display: flex;
    justify-content: center;
    gap: 15px;
  }
}
.courses__nav .courses-button-prev {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
  border-radius: 50%;
  transition: all 0.3s ease-out 0s;
  line-height: 0;
  font-size: 24px;
  border: 1.2px solid var(--tg-common-color-black-3);
  box-shadow: -3.6px 2.4px 0px 0px #23232B;
  position: absolute;
  left: -90px;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
}

@media (max-width: 1500px) {
  .courses__nav .courses-button-prev {
    left: -15px;
  }
}
@media (max-width: 767.98px) {
  .courses__nav .courses-button-prev {
    position: relative;
    transform: translateY(0);
    left: 0;
  }
}
.courses__nav .courses-button-prev i {
  transform: rotate(-180deg);
}

.courses__nav .courses-button-prev:hover {
  box-shadow: none;
}

.courses__nav .courses-button-next {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
  border-radius: 50%;
  transition: all 0.3s ease-out 0s;
  line-height: 0;
  font-size: 24px;
  border: 1.2px solid var(--tg-common-color-black-3);
  box-shadow: 3.6px 2.4px 0px 0px #23232B;
  position: absolute;
  right: -90px;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
}

@media (max-width: 1500px) {
  .courses__nav .courses-button-next {
    right: -15px;
  }
}
@media (max-width: 767.98px) {
  .courses__nav .courses-button-next {
    position: relative;
    transform: translateY(0);
    right: 0;
  }
}
.courses__nav .courses-button-next:hover {
  box-shadow: none;
}

.courses-top-wrap {
  margin-bottom: 30px;
}

.courses-top-left p {
  margin-bottom: 0;
  font-size: 16px;
  font-family: var(--tg-heading-font-family);
  color: var(--tg-common-color-dark);
  text-transform: capitalize;
}

@media (max-width: 767.98px) {
  .courses-top-left p {
    margin-bottom: 15px;
    text-align: center;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .courses-top-left p {
    text-align: center;
    margin-bottom: 15px;
  }
}
.courses-top-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.courses-top-right .sort-by {
  font-size: 16px;
  font-family: var(--tg-heading-font-family);
  display: block;
  color: var(--tg-common-color-gray-3);
}

.courses-top-right-select {
  width: 145px;
  position: relative;
}

.courses-top-right-select select {
  background-color: transparent;
  border: 1px solid #DCDBE5;
  color: var(--tg-common-color-dark);
  font-weight: 500;
  font-size: 15px;
  text-transform: capitalize;
  border-radius: 4px;
  outline: none;
  padding: 10px 32px 10px 15px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  line-height: 1.2;
  height: 40px;
}

.courses-top-right-select::after {
  content: "\f078";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  right: 12px;
  font-size: 12px;
  color: var(--tg-theme-primary);
}

.courses__sidebar {
  margin-right: 20px;
}

@media (max-width: 1199.98px) {
  .courses__sidebar {
    margin: 0 0 0 0;
  }
}
@media (max-width: 991.98px) {
  .courses__sidebar {
    margin: 80px 0 0;
  }
}
.courses-widget {
  background: var(--tg-common-color-gray);
  padding: 30px 30px;
  margin-bottom: 30px;
  border-radius: 10px;
}

.courses-widget:last-child {
  margin-bottom: 0;
}

.courses-widget ul li {
  margin-bottom: 15px;
}

.courses-widget ul li:last-child {
  margin-bottom: 0;
}

.courses-widget .form-check {
  display: flex;
  align-items: center;
  line-height: 1;
  margin-bottom: 0;
  padding: 0;
  min-height: inherit;
}

.courses-widget .form-check-input {
  border-radius: 4px;
  border: 1px solid #9D9CAE;
  margin: 0 10px 0 0;
  width: 16px;
  height: 16px;
}

.courses-widget .form-check-input:checked {
  background-color: var(--tg-theme-primary);
}

.courses-widget .form-check-input:focus {
  box-shadow: none;
  border-color: var(--tg-theme-primary);
}

.courses-widget .form-check-label {
  flex-grow: 1;
  font-size: 16px;
  font-weight: 400;
  color: var(--tg-body-color);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.courses-widget .form-check .rating {
  display: flex;
  align-items: center;
}

.courses-widget .form-check .rating ul {
  display: flex;
  align-items: center;
  line-height: 1;
  color: #F8BC24;
  gap: 4px;
}

.courses-widget .form-check .rating ul li {
  margin-bottom: 0;
}

.courses-widget .form-check .rating ul li.delete {
  color: #D7D7D7;
}

.courses-widget .form-check .rating span {
  color: #5A7093;
  margin-left: 5px;
}

.courses-widget .show-more {
  font-family: var(--tg-heading-font-family);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-top: 20px;
}

.courses-slider-active .slick-arrow {
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%) translateX(-30px);
  width: 50px;
  height: 50px;
  background: var(--tg-common-color-gray);
  border: 1px solid #FFFFFF;
  box-shadow: 0px 10px 20px #DFDFDF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  padding: 0 0;
  z-index: 2;
}

.courses-slider-active .slick-arrow:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
}

.courses-slider-active .slick-arrow.slick-next {
  left: auto !important;
  right: -10px;
  transform: translateY(-50%) translateX(30px);
}

.courses-slider-active:hover .slick-arrow {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
  visibility: visible;
}

.courses-slider-active .col {
  padding-left: 15px;
  padding-right: 15px;
}

.courses-slider-active .courses__item-two {
  border: 1px solid #E8E8E8;
  border-radius: 6px;
  box-shadow: none;
  padding: 15px;
}

.courses-slider-active .courses__item-two-thumb .author {
  position: absolute;
  right: 15px;
  bottom: -25px;
  z-index: 2;
}

.courses-slider-active .courses__item-two-thumb .author img {
  max-width: 50px;
  max-height: 50px;
  width: auto;
  height: auto;
  border: 3px solid #FFFFFF;
  border-radius: 50px;
}

.courses-slider-active .courses__item-two-content {
  padding: 16px 7px 5px 7px;
}

.courses-slider-active .courses__item-bottom .price {
  font-size: 20px;
  margin: 0 20px 0 0;
}

.courses-slider-active .courses__item-bottom .price del {
  font-size: 15px;
  margin-right: 6px;
}

.courses__nav-tabs {
  gap: 10px;
  border: none;
  margin-left: 10px;
}

.courses__nav-tabs .nav-item {
  margin: 0 0;
}

.courses__nav-tabs .nav-item .nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #6196EA;
  border-radius: 4px;
  color: var(--tg-theme-primary);
}

.courses__nav-tabs .nav-item .nav-link svg {
  flex: 0 0 auto;
}

.courses__nav-tabs .nav-item .nav-link.active {
  border-color: var(--tg-theme-primary);
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
}

.courses__list-wrap .courses__item-two {
  border: 1px solid #E8E8E8;
  border-radius: 6px;
  box-shadow: none;
  padding: 15px;
  display: flex;
  gap: 25px;
}

@media (max-width: 767.98px) {
  .courses__list-wrap .courses__item-two {
    gap: 20px;
    flex-direction: column;
  }
}
.courses__list-wrap .courses__item-two-thumb {
  flex: 0 0 auto;
}

.courses__list-wrap .courses__item-two-thumb a {
  height: 100%;
}

.courses__list-wrap .courses__item-two-thumb img {
  width: 270px;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1199.98px) {
  .courses__list-wrap .courses__item-two-thumb img {
    width: 235px;
  }
}
@media (max-width: 991.98px) {
  .courses__list-wrap .courses__item-two-thumb img {
    width: 270px;
  }
}
@media (max-width: 767.98px) {
  .courses__list-wrap .courses__item-two-thumb img {
    width: 100%;
  }
}
.courses__list-wrap .courses__item-two-content {
  padding: 0 15px 0 0;
}

@media (max-width: 767.98px) {
  .courses__list-wrap .courses__item-two-content {
    padding: 0 7px 5px 7px;
  }
}
.courses__list-wrap .courses__item-two-content .title {
  font-size: 20px;
  margin: 0 0 10px;
}

.courses__list-wrap .courses__item-two-content p {
  line-height: 1.65;
}

.courses__list-wrap .courses__item-two-content .courses__item-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.courses__list-wrap .courses__item-two-content .courses__item-rating i {
  font-size: 15px;
  margin: 0 0;
}

.courses__list-wrap .courses__item-two-content .courses__item-rating .rating-count {
  margin: 0 0;
}

.courses__list-wrap .courses__item-two-content .courses__item-tag {
  margin: 0 0 8px;
  font-size: 14px;
}

.courses__list-wrap .courses__item-two-content .courses__item-meta {
  margin: 0 0 14px;
}

.courses__list-wrap .courses__item-bottom {
  padding: 12px 0 0;
  margin: 0 0 0;
}

.courses__list-wrap .courses__item-bottom .author img {
  max-width: 35px;
}

.courses__shape-wrap img {
  position: absolute;
  z-index: -1;
}

@media (max-width: 767.98px) {
  .courses__shape-wrap img {
    display: none;
  }
}
.courses__shape-wrap img:nth-child(1) {
  left: 10%;
  top: 23%;
}

@media (max-width: 1800px) {
  .courses__shape-wrap img:nth-child(1) {
    left: 4%;
  }
}
@media (max-width: 1199.98px) {
  .courses__shape-wrap img:nth-child(1) {
    top: 13%;
  }
}
@media (max-width: 991.98px) {
  .courses__shape-wrap img:nth-child(1) {
    top: 8%;
  }
}
.courses__shape-wrap img:nth-child(2) {
  left: 8%;
  bottom: 14%;
}

@media (max-width: 1800px) {
  .courses__shape-wrap img:nth-child(2) {
    left: 3%;
  }
}
@media (max-width: 991.98px) {
  .courses__shape-wrap img:nth-child(2) {
    bottom: 8%;
  }
}
.courses__shape-wrap img:nth-child(3) {
  right: 11%;
  top: 28%;
}

@media (max-width: 1800px) {
  .courses__shape-wrap img:nth-child(3) {
    right: 2%;
    top: 20%;
  }
}
.courses__shape-wrap img:nth-child(4) {
  right: 5%;
  top: 18%;
}

@media (max-width: 1800px) {
  .courses__shape-wrap img:nth-child(4) {
    right: 4%;
  }
}
@media (max-width: 1500px) {
  .courses__shape-wrap img:nth-child(4) {
    right: 1%;
    top: 25%;
    width: 250px;
  }
}
@media (max-width: 1199.98px) {
  .courses__shape-wrap img:nth-child(4) {
    top: 15%;
  }
}
@media (max-width: 991.98px) {
  .courses__shape-wrap img:nth-child(4) {
    display: none;
  }
}
.courses__shape-wrap-two img {
  position: absolute;
  z-index: -1;
}

.courses__shape-wrap-two img:nth-child(1) {
  right: -126px;
  top: -126px;
  max-width: 333px;
  animation-duration: 50s;
}

@media (max-width: 1500px) {
  .courses__shape-wrap-two img:nth-child(1) {
    max-width: 300px;
  }
}
@media (max-width: 767.98px) {
  .courses__shape-wrap-two img:nth-child(1) {
    max-width: 250px;
  }
}
.courses__shape-wrap-two img:nth-child(2) {
  bottom: -126px;
  left: -126px;
  max-width: 333px;
  animation-duration: 50s;
}

@media (max-width: 1500px) {
  .courses__shape-wrap-two img:nth-child(2) {
    max-width: 300px;
  }
}
@media (max-width: 767.98px) {
  .courses__shape-wrap-two img:nth-child(2) {
    max-width: 250px;
  }
}
.courses__shape-wrap-three img {
  position: absolute;
  z-index: -1;
}

.courses__shape-wrap-three img:nth-child(1) {
  left: 0;
  top: 18%;
  max-width: 234px;
}

@media (max-width: 1199.98px) {
  .courses__shape-wrap-three img:nth-child(1) {
    top: 6%;
  }
}
@media (max-width: 991.98px) {
  .courses__shape-wrap-three img:nth-child(1) {
    top: 3%;
  }
}
@media (max-width: 767.98px) {
  .courses__shape-wrap-three img:nth-child(1) {
    top: 1%;
    max-width: 140px;
  }
}
.courses__shape-wrap-three img:nth-child(2) {
  left: 4%;
  bottom: 12%;
  max-width: 99px;
}

@media (max-width: 1800px) {
  .courses__shape-wrap-three img:nth-child(2) {
    left: 1%;
    bottom: 6%;
  }
}
@media (max-width: 991.98px) {
  .courses__shape-wrap-three img:nth-child(2) {
    left: 2%;
    bottom: 4%;
  }
}
@media (max-width: 991.98px) {
  .courses__shape-wrap-three img:nth-child(2) {
    bottom: 1%;
    max-width: 70px;
  }
}
.courses__shape-wrap-three img:nth-child(3) {
  right: 8%;
  top: 17%;
  max-width: 52px;
}

@media (max-width: 991.98px) {
  .courses__shape-wrap-three img:nth-child(3) {
    top: 7%;
  }
}
@media (max-width: 767.98px) {
  .courses__shape-wrap-three img:nth-child(3) {
    top: 2%;
    right: 5%;
  }
}
.courses__shape-wrap-three img:nth-child(4) {
  right: 4%;
  bottom: 13%;
  max-width: 94px;
}

@media (max-width: 1800px) {
  .courses__shape-wrap-three img:nth-child(4) {
    right: 2%;
    bottom: 7%;
    max-width: 80px;
  }
}
@media (max-width: 991.98px) {
  .courses__shape-wrap-three img:nth-child(4) {
    right: 2%;
    bottom: 5%;
  }
}
@media (max-width: 767.98px) {
  .courses__shape-wrap-three img:nth-child(4) {
    display: none;
  }
}
.courses__shape-wrap-four img {
  position: absolute;
  z-index: -1;
}

.courses__shape-wrap-four img:nth-child(1) {
  left: 5%;
  top: 7%;
  max-width: 123px;
}

@media (max-width: 991.98px) {
  .courses__shape-wrap-four img:nth-child(1) {
    left: 3%;
    top: 4%;
    max-width: 105px;
  }
}
@media (max-width: 767.98px) {
  .courses__shape-wrap-four img:nth-child(1) {
    display: none;
  }
}
.courses__shape-wrap-four img:nth-child(2) {
  right: -82px;
  bottom: 14%;
  max-width: 170px;
  animation-duration: 30s;
}

@media (max-width: 1500px) {
  .courses__shape-wrap-four img:nth-child(2) {
    right: -62px;
    bottom: 6%;
    max-width: 140px;
  }
}
@media (max-width: 767.98px) {
  .courses__shape-wrap-four img:nth-child(2) {
    display: none;
  }
}
.courses__details-thumb {
  margin-bottom: 30px;
  padding-right: 160px;
}

.courses__details-thumb img {
  width: 100%;
  border-radius: 15px;
  max-height: 450px;
  object-fit: fill;
}

.courses__details-content .courses__item-meta {
  justify-content: flex-start;
  gap: 15px;
}

.courses__details-content .courses__item-meta .avg-rating {
  color: #7F7E97;
  font-size: 14px;
  line-height: 1;
}

.courses__details-content .courses__item-meta .avg-rating i {
  color: var(--tg-common-color-yellow);
}

.courses__details-content .title {
  margin-bottom: 15px;
  font-size: 30px;
}

@media (max-width: 767.98px) {
  .courses__details-content .title {
    font-size: 26px;
  }
}
.courses__details-content .nav-tabs {
  border: none;
  gap: 12px;
  margin-bottom: 40px;
}

.courses__details-content .nav-tabs .nav-link {
  background: #E6E9EF;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--tg-heading-font-family);
  border: none;
  color: var(--tg-body-color);
  border-radius: 30px;
  padding: 14px 30px;
  line-height: 1;
  display: block;
  transition: all 0.3s ease-out 0s;
}

.courses__details-content .nav-tabs .nav-link:hover, .courses__details-content .nav-tabs .nav-link.active {
  color: var(--tg-common-color-white);
  background: var(--tg-theme-primary);
  -ms-box-shadow: 4px 6px 0px 0px #050071;
  -o-box-shadow: 4px 6px 0px 0px #050071;
  box-shadow: 4px 6px 0px 0px #050071;
}

.courses__details-meta .list-wrap {
  display: flex;
  align-items: center;
  gap: 10px 30px;
  flex-wrap: wrap;
  margin-bottom: 45px;
}

.courses__details-meta .list-wrap li {
  color: #7F7E97;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.courses__details-meta .list-wrap li::before {
  content: "";
  position: absolute;
  right: -17px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background: #8C9AB4;
}

.courses__details-meta .list-wrap li:last-child::before {
  display: none;
}

.courses__details-meta .list-wrap li i {
  font-size: 20px;
}

.courses__details-meta .list-wrap .author-two {
  display: flex;
  align-items: center;
  gap: 5px;
}

.courses__details-meta .list-wrap .author-two img {
  border-radius: 50%;
  margin-right: 5px;
}

.courses__details-meta .list-wrap .author-two a {
  color: var(--tg-heading-color);
}

.courses__details-sidebar {
  background: var(--tg-common-color-white);
  border: 1px solid #DFDFDF;
  -ms-box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.08);
  -o-box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.08);
  margin-left: 20px;
  padding: 30px 30px 40px;
  border-radius: 10px;
}

@media (max-width: 1500px) {
  .courses__details-sidebar {
    margin-left: 0;
    padding: 30px 20px 40px;
  }
}
@media (max-width: 991.98px) {
  .courses__details-sidebar {
    padding: 30px 30px 40px;
    margin: 80px 0 0;
  }
}
.courses__details-video {
  position: relative;
  margin-bottom: 20px;
}

.courses__details-video img {
  width: 100%;
  min-height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.courses__details-video .popup-video {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--tg-common-color-white);
  z-index: 3;
}

.courses__details-video .popup-video:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
}

.courses__details-social {
  border-bottom: 1px solid #DFDFDF;
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.courses__details-social .title {
  margin-bottom: 12px;
  font-weight: 500;
  font-size: 16px;
}

.courses__details-social .list-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.courses__details-social .list-wrap li a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E6E9EF;
  border-radius: 50%;
  color: var(--tg-body-color);
}

.courses__details-social .list-wrap li a:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
}

.courses__details-enroll .tg-button-wrap {
  justify-content: center;
}

.courses__overview-wrap {
  border-radius: 10px;
  border: 1px solid #DFDFDF;
  background: var(--tg-common-color-white);
  -ms-box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.08);
  -o-box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.08);
  padding: 35px 40px 35px;
}

@media (max-width: 1199.98px) {
  .courses__overview-wrap {
    padding: 30px 30px 30px;
  }
}
.courses__overview-wrap .title {
  margin-bottom: 12px;
  font-size: 24px;
}

.courses__overview-wrap > p {
  margin-bottom: 20px;
}

.courses__overview-wrap > p.last-info {
  margin-bottom: 0;
}

.courses__overview-wrap .about__info-list {
  margin-bottom: 15px;
}

.courses__curriculum-wrap {
  border-radius: 10px;
  border: 1px solid #DFDFDF;
  background: var(--tg-common-color-white);
  -ms-box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.08);
  -o-box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.08);
  padding: 35px 40px 35px;
}

@media (max-width: 1199.98px) {
  .courses__curriculum-wrap {
    padding: 30px 30px 30px;
  }
}
.courses__curriculum-wrap .title {
  margin-bottom: 12px;
  font-size: 24px;
}

.courses__curriculum-wrap > p {
  margin-bottom: 20px;
}

.courses__curriculum-wrap .accordion-item {
  margin: 0;
  border: none;
  border-radius: 0;
  overflow: hidden;
}

.courses__curriculum-wrap .accordion-item:last-child {
  margin: 0 0;
}

.courses__curriculum-wrap .accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.courses__curriculum-wrap .accordion-button {
  border: none;
  box-shadow: none;
  font-size: 20px;
  color: var(--tg-heading-color);
  padding: 16px 0 16px 0;
  font-weight: 500;
  border-bottom: 1px solid #DCDCEB;
}

.courses__curriculum-wrap .accordion-button::after {
  content: "\f067";
  font-family: var(--tg-icon-font-family);
  font-weight: 700;
  background-image: none;
  width: auto;
  height: auto;
}

.courses__curriculum-wrap .accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--tg-theme-primary);
}

.courses__curriculum-wrap .accordion-button:not(.collapsed)::after {
  content: "\f068";
}

.courses__curriculum-wrap .accordion-body {
  padding: 0 0;
}

.courses__curriculum-wrap .course-item {
  padding: 13px 15px;
  background: #F8F8FF;
  margin-bottom: 2px;
}

@media (max-width: 767.98px) {
  .courses__curriculum-wrap .course-item {
    padding: 17px 20px;
  }
}
.courses__curriculum-wrap .course-item:last-child {
  margin-bottom: 0;
}

.courses__curriculum-wrap .course-item .course-item-link {
  display: flex;
  align-items: center;
  color: var(--tg-common-color-dark);
  cursor: no-drop;
}

.courses__curriculum-wrap .course-item .course-item-link:hover {
  color: var(--tg-theme-primary);
}

.courses__curriculum-wrap .course-item .item-name {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 20px;
}

@media (max-width: 767.98px) {
  .courses__curriculum-wrap .course-item .item-name {
    line-height: 1.4;
  }
}
.courses__curriculum-wrap .course-item .item-name::before {
  content: "";
  display: block;
  background-image: url(/assets/img/icons/play.svg);
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
}

.courses__curriculum-wrap .course-item-meta {
  margin-left: auto;
  display: flex;
  line-height: 1;
  gap: 20px;
  flex: 0 0 auto;
}

.courses__curriculum-wrap .course-item-meta .duration {
  margin: 2px 0 0;
}

.courses__curriculum-wrap .course-item.open-item .course-item-link {
  cursor: pointer;
}

.courses__instructors-wrap {
  border-radius: 10px;
  border: 1px solid #DFDFDF;
  background: var(--tg-common-color-white);
  -ms-box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.08);
  -o-box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.08);
  padding: 35px 40px;
  display: flex;
  gap: 30px;
  align-items: center;
}

@media (max-width: 1199.98px) {
  .courses__instructors-wrap {
    padding: 30px 30px 30px;
  }
}
@media (max-width: 767.98px) {
  .courses__instructors-wrap {
    flex-direction: column;
  }
}
.courses__instructors-thumb {
  width: 225px;
  flex: 0 0 auto;
}

.courses__instructors-thumb img {
  border-radius: 50%;
}

.courses__instructors-content .title {
  margin-bottom: 5px;
  font-size: 20px;
}

.courses__instructors-content > p {
  margin-bottom: 15px;
}

.courses__instructors-content .designation {
  display: block;
  color: var(--tg-theme-primary);
  line-height: 1;
  margin-bottom: 6px;
}

.courses__instructors-content .avg-rating {
  display: flex;
  align-items: center;
  color: var(--tg-common-color-gray-3);
  font-size: 15px;
  gap: 8px;
  margin-bottom: 8px;
}

.courses__instructors-content .avg-rating i {
  color: var(--tg-common-color-yellow);
}

.courses__rating-wrap {
  border-radius: 10px;
  border: 1px solid #DFDFDF;
  background: var(--tg-common-color-white);
  -ms-box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.08);
  -o-box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.08);
  padding: 35px 40px 70px 40px;
}

@media (max-width: 1199.98px) {
  .courses__rating-wrap {
    padding: 30px 30px 50px 30px;
  }
}
.courses__rating-wrap .title {
  margin-bottom: 30px;
  font-size: 24px;
}

.courses__cost-wrap {
  border-radius: 8px;
  background: var(--tg-theme-primary);
  -ms-box-shadow: 0px 3px 15px 0px rgba(13, 9, 99, 0.26);
  -o-box-shadow: 0px 3px 15px 0px rgba(13, 9, 99, 0.26);
  box-shadow: 0px 3px 15px 0px rgba(13, 9, 99, 0.26);
  padding: 20px 20px 20px;
  margin-bottom: 20px;
}

.courses__cost-wrap span {
  display: block;
  font-weight: 500;
  color: var(--tg-common-color-white);
  line-height: 1;
  margin-bottom: 10px;
}

.courses__cost-wrap .title {
  margin-bottom: 0;
  font-size: 30px;
  color: var(--tg-common-color-white);
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 5px;
}

.courses__cost-wrap .title del {
  font-size: 20px;
  font-weight: 500;
  color: #9490FA;
}

.courses__information-wrap .title {
  font-size: 16px;
  margin-bottom: 15px;
}

.courses__information-wrap .list-wrap li {
  display: flex;
  align-items: center;
  color: var(--tg-common-color-dark);
  gap: 15px;
  border-bottom: 1px solid #D9D9D9;
  margin-bottom: 15px;
  padding-bottom: 15px;
  line-height: 1;
}

.courses__information-wrap .list-wrap li span {
  display: block;
  margin-left: auto;
  color: var(--tg-common-color-gray-3);
}

.courses__information-wrap .list-wrap li svg {
  color: var(--tg-common-color-gray-3);
}

.courses__payment {
  border-bottom: 1px solid #D9D9D9;
  margin-bottom: 25px;
  padding-bottom: 30px;
}

.courses__payment .title {
  margin-bottom: 12px;
  font-weight: 500;
  font-size: 16px;
}

.widget-title {
  font-size: 20px;
  margin-bottom: 20px;
}

.tab-content {
  position: relative;
}

.course-rate {
  display: flex;
  align-items: center;
  gap: 36px;
}

@media (max-width: 767.98px) {
  .course-rate {
    flex-direction: column;
  }
}
.course-rate__summary {
  background: var(--tg-common-color-white);
  border: 1px solid #E6EAEF;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.09);
  border-radius: 8px;
  width: 180px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 33px 20px;
  gap: 3px;
}

.course-rate__summary-value {
  color: #082A5E;
  font-weight: 600;
  font-size: 64px;
  line-height: 0.8;
}

.course-rate__summary-stars {
  font-size: 15px;
  color: #F8BC24;
}

.course-rate__summary-text {
  color: #5A7093;
}

.course-rate__details {
  flex-grow: 1;
}

@media (max-width: 767.98px) {
  .course-rate__details {
    width: 100%;
  }
}
.course-rate__details-row {
  display: flex;
  align-items: center;
  line-height: 1;
  gap: 10px;
  margin: 0 0 17px;
}

.course-rate__details-row:last-child {
  margin: 0 0;
}

.course-rate__details-row-star {
  font-size: 20px;
}

.course-rate__details-row-star i {
  font-size: 17px;
  color: #F8BC24;
  margin-left: 3px;
}

.course-rate__details-row-value {
  position: relative;
  margin-right: 20px;
  flex-grow: 1;
}

.course-rate__details-row-value .rating-gray {
  background: #E0E3EB;
  border-radius: 50px;
  height: 7px;
}

.course-rate__details-row-value .rating {
  position: absolute;
  left: 0;
  top: 0;
  height: 7px;
  background: #F8BC24;
  border-radius: 50px;
}

.course-rate__details-row-value .rating-count {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -20px;
  font-size: 20px;
}

.course-review-head {
  display: flex;
  align-items: center;
  border-top: 1px solid #DFDFDF;
  padding-top: 55px;
  margin-top: 60px;
  gap: 20px;
}

@media (max-width: 767.98px) {
  .course-review-head {
    flex-wrap: wrap;
  }
}
.course-review-head .review-author-thumb {
  width: 80px;
  flex: 0 0 auto;
}

.course-review-head .review-author-thumb img {
  border-radius: 50%;
}

.course-review-head .review-author-content .author-name {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: space-between;
  margin-bottom: 12px;
}

.course-review-head .review-author-content .author-name .name {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 10px 20px;
  font-size: 18px;
  font-weight: 500;
  color: var(--tg-body-color);
}

.course-review-head .review-author-content .author-name .name span {
  font-size: 14px;
  font-weight: 400;
  color: var(--tg-common-color-gray-3);
}

.course-review-head .review-author-content .author-name .author-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  color: var(--tg-common-color-yellow);
}

.course-review-head .review-author-content .title {
  margin-bottom: 12px;
  font-size: 18px;
}

.course-review-head .review-author-content p {
  margin-bottom: 0;
}

.shine__animate-link {
  display: block;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.shine__animate-link::before {
  position: absolute;
  top: 0;
  left: -100%;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}

.shine__animate-item:hover .shine__animate-link::before {
  animation: hoverShine 1.2s;
}

.gutter-24 {
  --bs-gutter-x: 24px;
}

.view-all-btn {
  text-align: center !important;
  margin-bottom: 0 !important;
  margin-top: 30px !important;
}

.discover-courses-btn-two .btn {
  background: transparent;
  border: 1px solid #7f7e97;
  color: #7f7e97;
}

.discover-courses-btn-two .btn svg {
  color: #7f7e97;
}

.discover-courses-btn-two .btn:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
  border-color: var(--tg-theme-primary);
}

.discover-courses-btn-two .btn:hover svg {
  color: var(--tg-common-color-white);
}

/*=============================
    15. Choose
===============================*/
.choose__area {
  position: relative;
}

.choose__bg {
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}

.choose__inner-wrap {
  position: relative;
}

.choose__content {
  background: var(--tg-common-color-white);
  box-shadow: 0 0 30px 0 #e8e8e8;
  border: 1px solid #e3e3e3;
  border-radius: 15px;
  padding: 70px 240px 80px 80px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1199.98px) {
  .choose__content {
    padding: 50px 120px 60px 25px;
  }
}
@media (max-width: 991.98px) {
  .choose__content {
    padding: 50px 60px 60px 60px;
  }
}
@media (max-width: 767.98px) {
  .choose__content {
    padding: 40px 25px;
  }
}
.choose__content > p {
  margin-bottom: 15px;
}

.choose__content .about__info-list {
  margin-bottom: 30px;
}

.choose__content .shape img {
  position: absolute;
  z-index: -1;
  right: 30%;
  top: 15%;
}

@media (max-width: 1199.98px) {
  .choose__content .shape img {
    display: none;
  }
}
.choose__content-two {
  position: relative;
}

.choose__content-two .title-two {
  margin-bottom: 0;
  font-size: 48px;
  font-weight: 700;
  text-transform: capitalize;
  width: 90%;
}

@media (max-width: 1199.98px) {
  .choose__content-two .title-two {
    font-size: 40px;
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .choose__content-two .title-two {
    font-size: 36px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .choose__content-two .title-two {
    font-size: 38px;
  }
}
.choose__content-two .title-two span {
  font-weight: 300;
}

.choose__content-two .title-two strong {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--tg-theme-secondary);
  border-radius: 50%;
  color: var(--tg-common-color-white);
  margin: 0 5px;
}

.choose__content-two > p {
  margin-bottom: 20px;
  width: 75%;
}

@media (max-width: 1500px) {
  .choose__content-two > p {
    width: 85%;
  }
}
@media (max-width: 1199.98px) {
  .choose__content-two > p {
    width: 100%;
  }
}
.choose__content-two .about__info-list {
  margin-bottom: 40px;
}

.choose__content-two .shape img {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 40%;
  animation-duration: 15s;
}

@media (max-width: 991.98px) {
  .choose__content-two .shape img {
    bottom: 37%;
  }
}
@media (max-width: 767.98px) {
  .choose__content-two .shape img {
    bottom: 49%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .choose__content-two .shape img {
    bottom: 40%;
  }
}
.choose__content-three {
  margin-right: 150px;
  margin-left: 10px;
}

@media (max-width: 1500px) {
  .choose__content-three {
    margin-right: 130px;
  }
}
@media (max-width: 1199.98px) {
  .choose__content-three {
    margin-right: 0px;
  }
}
@media (max-width: 991.98px) {
  .choose__content-three {
    margin: 0;
  }
}
.choose__content-three p {
  margin-bottom: 20px;
}

.choose__content-four {
  margin-left: 40px;
  margin-right: 90px;
}

@media (max-width: 1500px) {
  .choose__content-four {
    margin-right: 60px;
  }
}
@media (max-width: 1199.98px) {
  .choose__content-four {
    margin: 0;
  }
}
.choose__content-four > p {
  margin-bottom: 25px;
  width: 90%;
}

@media (max-width: 1199.98px) {
  .choose__content-four > p {
    width: 100%;
  }
}
.choose__content-four .about__info-list {
  margin-bottom: 40px;
}

@media (max-width: 767.98px) {
  .choose__content-inner-img {
    margin-bottom: 30px;
    text-align: center;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .choose__content-inner-img {
    margin-bottom: 0;
  }
}
.choose__content-inner-img img {
  border-radius: 449px 449px 449px 0;
  border: 8px solid var(--tg-common-color-white);
}

.choose__list-wrap {
  margin-bottom: 40px;
}

.choose__list-item {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-bottom: 24px;
}

.choose__list-item:last-child {
  margin-bottom: 0;
}

.choose__list-item .icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: var(--tg-theme-secondary);
  color: var(--tg-heading-color);
  border-radius: 50%;
  font-size: 35px;
}

.choose__list-item .content .title {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
}

.choose__list-item .content span {
  display: block;
  font-family: var(--tg-heading-font-family);
  color: var(--tg-body-color);
  text-transform: capitalize;
  line-height: 1.3;
}

.choose__img {
  position: absolute;
  right: 0;
  top: -40px;
  z-index: 2;
  max-width: 765px;
}

@media (max-width: 1500px) {
  .choose__img {
    max-width: 740px;
  }
}
@media (max-width: 1199.98px) {
  .choose__img {
    max-width: 500px;
  }
}
@media (max-width: 991.98px) {
  .choose__img {
    position: relative;
    top: 0;
    margin-bottom: 50px;
    max-width: 100%;
  }
}
.choose__img img {
  border-radius: 15px;
  min-height: 300px;
  object-fit: cover;
  width: 100%;
}

.choose__img .popup-video {
  position: absolute;
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tg-common-color-white);
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  color: var(--tg-theme-secondary);
}

.choose__img .popup-video:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
}

.choose__img-two {
  text-align: center;
  position: relative;
}

@media (max-width: 991.98px) {
  .choose__img-two {
    margin-bottom: 50px;
  }
}
.choose__img-two img {
  border-radius: 1000px 1000px 0 1000px;
}

.choose__img-three {
  margin-right: 45px;
  position: relative;
}

@media (max-width: 1199.98px) {
  .choose__img-three {
    margin-right: 0;
  }
}
@media (max-width: 991.98px) {
  .choose__img-three {
    margin-bottom: 50px;
  }
}
.choose__img-three img {
  border-radius: 100px;
}

@media (max-width: 767.98px) {
  .choose__img-three img {
    border-radius: 40px;
    width: 100%;
  }
}
.choose__img-three .play-btn {
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tg-common-color-white);
  border-radius: 50%;
  color: var(--tg-heading-color);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 22px;
}

.choose__img-three .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  border: 1px solid var(--tg-common-color-white);
  border-radius: 50%;
  transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
  animation: pulse-border 1500ms ease-out infinite;
}

.choose__img-four {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 25px;
  margin-bottom: 30px;
}

@media (max-width: 1199.98px) {
  .choose__img-four {
    gap: 15px;
  }
}
@media (max-width: 991.98px) {
  .choose__img-four {
    gap: 20px;
    margin-bottom: 80px;
  }
}
.choose__img-four .left__side {
  width: 320px;
  flex: 0 0 auto;
}

@media (max-width: 1500px) {
  .choose__img-four .left__side {
    width: 290px;
  }
}
@media (max-width: 1199.98px) {
  .choose__img-four .left__side {
    width: 220px;
  }
}
@media (max-width: 991.98px) {
  .choose__img-four .left__side {
    width: 270px;
  }
}
@media (max-width: 767.98px) {
  .choose__img-four .left__side {
    display: none;
  }
}
.choose__img-four .left__side img {
  border-radius: 30px;
  margin-bottom: 25px;
  width: 100%;
}

.choose__img-four .left__side img:nth-child(2) {
  margin-bottom: 0;
}

.choose__img-four .right__side {
  position: relative;
  flex-grow: 1;
  margin-bottom: -30px;
}

.choose__img-four .right__side img {
  border-radius: 30px;
  width: 100%;
}

.choose__img-four .right__side .popup-video {
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tg-common-color-white);
  color: var(--tg-heading-color);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  font-size: 22px;
}

.choose__img-four .right__side .popup-video::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  border: 1px solid var(--tg-common-color-white);
  border-radius: 50%;
  transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
  animation: pulse-border 1500ms ease-out infinite;
}

.choose__img-four .shape {
  position: absolute;
  z-index: -1;
}

@media (max-width: 767.98px) {
  .choose__img-four .shape {
    display: none;
  }
}
.choose__img-four .shape.shape-one {
  right: 34%;
  top: 8px;
  max-width: 106px;
}

@media (max-width: 1199.98px) {
  .choose__img-four .shape.shape-one {
    right: 30%;
    top: 37px;
    max-width: 80px;
  }
}
.choose__img-four .shape.shape-two {
  left: -5%;
  bottom: -6%;
  max-width: 142px;
}

.choose__img-four .shape.shape-three {
  left: 25%;
  bottom: -13%;
  max-width: 335px;
}

@media (max-width: 1199.98px) {
  .choose__img-four .shape.shape-three {
    left: 18%;
    bottom: -22%;
    max-width: 280px;
  }
}
@media (max-width: 991.98px) {
  .choose__img-four .shape.shape-three {
    display: none;
  }
}
.choose__shape img {
  position: absolute;
  z-index: -1;
}

.choose__shape img:nth-child(1) {
  right: 10%;
  bottom: 24%;
}

@media (max-width: 1800px) {
  .choose__shape img:nth-child(1) {
    right: 3%;
  }
}
@media (max-width: 1199.98px) {
  .choose__shape img:nth-child(1) {
    right: 2%;
    bottom: 45%;
  }
}
@media (max-width: 991.98px) {
  .choose__shape img:nth-child(1) {
    right: 3%;
    bottom: 8%;
    max-width: 120px;
  }
}
@media (max-width: 767.98px) {
  .choose__shape img:nth-child(1) {
    bottom: 6%;
    max-width: 100px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .choose__shape img:nth-child(1) {
    right: 6%;
  }
}
.choose__shape img:nth-child(2) {
  right: 9%;
  bottom: 19%;
  z-index: -2;
}

@media (max-width: 1800px) {
  .choose__shape img:nth-child(2) {
    right: 1%;
  }
}
@media (max-width: 1199.98px) {
  .choose__shape img:nth-child(2) {
    right: 0%;
    bottom: 40%;
  }
}
@media (max-width: 991.98px) {
  .choose__shape img:nth-child(2) {
    right: 0%;
    bottom: 6%;
    width: 130px;
  }
}
@media (max-width: 767.98px) {
  .choose__shape img:nth-child(2) {
    right: -5%;
    bottom: 4%;
    width: 100px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .choose__shape img:nth-child(2) {
    right: 0%;
  }
}
.section-pt-140 {
  padding-top: 140px;
}

@media (max-width: 767.98px) {
  .section-pt-140 {
    padding-top: 100px;
  }
}
.section-pb-140 {
  padding-bottom: 140px;
}

@media (max-width: 767.98px) {
  .section-pb-140 {
    padding-bottom: 100px;
  }
}
.section-pb-110 {
  padding-bottom: 110px;
}

@media (max-width: 767.98px) {
  .section-pb-110 {
    padding-bottom: 70px;
  }
}
.section-py-140 {
  padding: 140px 0;
}

@media (max-width: 767.98px) {
  .section-py-140 {
    padding: 100px 0;
  }
}
.circle__text-wrap {
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tg-common-color-white);
  border: 1px solid #D2D2D2;
  border-radius: 50%;
  position: absolute;
  right: 10%;
  top: 30px;
}

@media (max-width: 1500px) {
  .circle__text-wrap {
    right: 6%;
    top: 20px;
  }
}
@media (max-width: 1199.98px) {
  .circle__text-wrap {
    right: 2%;
    top: 15px;
  }
}
@media (max-width: 767.98px) {
  .circle__text-wrap {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .circle__text-wrap {
    display: flex;
  }
}
.circle__text-wrap .icon {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tg-common-color-white);
  color: var(--tg-theme-secondary);
  line-height: 0;
  font-size: 36px;
  border-radius: 50%;
  border: 1px solid #D2D2D2;
}

.circle__text-wrap .content .circle {
  position: absolute;
  margin-bottom: 0;
  font-size: 16px;
  text-transform: uppercase;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--tg-heading-color);
  animation-duration: 20s;
}

.circle__text-wrap .content .circle span {
  position: absolute;
  top: -71px;
  display: inline-block;
  transform-origin: 0 71px;
}

/*=============================
    09. Categories
===============================*/
.section-py-120 {
  padding: 120px 0;
}

@media (max-width: 767.98px) {
  .section-py-120 {
    padding: 100px 0;
  }
}
.categories-area-four {
  position: relative;
}

.categories__bg {
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}

.categories__wrap {
  background: var(--tg-common-color-gray);
  border-radius: 500px;
  padding: 52px 145px 45px;
  position: relative;
}

@media (max-width: 1199.98px) {
  .categories__wrap {
    padding: 52px 100px 45px;
  }
}
@media (max-width: 991.98px) {
  .categories__wrap {
    padding: 45px 90px 45px;
  }
}
@media (max-width: 767.98px) {
  .categories__wrap {
    padding: 30px 20px 30px;
    border-radius: 30px;
  }
}
.categories__item {
  text-align: center;
}

.categories__item .icon {
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--tg-border-1);
  border-radius: 150px;
  background: linear-gradient(180deg, var(--tg-common-color-white) 0%, #F1F1FA 100%);
  font-size: 55px;
  color: #7F7E97;
  transition: all 0.3s ease-out 0s;
  position: relative;
  margin: 0 0 12px;
}

@media (max-width: 767.98px) {
  .categories__item .icon {
    width: 130px;
    height: 130px;
    font-size: 45px;
    margin: 0 auto 12px;
  }
}
.categories__item .icon::before {
  content: "";
  position: absolute;
  top: 26px;
  right: 26px;
  background-image: url(/assets/img/icons/cat_star.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 30px;
  height: 26px;
  pointer-events: none;
}

.categories__item .name {
  display: block;
  font-family: var(--tg-heading-font-family);
  font-size: 18px;
  font-weight: var(--tg-fw-medium);
  line-height: 1.5;
  color: var(--tg-heading-color);
  margin: 0 0 7px;
}

.categories__item .courses {
  display: block;
  line-height: 1.3;
  font-family: var(--tg-heading-font-family);
  color: var(--tg-body-color);
}

.categories__item:hover .icon {
  background: var(--tg-theme-primary);
  box-shadow: 6px 5px 0px 0px rgba(0, 0, 0, 0.25);
  color: var(--tg-common-color-white);
}

.categories__item-two {
  margin-bottom: 30px;
}

.categories__item-two a {
  background: #f9f9f9;
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 15px 30px 15px 15px;
  gap: 15px;
  justify-content: space-between;
}

.categories__item-two a .content {
  display: flex;
  align-items: center;
  gap: 13px;
}

.categories__item-two a .content img {
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  border-radius: 50%;
}

.categories__item-two a .content .name {
  font-family: var(--tg-heading-font-family);
  font-size: 14px;
  color: var(--tg-body-color);
  line-height: 1.4;
}

.categories__item-two a .content .name strong {
  display: block;
  color: var(--tg-heading-color);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
  transition: all 0.3s ease-out 0s;
}

.categories__item-two a .icon {
  font-size: 22px;
  color: var(--tg-body-color);
  font-weight: 700;
  transition: all 0.3s ease-out 0s;
}

.categories__item-two a:hover {
  transform: translateY(-3px);
}

.categories__item-two a:hover .icon {
  color: var(--tg-theme-primary);
}

.categories__item-two a:hover .name strong {
  color: var(--tg-theme-primary);
}

.categories__item-three {
  margin-bottom: 30px;
}

.categories__item-three a {
  background: var(--tg-common-color-white);
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.05);
  border-radius: 30px;
  display: block;
  text-align: center;
  padding: 65px 30px 70px;
}

@media (max-width: 1199.98px) {
  .categories__item-three a {
    padding: 45px 30px 50px;
  }
}
.categories__item-three a .icon {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #efeff3;
  color: var(--tg-body-color);
  border-radius: 50%;
  font-size: 50px;
  margin: 0 auto 22px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease-out 0s;
}

.categories__item-three a .icon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transform: scale(0);
  background: var(--tg-theme-secondary);
  z-index: -1;
  transition: all 0.3s ease-out 0s;
  border-radius: 50%;
}

.categories__item-three a .name {
  display: block;
  font-weight: 600;
  font-size: 20px;
  text-transform: capitalize;
  color: var(--tg-heading-color);
  line-height: 1.2;
  font-family: var(--tg-heading-font-family);
}

.categories__item-three a .courses {
  font-weight: 500;
  font-size: 14px;
  color: var(--tg-body-color);
  font-family: var(--tg-heading-font-family);
  line-height: 1.2;
}

.categories__item-three a:hover .icon {
  color: var(--tg-heading-color);
}

.categories__item-three a:hover .icon::before {
  transform: scale(1);
}

.categories__item-four {
  margin-bottom: 30px;
  text-align: center;
}

.categories__item-four a {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  display: block;
}

.categories__item-four a img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.categories__item-four a .name {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  border-radius: 10px 10px 0 0;
  background: var(--tg-common-color-white);
  font-weight: 600;
  font-size: 16px;
  font-family: var(--tg-heading-font-family);
  color: var(--tg-heading-color);
  text-transform: capitalize;
  display: block;
  line-height: 1;
  padding: 14px 19px;
  transition: all 0.3s ease-out 0s;
  white-space: nowrap;
}

.categories__item-four a .name strong {
  font-weight: 400;
  font-size: 14px;
  color: var(--tg-body-color);
}

.categories__item-four a:hover .name {
  color: var(--tg-theme-primary);
}

@media (max-width: 767.98px) {
  .categories__nav {
    display: none;
  }
}
.categories__nav button {
  position: absolute;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: var(--tg-theme-secondary);
  padding: 0 0;
  border-radius: 50%;
  border: 1px solid #333;
  box-shadow: -3px 2px 0px 0px #382900;
  transition: all 0.3s ease-out 0s;
}

@media (max-width: 1199.98px) {
  .categories__nav button {
    left: 30px;
  }
}
@media (max-width: 1199.98px) {
  .categories__nav button {
    left: 20px;
  }
}
.categories__nav button.categories-button-next {
  left: auto;
  right: 50px;
  box-shadow: 2px 4px 0px 0px #382900;
}

@media (max-width: 1199.98px) {
  .categories__nav button.categories-button-next {
    right: 30px;
  }
}
@media (max-width: 1199.98px) {
  .categories__nav button.categories-button-next {
    right: 20px;
  }
}
.categories__nav button:hover {
  box-shadow: none;
}

.categories__shape-wrap img {
  position: absolute;
  z-index: -1;
}

.categories__shape-wrap img:nth-child(1) {
  left: 9%;
  top: 33%;
  max-width: 153px;
  animation-duration: 30s;
}

@media (max-width: 1500px) {
  .categories__shape-wrap img:nth-child(1) {
    left: 1%;
  }
}
@media (max-width: 767.98px) {
  .categories__shape-wrap img:nth-child(1) {
    display: none;
  }
}
.categories__shape-wrap img:nth-child(2) {
  right: 0;
  top: 0;
  max-width: 436px;
}

@media (max-width: 1199.98px) {
  .categories__shape-wrap img:nth-child(2) {
    max-width: 300px;
  }
}
@media (max-width: 767.98px) {
  .categories__shape-wrap img:nth-child(2) {
    max-width: 200px;
  }
}
.categories__shape-wrap img:nth-child(3) {
  right: 11%;
  top: 37%;
  max-width: 83px;
}

@media (max-width: 1500px) {
  .categories__shape-wrap img:nth-child(3) {
    right: 2%;
  }
}
@media (max-width: 767.98px) {
  .categories__shape-wrap img:nth-child(3) {
    display: none;
  }
}
.categories__shape-wrap img:nth-child(4) {
  left: 0;
  bottom: 0;
  max-width: 456px;
}

@media (max-width: 1199.98px) {
  .categories__shape-wrap img:nth-child(4) {
    max-width: 300px;
  }
}
@media (max-width: 767.98px) {
  .categories__shape-wrap img:nth-child(4) {
    max-width: 200px;
  }
}
.categories__shape-wrap-two img {
  position: absolute;
  z-index: -1;
}

.categories__shape-wrap-two img:nth-child(1) {
  left: 4%;
  top: 14%;
  max-width: 147px;
}

@media (max-width: 1800px) {
  .categories__shape-wrap-two img:nth-child(1) {
    left: 2%;
    top: 16%;
    max-width: 125px;
  }
}
@media (max-width: 991.98px) {
  .categories__shape-wrap-two img:nth-child(1) {
    top: 11%;
    max-width: 110px;
  }
}
@media (max-width: 767.98px) {
  .categories__shape-wrap-two img:nth-child(1) {
    display: none;
  }
}
.categories__shape-wrap-two img:nth-child(2) {
  right: 3%;
  bottom: 10%;
  max-width: 107px;
}

@media (max-width: 1800px) {
  .categories__shape-wrap-two img:nth-child(2) {
    right: 2%;
    bottom: 4%;
    max-width: 80px;
  }
}
@media (max-width: 991.98px) {
  .categories__shape-wrap-two img:nth-child(2) {
    bottom: 2%;
    max-width: 70px;
  }
}
@media (max-width: 767.98px) {
  .categories__shape-wrap-two img:nth-child(2) {
    display: none;
  }
}
.view-all-categories {
  text-align: right;
  margin-bottom: 30px;
}

@media (max-width: 767.98px) {
  .view-all-categories {
    text-align: left;
    margin-bottom: 40px;
  }
}
.view-all-categories a {
  display: inline-flex;
  align-items: center;
  color: var(--tg-body-color);
  gap: 10px;
  font-size: 15px;
  font-family: var(--tg-heading-font-family);
  font-weight: 500;
}

.view-all-categories a span {
  text-decoration: underline;
}

.view-all-categories a svg {
  width: 15px;
}

.view-all-categories a:hover {
  color: var(--tg-theme-primary);
}

@media (max-width: 767.98px) {
  .mb-xs-30 {
    margin-bottom: 30px;
  }
}
@media (max-width: 767.98px) {
  .mb-xs-20 {
    margin-bottom: 20px;
  }
}
/*=============================
    11. Testimonial
===============================*/
.section-pb-57 {
  padding-bottom: 57px;
}

.testimonial__area-four {
  position: relative;
  z-index: 1;
  background: var(--tg-common-color-gray-8);
  padding: 70px 0 0;
  margin: 22px 0 0;
}

.testimonial__bg {
  background-size: cover;
  background-position: center;
}

.testimonial__bg-two {
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.testimonial__bg-three {
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.testimonial__bg-shape-one {
  position: absolute;
  left: 0;
  top: -21px;
  width: 100%;
  height: 22px;
  line-height: 1;
  z-index: 1;
}

.testimonial__bg-shape-one svg {
  width: 100%;
  color: var(--tg-common-color-gray-8);
  height: 22px;
}

.testimonial__bg-shape-two {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 22px;
  line-height: 1;
  z-index: 1;
}

.testimonial__bg-shape-two svg {
  width: 100%;
  height: 22px;
  color: var(--tg-common-color-white);
}

.testimonial__img {
  position: relative;
  text-align: center;
}

@media (max-width: 991.98px) {
  .testimonial__img {
    margin-bottom: 50px;
  }
}
.testimonial__img img {
  border-radius: 1000px;
}

.testimonial__img .shape img {
  position: absolute;
  left: -10px;
  top: 0;
  z-index: -1;
  animation-duration: 80s;
  max-width: 413px;
}

@media (max-width: 1199.98px) {
  .testimonial__img .shape img {
    left: -50px;
    max-width: 360px;
  }
}
@media (max-width: 767.98px) {
  .testimonial__img .shape img {
    display: none;
  }
}
.testimonial__img-two {
  text-align: center;
  position: relative;
}

@media (max-width: 991.98px) {
  .testimonial__img-two {
    margin-top: 50px;
  }
}
.testimonial__img-two .shape img {
  position: absolute;
  z-index: 2;
}

.testimonial__img-two .shape img:nth-child(1) {
  left: 40px;
  top: 5%;
  max-width: 84px;
}

@media (max-width: 1199.98px) {
  .testimonial__img-two .shape img:nth-child(1) {
    left: 0px;
    max-width: 70px;
  }
}
@media (max-width: 991.98px) {
  .testimonial__img-two .shape img:nth-child(1) {
    left: 40px;
  }
}
.testimonial__img-two .shape img:nth-child(2) {
  left: 8%;
  top: 34%;
  max-width: 103px;
}

@media (max-width: 1199.98px) {
  .testimonial__img-two .shape img:nth-child(2) {
    left: 0%;
    top: 35%;
    max-width: 76px;
  }
}
.testimonial__img-two .shape img:nth-child(3) {
  right: 10%;
  bottom: 13%;
  max-width: 129px;
}

@media (max-width: 1199.98px) {
  .testimonial__img-two .shape img:nth-child(3) {
    right: 2%;
    max-width: 100px;
  }
}
.testimonial__img-three {
  position: relative;
  margin-top: 40px;
}

@media (max-width: 991.98px) {
  .testimonial__img-three {
    margin-bottom: 50px;
  }
}
.testimonial__img-three .banner__review {
  border-radius: 15px;
  left: -6%;
  bottom: 11%;
  right: auto;
  top: auto;
}

@media (max-width: 1500px) {
  .testimonial__img-three .banner__review {
    left: -4%;
  }
}
.testimonial__img-three .banner__review .icon {
  background: var(--tg-theme-primary);
}

.testimonial__img-three .svg-icon {
  position: absolute;
  right: 10%;
  top: -17%;
  width: 99px;
  height: auto;
}

@media (max-width: 1500px) {
  .testimonial__img-three .svg-icon {
    right: 2%;
    top: -16%;
  }
}
@media (max-width: 1199.98px) {
  .testimonial__img-three .svg-icon {
    top: -19%;
  }
}
@media (max-width: 767.98px) {
  .testimonial__img-three .svg-icon {
    top: -27%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .testimonial__img-three .svg-icon {
    top: -18%;
    right: 3%;
  }
}
.testimonial__img-three .svg-icon svg {
  width: 100%;
  height: 100%;
  color: var(--tg-theme-secondary);
}

.testimonial__img-four .svg-icon {
  position: absolute;
  right: auto;
  left: 42%;
  top: -11%;
  width: 81px;
  height: auto;
}

@media (max-width: 1199.98px) {
  .testimonial__img-four .svg-icon {
    top: -16%;
  }
}
@media (max-width: 767.98px) {
  .testimonial__img-four .svg-icon {
    top: -20%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .testimonial__img-four .svg-icon {
    top: -14%;
  }
}
.testimonial__img-four .svg-icon svg {
  color: var(--tg-body-color);
}

.testimonial__img-four .testimonial__img-icon {
  background: var(--tg-common-color-white);
  border: 1px solid var(--tg-body-color);
  color: #D7D7DF;
  position: absolute;
  right: 8%;
  bottom: auto;
  top: 16%;
}

@media (max-width: 1500px) {
  .testimonial__img-four .testimonial__img-icon {
    right: 1%;
  }
}
@media (max-width: 1199.98px) {
  .testimonial__img-four .testimonial__img-icon {
    right: -1%;
  }
}
.testimonial__img-four .banner__review {
  left: 4%;
  bottom: 14%;
}

.testimonial__img-four .banner__review .icon {
  background: var(--tg-theme-secondary);
}

.testimonial__img-icon {
  width: 82px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tg-theme-secondary);
  border: 1px solid var(--tg-body-color);
  border-radius: 50%;
  color: var(--tg-common-color-white);
  box-shadow: -8px 8px 0 0 rgba(0, 0, 0, 0.25);
  position: absolute;
  right: 5%;
  bottom: 29%;
}

@media (max-width: 1500px) {
  .testimonial__img-icon {
    right: 0;
  }
}
.testimonial__mask-img {
  -webkit-mask-image: url(/assets/img/others/h6_testimonial_mask_img.png);
  mask-image: url(/assets/img/others/h6_testimonial_mask_img.png);
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  width: 530px;
  height: 420px;
}

@media (max-width: 1500px) {
  .testimonial__mask-img {
    width: 516px;
    height: 410px;
  }
}
@media (max-width: 1199.98px) {
  .testimonial__mask-img {
    width: 450px;
    height: 360px;
  }
}
@media (max-width: 767.98px) {
  .testimonial__mask-img {
    width: 340px;
    height: 272px;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .testimonial__mask-img {
    width: 450px;
    height: 360px;
  }
}
.testimonial__mask-img img {
  max-width: unset;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial__item {
  background: #F6F5FE;
  padding: 40px 45px 40px;
  border-radius: 10px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1199.98px) {
  .testimonial__item {
    padding: 30px 20px 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .testimonial__item {
    padding: 30px 30px 30px;
  }
}
.testimonial__item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.testimonial__item-wrap {
  position: relative;
}

.testimonial__item::before {
  content: "\f10e";
  font-size: 48px;
  line-height: 1;
  color: #D9D6F5;
  font-family: var(--tg-icon-font-family);
  position: absolute;
  right: 43px;
  top: 45px;
  font-weight: 700;
  z-index: -1;
}

@media (max-width: 1199.98px) {
  .testimonial__item::before {
    top: 30px;
    right: 20px;
    font-size: 45px;
  }
}
.testimonial__item-two {
  background: #f9f9f9;
  padding: 50px 45px;
  border-radius: 10px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1199.98px) {
  .testimonial__item-two {
    padding: 30px 25px;
  }
}
@media (max-width: 767.98px) {
  .testimonial__item-two {
    padding: 30px 30px;
  }
}
.testimonial__item-two::before {
  content: "\f10e";
  font-size: 48px;
  line-height: 1;
  color: #E6E6E6;
  font-family: var(--tg-icon-font-family);
  position: absolute;
  right: 45px;
  top: 43px;
  font-weight: 700;
  z-index: -1;
}

@media (max-width: 1199.98px) {
  .testimonial__item-two::before {
    top: 30px;
    right: 20px;
    font-size: 45px;
  }
}
.testimonial__item-three {
  text-align: center;
}

.testimonial__item-three .icon {
  margin-bottom: 20px;
}

.testimonial__item-three .icon svg {
  color: #D9D5D0;
}

.testimonial__item-three .rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--tg-common-color-yellow-3);
  font-size: 20px;
  margin-bottom: 17px;
}

.testimonial__item-three p {
  font-size: 21px;
  font-family: var(--tg-heading-font-family);
  line-height: 1.8;
  font-style: italic;
  color: #343C4D;
  margin-bottom: 20px;
}

@media (max-width: 767.98px) {
  .testimonial__item-three p {
    font-size: 20px;
  }
}
.testimonial__item-four {
  position: relative;
  width: 83%;
}

@media (max-width: 1199.98px) {
  .testimonial__item-four {
    width: 100%;
  }
}
@media (max-width: 991.98px) {
  .testimonial__item-four {
    text-align: center;
  }
}
.testimonial__item-four::before {
  content: "";
  position: absolute;
  background-image: url(/assets/img/icons/quote.svg);
  width: 205px;
  height: 160px;
  z-index: -1;
  right: 0;
  top: 10%;
}

@media (max-width: 991.98px) {
  .testimonial__item-four::before {
    display: none;
  }
}
.testimonial__item-four .rating {
  display: flex;
  align-items: center;
  font-size: 22px;
  gap: 7px;
  color: var(--tg-common-color-yellow-3);
  margin-bottom: 22px;
}

@media (max-width: 991.98px) {
  .testimonial__item-four .rating {
    justify-content: center;
  }
}
.testimonial__item-four p {
  margin-bottom: 15px;
  font-style: italic;
  font-family: var(--tg-heading-font-family);
  font-weight: 500;
  font-size: 21px;
  color: #343C4D;
  line-height: 1.7;
}

@media (max-width: 767.98px) {
  .testimonial__item-four p {
    font-size: 19px;
  }
}
.testimonial__item-five {
  background: var(--tg-common-color-white);
}

.testimonial__item-five .testimonial__content-two .title {
  margin-bottom: 25px;
}

.testimonial__item-five .testimonial__content-two .rating {
  margin-bottom: 22px;
}

.testimonial__bottom .title {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 600;
  color: var(--tg-theme-primary);
}

.testimonial__bottom span {
  line-height: 1.2;
  display: block;
  font-weight: 500;
}

.testimonial__bottom-two .title {
  margin-bottom: 5px;
  font-size: 20px;
  color: var(--tg-theme-primary);
}

.testimonial__bottom-two span {
  line-height: 1.2;
  display: block;
  font-weight: 500;
  color: #7F838C;
}

.testimonial__author {
  display: flex;
  gap: 20px;
  align-items: center;
}

@media (max-width: 767.98px) {
  .testimonial__author {
    gap: 15px;
  }
}
.testimonial__author-thumb img {
  border: 3px solid #FFF;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
  border-radius: 50%;
}

.testimonial__author-thumb-two {
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
}

.testimonial__author-thumb-two img {
  border: 2px solid var(--tg-common-color-white);
}

.testimonial__author-content .rating {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 15px;
  color: var(--tg-common-color-yellow);
  margin-bottom: 10px;
}

.testimonial__author-content .title {
  font-size: 20px;
  margin-bottom: 0;
}

.testimonial__author-content-two .title {
  margin-bottom: 3px;
}

.testimonial__author-content-two span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

.testimonial__author-two {
  gap: 10px;
}

.testimonial__icon {
  font-size: 48px;
  line-height: 0;
  color: #D9D6F5;
}

.testimonial__content p {
  margin-bottom: 0;
}

.testimonial__content-two .title {
  margin-bottom: 32px;
  font-size: 18px;
  text-transform: capitalize;
  font-weight: 600;
  color: var(--tg-theme-primary);
}

.testimonial__content-two .rating {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--tg-common-color-yellow);
  margin-bottom: 15px;
}

.testimonial__content-two p {
  margin-bottom: 15px;
}

.testimonial__content-three {
  margin-left: 55px;
  margin-right: 80px;
}

@media (max-width: 1199.98px) {
  .testimonial__content-three {
    margin: 0;
  }
}
@media (max-width: 991.98px) {
  .testimonial__content-three {
    text-align: center;
  }
}
.testimonial__content-three .testimonial__item-four {
  width: 100%;
}

.testimonial__content-three .testimonial__item-four::before {
  opacity: 0.5;
}

.testimonial__content-four {
  margin: 0;
}

@media (max-width: 767.98px) {
  .testimonial__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
  }
}
.testimonial__nav button {
  padding: 0;
  border-radius: 50%;
  border: 2px solid var(--tg-common-color-dark);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
  font-size: 20px;
  line-height: 0;
  -ms-box-shadow: 3.6px 2.4px 0px 0px #23232B;
  -o-box-shadow: 3.6px 2.4px 0px 0px #23232B;
  box-shadow: 3.6px 2.4px 0px 0px #23232B;
  position: absolute;
  right: -75px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

@media (max-width: 1500px) {
  .testimonial__nav button {
    right: -20px;
  }
}
@media (max-width: 767.98px) {
  .testimonial__nav button {
    position: inherit;
    transform: translateY(0);
  }
}
.testimonial__nav button.testimonial-button-prev {
  right: auto;
  left: -75px;
  -ms-box-shadow: -3.6px 2.4px 0px 0px #23232B;
  -o-box-shadow: -3.6px 2.4px 0px 0px #23232B;
  box-shadow: -3.6px 2.4px 0px 0px #23232B;
}

@media (max-width: 1500px) {
  .testimonial__nav button.testimonial-button-prev {
    left: -20px;
  }
}
.testimonial__nav button.testimonial-button-prev i {
  transform: rotate(180deg);
}

.testimonial__nav button:hover {
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}

.testimonial__nav-two {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  margin-bottom: 30px;
}

@media (max-width: 767.98px) {
  .testimonial__nav-two {
    justify-content: flex-start;
    margin-bottom: 50px;
  }
}
.testimonial__nav-two button {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: var(--tg-common-color-white);
  border-radius: 6px;
  color: var(--tg-body-color);
  font-size: 25px;
  padding: 0;
}

.testimonial__nav-two button.testimonial-button-prev {
  transform: rotate(-180deg);
}

.testimonial__nav-two button:hover {
  background: var(--tg-theme-secondary);
  color: var(--tg-heading-color);
}

.testimonial__shape img {
  position: absolute;
  right: 9%;
  top: -230px;
  z-index: -1;
  animation-duration: 60s;
  max-width: 380px;
}

@media (max-width: 1199.98px) {
  .testimonial__shape img {
    max-width: 350px;
  }
}
@media (max-width: 767.98px) {
  .testimonial__shape img {
    max-width: 250px;
    top: -167px;
    right: 2%;
  }
}
.testimonial__shape-wrap img {
  position: absolute;
  z-index: -1;
}

.testimonial__shape-wrap img:nth-child(1) {
  right: 12%;
  bottom: 15%;
  max-width: 86px;
}

@media (max-width: 1199.98px) {
  .testimonial__shape-wrap img:nth-child(1) {
    right: 10%;
    bottom: 11%;
    max-width: 75px;
  }
}
@media (max-width: 767.98px) {
  .testimonial__shape-wrap img:nth-child(1) {
    display: none;
  }
}
.testimonial__shape-wrap img:nth-child(2) {
  right: 10%;
  top: 7%;
  max-width: 95px;
}

@media (max-width: 991.98px) {
  .testimonial__shape-wrap img:nth-child(2) {
    right: 8%;
    top: 4%;
  }
}
@media (max-width: 767.98px) {
  .testimonial__shape-wrap img:nth-child(2) {
    right: 3%;
    top: 2%;
  }
}
.testimonial__shape-wrap-two img {
  position: absolute;
  z-index: -1;
}

.testimonial__shape-wrap-two img:nth-child(1) {
  right: 5%;
  top: 10%;
  max-width: 110px;
}

@media (max-width: 1500px) {
  .testimonial__shape-wrap-two img:nth-child(1) {
    top: 6%;
    max-width: 80px;
  }
}
.testimonial__shape-wrap-two img:nth-child(2) {
  left: 3%;
  bottom: -27px;
  max-width: 99px;
}

@media (max-width: 1500px) {
  .testimonial__shape-wrap-two img:nth-child(2) {
    max-width: 80px;
  }
}
.swiper-container {
  overflow: hidden;
}

.testimonial-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  gap: 10px;
  margin-top: 25px;
}

.testimonial-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  margin: 0 !important;
  background: #D9D9D9;
  transition: 0.3s ease-in-out;
  display: block;
  opacity: 1;
}

.testimonial-pagination .swiper-pagination-bullet-active {
  background: #161439;
}

.testimonial-pagination-two {
  justify-content: flex-start;
  margin-top: 34px;
}

@media (max-width: 991.98px) {
  .testimonial-pagination-two {
    justify-content: center;
  }
}
.section-pb-130 {
  padding-bottom: 130px;
}

@media (max-width: 767.98px) {
  .section-pb-130 {
    padding-bottom: 100px;
  }
}
/*=============================
    12. Instructor
===============================*/
.instructor__area {
  padding: 120px 0 85px;
}

@media (max-width: 767.98px) {
  .instructor__area {
    padding: 100px 0 65px;
  }
}
.instructor__area-two {
  background: var(--tg-common-color-blue-2);
}

.instructor__area-four {
  background: var(--tg-common-color-gray);
}

.instructor__area-six {
  position: relative;
  z-index: 1;
}

.instructor__bg {
  background-size: cover;
  background-position: center;
  padding: 265px 0 120px;
  margin-top: -145px;
  position: relative;
  z-index: 1;
}

.instructor__content-wrap {
  width: 87%;
}

@media (max-width: 1199.98px) {
  .instructor__content-wrap {
    width: 100%;
    margin-bottom: 50px;
  }
}
.instructor__content-wrap p {
  margin-bottom: 20px;
}

.instructor__item {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 35px;
}

@media (max-width: 991.98px) {
  .instructor__item {
    justify-content: center;
    display: block;
    text-align: center;
  }
}
.instructor__item-two {
  display: flex;
  gap: 30px;
  align-items: center;
  border: 1px solid #BDBDBD;
  background: var(--tg-common-color-white);
  border-radius: 16px;
  padding: 0 60px 0 25px;
  position: relative;
  z-index: 3;
  overflow: hidden;
  min-height: 260px;
  margin-bottom: 30px;
}

@media (max-width: 991.98px) {
  .instructor__item-two {
    padding: 0 35px 0 25px;
  }
}
@media (max-width: 767.98px) {
  .instructor__item-two {
    min-height: auto;
    padding: 30px;
  }
}
.instructor__item-two:hover .instructor__thumb-two .shape-one {
  color: var(--tg-theme-primary);
}

.instructor__item-three {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

@media (max-width: 767.98px) {
  .instructor__item-three {
    flex-wrap: wrap;
  }
}
.instructor__item-four {
  margin-bottom: 30px;
  text-align: center;
}

.instructor__item-four:hover .instructor__thumb-four {
  transform: translateY(-5px);
}

.instructor__item-five {
  margin-bottom: 30px;
}

.instructor__item-five:hover .instructor__social-two .list-wrap {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.instructor__thumb {
  position: relative;
  width: 186px;
  flex: 0 0 auto;
}

@media (max-width: 991.98px) {
  .instructor__thumb {
    margin: 0 auto 20px;
  }
}
.instructor__thumb::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  background: linear-gradient(156deg, #F7F6F9 10.62%, #E9F5F5 90.16%);
  border-radius: 50%;
  z-index: -1;
}

.instructor__thumb-two {
  width: auto;
  flex: 0 0 auto;
  margin-top: auto;
}

@media (max-width: 767.98px) {
  .instructor__thumb-two {
    display: none;
  }
}
.instructor__thumb-two .shape-one {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  color: var(--tg-theme-secondary);
  transition: all 0.3s ease-out 0s;
}

.instructor__thumb-two .shape-two {
  position: absolute;
  left: 34px;
  top: 5px;
  z-index: -1;
  width: 40px;
  height: 48px;
}

.instructor__thumb-two .shape-two .svg-icon {
  width: 100%;
  height: 100%;
  display: block;
}

.instructor__thumb-two .shape-two .svg-icon path {
  stroke: var(--tg-theme-secondary);
}

.instructor__thumb-three {
  width: 50%;
  flex: 0 0 auto;
  text-align: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 453px;
}

@media (max-width: 767.98px) {
  .instructor__thumb-three {
    width: 100%;
  }
}
.instructor__thumb-three .shape-one {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: -1;
  color: var(--tg-theme-secondary);
}

@media (max-width: 991.98px) {
  .instructor__thumb-three .shape-one {
    width: 100%;
  }
  .instructor__thumb-three .shape-one svg {
    width: 100%;
    height: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .instructor__thumb-three .shape-one {
    width: 400px;
  }
}
.instructor__thumb-four {
  overflow: hidden;
  border-radius: 1000px;
  margin-bottom: 25px;
  transition: 0.3s ease-in-out;
}

@media (max-width: 767.98px) {
  .instructor__thumb-four img {
    width: 100%;
  }
}
.instructor__thumb-five {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 20px;
}

.instructor__thumb-five img {
  width: 100%;
}

.instructor__content .title {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 600;
}

.instructor__content .designation {
  display: block;
  color: var(--tg-theme-primary);
  font-family: var(--tg-heading-font-family);
  line-height: 1.2;
  margin-bottom: 12px;
}

.instructor__content .avg-rating {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: var(--tg-common-color-gray-3);
  gap: 5px;
  margin-bottom: 15px;
  line-height: 1.2;
}

@media (max-width: 991.98px) {
  .instructor__content .avg-rating {
    justify-content: center;
  }
}
.instructor__content .avg-rating i {
  color: var(--tg-common-color-yellow);
}

.instructor__content-two .title {
  margin-bottom: 5px;
  font-size: 28px;
}

@media (max-width: 1199.98px) {
  .instructor__content-two .title {
    font-size: 26px;
  }
}
@media (max-width: 767.98px) {
  .instructor__content-two .title {
    font-size: 24px;
  }
}
.instructor__content-two p {
  margin-bottom: 20px;
}

.instructor__content-three {
  margin-left: 40px;
  margin-top: 40px;
}

@media (max-width: 767.98px) {
  .instructor__content-three {
    margin-left: 0;
  }
}
.instructor__content-three .ratting {
  display: flex;
  align-items: center;
  color: var(--tg-common-color-yellow);
  gap: 3px;
  line-height: 1;
  font-size: 15px;
}

.instructor__content-three .ratting-wrap {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--tg-common-color-gray-3);
  border-radius: 35px;
  background: var(--tg-common-color-white);
  padding: 7px 10px;
  gap: 8px;
  margin-bottom: 20px;
}

.instructor__content-three .ratting-wrap span {
  font-size: 14px;
  color: var(--tg-common-color-gray-3);
  line-height: 1;
}

.instructor__content-three .title {
  margin-bottom: 10px;
  font-size: 24px;
}

.instructor__content-three .designation {
  display: block;
  line-height: 1;
  font-size: 18px;
  font-weight: 400;
  color: var(--tg-theme-primary);
  font-family: var(--tg-heading-font-family);
  margin-bottom: 15px;
}

.instructor__content-three p {
  margin-bottom: 22px;
  width: 80%;
}

@media (max-width: 991.98px) {
  .instructor__content-three p {
    width: 100%;
  }
}
.instructor__content-three .instructor__social {
  margin-bottom: 35px;
}

@media (max-width: 991.98px) {
  .instructor__content-three .instructor__social .list-wrap {
    justify-content: flex-start;
  }
}
.instructor__content-three .instructor__social .list-wrap li a {
  width: 50px;
  height: 50px;
  font-size: 20px;
}

.instructor__content-four .title {
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 600;
  text-transform: capitalize;
}

@media (max-width: 1199.98px) {
  .instructor__content-four .title {
    font-size: 22px;
  }
}
.instructor__content-four span {
  display: block;
  line-height: 1.2;
}

.instructor__content-five {
  text-align: center;
}

.instructor__content-five .title {
  margin-bottom: 6px;
  font-weight: 700;
  font-size: 24px;
  text-transform: capitalize;
}

.instructor__content-five span {
  display: block;
  line-height: 1;
  color: var(--tg-body-color);
  text-transform: capitalize;
}

.instructor__social .list-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 991.98px) {
  .instructor__social .list-wrap {
    justify-content: center;
  }
}
.instructor__social .list-wrap li a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.835px solid #9292B4;
  background: var(--tg-common-color-white);
  border-radius: 50%;
  box-shadow: 2.50435px 3.33913px 0px 0px rgba(0, 0, 0, 0.25);
  font-size: 18px;
  color: var(--tg-common-color-gray-3);
}

.instructor__social .list-wrap li a:hover {
  background: var(--tg-theme-primary);
  box-shadow: none;
  border-color: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
}

.instructor__social-two .list-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--tg-theme-primary);
  border-radius: 30px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  justify-content: center;
  padding: 22px 10px;
  transition: all 0.3s ease-out 0s;
  transform: translateY(100px);
  visibility: hidden;
  opacity: 0;
}

.instructor__social-two .list-wrap li {
  line-height: 1;
}

.instructor__social-two .list-wrap li a {
  font-size: 22px;
  color: var(--tg-common-color-white);
}

.instructor__social-two .list-wrap li a:hover {
  color: var(--tg-theme-secondary);
}

.instructor-nav .swiper-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 767.98px) {
  .instructor-nav .swiper-wrapper {
    gap: 15px;
  }
}
.instructor-nav .swiper-wrapper button {
  border: none;
  background: transparent;
  padding: 0;
  border-radius: 50%;
  position: relative;
  width: 100px;
  height: 100px;
  background: #D9D9D9;
  border: 2px solid #ABABAB;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  filter: grayscale(1);
  line-height: 1;
}

@media (max-width: 767.98px) {
  .instructor-nav .swiper-wrapper button {
    width: 80px;
    height: 80px;
    align-items: flex-end;
  }
  .instructor-nav .swiper-wrapper button img {
    max-width: 80%;
  }
}
.instructor-nav .swiper-wrapper .swiper-slide {
  width: auto !important;
}

.instructor-nav .swiper-slide-thumb-active button {
  filter: grayscale(0);
  background: var(--tg-common-color-white);
  border-color: var(--tg-theme-primary);
}

.instructor-active {
  overflow: hidden;
}

.instructor-slider-dot {
  text-align: center;
  border-radius: 100px;
  border: 1px solid #D0D0D0;
  background: var(--tg-common-color-white);
  padding: 40px 120px;
  margin: 0 25px;
  position: relative;
  height: 190px;
}

@media (max-width: 1500px) {
  .instructor-slider-dot {
    margin: 0 0;
  }
}
@media (max-width: 1199.98px) {
  .instructor-slider-dot {
    padding: 40px 85px;
  }
}
@media (max-width: 767.98px) {
  .instructor-slider-dot {
    padding: 15px 20px;
    border-radius: 30px;
    height: auto;
  }
  .instructor-slider-dot .swiper-horizontal {
    line-height: 1;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .instructor-slider-dot {
    padding: 40px 75px;
  }
}
@media (max-width: 767.98px) {
  .instructor__nav-two {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .instructor__nav-two {
    display: block;
  }
}
.instructor__nav-two .instructor-button-next, .instructor__nav-two .instructor-button-prev {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tg-theme-secondary);
  border: 2px solid #333;
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--tg-common-color-black);
  -ms-box-shadow: 2px 4px 0px 0px #382900;
  -o-box-shadow: 2px 4px 0px 0px #382900;
  box-shadow: 2px 4px 0px 0px #382900;
  border-radius: 50%;
  transition: all 0.3s ease-out 0s;
}

@media (max-width: 1199.98px) {
  .instructor__nav-two .instructor-button-next, .instructor__nav-two .instructor-button-prev {
    left: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .instructor__nav-two .instructor-button-next, .instructor__nav-two .instructor-button-prev {
    right: 15px;
  }
}
.instructor__nav-two .instructor-button-next i, .instructor__nav-two .instructor-button-prev i {
  transform: rotate(180deg);
}

.instructor__nav-two .instructor-button-next:hover, .instructor__nav-two .instructor-button-prev:hover {
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}

.instructor__nav-two .instructor-button-next {
  left: auto;
  right: 40px;
}

@media (max-width: 1199.98px) {
  .instructor__nav-two .instructor-button-next {
    right: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .instructor__nav-two .instructor-button-next {
    right: 15px;
  }
}
.instructor__nav-two .instructor-button-next i {
  transform: rotate(0);
}

.instructor__shape img {
  position: absolute;
  right: 24%;
  top: 40%;
  z-index: -1;
}

@media (max-width: 1500px) {
  .instructor__shape img {
    right: 17%;
  }
}
@media (max-width: 1199.98px) {
  .instructor__shape img {
    right: 10%;
  }
}
@media (max-width: 991.98px) {
  .instructor__shape img {
    right: 4%;
    width: 100px;
    top: 32%;
  }
}
.instructor__shape-two img {
  position: absolute;
  z-index: -1;
}

.instructor__shape-two img:nth-child(1) {
  top: 4%;
  left: 5%;
  max-width: 65px;
  animation-duration: 30s;
}

@media (max-width: 991.98px) {
  .instructor__shape-two img:nth-child(1) {
    top: 1%;
    left: 3%;
    max-width: 55px;
  }
}
@media (max-width: 767.98px) {
  .instructor__shape-two img:nth-child(1) {
    top: 0%;
    max-width: 45px;
  }
}
.instructor__shape-two img:nth-child(2) {
  right: 3%;
  bottom: 27%;
  max-width: 104px;
}

@media (max-width: 1800px) {
  .instructor__shape-two img:nth-child(2) {
    bottom: 10%;
  }
}
@media (max-width: 991.98px) {
  .instructor__shape-two img:nth-child(2) {
    bottom: 5%;
    max-width: 85px;
  }
}
@media (max-width: 767.98px) {
  .instructor__shape-two img:nth-child(2) {
    bottom: 3%;
    max-width: 70px;
  }
}
.instructor__details-info {
  background: var(--tg-common-color-dark);
  border-radius: 10px;
  padding: 50px 50px;
  display: flex;
  align-items: center;
  gap: 45px;
  margin-bottom: 30px;
}

@media (max-width: 991.98px) {
  .instructor__details-info {
    padding: 35px 30px;
    gap: 25px;
  }
}
@media (max-width: 767.98px) {
  .instructor__details-info {
    padding: 25px 25px;
    flex-direction: column;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .instructor__details-info {
    padding: 35px 30px;
  }
}
.instructor__details-thumb {
  width: 250px;
  flex: 0 0 auto;
}

.instructor__details-thumb img {
  border-radius: 50%;
}

.instructor__details-content .title {
  margin-bottom: 8px;
  font-size: 24px;
  color: var(--tg-common-color-white);
}

.instructor__details-content .designation {
  display: block;
  font-size: 16px;
  color: var(--tg-common-color-white);
  font-family: var(--tg-heading-font-family);
  line-height: 1;
  margin-bottom: 22px;
}

.instructor__details-content > .list-wrap {
  display: flex;
  align-items: center;
  gap: 15px 30px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.instructor__details-content > .list-wrap > li {
  color: #EFEEFE;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
  position: relative;
}

.instructor__details-content > .list-wrap > li::before {
  content: "";
  position: absolute;
  right: -17px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--tg-common-color-white);
}

.instructor__details-content > .list-wrap > li:last-child::before {
  display: none;
}

.instructor__details-content > .list-wrap > li i {
  font-size: 20px;
  line-height: 1;
}

.instructor__details-content > .list-wrap > li a {
  color: #EFEEFE;
}

.instructor__details-content > .list-wrap > li a:hover {
  color: var(--tg-theme-secondary);
}

.instructor__details-content > .list-wrap > li.avg-rating {
  font-size: 14px;
  gap: 5px;
}

.instructor__details-content > .list-wrap > li.avg-rating i {
  color: var(--tg-common-color-yellow);
  font-size: 14px;
}

.instructor__details-content p {
  margin-bottom: 25px;
  color: var(--tg-common-color-white);
}

.instructor__details-social .list-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.instructor__details-social .list-wrap li a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tg-common-color-white);
  border-radius: 50%;
}

.instructor__details-social .list-wrap li a:hover {
  background: var(--tg-theme-secondary);
  color: var(--tg-heading-color);
}

.instructor__details-biography {
  border-radius: 10px;
  border: 1px solid #DFDFDF;
  background: var(--tg-common-color-white);
  -ms-box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.08);
  -o-box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.08);
  padding: 35px 40px;
  margin-bottom: 30px;
}

@media (max-width: 767.98px) {
  .instructor__details-biography {
    padding: 30px 25px;
  }
}
.instructor__details-biography .title {
  margin-bottom: 14px;
  font-size: 24px;
}

.instructor__details-biography p {
  margin-bottom: 8px;
}

.instructor__details-biography p:last-child {
  margin-bottom: 0;
}

.instructor__details-Skill {
  border-radius: 10px;
  border: 1px solid #DFDFDF;
  background: var(--tg-common-color-white);
  -ms-box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.08);
  -o-box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.08);
  padding: 35px 40px 25px;
  margin-bottom: 45px;
}

@media (max-width: 767.98px) {
  .instructor__details-Skill {
    padding: 30px 25px 15px;
  }
}
.instructor__details-Skill .title {
  margin-bottom: 14px;
  font-size: 24px;
}

.instructor__details-Skill p {
  margin-bottom: 18px;
}

.instructor__details-courses .main-title {
  margin-bottom: 5px;
  font-size: 30px;
}

.instructor__details-courses p {
  margin-bottom: 0;
}

.instructor__details-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

@media (max-width: 767.98px) {
  .instructor__details-nav {
    margin-top: 25px;
    justify-content: flex-start;
  }
}
.instructor__details-nav button {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--tg-common-color-dark);
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
  font-size: 20px;
  -ms-box-shadow: 3.6px 2.4px 0px 0px #23232B;
  -o-box-shadow: 3.6px 2.4px 0px 0px #23232B;
  box-shadow: 3.6px 2.4px 0px 0px #23232B;
}

.instructor__details-nav button.courses-button-prev {
  -ms-box-shadow: -3.6px 2.4px 0px 0px #23232B;
  -o-box-shadow: -3.6px 2.4px 0px 0px #23232B;
  box-shadow: -3.6px 2.4px 0px 0px #23232B;
}

.instructor__details-nav button.courses-button-prev i {
  transform: rotate(180deg);
}

.instructor__details-nav button:hover {
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}

.instructor__progress-wrap .list-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 -28px;
}

@media (max-width: 767.98px) {
  .instructor__progress-wrap .list-wrap {
    margin: 0 -10px;
  }
}
.instructor__progress-wrap .list-wrap li {
  width: 50%;
  flex: 0 0 auto;
  padding: 0 28px;
}

@media (max-width: 767.98px) {
  .instructor__progress-wrap .list-wrap li {
    padding: 0 10px;
    width: 100%;
  }
}
.instructor__sidebar {
  background: var(--tg-common-color-white);
  border: 1px solid #DFDFDF;
  -ms-box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.08);
  -o-box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 30px 25px 35px;
  margin-left: 20px;
}

@media (max-width: 1199.98px) {
  .instructor__sidebar {
    margin-left: 0;
    margin-top: 80px;
  }
}
.instructor__sidebar .title {
  font-size: 20px;
  margin-bottom: 10px;
}

.instructor__sidebar p {
  margin-bottom: 15px;
}

.instructor__sidebar .form-grp {
  margin-bottom: 8px;
}

.instructor__sidebar .form-grp textarea, .instructor__sidebar .form-grp input {
  border: none;
  background: #F4F3F8;
  width: 100%;
  border-radius: 4px;
  font-size: 14px;
  padding: 10px 20px;
  color: var(--tg-heading-color);
  height: 45px;
}

.instructor__sidebar .form-grp textarea::placeholder, .instructor__sidebar .form-grp input::placeholder {
  font-size: 14px;
  color: #6D6C80;
}

.instructor__sidebar .form-grp textarea {
  min-height: 112px;
  max-height: 112px;
}

.instructor__sidebar .btn {
  width: 100%;
  justify-content: center;
  margin-top: 10px;
}

.progress-item {
  margin-bottom: 20px;
}

.progress-item .title {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
}

.progress-item .title span {
  margin-left: auto;
}

.progress-item .progress {
  height: 10px;
  background: #EBEBEB;
  border-radius: 30px;
}

.progress-item .progress .progress-bar {
  border-radius: 30px;
  background-color: var(--tg-theme-secondary);
}

.progress-item-two {
  margin-bottom: 0;
  margin-top: 18px;
}

.progress-item-two .title {
  font-size: 12px;
  letter-spacing: 0.5px;
  opacity: 0.5;
  font-weight: 600;
  margin-bottom: 8px;
}

.progress-item-two .progress {
  height: 6px;
}

.progress-item-two .progress .progress-bar {
  background-color: #3EB75E;
}

/*=============================
    14. CTA
===============================*/
.cta__area {
  position: relative;
  padding: 200px 0;
}

@media (max-width: 1500px) {
  .cta__area {
    padding: 170px 0;
  }
}
@media (max-width: 1199.98px) {
  .cta__area {
    padding: 150px 0;
  }
}
@media (max-width: 767.98px) {
  .cta__area {
    padding: 120px 0;
  }
}
.cta__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  mix-blend-mode: luminosity;
  background-attachment: fixed;
  z-index: -1;
}

.cta__bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--tg-common-color-black-3);
  opacity: 0.5;
  z-index: -1;
}

.cta__bg-two {
  background-size: cover;
  background-position: center;
  padding: 70px 0 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

@media (max-width: 991.98px) {
  .cta__bg-two {
    padding: 70px 0 70px;
  }
}
.cta__bg-three {
  margin: -85px 90px 0;
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  padding: 12px 48px 0;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 1500px) {
  .cta__bg-three {
    margin: -85px 60px 0;
  }
}
@media (max-width: 1199.98px) {
  .cta__bg-three {
    margin: -85px 0 0;
  }
}
@media (max-width: 991.98px) {
  .cta__bg-three {
    padding: 30px 40px;
  }
}
@media (max-width: 767.98px) {
  .cta__bg-three {
    padding: 30px 30px;
  }
}
.cta__inner-wrap {
  background: var(--tg-common-color-blue-2);
  display: flex;
  align-items: center;
  padding: 20px 70px 0;
  border-radius: 15px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  gap: 40px;
  margin-top: -90px;
}

@media (max-width: 1500px) {
  .cta__inner-wrap {
    padding: 20px 50px 0;
  }
}
@media (max-width: 1199.98px) {
  .cta__inner-wrap {
    gap: 25px;
  }
}
@media (max-width: 991.98px) {
  .cta__inner-wrap {
    padding: 35px 50px 35px;
  }
}
@media (max-width: 767.98px) {
  .cta__inner-wrap {
    padding: 35px 30px 35px;
  }
}
.cta__inner-wrap .shape {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.cta__img {
  position: relative;
  text-align: center;
}

@media (max-width: 991.98px) {
  .cta__img {
    display: none;
  }
}
.cta__img .shape img {
  position: absolute;
  left: 19%;
  top: -10%;
  z-index: -1;
  max-width: 247px;
  animation-duration: 100s;
}

@media (max-width: 1199.98px) {
  .cta__img .shape img {
    left: 5%;
    max-width: 230px;
  }
}
.cta__img-two {
  width: 154px;
  flex: 0 0 auto;
  margin-right: 40px;
}

@media (max-width: 991.98px) {
  .cta__img-two {
    display: none;
  }
}
.cta__img-three {
  width: 104px;
  flex: 0 0 auto;
  position: relative;
}

@media (max-width: 991.98px) {
  .cta__img-three {
    display: none;
  }
}
.cta__img-three .svg-icon {
  position: absolute;
  right: 10%;
  top: -5%;
  width: 23px;
  height: auto;
}

.cta__img-three .svg-icon svg {
  color: var(--tg-theme-secondary);
  width: 100%;
  height: 100%;
}

.cta__content {
  text-align: center;
}

.cta__content .title {
  margin-bottom: 12px;
  color: var(--tg-common-color-white);
  text-transform: capitalize;
  font-size: 60px;
  font-weight: 700;
}

@media (max-width: 1199.98px) {
  .cta__content .title {
    font-size: 55px;
  }
}
@media (max-width: 991.98px) {
  .cta__content .title {
    font-size: 50px;
  }
}
@media (max-width: 767.98px) {
  .cta__content .title {
    font-size: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .cta__content .title {
    font-size: 42px;
  }
}
.cta__content p {
  margin-bottom: 25px;
  font-size: 24px;
  font-weight: 400;
  color: var(--tg-common-color-white);
  text-transform: capitalize;
  font-family: var(--tg-heading-font-family);
  line-height: 1.2;
}

@media (max-width: 991.98px) {
  .cta__content p {
    font-size: 20px;
  }
}
.cta__content .btn {
  box-shadow: none;
  background: var(--tg-theme-secondary);
  color: var(--tg-heading-color);
}

.cta__content .btn svg {
  color: var(--tg-heading-color);
}

.cta__content-two {
  display: flex;
  align-items: center;
  gap: 20px 110px;
  margin-top: 60px;
}

@media (max-width: 1500px) {
  .cta__content-two {
    gap: 20px 70px;
  }
}
@media (max-width: 1199.98px) {
  .cta__content-two {
    gap: 20px 30px;
  }
}
@media (max-width: 991.98px) {
  .cta__content-two {
    flex-direction: column;
    margin-top: 0;
    text-align: center;
  }
}
.cta__content-two .title {
  margin-bottom: 0;
  color: var(--tg-common-color-white);
  font-weight: 400;
  text-transform: capitalize;
  font-size: 36px;
}

@media (max-width: 1199.98px) {
  .cta__content-two .title {
    font-size: 30px;
  }
}
@media (max-width: 991.98px) {
  .cta__content-two .title {
    font-size: 36px;
  }
}
@media (max-width: 767.98px) {
  .cta__content-two .title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .cta__content-two .title {
    font-size: 34px;
  }
}
.cta__content-two .title span {
  font-weight: 700;
  color: var(--tg-theme-secondary);
}

.cta__content-three {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-grow: 1;
  justify-content: space-between;
}

@media (max-width: 991.98px) {
  .cta__content-three {
    flex-direction: column;
    text-align: center;
  }
}
.cta__content-three .content__left .title {
  margin-bottom: 0;
  color: var(--tg-common-color-white);
  font-size: 28px;
  text-transform: capitalize;
  font-weight: 600;
}

.cta__content-three .content__left p {
  margin-bottom: 0;
  color: var(--tg-common-color-white);
  font-weight: 500;
  text-transform: capitalize;
}

.cta__content-three .btn {
  border-radius: 6px;
  box-shadow: none;
  background: var(--tg-theme-secondary);
  color: var(--tg-heading-color);
  padding: 16px 19px;
  width: 168px;
  flex: 0 0 auto;
}

.cta__content-three .btn svg {
  color: var(--tg-heading-color);
}

.cta__content-four {
  margin-top: -20px;
}

@media (max-width: 991.98px) {
  .cta__content-four {
    margin-top: 0;
  }
}
.cta__content-four .content__left .title {
  font-size: 30px;
  margin-bottom: 5px;
}

.cta__content-four .btn {
  background: var(--tg-common-color-white);
}

.cta__btn {
  width: 30%;
  flex: 0 0 auto;
}

@media (max-width: 1199.98px) {
  .cta__btn {
    width: auto;
    flex-grow: 1;
  }
}
.cta__btn .btn {
  background: var(--tg-common-color-white);
  color: var(--tg-heading-color);
  box-shadow: 4px 6px 0 0 #0f0d32;
}

.cta__btn .btn:hover {
  background: var(--tg-theme-secondary);
  box-shadow: none;
}

.cta__shape img {
  position: absolute;
  right: 6%;
  top: 0;
  z-index: -1;
  max-width: 382px;
}

@media (max-width: 991.98px) {
  .cta__shape img {
    right: 0;
  }
}
@media (max-width: 767.98px) {
  .cta__shape img {
    display: none;
  }
}
.cta__shape-two img {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
}

/*=============================
    15. Fact
===============================*/
.fact__bg {
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 130px 0;
  z-index: 1;
}

@media (max-width: 991.98px) {
  .fact__bg {
    padding: 130px 0 100px;
  }
}
@media (max-width: 767.98px) {
  .fact__bg {
    padding: 100px 0 70px;
  }
}
.fact__inner-wrap {
  background: var(--tg-common-color-blue-2);
  padding: 94px 70px 64px;
  border-radius: 40px;
  -ms-box-shadow: 0px 25px 70px 0px rgba(40, 37, 104, 0.4);
  -o-box-shadow: 0px 25px 70px 0px rgba(40, 37, 104, 0.4);
  box-shadow: 0px 25px 70px 0px rgba(40, 37, 104, 0.4);
  z-index: 3;
  position: relative;
}

@media (max-width: 1199.98px) {
  .fact__inner-wrap {
    padding: 60px 40px 30px;
  }
}
@media (max-width: 767.98px) {
  .fact__inner-wrap {
    padding: 50px 25px 20px;
  }
}
.fact__inner-wrap .row [class*=col-]:last-child .fact__item::before {
  display: none;
}

.fact__inner-wrap-two {
  background: var(--tg-common-color-blue-2);
  border-radius: 20px;
  padding: 85px 380px 60px 85px;
  display: flex;
  align-items: center;
  gap: 75px;
  position: relative;
  z-index: 3;
  overflow: hidden;
}

@media (max-width: 1500px) {
  .fact__inner-wrap-two {
    padding: 85px 360px 60px 70px;
    gap: 50px;
  }
}
@media (max-width: 1199.98px) {
  .fact__inner-wrap-two {
    padding: 70px 50px 50px 50px;
  }
}
@media (max-width: 991.98px) {
  .fact__inner-wrap-two {
    padding: 60px 40px 30px 40px;
    flex-wrap: wrap;
    gap: 0;
    justify-content: center;
  }
}
@media (max-width: 767.98px) {
  .fact__inner-wrap-two {
    padding: 60px 30px 30px 30px;
  }
}
.fact__inner-wrap-two .section__title {
  width: 46%;
  flex: 0 0 auto;
}

@media (max-width: 1199.98px) {
  .fact__inner-wrap-two .section__title {
    width: 100%;
    text-align: center;
  }
}
.fact__content-wrap {
  width: 80%;
}

@media (max-width: 1500px) {
  .fact__content-wrap {
    width: 88%;
  }
}
@media (max-width: 1199.98px) {
  .fact__content-wrap {
    width: 100%;
  }
}
@media (max-width: 991.98px) {
  .fact__content-wrap {
    text-align: center;
    margin-bottom: 50px;
  }
}
.fact__content-wrap .title {
  margin-bottom: 15px;
  font-size: 48px;
  text-transform: capitalize;
  font-weight: 700;
}

@media (max-width: 1199.98px) {
  .fact__content-wrap .title {
    font-size: 42px;
  }
}
@media (max-width: 767.98px) {
  .fact__content-wrap .title {
    font-size: 38px;
  }
}
.fact__content-wrap .title span {
  position: relative;
  display: inline-block;
}

.fact__content-wrap .title span::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 16px;
  background: var(--tg-theme-secondary);
  z-index: -1;
}

.fact__content-wrap p {
  margin-bottom: 20px;
  font-size: 18px;
}

.fact__item {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.fact__item::before {
  content: "";
  position: absolute;
  right: -15px;
  top: -10%;
  width: 2px;
  height: 108px;
  border-radius: 2px;
  background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0) 100%);
}

@media (max-width: 991.98px) {
  .fact__item::before {
    display: none;
  }
}
.fact__item .count {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tg-common-color-white);
  font-size: 56px;
  line-height: 0.84;
  font-family: var(--tg-body-font-family);
}

@media (max-width: 1199.98px) {
  .fact__item .count {
    font-size: 48px;
  }
}
@media (max-width: 767.98px) {
  .fact__item .count {
    font-size: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .fact__item .count {
    font-size: 36px;
  }
}
.fact__item p {
  margin-bottom: 0;
  font-weight: 500;
  color: var(--tg-common-color-white);
  line-height: 1.2;
}

.fact__item-wrap {
  display: flex;
  gap: 120px;
}

@media (max-width: 991.98px) {
  .fact__item-wrap {
    gap: 60px;
  }
}
@media (max-width: 767.98px) {
  .fact__item-wrap {
    gap: 30px;
  }
}
.fact__item-wrap .fact__item::before {
  right: -60px;
  top: -9%;
}

@media (max-width: 991.98px) {
  .fact__item-wrap .fact__item::before {
    display: none;
  }
}
.fact__item-wrap .fact__item:last-child::before {
  display: none;
}

.fact__item-two {
  background: var(--tg-common-color-white);
  box-shadow: 0 0 30px 0 #f0f0f0;
  border: 1px solid #e3e3e3;
  border-radius: 15px;
  padding: 73px 20px;
}

@media (max-width: 1500px) {
  .fact__item-two {
    padding: 60px 20px;
  }
}
@media (max-width: 1199.98px) {
  .fact__item-two {
    padding: 40px 20px;
  }
}
.fact__item-two .count {
  color: var(--tg-theme-primary);
  font-size: 70px;
  line-height: 0.8;
  font-weight: 700;
  display: flex;
  align-items: center;
  font-family: var(--tg-heading-font-family);
}

@media (max-width: 1199.98px) {
  .fact__item-two .count {
    font-size: 48px;
  }
}
.fact__item-two p {
  color: var(--tg-body-color);
  font-weight: 400;
}

.fact__img-wrap {
  position: absolute;
  right: 0;
  bottom: 0;
}

@media (max-width: 1199.98px) {
  .fact__img-wrap {
    display: none;
  }
}
.fact__img-wrap img {
  right: 30px;
  position: relative;
}

.fact__img-wrap .shape-one {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.fact__img-wrap .shape-two .svg-icon {
  width: 40px;
  height: 40px;
  position: absolute;
  left: -7px;
  top: -22px;
  z-index: -1;
}

.fact__img-wrap .shape-two .svg-icon svg {
  width: 100%;
  height: 100%;
}

.fact__shape-wrap img {
  position: absolute;
  z-index: -1;
}

.fact__shape-wrap img:nth-child(1) {
  bottom: 16%;
  left: 35%;
}

@media (max-width: 991.98px) {
  .fact__shape-wrap img:nth-child(1) {
    bottom: 4%;
    left: 15%;
  }
}
@media (max-width: 767.98px) {
  .fact__shape-wrap img:nth-child(1) {
    bottom: 1%;
    left: 9%;
    width: 50px;
  }
}
.fact__shape-wrap img:nth-child(2) {
  right: 9%;
  top: 13%;
  animation-duration: 15s;
}

@media (max-width: 1500px) {
  .fact__shape-wrap img:nth-child(2) {
    right: 3%;
    top: 12%;
  }
}
@media (max-width: 767.98px) {
  .fact__shape-wrap img:nth-child(2) {
    right: 3%;
    top: 2%;
  }
}
/*=============================
    15. Features
===============================*/
.features__area {
  background: var(--tg-common-color-blue-2);
  padding: 120px 0 90px;
}

@media (max-width: 767.98px) {
  .features__area {
    padding: 100px 0 70px;
  }
}
.features__area-three {
  background: var(--tg-common-color-gray);
}

.features__area-four {
  margin-top: -65px;
}

.features__area-six {
  position: relative;
  z-index: 1;
}

.features__area-eight {
  background: var(--tg-heading-color);
  padding: 65px 0 35px;
}

.features__bg {
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}

.features__item {
  text-align: center;
  margin-bottom: 30px;
}

.features__item:hover .features__icon {
  transform: translateY(5px);
}

.features__item-two {
  border-radius: 20px;
  border: 1px solid #C9E4E9;
  background: #F1FDFF;
  box-shadow: 8px 8px 0px 0px #C9E4E9;
  padding: 40px 40px 40px 50px;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  transition: all 0.3s ease-out 0s;
}

@media (max-width: 1199.98px) {
  .features__item-two {
    padding: 30px 25px 30px 25px;
  }
}
.features__item-two:hover {
  box-shadow: none !important;
}

.features__item-two:hover .features__item-shape {
  color: #1BCBE3;
}

.features__item-three {
  border: 1px solid var(--tg-border-3);
  border-radius: 15px;
  background: var(--tg-common-color-white);
  text-align: center;
  padding: 40px 35px 40px;
  transition: all 0.3s ease-out 0s;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}

@media (max-width: 1500px) {
  .features__item-three {
    padding: 40px 25px 40px;
  }
}
@media (max-width: 1199.98px) {
  .features__item-three {
    padding: 30px 20px 30px;
  }
}
@media (max-width: 767.98px) {
  .features__item-three {
    padding: 30px 30px 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .features__item-three {
    padding: 30px 20px 30px;
  }
}
.features__item-three:hover {
  transform: translateY(-3px);
}

.features__item-three:hover .features__icon-three {
  transform: rotateY(180deg);
}

.features__item-four {
  text-align: center;
  margin-bottom: 30px;
}

.features__item-four:hover .features__icon-four {
  transform: translateY(5px);
}

.features__item-five {
  position: relative;
  z-index: 1;
  padding: 45px 60px 55px;
  text-align: center;
  margin-bottom: 30px;
}

@media (max-width: 1500px) {
  .features__item-five {
    padding: 45px 50px 55px;
  }
}
.features__item-five-shape .shape-one {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.features__item-five-shape .shape-one svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  display: block;
  position: absolute;
}

.features__item-five-shape .shape-one svg path:nth-child(1) {
  color: #4741CF;
}

.features__item-five-shape .shape-one svg path:nth-child(2) {
  color: var(--tg-theme-primary);
}

.features__item-five-shape .shape-two {
  position: absolute;
  left: 10px;
  top: 5px;
  right: 10px;
  bottom: 15px;
  z-index: -1;
}

.features__item-five-shape .shape-two svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  display: block;
  position: absolute;
  color: var(--tg-common-color-white);
  transition: all 0.2s ease-out 0s;
}

.features__item-five-shape .shape-two svg .animation-dashed {
  animation: animation__shape 0.5s infinite linear;
  animation-play-state: paused;
}

.features__item-five:hover .shape-two svg .animation-dashed {
  animation-play-state: running;
}

.features__item-six {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
}

.features__item-six:hover .features__icon-six {
  transform: rotateY(180deg);
}

.features__item-shape {
  position: absolute;
  right: 28px;
  top: 21px;
  z-index: -1;
  transition: all 0.3s ease-out 0s;
  color: rgba(39, 39, 47, 0.2);
}

.features__item-wrap .row [class*=col-]:nth-child(2) .features__item-two {
  border: 1px solid #C8C1ED;
  background: #EDEAFF;
  box-shadow: 8px 8px 0px 0px #D9D5F1;
}

.features__item-wrap .row [class*=col-]:nth-child(2) .features__item-two .features__icon-two {
  background: #5751E1;
}

.features__item-wrap .row [class*=col-]:nth-child(2) .features__item-two:hover .features__item-shape {
  color: #5751E1;
}

.features__item-wrap .row [class*=col-]:nth-child(3) .features__item-two {
  border: 1px solid #EBE0C4;
  background: #FFF7E2;
  box-shadow: 8px 8px 0px 0px #E5DECB;
}

.features__item-wrap .row [class*=col-]:nth-child(3) .features__item-two .features__icon-two {
  background: #FFC224;
}

.features__item-wrap .row [class*=col-]:nth-child(3) .features__item-two:hover .features__item-shape {
  color: #FFC224;
}

.features__item-wrap-two .row [class*=col-]:nth-child(2) .features__icon-three {
  color: var(--tg-theme-primary);
}

.features__item-wrap-two .row [class*=col-]:nth-child(3) .features__icon-three {
  color: var(--tg-common-color-pink);
}

.features__item-wrap-two .row [class*=col-]:nth-child(4) .features__icon-three {
  color: var(--tg-common-color-cyan);
}

.features__item-wrap-three .row [class*=col-]:nth-child(2) .features__item-five-shape .shape-one svg path:nth-child(1) {
  color: #DA9D00;
}

.features__item-wrap-three .row [class*=col-]:nth-child(2) .features__item-five-shape .shape-one svg path:nth-child(2) {
  color: #F3B107;
}

.features__item-wrap-three .row [class*=col-]:nth-child(3) .features__item-five-shape .shape-one svg path:nth-child(1) {
  color: #BE76B5;
}

.features__item-wrap-three .row [class*=col-]:nth-child(3) .features__item-five-shape .shape-one svg path:nth-child(2) {
  color: #D78BCD;
}

.features__item-wrap-three .row [class*=col-]:nth-child(4) .features__item-five-shape .shape-one svg path:nth-child(1) {
  color: #5EAC1F;
}

.features__item-wrap-three .row [class*=col-]:nth-child(4) .features__item-five-shape .shape-one svg path:nth-child(2) {
  color: #75C137;
}

.features__item-wrap-four {
  border: 1px solid #e3e3ef;
  background: var(--tg-common-color-white);
  border-radius: 25px;
  padding: 70px 70px 40px 70px;
  margin-top: -100px;
  position: relative;
  z-index: 2;
}

@media (max-width: 1199.98px) {
  .features__item-wrap-four {
    padding: 70px 40px 40px 40px;
  }
}
@media (max-width: 767.98px) {
  .features__item-wrap-four {
    padding: 40px 40px 10px 40px;
  }
}
.features__icon {
  margin-bottom: 22px;
  min-height: 93px;
  transition: all 0.3s ease-out 0s;
}

.features__icon-two {
  width: 70px;
  height: 70px;
  flex: 0 0 auto;
  color: var(--tg-common-color-white);
  background: #1BCBE3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features__icon-three {
  color: var(--tg-theme-secondary);
  margin-bottom: 25px;
  min-height: 50px;
  transition: all 0.5s ease-out 0s;
}

.features__icon-four {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tg-theme-secondary);
  color: var(--tg-common-color-black-3);
  margin: 0 auto 30px;
  border-radius: 25px;
  transition: all 0.3s ease-out 0s;
}

.features__icon-five {
  position: relative;
  color: var(--tg-common-color-white);
  line-height: 0;
  font-size: 60px;
  display: inline-block;
  margin-bottom: 15px;
}

.features__icon-five svg {
  position: absolute;
  right: -13px;
  top: -8px;
  color: var(--tg-common-color-white);
}

.features__icon-six {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: #efeff3;
  border-radius: 50%;
  font-size: 35px;
  color: var(--tg-heading-color);
  transition: all 0.3s ease-out 0s;
}

.features__icon-seven {
  background: #28254e;
  color: var(--tg-theme-secondary);
}

.features__content .title {
  color: var(--tg-common-color-white);
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: var(--tg-fw-semi-bold);
}

.features__content p {
  margin-bottom: 0;
  color: var(--tg-common-color-gray-4);
}

.features__content-two .content-top {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
}

.features__content-two .title {
  margin-bottom: 0;
  font-size: 22px;
}

.features__content-two p {
  margin-bottom: 0;
  color: var(--tg-common-color-dark);
  text-transform: capitalize;
}

.features__content-three .title {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
}

.features__content-three p {
  margin-bottom: 0;
  line-height: 1.62;
}

.features__content-four .title {
  margin-bottom: 15px;
  color: var(--tg-common-color-white);
  font-size: 22px;
}

.features__content-four p {
  margin-bottom: 0;
  color: #bcbad8;
  font-weight: 500;
}

.features__content-five .title {
  color: var(--tg-common-color-white);
  margin-bottom: 10px;
  font-size: 20px;
  text-transform: capitalize;
}

.features__content-five p {
  margin-bottom: 20px;
  color: var(--tg-common-color-white);
  font-weight: 400;
  text-transform: capitalize;
  line-height: 1.5;
}

.features__content-five .btn {
  background: var(--tg-common-color-white);
  color: var(--tg-heading-color);
  box-shadow: none;
}

.features__content-five .btn svg {
  color: var(--tg-heading-color);
}

.features__content-six .title {
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
}

.features__content-six span {
  display: block;
  line-height: 1.2;
  font-family: var(--tg-heading-font-family);
}

.features__content-seven .title {
  color: var(--tg-common-color-white);
}

.features__content-seven span {
  color: #bab8e5;
}

.features__shape-wrap img {
  position: absolute;
  z-index: -1;
}

.features__shape-wrap img:nth-child(1) {
  left: 0;
  top: 21%;
}

@media (max-width: 991.98px) {
  .features__shape-wrap img:nth-child(1) {
    top: 30%;
  }
}
@media (max-width: 767.98px) {
  .features__shape-wrap img:nth-child(1) {
    display: none;
  }
}
.features__shape-wrap img:nth-child(2) {
  right: 0;
  top: 21%;
}

@media (max-width: 991.98px) {
  .features__shape-wrap img:nth-child(2) {
    top: 30%;
  }
}
@media (max-width: 767.98px) {
  .features__shape-wrap img:nth-child(2) {
    display: none;
  }
}
.features__shape-wrap-two img {
  position: absolute;
  z-index: -1;
}

.features__shape-wrap-two img:nth-child(1) {
  left: 11%;
  top: 13%;
  max-width: 65px;
  animation-duration: 30s;
}

@media (max-width: 767.98px) {
  .features__shape-wrap-two img:nth-child(1) {
    display: none;
  }
}
.features__shape-wrap-two img:nth-child(2) {
  right: 10%;
  top: 24%;
  max-width: 113px;
}

/*=============================
    16. Events
===============================*/
.event__area {
  position: relative;
  z-index: 1;
}

.event__area::before {
  content: "";
  position: absolute;
  right: 18%;
  top: 50%;
  transform: translateY(-50%);
  width: 790px;
  height: 430px;
  background: #F2F4F6;
  border-radius: 80px;
  z-index: -1;
}

@media (max-width: 1199.98px) {
  .event__area::before {
    right: 10%;
  }
}
@media (max-width: 991.98px) {
  .event__area::before {
    display: none;
  }
}
.event__area-three {
  position: relative;
  z-index: 1;
}

.event__area-three::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  background: var(--tg-common-color-blue-2);
  width: 100%;
  height: 58%;
  z-index: -1;
}

@media (max-width: 991.98px) {
  .event__area-three .section__title {
    margin-bottom: 25px;
    text-align: center;
  }
}
@media (max-width: 991.98px) {
  .event__area-three .section__content {
    text-align: center;
  }
}
.event__area-four {
  position: relative;
  padding: 140px 0 100px;
  overflow: hidden;
}

@media (max-width: 767.98px) {
  .event__area-four {
    padding: 100px 0 60px;
  }
}
.event__inner-wrap .row .col-30 {
  width: 30%;
  flex: 0 0 auto;
}

@media (max-width: 1199.98px) {
  .event__inner-wrap .row .col-30 {
    width: 100%;
  }
}
.event__inner-wrap .row .col-70 {
  width: 70%;
  flex: 0 0 auto;
}

@media (max-width: 1199.98px) {
  .event__inner-wrap .row .col-70 {
    width: 100%;
  }
}
.event__content {
  margin-bottom: 30px;
}

@media (max-width: 1199.98px) {
  .event__content {
    text-align: center;
    margin-bottom: 50px;
  }
  .event__content .tg-button-wrap {
    justify-content: center;
  }
}
.event__content p {
  margin-bottom: 25px;
}

.event__content-wrap {
  margin-left: 85px;
}

@media (max-width: 1500px) {
  .event__content-wrap {
    margin-left: 0;
  }
}
@media (max-width: 991.98px) {
  .event__content-wrap {
    text-align: center;
    margin-bottom: 50px;
  }
}
.event__content-wrap .section__title .title {
  font-weight: 700;
}

.event__content-wrap p {
  margin-bottom: 0;
  width: 90%;
}

@media (max-width: 1500px) {
  .event__content-wrap p {
    width: 95%;
  }
}
@media (max-width: 1199.98px) {
  .event__content-wrap p {
    width: 100%;
  }
}
.event__item {
  border: 1px solid #B5B5C3;
  border-radius: 10px;
  padding: 20px 20px 20px 25px;
  background: var(--tg-common-color-white);
  margin-bottom: 30px;
  transition: all 0.3s ease-out 0s;
}

.event__item:hover {
  -ms-box-shadow: 10px 10px 0px #CAC9D6;
  -o-box-shadow: 10px 10px 0px #CAC9D6;
  box-shadow: 10px 10px 0px #CAC9D6;
}

.event__item-thumb {
  border-radius: 6px;
  overflow: hidden;
}

.event__item-thumb img {
  width: 100%;
  height: 212px;
  object-fit: cover;
}

.event__item-content {
  position: relative;
  padding: 30px 0 0;
}

.event__item-content .date {
  font-size: 14px;
  font-weight: 600;
  font-family: var(--tg-heading-font-family);
  color: var(--tg-heading-color);
  background: var(--tg-theme-secondary);
  display: block;
  line-height: 1;
  border: 1px solid var(--tg-heading-color);
  border-radius: 30px;
  padding: 8px 13px;
  position: absolute;
  left: 0;
  top: -20px;
  z-index: 2;
  -ms-box-shadow: 4px 4px 0px 0px #3D3D3D;
  -o-box-shadow: 4px 4px 0px 0px #3D3D3D;
  box-shadow: 4px 4px 0px 0px #3D3D3D;
}

.event__item-content .title {
  font-size: 18px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.event__item-content .title a {
  display: inline;
  background-image: linear-gradient(var(--tg-heading-color), var(--tg-heading-color)), linear-gradient(var(--tg-heading-color), var(--tg-heading-color));
  background-size: 0% 2px, 0 2px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}

.event__item-content .title a:hover {
  color: inherit;
  background-size: 0 2px, 100% 2px;
}

.event__item-content .location {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: var(--tg-body-color);
  gap: 5px;
  line-height: 1;
}

.event__item-content .location i {
  font-size: 18px;
  line-height: 0;
  color: var(--tg-theme-primary);
}

.event__item-content .location:hover {
  color: var(--tg-theme-secondary);
}

.event__item-wrap .row {
  --bs-gutter-x: 20px;
}

.event__item-wrap-two {
  border: 1px solid #e3e3e3;
  background: var(--tg-common-color-white);
  border-radius: 15px;
  padding: 30px 30px 0;
}

@media (max-width: 1199.98px) {
  .event__item-wrap-two {
    padding: 20px 15px 0;
  }
}
@media (max-width: 991.98px) {
  .event__item-wrap-two {
    padding: 30px 30px 0;
  }
}
@media (max-width: 767.98px) {
  .event__item-wrap-two {
    padding: 20px 20px 0;
  }
}
.event__item-wrap-three {
  margin-right: 90px;
}

@media (max-width: 1500px) {
  .event__item-wrap-three {
    margin-right: 0;
  }
}
.event__item-wrap-three .event__item-four:nth-child(even) {
  flex-direction: row-reverse;
  justify-content: space-between;
}

@media (max-width: 767.98px) {
  .event__item-wrap-three .event__item-four:nth-child(even) {
    flex-direction: column;
  }
}
.event__item-two {
  border: 1px solid #e3e3e3;
  background: var(--tg-common-color-white);
  padding: 30px 30px 48px;
  border-radius: 15px;
  margin-bottom: 30px;
}

@media (max-width: 1199.98px) {
  .event__item-two {
    padding: 20px 20px 48px;
  }
}
@media (max-width: 991.98px) {
  .event__item-two {
    padding: 30px 30px 48px;
  }
}
@media (max-width: 767.98px) {
  .event__item-two {
    padding: 20px 20px 48px;
  }
}
.event__item-three {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}

@media (max-width: 1199.98px) {
  .event__item-three {
    gap: 15px;
  }
}
@media (max-width: 767.98px) {
  .event__item-three {
    gap: 20px;
    flex-direction: column;
  }
}
.event__item-four {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

@media (max-width: 767.98px) {
  .event__item-four {
    flex-direction: column;
  }
}
.event__thumb-two {
  position: relative;
  margin-bottom: 25px;
}

.event__thumb-two img {
  border-radius: 10px;
  width: 100%;
  height: 310px;
  object-fit: cover;
}

.event__thumb-three {
  width: 300px;
  flex: 0 0 auto;
}

@media (max-width: 1199.98px) {
  .event__thumb-three {
    width: 220px;
  }
}
@media (max-width: 767.98px) {
  .event__thumb-three {
    width: 100%;
  }
}
.event__thumb-three img {
  width: 100%;
  min-height: 245px;
  object-fit: cover;
  border-radius: 15px;
}

.event__thumb-four {
  width: 270px;
  flex: 0 0 auto;
}

@media (max-width: 767.98px) {
  .event__thumb-four {
    width: 100%;
  }
}
.event__thumb-four img {
  width: 100%;
  height: 192px;
  object-fit: cover;
  border-radius: 15px;
}

@media (max-width: 767.98px) {
  .event__thumb-four img {
    height: 210px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .event__thumb-four img {
    height: 280px;
  }
}
.event__content-two .title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: capitalize;
}

@media (max-width: 1199.98px) {
  .event__content-two .title {
    font-size: 22px;
  }
}
.event__content-two .title a {
  display: inline;
  background-image: linear-gradient(var(--tg-heading-color), var(--tg-heading-color)), linear-gradient(var(--tg-heading-color), var(--tg-heading-color));
  background-size: 0% 2px, 0 2px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}

.event__content-two .title a:hover {
  color: inherit;
  background-size: 0 2px, 100% 2px;
}

.event__content-two p {
  margin-bottom: 20px;
}

.event__content-three .title {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 600;
}

@media (max-width: 1199.98px) {
  .event__content-three .title {
    font-size: 20px;
  }
}
.event__content-three .title a {
  display: inline;
  background-image: linear-gradient(var(--tg-heading-color), var(--tg-heading-color)), linear-gradient(var(--tg-heading-color), var(--tg-heading-color));
  background-size: 0% 2px, 0 2px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}

.event__content-three .title a:hover {
  color: inherit;
  background-size: 0 2px, 100% 2px;
}

.event__content-three p {
  margin-bottom: 20px;
}

.event__content-four .event__date-two {
  margin-bottom: 18px;
}

.event__content-four .title {
  margin-bottom: 18px;
  font-size: 20px;
}

@media (max-width: 767.98px) {
  .event__content-four .title br {
    display: none;
  }
}
.event__date {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  gap: 8px;
  background: var(--tg-theme-secondary);
  color: var(--tg-heading-color);
  border-radius: 6px;
  padding: 10px 9px;
  line-height: 1;
  position: absolute;
  left: 25px;
  top: 23px;
  z-index: 2;
}

.event__date-two {
  position: inherit;
  margin-bottom: 10px;
}

.event__bottom-content {
  margin-top: 80px;
}

@media (max-width: 1199.98px) {
  .event__bottom-content {
    margin-top: 50px;
  }
}
.event__bottom-content .title {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  justify-content: center;
  gap: 13px;
  font-size: 16px;
  font-weight: 500;
  flex-wrap: wrap;
}

.event__bottom-content .title a {
  display: flex;
  align-items: center;
  color: var(--tg-theme-primary);
  gap: 10px;
  position: relative;
}

.event__bottom-content .title a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.4s cubic-bezier(0.74, 0.72, 0.27, 0.24);
}

.event__bottom-content .title a svg {
  line-height: 0;
  width: 20px;
  transform: translateY(-2px);
}

.event__bottom-content .title a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.event__shape img {
  position: absolute;
  right: 9%;
  bottom: 13%;
  z-index: -1;
}

.event__shape-wrap img {
  position: absolute;
  z-index: -1;
}

.event__shape-wrap img:nth-child(1) {
  left: 0;
  top: 0;
  max-width: 359px;
}

@media (max-width: 1500px) {
  .event__shape-wrap img:nth-child(1) {
    max-width: 250px;
  }
}
.event__shape-wrap img:nth-child(2) {
  right: 8%;
  top: 22%;
}

@media (max-width: 1199.98px) {
  .event__shape-wrap img:nth-child(2) {
    right: 3%;
    top: 13%;
  }
}
.event__shape-two img {
  position: absolute;
  left: 18%;
  top: -215px;
  z-index: -1;
  max-width: 374px;
  animation-duration: 50s;
}

@media (max-width: 1500px) {
  .event__shape-two img {
    left: 11%;
  }
}
@media (max-width: 1199.98px) {
  .event__shape-two img {
    top: -195px;
    max-width: 320px;
  }
}
@media (max-width: 767.98px) {
  .event__shape-two img {
    top: -177px;
    max-width: 240px;
  }
}
.event__details-thumb {
  margin-bottom: 60px;
}

@media (max-width: 767.98px) {
  .event__details-thumb {
    margin-bottom: 30px;
  }
}
.event__details-thumb img {
  border-radius: 15px;
  min-height: 300px;
  object-fit: cover;
}

.event__details-content .title {
  margin-bottom: 15px;
  font-size: 36px;
}

@media (max-width: 1500px) {
  .event__details-content .title {
    font-size: 32px;
  }
}
@media (max-width: 1199.98px) {
  .event__details-content .title {
    font-size: 30px;
  }
}
@media (max-width: 767.98px) {
  .event__details-content .title {
    font-size: 28px;
  }
}
.event__details-content .title-two {
  font-size: 24px;
  margin-bottom: 15px;
}

.event__details-content p {
  margin-bottom: 0;
}

.event__details-content-wrap .row .col-70 {
  width: 70%;
  flex: 0 0 auto;
}

@media (max-width: 1199.98px) {
  .event__details-content-wrap .row .col-70 {
    width: 65%;
  }
}
@media (max-width: 991.98px) {
  .event__details-content-wrap .row .col-70 {
    width: 100%;
  }
}
.event__details-content-wrap .row .col-30 {
  width: 30%;
  flex: 0 0 auto;
}

@media (max-width: 1199.98px) {
  .event__details-content-wrap .row .col-30 {
    width: 35%;
  }
}
@media (max-width: 991.98px) {
  .event__details-content-wrap .row .col-30 {
    width: 100%;
  }
}
.event__details-content-top {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.event__details-content-top .tag {
  font-size: 13px;
  font-weight: 500;
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
  display: block;
  padding: 8px 12px;
  border-radius: 30px;
  line-height: 1;
}

.event__details-content-top .tag:hover {
  background: var(--tg-theme-secondary);
  color: var(--tg-heading-color);
}

.event__details-content-top .avg-rating {
  display: flex;
  align-items: center;
  font-size: 14px;
  gap: 5px;
  color: var(--tg-common-color-gray-3);
}

.event__details-content-top .avg-rating i {
  color: var(--tg-common-color-yellow);
  line-height: 1;
}

.event__details-overview {
  margin-bottom: 20px;
}

.event__details-inner {
  margin: 25px 0 20px;
}

.event__details-inner .row .col-39 {
  width: 38.8%;
  flex: 0 0 auto;
}

@media (max-width: 1199.98px) {
  .event__details-inner .row .col-39 {
    width: 100%;
  }
}
.event__details-inner .row .col-61 {
  width: 61.2%;
  flex: 0 0 auto;
}

@media (max-width: 1199.98px) {
  .event__details-inner .row .col-61 {
    width: 100%;
  }
}
.event__details-inner img {
  border-radius: 10px;
  width: 100%;
}

@media (max-width: 1199.98px) {
  .event__details-inner img {
    margin-bottom: 30px;
  }
}
.event__details-inner-content .title {
  margin-bottom: 25px;
  font-size: 24px;
  text-transform: capitalize;
}

.event__details-inner-content .about__info-list-item {
  margin: 0 0 10px;
}

.event__details-inner-content .about__info-list-item:last-child {
  margin: 0;
}

.event__details-inner-content .about__info-list-item i {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.event__details-inner-content .about__info-list-item p {
  font-size: 16px;
}

.event__meta .list-wrap {
  display: flex;
  align-items: center;
  gap: 10px 35px;
  flex-wrap: wrap;
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 25px;
  margin-bottom: 28px;
}

.event__meta .list-wrap li {
  display: flex;
  align-items: center;
  position: relative;
  gap: 8px;
  color: var(--tg-common-color-gray-3);
}

.event__meta .list-wrap li::before {
  content: "";
  position: absolute;
  right: -19px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: #8C9AB4;
  border-radius: 50%;
}

.event__meta .list-wrap li:last-child::before {
  display: none;
}

.event__meta .list-wrap li i {
  font-size: 20px;
  line-height: 0;
}

.event__meta .list-wrap li.author img {
  border-radius: 50%;
}

.event__meta .list-wrap li.author a {
  color: var(--tg-common-color-dark);
}

.event__meta .list-wrap li.author a:hover {
  color: var(--tg-theme-primary);
}

.event__meta .list-wrap li.location i {
  color: var(--tg-theme-primary);
}

.event__meta-two .list-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px 25px;
}

.event__meta-two .list-wrap li {
  display: flex;
  align-items: center;
  line-height: 1;
  gap: 5px;
  font-size: 16px;
  font-weight: 400;
  color: var(--tg-heading-color);
}

.event__meta-two .list-wrap li i {
  color: var(--tg-theme-primary);
  font-weight: 700;
}

.event__sidebar {
  margin: -190px 50px 0 20px;
}

@media (max-width: 1199.98px) {
  .event__sidebar {
    margin: -190px 0 0 0;
  }
}
@media (max-width: 991.98px) {
  .event__sidebar {
    margin: 80px 0 0 0;
  }
}
.event__sidebar .courses__details-sidebar {
  margin: 0;
}

.event__widget {
  margin-bottom: 30px;
}

.event__widget:last-child {
  margin-bottom: 0;
}

.event__map {
  background: var(--tg-common-color-white);
  border: 1px solid #DFDFDF;
  -ms-box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.08);
  -o-box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 30px 30px;
}

.event__map .title {
  font-size: 20px;
  margin-bottom: 20px;
}

.event__map .map {
  width: 100%;
  height: 240px;
}

.event__map .map iframe {
  width: 100%;
  height: 100%;
  border-radius: 6px;
}

/*=============================
    18. FAQ
===============================*/
.faq__area {
  background: var(--tg-common-color-gray);
  padding: 260px 0 120px;
  margin-top: -140px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

@media (max-width: 767.98px) {
  .faq__area {
    padding: 240px 0 100px;
  }
}
.faq__area::before {
  content: "";
  position: absolute;
  left: 45px;
  bottom: 20%;
  width: 500px;
  height: 500px;
  background: #E9E2F9;
  filter: blur(200px);
  border-radius: 50%;
  z-index: -1;
}

.faq__area::after {
  content: "";
  position: absolute;
  right: 54px;
  top: 110px;
  width: 500px;
  height: 500px;
  background: #E9E2F9;
  filter: blur(200px);
  border-radius: 50%;
  z-index: -1;
}

.faq__area-two {
  position: relative;
  z-index: 1;
}

.faq__img {
  position: relative;
  z-index: 1;
  width: 450px;
  height: 562px;
  border-radius: 1000px;
  background: var(--tg-common-color-white);
  box-shadow: 9px 8px 0px #171717;
  margin: 0 auto;
  overflow: hidden;
}

@media (max-width: 1199.98px) {
  .faq__img {
    width: 400px;
    height: 550px;
  }
}
@media (max-width: 767.98px) {
  .faq__img {
    width: 100%;
    height: 500px;
    max-width: 400px;
  }
}
.faq__img img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}

.faq__img .shape-one {
  position: absolute;
  left: 27%;
  top: 11%;
  z-index: -1;
}

@media (max-width: 1199.98px) {
  .faq__img .shape-one {
    left: 25%;
    top: 9%;
  }
}
@media (max-width: 767.98px) {
  .faq__img .shape-one {
    left: 16%;
    top: 11%;
  }
}
.faq__img .shape-one svg {
  color: var(--tg-common-color-yellow-2);
}

.faq__img .shape-two {
  width: 61px;
  height: 46px;
  position: absolute;
  right: 25%;
  top: 10%;
}

@media (max-width: 1199.98px) {
  .faq__img .shape-two {
    right: 18%;
  }
}
.faq__img .shape-two .svg-icon {
  width: 100%;
  height: 100%;
  display: block;
}

.faq__img .shape-two .svg-icon path {
  stroke: var(--tg-common-color-black);
}

.faq__img-two {
  background: #F3F3F3;
  box-shadow: 9px 8px 0px #B8B8B8;
}

.faq__img-three {
  position: relative;
  margin-bottom: 50px;
}

.faq__img-three .shape {
  position: absolute;
  z-index: -1;
}

.faq__img-three .shape-one {
  right: 2%;
  top: -10%;
  max-width: 113px;
}

@media (max-width: 1199.98px) {
  .faq__img-three .shape-one {
    max-width: 80px;
  }
}
.faq__img-three .shape-two {
  right: 0;
  bottom: 0;
  max-width: 96px;
}

@media (max-width: 1199.98px) {
  .faq__img-three .shape-two {
    max-width: 65px;
  }
}
.faq__img-three:hover .faq__img-shape svg .animation-dashed {
  animation-play-state: running;
}

.faq__img-four {
  position: relative;
}

@media (max-width: 991.98px) {
  .faq__img-four {
    margin-bottom: 50px;
  }
}
.faq__img-four .main-img {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 40px;
}

@media (max-width: 1199.98px) {
  .faq__img-four .main-img {
    gap: 20px;
  }
}
@media (max-width: 991.98px) {
  .faq__img-four .main-img {
    gap: 30px;
  }
}
@media (max-width: 767.98px) {
  .faq__img-four .main-img {
    flex-direction: column;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .faq__img-four .main-img {
    flex-direction: row;
  }
}
.faq__img-four .main-img img {
  border-radius: 30px;
}

@media (max-width: 1199.98px) {
  .faq__img-four .main-img img {
    max-width: 250px;
  }
}
@media (max-width: 991.98px) {
  .faq__img-four .main-img img {
    max-width: 260px;
  }
}
@media (max-width: 767.98px) {
  .faq__img-four .main-img img {
    max-width: 100%;
    width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .faq__img-four .main-img img {
    max-width: 240px;
    width: auto;
  }
}
.faq__img-four .main-img img:nth-child(2) {
  margin-top: 185px;
}

@media (max-width: 767.98px) {
  .faq__img-four .main-img img:nth-child(2) {
    margin-top: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .faq__img-four .main-img img:nth-child(2) {
    margin-top: 50px;
  }
}
.faq__img-four .shape img {
  position: absolute;
  z-index: -1;
}

@media (max-width: 767.98px) {
  .faq__img-four .shape img {
    display: none;
  }
}
.faq__img-four .shape img:nth-child(1) {
  left: 12%;
  bottom: 0;
  max-width: 142px;
}

@media (max-width: 1500px) {
  .faq__img-four .shape img:nth-child(1) {
    left: 5%;
  }
}
.faq__img-four .shape img:nth-child(2) {
  right: 24%;
  top: 5%;
  max-width: 106px;
}

.faq__img-four .shape img:nth-child(3) {
  right: 20%;
  top: 4%;
  max-width: 306px;
}

@media (max-width: 1199.98px) {
  .faq__img-four .shape img:nth-child(3) {
    right: 18%;
    top: 7%;
    max-width: 260px;
  }
}
.faq__img-wrap {
  position: relative;
  margin-top: 45px;
}

@media (max-width: 991.98px) {
  .faq__img-wrap {
    margin-bottom: 50px;
  }
}
@media (max-width: 991.98px) {
  .faq__img-wrap {
    margin-top: 0;
  }
}
.faq__img-shape {
  position: absolute;
  left: -12px;
  top: -9px;
  right: -12px;
  bottom: -9px;
  z-index: -1;
}

.faq__img-shape svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  display: block;
  position: absolute;
  transition: all 0.2s ease-out 0s;
}

.faq__img-shape svg .animation-dashed {
  animation: animation__shape-two 0.8s infinite linear;
  animation-play-state: paused;
}

.faq__language-wrap {
  background: var(--tg-theme-primary);
  position: absolute;
  left: 21%;
  bottom: 7%;
  box-shadow: -8px 8px 0 0 #0f0996;
  border-radius: 15px;
  text-align: center;
  padding: 31px 45px;
}

@media (max-width: 1500px) {
  .faq__language-wrap {
    left: 14%;
  }
}
@media (max-width: 1199.98px) {
  .faq__language-wrap {
    left: 10%;
    padding: 24px 30px;
  }
}
@media (max-width: 767.98px) {
  .faq__language-wrap {
    display: none;
  }
}
.faq__language-wrap .title {
  margin-bottom: 15px;
  color: var(--tg-common-color-white);
  font-size: 48px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 0.8;
}

.faq__language-wrap span {
  display: block;
  line-height: 1;
  font-family: var(--tg-heading-font-family);
  color: var(--tg-common-color-white);
  font-weight: 500;
}

.faq__mask-img {
  -webkit-mask-image: url(/assets/img/others/h5_faq_mask_img.png);
  mask-image: url(/assets/img/others/h5_faq_mask_img.png);
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  width: 690px;
  height: 532px;
  margin: 0 auto;
}

@media (max-width: 1500px) {
  .faq__mask-img {
    width: 630px;
    height: 508px;
  }
}
@media (max-width: 1199.98px) {
  .faq__mask-img {
    width: 450px;
    height: 350px;
  }
}
@media (max-width: 767.98px) {
  .faq__mask-img {
    width: 330px;
    height: 257px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .faq__mask-img {
    width: 420px;
    height: 325px;
  }
}
.faq__mask-img img {
  max-width: unset;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq__content {
  width: 80%;
}

@media (max-width: 1199.98px) {
  .faq__content {
    width: 100%;
  }
}
.faq__content p {
  margin-bottom: 10px;
}

.faq__content-two {
  width: 80%;
}

@media (max-width: 1500px) {
  .faq__content-two {
    width: 90%;
  }
}
@media (max-width: 1199.98px) {
  .faq__content-two {
    width: 100%;
  }
}
.faq__content-two > p {
  margin-bottom: 25px;
}

.faq__content-three {
  width: 97%;
}

@media (max-width: 1199.98px) {
  .faq__content-three {
    width: 100%;
  }
}
.faq__wrap .accordion-item {
  background-color: transparent;
  border: none;
  border-radius: 0;
}

.faq__wrap .accordion-item .accordion-button {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--tg-common-color-gray-5);
  padding: 22px 0;
  font-size: 20px;
  font-weight: 500;
  font-family: var(--tg-heading-font-family);
  border-radius: 0;
  color: var(--tg-body-color);
  position: relative;
}

@media (max-width: 767.98px) {
  .faq__wrap .accordion-item .accordion-button {
    padding: 22px 30px 22px 0;
  }
}
.faq__wrap .accordion-item .accordion-button::after {
  content: "\f105";
  background-image: none;
  font-family: "flaticon_skill_grow";
  font-size: 20px;
  position: absolute;
  right: 0;
  top: 25px;
  color: var(--tg-common-color-dark);
  box-shadow: none;
  background: transparent;
  font-weight: 700;
}

.faq__wrap .accordion-item .accordion-button:not(.collapsed) {
  box-shadow: none;
  color: var(--tg-theme-primary);
}

.faq__wrap .accordion-item .accordion-button:not(.collapsed)::after {
  transform: rotate(-90deg);
  color: var(--tg-theme-primary);
}

.faq__wrap .accordion-item .accordion-button:focus {
  box-shadow: none;
}

.faq__wrap .accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.faq__wrap .accordion-body {
  padding: 15px 0 0;
}

.faq__wrap .accordion-body p {
  margin-bottom: 0;
  color: var(--tg-common-color-dark);
}

.faq__wrap-two .accordion-item {
  background-color: #F8F8F8;
  border-radius: 10px;
  margin-bottom: 13px;
}

.faq__wrap-two .accordion-item:last-child {
  margin-bottom: 0;
}

.faq__wrap-two .accordion-item .accordion-button {
  background-color: #F8F8F8;
  border-bottom: none;
  padding: 21px 24px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 10px 10px 0 0;
  color: var(--tg-heading-color);
}

@media (max-width: 767.98px) {
  .faq__wrap-two .accordion-item .accordion-button {
    padding: 22px 30px 22px 24px;
  }
}
.faq__wrap-two .accordion-item .accordion-button::after {
  content: "\f105";
  background-image: none;
  font-family: "flaticon_skill_grow";
  font-size: 20px;
  position: absolute;
  right: 20px;
  top: 21px;
  color: var(--tg-heading-color);
  box-shadow: none;
  background: transparent;
  font-weight: 700;
}

.faq__wrap-two .accordion-item .accordion-button:not(.collapsed) {
  box-shadow: none;
  color: var(--tg-heading-color);
  background-color: var(--tg-theme-secondary);
}

.faq__wrap-two .accordion-item .accordion-button:not(.collapsed)::after {
  transform: rotate(-90deg);
  color: var(--tg-heading-color);
}

.faq__wrap-two .accordion-body {
  padding: 15px 25px 40px 24px;
}

@media (max-width: 767.98px) {
  .faq__wrap-two .accordion-body {
    padding: 15px 25px 25px 24px;
  }
}
.faq__wrap-two .accordion-body p {
  color: var(--tg-body-color);
}

.faq__shape img {
  position: absolute;
  z-index: -1;
  left: 5%;
  top: 16%;
  max-width: 65px;
}

@media (max-width: 1800px) {
  .faq__shape img {
    left: 3%;
    top: 6%;
  }
}
@media (max-width: 767.98px) {
  .faq__shape img {
    left: 3%;
    top: 3%;
    max-width: 50px;
  }
}
.curved-circle {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--tg-common-color-dark);
  right: 50%;
  transform: translateX(-50%);
  top: -8%;
  letter-spacing: 5px;
  position: absolute;
}

@media (max-width: 1199.98px) {
  .curved-circle {
    font-size: 15px;
    top: -6%;
    letter-spacing: 3px;
  }
}
@media (max-width: 767.98px) {
  .curved-circle {
    display: none;
  }
}
/*=============================
    19. Shop
===============================*/
.shop-top-wrap {
  margin-bottom: 30px;
}

.shop-top-left p {
  margin-bottom: 0;
  font-size: 18px;
}

@media (max-width: 767.98px) {
  .shop-top-left p {
    margin-bottom: 15px;
    text-align: center;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .shop-top-left p {
    margin-bottom: 0;
    text-align: left;
  }
}
.shop-top-right {
  position: relative;
  width: 190px;
  margin-left: auto;
}

@media (max-width: 767.98px) {
  .shop-top-right {
    margin: 0 auto;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .shop-top-right {
    margin: 0 0 0 auto;
  }
}
.shop-top-right select {
  background-color: var(--tg-common-color-gray);
  border: none;
  color: var(--tg-body-color);
  font-weight: 400;
  font-size: 16px;
  text-transform: capitalize;
  border-radius: 4px;
  outline: none;
  padding: 12px 37px 9px 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  line-height: 1.2;
  height: 40px;
}

.shop-top-right::after {
  content: "\f078";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  right: 15px;
  font-size: 14px;
  color: var(--tg-theme-primary);
}

.shop-item {
  border: 1px solid #E8E8E8;
  border-radius: 6px;
  padding: 25px 25px 30px;
  margin-bottom: 30px;
  background: var(--tg-common-color-white);
}

@media (max-width: 1199.98px) {
  .shop-item {
    padding: 20px 20px 25px;
  }
}
@media (max-width: 991.98px) {
  .shop-item {
    padding: 25px 25px 35px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .shop-item {
    padding: 20px 20px 25px;
  }
}
.shop-item:hover .shop-thumb img {
  opacity: 0.8;
}

.shop-item:hover .shop-action li {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.shop-thumb {
  position: relative;
  text-align: center;
  margin-bottom: 25px;
}

.shop-thumb img {
  border-radius: 6px;
}

.shop-thumb .flash-sale {
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1;
  padding: 6px 13px;
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  border-radius: 4px;
  z-index: 1;
}

.shop-thumb .flash-sale.hot {
  background: var(--tg-theme-secondary);
  color: var(--tg-heading-color);
}

.shop-action {
  display: flex;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  gap: 10px;
}

.shop-action li {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: visibility 0.3s ease-out 0.1s, opacity 0.3s ease-out 0.15s, transform 0.3s ease-out 0.1s;
}

.shop-action li:nth-child(2) {
  transition-delay: 0.15s;
}

.shop-action li:nth-child(3) {
  transition-delay: 0.2s;
}

.shop-action a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--tg-common-color-white);
  color: var(--tg-theme-primary);
  font-size: 15px;
  line-height: 0;
}

.shop-action a:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
}

.shop-content {
  text-align: center;
}

.shop-content .price {
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 0;
  color: var(--tg-theme-primary);
}

.shop-content .price del {
  color: var(--tg-body-color);
  margin-left: 5px;
  opacity: 0.7;
}

.shop-content .title {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 18px;
}

.shop-content .title a:hover {
  color: var(--tg-theme-primary);
}

.shop-content .rating {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #F8BC24;
  gap: 3px;
  line-height: 1;
  margin: 0 0 10px;
}

.shop-content .rating .avg {
  color: var(--tg-body-color);
}

@media (max-width: 991.98px) {
  .shop-sidebar {
    margin-top: 80px;
  }
}
.shop-widget {
  -ms-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  padding: 30px 30px;
  background: #F7F7FA;
  margin-bottom: 30px;
}

.shop-widget:last-child {
  margin-bottom: 0;
}

@media (max-width: 1199.98px) {
  .shop-widget {
    padding: 25px 20px;
  }
}
@media (max-width: 991.98px) {
  .shop-widget {
    padding: 25px 30px;
  }
}
.shop-widget ul li {
  margin-bottom: 15px;
}

.shop-widget ul li:last-child {
  margin-bottom: 0;
}

.shop-widget .form-check {
  display: flex;
  align-items: center;
  line-height: 1;
  margin-bottom: 0;
  padding: 0;
  min-height: inherit;
}

.shop-widget .form-check-input {
  border-radius: 4px;
  border: 1px solid #B2BDCD;
  margin: 0 10px 0 0;
  width: 16px;
  height: 16px;
}

.shop-widget .form-check-input:focus {
  box-shadow: none;
  border-color: var(--tg-theme-primary);
}

.shop-widget .form-check-label {
  flex-grow: 1;
  font-size: 16px;
  font-weight: 400;
  color: var(--tg-body-color);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.shop-widget .form-check .rating {
  display: flex;
  align-items: center;
}

.shop-widget .form-check .rating ul {
  display: flex;
  align-items: center;
  line-height: 1;
  color: #F8BC24;
  gap: 4px;
}

.shop-widget .form-check .rating ul li {
  margin-bottom: 0;
}

.shop-widget .form-check .rating ul li.delete {
  color: #D7D7D7;
}

.shop-widget .form-check .rating span {
  color: #5A7093;
  margin-left: 5px;
}

@media (max-width: 1500px) {
  .shop-details-images-wrap {
    flex-direction: column-reverse;
  }
}
.shop-details-images-wrap .nav-tabs {
  border-bottom: none;
  gap: 15px;
  margin: 0 0;
  width: 119px;
  flex: 0 0 119px;
  flex-direction: column;
}

@media (max-width: 1500px) {
  .shop-details-images-wrap .nav-tabs {
    width: 100%;
    flex: 0 0 auto;
    flex-direction: row;
  }
}
.shop-details-images-wrap .nav-item {
  width: 120px;
  flex: 0 0 auto;
}

@media (max-width: 767.98px) {
  .shop-details-images-wrap .nav-item {
    width: auto;
    flex: 1 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .shop-details-images-wrap .nav-item {
    width: 120px;
    flex: 0 0 auto;
  }
}
.shop-details-images-wrap .nav-link {
  margin-bottom: 0;
  background: transparent;
  border: 1px solid #E4E4E4;
  border-radius: 6px;
  padding: 0 0;
  overflow: hidden;
  opacity: 0.5;
}

.shop-details-images-wrap .nav-link.active {
  border-color: var(--tg-theme-primary);
  opacity: 1;
}

.shop-details-images-wrap .tab-content img {
  border-radius: 6px;
  border: 1px solid #E4E4E4;
}

@media (max-width: 767.98px) {
  .shop-details-images-wrap .tab-content img {
    width: 100%;
  }
}
.shop-details-content {
  margin-left: 25px;
}

@media (max-width: 1199.98px) {
  .shop-details-content {
    margin-left: 0;
  }
}
@media (max-width: 991.98px) {
  .shop-details-content {
    margin: 60px 0 0;
  }
}
.shop-details-content > .title {
  font-weight: 600;
  font-size: 30px;
  margin-bottom: 12px;
}

@media (max-width: 767.98px) {
  .shop-details-content > .title {
    font-size: 26px;
  }
}
.shop-details-content .product-review {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

@media (max-width: 767.98px) {
  .shop-details-content .product-review {
    margin-bottom: 15px;
  }
}
.shop-details-content .product-review .rating {
  display: flex;
  align-items: center;
  color: #F8BC24;
  gap: 3px;
}

.shop-details-content .product-review span {
  color: #5A7093;
}

.shop-details-content .price {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 24px;
  color: var(--tg-theme-primary);
}

.shop-details-content p {
  margin-bottom: 35px;
}

@media (max-width: 767.98px) {
  .shop-details-content p {
    margin-bottom: 30px;
  }
}
.shop-details-qty {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.shop-details-qty .title {
  font-weight: 500;
  font-size: 18px;
  color: var(--tg-theme-primary);
  display: block;
}

.shop-details-qty .wishlist-btn {
  background: #F6F7FA;
  border: 1px solid #E4E4E4;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.shop-details-qty .wishlist-btn:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
  border-color: var(--tg-theme-primary);
}

.shop-details-bottom .list-wrap li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 10px;
}

.shop-details-bottom .list-wrap li:last-child {
  margin-bottom: 0;
}

.shop-details-bottom .list-wrap li .title {
  font-weight: 500;
  font-size: 16px;
  display: block;
  color: var(--tg-heading-color);
}

.shop-details-bottom .list-wrap li .code, .shop-details-bottom .list-wrap li a {
  color: var(--tg-body-color);
}

.shop-details-bottom .list-wrap li a:hover {
  color: var(--tg-theme-primary);
}

.cart-plus-minus {
  position: relative;
  width: 116px;
  flex: 0 0 auto;
}

.cart-plus-minus input {
  width: 100%;
  border: 1px solid #D7D7D7;
  border-radius: 5px;
  height: 50px;
  text-align: center;
  padding: 0 30px;
  font-weight: 500;
  font-size: 16px;
  color: var(--tg-heading-color);
}

.cart-plus-minus .qtybutton {
  position: absolute;
  top: 0;
  left: 0;
  width: 31px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  color: #838383;
  cursor: pointer;
  border-right: 1px solid #D7D7D7;
  -webkit-user-select: none;
          user-select: none;
  -moz-user-select: none;
  line-height: 0;
}

.cart-plus-minus .qtybutton.inc {
  left: auto;
  right: 0;
  border-right: none;
  border-left: 1px solid #D7D7D7;
}

.cart-plus-minus .qtybutton.dec {
  font-size: 26px;
}

.product-desc-wrap {
  margin-top: 100px;
}

.product-desc-wrap .tab-content p {
  margin-bottom: 0;
}

.product-desc-wrap .nav-tabs {
  border-bottom: 2px solid #E6EAEF;
  gap: 30px;
  margin-bottom: 25px;
}

.product-desc-wrap .nav-tabs .nav-link {
  margin-bottom: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0 5px 10px;
  font-weight: 500;
  font-size: 19px;
  font-family: var(--tg-heading-font-family);
  color: var(--tg-body-color);
  position: relative;
}

.product-desc-wrap .nav-tabs .nav-link.active {
  color: var(--tg-theme-primary);
}

.product-desc-wrap .nav-tabs .nav-link.active::before {
  opacity: 1;
}

.product-desc-wrap .nav-tabs .nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--tg-theme-primary);
  transition: 0.3s linear;
  opacity: 0;
}

.product-desc-review {
  padding: 25px 30px;
  border: 1px solid #E6EAEF;
  border-radius: 5px;
}

.product-desc-review .left-rc {
  margin-bottom: 10px;
}

.related-product-area {
  position: relative;
  margin-top: 120px;
}

@media (max-width: 767.98px) {
  .related-product-area {
    margin-top: 90px;
  }
}
.related-product-area .shop-thumb img {
  margin: 0 auto;
}

.shop-active [class*=col-] {
  padding: 0 15px;
}

.shop-active .slick-arrow {
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--tg-common-color-gray);
  color: var(--tg-theme-primary);
  border: 1px solid var(--tg-common-color-white);
  box-shadow: 0px 10px 20px #DFDFDF;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.shop-active .slick-arrow:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
}

.shop-active .slick-arrow.slick-next {
  left: auto;
  right: -10px;
}

a.cart-btn-add,
button.cart-btn-add,
a.show-more-btn {
  color: var(--tg-theme-primary);
}

a.show-more-btn.active {
  color: var(--tg-theme-secondary);
}

a.cart-btn-add:hover,
button.cart-btn-add:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
}

a.course-heart-btn {
  color: #BABACA;
}

a.course-heart-btn:hover {
  color: var(--tg-theme-primary);
}

a.courses__wishlist-two.course-heart-btn:hover {
  color: var(--tg-common-color-white);
  background: var(--tg-theme-primary);
}

/*=============================
    20. Blog
===============================*/
.blog__bg {
  background-size: cover;
  background-position: center;
  padding: 120px 0 90px;
  position: relative;
  z-index: 1;
}

.blog__post-area {
  position: relative;
  padding: 240px 0 90px;
  background: var(--tg-common-color-gray);
  z-index: 1;
  margin-top: -150px;
}

@media (max-width: 767.98px) {
  .blog__post-area {
    padding: 220px 0 70px;
  }
}
.blog__post-area::before {
  content: "";
  position: absolute;
  left: 50px;
  top: 50px;
  width: 473px;
  height: 473px;
  border-radius: 50%;
  background: #E9E2F9;
  filter: blur(200px);
  z-index: -1;
}

.blog__post-area::after {
  content: "";
  position: absolute;
  right: 10%;
  bottom: 20px;
  width: 473px;
  height: 473px;
  border-radius: 50%;
  background: #E9E2F9;
  filter: blur(200px);
  z-index: -1;
}

.blog__post-area-two {
  padding: 120px 0 90px;
  margin-top: 0;
}

@media (max-width: 767.98px) {
  .blog__post-area-two {
    padding: 100px 0 70px;
  }
}
.blog__post-area-four {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.blog__post-area-five {
  position: relative;
  z-index: 1;
}

.blog__post-area-six {
  background: var(--tg-common-color-gray-10);
}

.blog__post-area-seven {
  background: var(--tg-common-color-gray-10);
}

.blog__post-area-eight {
  position: relative;
}

.blog__post-item {
  border: 1px solid #B5B5C3;
  border-radius: 10px;
  background: var(--tg-common-color-white);
  padding: 20px 25px 35px;
  transition: all 0.2s ease-out 0s;
  margin-bottom: 30px;
}

.blog__post-item:hover {
  -ms-box-shadow: 10px 10px 0px 0px #CAC9D6;
  -o-box-shadow: 10px 10px 0px 0px #CAC9D6;
  box-shadow: 10px 10px 0px 0px #CAC9D6;
}

.blog__post-item-two {
  position: relative;
  border: 1px solid var(--tg-border-6);
  border-radius: 10px;
  padding: 25px 25px;
  margin-bottom: 30px;
  background: var(--tg-common-color-white);
}

@media (max-width: 767.98px) {
  .blog__post-item-two {
    padding: 20px 20px;
  }
}
.blog__post-item-three {
  border: 1px solid var(--tg-border-6);
  border-radius: 10px;
  padding: 25px 25px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 22px;
  background: var(--tg-common-color-white);
}

@media (max-width: 1199.98px) {
  .blog__post-item-three {
    padding: 22px 20px;
  }
}
@media (max-width: 991.98px) {
  .blog__post-item-three {
    padding: 25px 25px;
  }
}
@media (max-width: 767.98px) {
  .blog__post-item-three {
    padding: 20px 20px;
    flex-direction: column;
  }
}
.blog__post-item-four {
  border: 1px solid #e3e3e3;
  background: var(--tg-common-color-white);
  border-radius: 30px;
  padding: 30px 30px 35px;
  margin-bottom: 30px;
}

@media (max-width: 1199.98px) {
  .blog__post-item-four {
    padding: 20px 20px 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog__post-item-four {
    padding: 30px 30px 35px;
  }
}
.blog__post-item-five {
  background: var(--tg-common-color-white);
  box-shadow: 0 0 30px 0 #ebebeb;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 30px;
}

.blog__post-item-six {
  margin-bottom: 30px;
  border-radius: 15px;
  background: var(--tg-common-color-white);
}

.blog__post-thumb {
  margin-bottom: 22px;
  position: relative;
}

.blog__post-thumb img {
  border-radius: 15px;
  width: 100%;
  height: 224px;
  object-fit: cover;
}

@media (max-width: 767.98px) {
  .blog__post-thumb img {
    height: auto;
  }
}
.blog__post-thumb .post-tag {
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  color: var(--tg-common-color-white);
  background: var(--tg-theme-primary);
  position: absolute;
  left: 22px;
  top: 17px;
  padding: 9px 14px;
  border-radius: 30px;
  z-index: 1;
}

.blog__post-thumb .post-tag:hover {
  background: var(--tg-theme-secondary);
  color: var(--tg-heading-color);
}

.blog__post-thumb-two {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.blog__post-thumb-two img {
  width: 100%;
  height: 462px;
  object-fit: cover;
}

@media (max-width: 767.98px) {
  .blog__post-thumb-two img {
    height: 420px;
  }
}
.blog__post-thumb-two::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(22, 20, 57, 0) 0%, rgba(22, 20, 57, 0) 0%, #010005 100%);
  pointer-events: none;
}

.blog__post-thumb-three {
  width: 283px;
  flex: 0 0 auto;
}

@media (max-width: 1199.98px) {
  .blog__post-thumb-three {
    width: 200px;
  }
}
@media (max-width: 991.98px) {
  .blog__post-thumb-three {
    width: 280px;
  }
}
@media (max-width: 767.98px) {
  .blog__post-thumb-three {
    width: 100%;
  }
}
.blog__post-thumb-three img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 10px;
}

@media (max-width: 767.98px) {
  .blog__post-thumb-three img {
    height: 240px;
  }
}
.blog__post-thumb-four {
  margin-bottom: 30px;
}

.blog__post-thumb-four img {
  border-radius: 20px;
  width: 100%;
  height: 290px;
  object-fit: cover;
}

@media (max-width: 1199.98px) {
  .blog__post-thumb-four img {
    height: 260px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog__post-thumb-four img {
    height: 290px;
  }
}
.blog__post-thumb-five img {
  width: 100%;
  height: 290px;
  object-fit: cover;
}

@media (max-width: 767.98px) {
  .blog__post-thumb-five img {
    height: auto;
  }
}
.blog__post-thumb-six {
  position: relative;
  border-radius: 15px 15px 0 0;
  overflow: hidden;
}

.blog__post-thumb-six img {
  width: 100%;
  height: 290px;
  object-fit: cover;
}

@media (max-width: 767.98px) {
  .blog__post-thumb-six img {
    height: auto;
  }
}
.blog__post-thumb-six .post-tag-four {
  position: absolute;
  left: 30px;
  top: 30px;
  margin-bottom: 0;
  z-index: 1;
}

.blog__post-content .title {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 600;
}

.blog__post-content .title a {
  display: inline;
  background-image: linear-gradient(var(--tg-heading-color), var(--tg-heading-color)), linear-gradient(var(--tg-heading-color), var(--tg-heading-color));
  background-size: 0% 2px, 0 2px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}

.blog__post-content .title a:hover {
  color: inherit;
  background-size: 0 2px, 100% 2px;
}

.blog__post-content-two {
  position: absolute;
  left: 25px;
  right: 25px;
  bottom: 25px;
  padding: 30px 40px;
}

@media (max-width: 1199.98px) {
  .blog__post-content-two {
    padding: 30px 20px;
  }
}
@media (max-width: 991.98px) {
  .blog__post-content-two {
    padding: 30px 30px;
  }
}
@media (max-width: 767.98px) {
  .blog__post-content-two {
    padding: 20px 20px;
  }
}
.blog__post-content-two .title {
  margin-bottom: 0;
  color: var(--tg-common-color-white);
  font-size: 26px;
}

@media (max-width: 1199.98px) {
  .blog__post-content-two .title {
    font-size: 24px;
  }
}
@media (max-width: 991.98px) {
  .blog__post-content-two .title {
    font-size: 26px;
  }
}
@media (max-width: 767.98px) {
  .blog__post-content-two .title {
    font-size: 24px;
  }
}
.blog__post-content-two .title a {
  display: inline;
  background-image: linear-gradient(var(--tg-common-color-white), var(--tg-common-color-white)), linear-gradient(var(--tg-common-color-white), var(--tg-common-color-white));
  background-size: 0% 2px, 0 2px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}

.blog__post-content-two .title a:hover {
  color: inherit;
  background-size: 0 2px, 100% 2px;
}

.blog__post-content-three .post-tag-two {
  color: var(--tg-body-color);
}

.blog__post-content-three .title {
  margin-bottom: 0;
  font-size: 20px;
}

@media (max-width: 1199.98px) {
  .blog__post-content-three .title {
    font-size: 18px;
  }
}
@media (max-width: 991.98px) {
  .blog__post-content-three .title {
    font-size: 20px;
  }
}
.blog__post-content-three .title a {
  display: inline;
  background-image: linear-gradient(var(--tg-heading-color), var(--tg-heading-color)), linear-gradient(var(--tg-heading-color), var(--tg-heading-color));
  background-size: 0% 2px, 0 2px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}

.blog__post-content-three .title a:hover {
  color: inherit;
  background-size: 0 2px, 100% 2px;
}

.blog__post-content-four .title {
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 600;
}

@media (max-width: 1199.98px) {
  .blog__post-content-four .title {
    font-size: 20px;
  }
}
.blog__post-content-four .title a {
  display: inline;
  background-image: linear-gradient(var(--tg-heading-color), var(--tg-heading-color)), linear-gradient(var(--tg-heading-color), var(--tg-heading-color));
  background-size: 0% 2px, 0 2px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}

.blog__post-content-four .title a:hover {
  color: inherit;
  background-size: 0 2px, 100% 2px;
}

.blog__post-content-four .blog__post-meta {
  margin-bottom: 0;
}

.blog__post-content-five {
  padding: 30px 35px 40px;
}

@media (max-width: 1199.98px) {
  .blog__post-content-five {
    padding: 30px 22px 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog__post-content-five {
    padding: 30px 30px 35px;
  }
}
.blog__post-content-five .title {
  margin-bottom: 25px;
  font-size: 22px;
  font-weight: 600;
  text-transform: capitalize;
}

.blog__post-content-five .title a {
  display: inline;
  background-image: linear-gradient(var(--tg-heading-color), var(--tg-heading-color)), linear-gradient(var(--tg-heading-color), var(--tg-heading-color));
  background-size: 0% 2px, 0 2px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}

.blog__post-content-five .title a:hover {
  color: inherit;
  background-size: 0 2px, 100% 2px;
}

.blog__post-content-five .blog__post-meta {
  margin-bottom: 0;
}

.blog__post-content-five .blog__post-meta ul li {
  font-size: 15px;
}

.blog__post-content-six {
  border: 1px solid #e3e3e3;
  border-top: none;
  border-radius: 0 0 15px 15px;
  padding: 30px 30px 35px;
}

@media (max-width: 1199.98px) {
  .blog__post-content-six {
    padding: 25px 20px 30px;
  }
}
.blog__post-content-six .title {
  font-size: 22px;
  text-transform: capitalize;
  margin-bottom: 22px;
}

.blog__post-content-six .title a {
  display: inline;
  background-image: linear-gradient(var(--tg-heading-color), var(--tg-heading-color)), linear-gradient(var(--tg-heading-color), var(--tg-heading-color));
  background-size: 0% 2px, 0 2px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}

.blog__post-content-six .title a:hover {
  color: inherit;
  background-size: 0 2px, 100% 2px;
}

.blog__post-content-six .btn {
  box-shadow: none;
  border-radius: 6px;
  color: var(--tg-theme-primary);
  background: #eeedff;
}

.blog__post-content-six .btn svg {
  color: var(--tg-theme-primary);
}

.blog__post-content-six .btn:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
}

.blog__post-content-six .btn:hover svg {
  color: var(--tg-common-color-white);
}

.blog__post-meta {
  margin-bottom: 20px;
}

.blog__post-meta .list-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.blog__post-meta .list-wrap li {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

.blog__post-meta .list-wrap li i {
  font-size: 20px;
  color: var(--tg-theme-primary);
  margin-right: 8px;
}

.blog__post-meta .list-wrap li a {
  color: var(--tg-body-color);
  margin-left: 5px;
}

.blog__post-meta .list-wrap li a:hover {
  color: var(--tg-theme-primary);
}

.blog__post-meta-two {
  margin-bottom: 14px;
}

.blog__post-meta-two .list-wrap li {
  color: var(--tg-common-color-gray-6);
}

.blog__post-meta-two .list-wrap li i {
  color: var(--tg-common-color-white);
}

.blog__post-meta-two .list-wrap li a {
  color: var(--tg-common-color-gray-6);
}

.blog-sidebar {
  margin-left: 15px;
}

@media (max-width: 1199.98px) {
  .blog-sidebar {
    margin-left: 0px;
  }
}
@media (max-width: 991.98px) {
  .blog-sidebar {
    margin-top: 80px;
  }
}
.blog-sidebar-two {
  margin-left: 0;
  margin-right: 15px;
}

@media (max-width: 1199.98px) {
  .blog-sidebar-two {
    margin-right: 0px;
  }
}
.blog-widget {
  background: var(--tg-common-color-gray);
  border-radius: 10px;
  padding: 30px 30px;
  margin-bottom: 30px;
}

.blog-widget:last-child {
  margin-bottom: 0;
}

.blog-widget .shop-cat-list .list-wrap li {
  line-height: 1;
  margin-bottom: 20px;
}

.blog-widget .shop-cat-list .list-wrap li:last-child {
  margin-bottom: 0;
}

.blog-widget .shop-cat-list .list-wrap li a {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  font-size: 16px;
  color: var(--tg-body-color);
  gap: 5px;
}

.blog-widget .shop-cat-list .list-wrap li a i {
  color: var(--tg-theme-primary);
  font-size: 20px;
  line-height: 0;
}

.blog-widget .shop-cat-list .list-wrap li a:hover {
  color: var(--tg-theme-primary);
}

.blog-widget .tagcloud {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
}

.blog-widget .tagcloud a {
  font-size: 16px;
  color: var(--tg-theme-primary);
  display: block;
  background: var(--tg-common-color-white);
  padding: 10px 15px;
  line-height: 1;
  border-radius: 3px;
}

.blog-widget .tagcloud a:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
}

.blog__shape img {
  position: absolute;
  right: -3%;
  top: 7%;
  z-index: -1;
}

@media (max-width: 991.98px) {
  .blog__shape img {
    display: none;
  }
}
.blog__shape-wrap img {
  position: absolute;
  z-index: -1;
}

.blog__shape-wrap img:nth-child(1) {
  right: -204px;
  top: -198px;
  animation-duration: 70s;
  max-width: 428px;
}

@media (max-width: 767.98px) {
  .blog__shape-wrap img:nth-child(1) {
    max-width: 360px;
  }
}
.blog__shape-wrap img:nth-child(2) {
  bottom: -220px;
  left: -150px;
  animation-duration: 70s;
  max-width: 428px;
}

@media (max-width: 1199.98px) {
  .blog__shape-wrap img:nth-child(2) {
    max-width: 380px;
  }
}
@media (max-width: 767.98px) {
  .blog__shape-wrap img:nth-child(2) {
    max-width: 340px;
  }
}
.blog__shape-wrap-two img {
  position: absolute;
  z-index: -1;
}

.blog__shape-wrap-two img:nth-child(1) {
  left: 0;
  top: 18%;
  max-width: 219px;
}

@media (max-width: 1500px) {
  .blog__shape-wrap-two img:nth-child(1) {
    top: 12%;
  }
}
@media (max-width: 991.98px) {
  .blog__shape-wrap-two img:nth-child(1) {
    top: 4%;
  }
}
@media (max-width: 767.98px) {
  .blog__shape-wrap-two img:nth-child(1) {
    display: none;
  }
}
.blog__shape-wrap-two img:nth-child(2) {
  right: 5%;
  bottom: 11%;
  max-width: 65px;
}

@media (max-width: 1500px) {
  .blog__shape-wrap-two img:nth-child(2) {
    bottom: 5%;
  }
}
@media (max-width: 767.98px) {
  .blog__shape-wrap-two img:nth-child(2) {
    bottom: 2%;
    max-width: 50px;
  }
}
.blog__shape-wrap-three img {
  position: absolute;
  z-index: -1;
}

.blog__shape-wrap-three img:nth-child(1) {
  right: 5%;
  top: 10%;
  max-width: 104px;
}

@media (max-width: 1199.98px) {
  .blog__shape-wrap-three img:nth-child(1) {
    top: 6%;
    max-width: 80px;
  }
}
@media (max-width: 767.98px) {
  .blog__shape-wrap-three img:nth-child(1) {
    top: 2%;
    max-width: 60px;
  }
}
.blog__shape-wrap-three img:nth-child(2) {
  left: 4%;
  bottom: 3%;
  max-width: 118px;
}

@media (max-width: 1500px) {
  .blog__shape-wrap-three img:nth-child(2) {
    max-width: 90px;
  }
}
@media (max-width: 767.98px) {
  .blog__shape-wrap-three img:nth-child(2) {
    max-width: 70px;
    bottom: 1%;
  }
}
.blog__details-thumb {
  position: static;
  padding: 0 80px 30px 0;
}

.blog__details-thumb img {
  border-radius: 10px;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: fill;
  display: block;
}

.blog__details-content .title {
  margin-bottom: 10px;
  font-size: 36px;
}

@media (max-width: 1500px) {
  .blog__details-content .title {
    font-size: 32px;
  }
}
@media (max-width: 1199.98px) {
  .blog__details-content .title {
    font-size: 30px;
  }
}
@media (max-width: 767.98px) {
  .blog__details-content .title {
    font-size: 26px;
  }
}
.blog__details-content > p {
  margin-bottom: 10px;
}

.blog__details-content .inner-title {
  margin-bottom: 10px;
  font-size: 30px;
}

@media (max-width: 767.98px) {
  .blog__details-content .inner-title {
    font-size: 24px;
  }
}
.blog__details-content-inner {
  margin: 30px 0 25px;
}

.blog__details-content-inner > p {
  margin-bottom: 20px;
}

.blog__details-bottom {
  border-top: 1px solid #E8E8E8;
  border-bottom: 1px solid #E8E8E8;
  padding: 20px 0;
  margin: 40px 0 30px;
}

.blog__details-bottom .tg-post-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.blog__details-bottom .tg-post-tag .tag-title {
  margin-bottom: 0;
  font-size: 17px;
}

.blog__details-bottom .tg-post-tag .list-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog__details-bottom .tg-post-tag .list-wrap li a {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
  display: block;
  font-size: 15px;
  border-radius: 50px;
  padding: 10px 21px;
  line-height: 1.2;
}

.blog__details-bottom .tg-post-tag .list-wrap li a:hover {
  background: var(--tg-theme-secondary);
  color: var(--tg-heading-color);
}

.blog__details-bottom .tg-post-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 767.98px) {
  .blog__details-bottom .tg-post-social {
    margin-top: 15px;
  }
}
.blog__details-bottom .tg-post-social .social-title {
  margin-bottom: 0;
  font-size: 17px;
}

.blog__details-bottom .tg-post-social .list-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog__details-bottom .tg-post-social .list-wrap li a {
  font-size: 20px;
  color: var(--tg-body-color);
}

.blog__details-bottom .tg-post-social .list-wrap li a:hover {
  color: var(--tg-theme-secondary);
}

.blog__post-author {
  display: flex;
  align-items: center;
  padding: 41px 45px;
  background: #F7F7FA;
  border-radius: 10px;
  gap: 30px;
  margin-bottom: 40px;
}

@media (max-width: 1199.98px) {
  .blog__post-author {
    padding: 30px 25px;
  }
}
@media (max-width: 767.98px) {
  .blog__post-author {
    flex-wrap: wrap;
    gap: 25px;
  }
}
.blog__post-author-thumb {
  width: 115px;
  flex: 0 0 auto;
}

.blog__post-author-thumb img {
  border-radius: 50%;
}

.blog__post-author-content .designation {
  display: block;
  line-height: 1;
  color: var(--tg-common-color-dark);
  margin-bottom: 5px;
}

.blog__post-author-content .name {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 500;
}

.blog__post-author-content p {
  margin-bottom: 0;
}

.widget_search {
  padding: 0 0;
}

.widget-title {
  margin-bottom: 20px;
  font-size: 20px;
}

.sidebar-search-form form {
  position: relative;
}

.sidebar-search-form input {
  background: var(--tg-common-color-gray);
  width: 100%;
  border: none;
  padding: 15px 45px 15px 20px;
  color: var(--tg-body-color);
  font-size: 16px;
  line-height: 1;
  border-radius: 6px;
}

.sidebar-search-form input::placeholder {
  color: var(--tg-body-color);
  font-size: 16px;
  opacity: 0.8;
}

.sidebar-search-form button {
  border: none;
  padding: 0;
  background: transparent;
  font-size: 22px;
  line-height: 0;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.rc-post-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.rc-post-item:last-child {
  margin-bottom: 0;
}

.rc-post-thumb {
  width: 74px;
  flex: 0 0 auto;
}

.rc-post-thumb img {
  border-radius: 3px;
}

.rc-post-content .date {
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
  font-size: 13px;
  font-weight: 500;
  color: var(--tg-common-color-gray-3);
  margin-bottom: 12px;
}

.rc-post-content .date i {
  color: var(--tg-theme-primary);
  font-size: 14px;
}

.rc-post-content .title {
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 0;
}

blockquote {
  background: #EFEEFE;
  margin: 40px 90px;
  padding: 35px 120px 35px 45px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1500px) {
  blockquote {
    margin: 40px 50px;
  }
}
@media (max-width: 1199.98px) {
  blockquote {
    margin: 40px 20px;
    padding: 35px 100px 35px 30px;
  }
}
@media (max-width: 767.98px) {
  blockquote {
    margin: 40px 0;
    padding: 30px 30px 30px 30px;
  }
}
blockquote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: var(--tg-theme-primary);
}

blockquote::after {
  content: "\f10e";
  position: absolute;
  right: 30px;
  top: 22px;
  line-height: 1;
  font-size: 62px;
  color: #CECCFD;
  font-family: var(--tg-icon-font-family);
  font-weight: 700;
  z-index: -1;
}

@media (max-width: 767.98px) {
  blockquote::after {
    right: 17px;
    top: 17px;
    font-size: 40px;
  }
}
blockquote > p {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 500;
  font-style: italic;
  color: var(--tg-common-color-dark);
  font-family: var(--tg-heading-font-family);
}

@media (max-width: 1199.98px) {
  blockquote > p {
    font-size: 18px;
  }
}
.comment-wrap-title .title {
  margin-bottom: 50px;
  font-size: 24px;
}

.comment-respond {
  background: #F7F7FA;
  border-radius: 12px;
  padding: 32px 45px 50px;
}

@media (max-width: 1199.98px) {
  .comment-respond {
    padding: 32px 25px 50px;
  }
}
.comment-reply-title {
  margin-bottom: 5px;
  font-size: 30px;
  text-transform: capitalize;
}

@media (max-width: 1199.98px) {
  .comment-reply-title {
    font-size: 26px;
  }
}
.comment-form .row {
  --bs-gutter-x: 20px;
}

.comment-form .row [class*=col-] {
  padding: 0 10px;
}

.comment-notes {
  margin-bottom: 15px;
}

.comment-field {
  margin-bottom: 15px;
}

.comment-field input, .comment-field textarea {
  width: 100%;
  display: block;
  border-radius: 5px;
  background: var(--tg-common-color-white);
  border: 1px solid #E1E4E7;
  font-size: 16px;
  color: var(--tg-body-color);
  padding: 15px 15px;
  line-height: 1.2;
  height: 50px;
}

.comment-field input::placeholder, .comment-field textarea::placeholder {
  opacity: 0.8;
  font-size: 16px;
  color: var(--tg-body-color);
}

.comment-field textarea {
  min-height: 130px;
  max-height: 130px;
}

.comment-field.checkbox-grp {
  display: flex;
  align-items: center;
  margin: 15px 0 32px;
}

.comment-field.checkbox-grp input {
  width: 22px;
  margin-right: 9px;
  height: 22px;
  cursor: pointer;
}

.comment-field.checkbox-grp label {
  font-weight: 400;
  font-size: 16px;
  color: var(--tg-body-color);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.latest-comments .list-wrap li {
  padding-bottom: 30px;
  margin-bottom: 45px;
  border-bottom: 1px solid #E8E8E8;
}

.latest-comments .list-wrap li:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.latest-comments .list-wrap li:last-child .comments-box {
  margin-left: 45px;
}

@media (max-width: 767.98px) {
  .latest-comments .list-wrap li:last-child .comments-box {
    margin-left: 0;
  }
}
.latest-comments .comments-box {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

@media (max-width: 767.98px) {
  .latest-comments .comments-box {
    gap: 20px;
    flex-wrap: wrap;
  }
}
.latest-comments .comments-avatar {
  flex: 0 0 auto;
  width: 115px;
}

.latest-comments .comments-avatar img {
  border-radius: 50%;
}

.latest-comments .comments-text .avatar-name {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.latest-comments .comments-text .avatar-name .name {
  font-size: 20px;
  margin-bottom: 0;
}

.latest-comments .comments-text .avatar-name .date {
  font-size: 14px;
  margin-left: auto;
  font-weight: 500;
}

.latest-comments .comments-text p {
  margin-bottom: 15px;
}

.latest-comments .comments-text .comment-reply .comment-reply-link {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  background: #F7F7FB;
  display: inline-block;
  border-radius: 10px;
  line-height: 1;
  padding: 10px 18px;
}

.latest-comments .comments-text .comment-reply .comment-reply-link:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
}

.pagination__wrap ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 10px;
}

.pagination__wrap ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #E6E9EF;
  border-radius: 50%;
  font-size: 18px;
  color: var(--tg-heading-color);
  font-family: var(--tg-heading-font-family);
  font-weight: var(--tg-fw-medium);
}

.pagination__wrap ul li a:hover {
  color: var(--tg-common-color-white) !important;
  background: var(--tg-theme-primary);
}

.pagination__wrap ul li.selected a {
  color: var(--tg-common-color-white);
  background: var(--tg-theme-primary);
}

.post-tag-two {
  font-weight: 500;
  font-size: 13px;
  display: inline-block;
  line-height: 1;
  color: var(--tg-common-color-white);
  border: 1px solid #e4e4e4;
  border-radius: 100px;
  padding: 8px 13px;
  margin-bottom: 20px;
}

.post-tag-two:hover {
  background: var(--tg-theme-primary);
  border-color: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
}

.post-tag-three {
  font-weight: 500;
  font-size: 13px;
  display: inline-block;
  line-height: 1;
  color: var(--tg-heading-color);
  border-radius: 100px;
  padding: 8px 14px;
  margin-bottom: 15px;
  background: var(--tg-theme-secondary);
}

.post-tag-three:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
}

.post-tag-four {
  font-weight: 500;
  font-size: 13px;
  display: inline-block;
  line-height: 1;
  color: var(--tg-heading-color);
  border-radius: 4px;
  padding: 8px 14px;
  margin-bottom: 18px;
  background: var(--tg-theme-secondary);
}

.post-tag-four:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
}

.pagination__wrap ul li.previous,
.pagination__wrap ul li.next {
  display: none;
}

/*=============================
    21. Newsletter
===============================*/
.newsletter__area {
  background: var(--tg-theme-primary);
  position: relative;
  padding: 35px 0 0;
  z-index: 1;
  overflow: hidden;
}

@media (max-width: 991.98px) {
  .newsletter__area {
    padding: 40px 0;
  }
}
.newsletter__area-two {
  background: var(--tg-common-color-gray-10);
}

.newsletter__inner-wrap {
  background: var(--tg-theme-primary);
  border-radius: 20px;
  padding: 66px 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

@media (max-width: 1500px) {
  .newsletter__inner-wrap {
    padding: 66px 70px;
  }
}
@media (max-width: 991.98px) {
  .newsletter__inner-wrap {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  .newsletter__inner-wrap {
    padding: 40px 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .newsletter__inner-wrap {
    padding: 50px 30px;
  }
}
.newsletter__inner-wrap .title {
  margin-bottom: 0;
  color: var(--tg-common-color-white);
  font-size: 30px;
  font-weight: 700;
  text-transform: capitalize;
  width: 44%;
  flex: 0 0 auto;
}

@media (max-width: 1199.98px) {
  .newsletter__inner-wrap .title {
    width: 60%;
    font-size: 28px;
  }
}
@media (max-width: 991.98px) {
  .newsletter__inner-wrap .title {
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .newsletter__inner-wrap .title {
    font-size: 26px;
  }
}
.newsletter__inner-wrap .btn {
  border: none;
  background: var(--tg-common-color-white);
  border-radius: 6px;
  box-shadow: none;
}

.newsletter__inner-wrap .btn:hover {
  background: var(--tg-theme-secondary);
  color: var(--tg-heading-color);
}

.newsletter__inner-wrap .btn:hover svg {
  color: var(--tg-heading-color) !important;
}

.newsletter__inner-wrap .shape {
  position: absolute;
  z-index: -1;
}

.newsletter__inner-wrap .shape.shape-one {
  left: 0;
  top: 0;
  max-width: 198px;
}

.newsletter__inner-wrap .shape.shape-two {
  right: 5%;
  top: 14%;
  max-width: 138px;
  animation-duration: 30s;
}

@media (max-width: 767.98px) {
  .newsletter__inner-wrap .shape.shape-two {
    display: none;
  }
}
@media (max-width: 1199.98px) {
  .newsletter__inner-wrap-two {
    flex-wrap: wrap;
  }
  .newsletter__inner-wrap-two .title {
    width: 100%;
    text-align: center;
  }
}
.newsletter__btn {
  flex-grow: 1;
  text-align: right;
}

.newsletter__img-wrap {
  position: relative;
  text-align: center;
}

@media (max-width: 991.98px) {
  .newsletter__img-wrap {
    display: none;
  }
}
.newsletter__img-wrap img:not(:nth-child(1)) {
  position: absolute;
}

.newsletter__img-wrap img:nth-child(2) {
  left: 5%;
  bottom: 0;
  z-index: -1;
}

@media (max-width: 1199.98px) {
  .newsletter__img-wrap img:nth-child(2) {
    left: 15%;
  }
}
.newsletter__img-wrap img:nth-child(3) {
  right: 16%;
  top: 18%;
  z-index: -1;
}

@media (max-width: 1199.98px) {
  .newsletter__img-wrap img:nth-child(3) {
    right: 5%;
  }
}
@media (max-width: 991.98px) {
  .newsletter__content {
    text-align: center;
  }
}
.newsletter__content .title {
  margin-bottom: 25px;
  color: var(--tg-common-color-white);
  font-size: 36px;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 1.2;
}

@media (max-width: 1199.98px) {
  .newsletter__content .title {
    font-size: 34px;
  }
}
.newsletter__content .title span {
  font-weight: 700;
}

.newsletter__form {
  width: 80%;
}

@media (max-width: 1199.98px) {
  .newsletter__form {
    width: 100%;
  }
}
.newsletter__form form {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 767.98px) {
  .newsletter__form form {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.newsletter__form form input {
  width: 100%;
  border: 1px solid #433EC2;
  background: #4A44D1;
  border-radius: 50px;
  color: var(--tg-common-color-white);
  font-size: 16px;
  padding: 18px 20px;
  line-height: 1.4;
  height: 60px;
  flex-grow: 1;
}

.newsletter__form form input::placeholder {
  color: #9E9BF1;
  font-size: 16px;
  text-transform: capitalize;
}

.newsletter__form form .btn {
  background: var(--tg-theme-secondary);
  min-width: 198px;
  border: 1px solid #141109;
  padding: 20px 30px;
  color: var(--tg-heading-color);
  box-shadow: 4px 6px 0px 0px #3D3D3D;
}

.newsletter__form form .btn:hover {
  box-shadow: none;
}

.newsletter__form-two {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-grow: 1;
}

@media (max-width: 767.98px) {
  .newsletter__form-two {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.newsletter__form-two input {
  width: 100%;
  border: none;
  background: var(--tg-common-color-white);
  border-radius: 6px;
  color: var(--tg-heading-color);
  font-weight: 500;
  font-size: 16px;
  padding: 16px 25px;
  height: 60px;
}

.newsletter__form-two .btn {
  background: var(--tg-theme-secondary);
  color: var(--tg-heading-color);
  min-width: 180px;
  padding: 21px 30px;
}

.newsletter__form-two .btn:hover {
  background: var(--tg-heading-color);
  color: var(--tg-common-color-white);
}

.newsletter__shape img {
  position: absolute;
  right: 14%;
  top: 0;
  z-index: -1;
}

@media (max-width: 1500px) {
  .newsletter__shape img {
    right: 0;
  }
}
@media (max-width: 1199.98px) {
  .newsletter__shape img {
    display: none;
  }
}
/*=============================
    15. Work
===============================*/
.work__images {
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 991.98px) {
  .work__images {
    margin-bottom: 50px;
  }
}
.work__images .shape {
  right: 220px;
}

@media (max-width: 767.98px) {
  .work__images .shape {
    right: 88px;
  }
}
.work__content {
  width: 85%;
}

@media (max-width: 1199.98px) {
  .work__content {
    width: 100%;
  }
}
.work__content > p {
  margin-bottom: 25px;
}

.work__list-wrap {
  display: flex;
  align-items: center;
  margin: 0 -15px;
}

.work__list-box {
  width: 50%;
  flex: 0 0 auto;
  padding: 0 15px;
  margin-bottom: 30px;
}

.work__list-box-top {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 18px;
}

@media (max-width: 1199.98px) {
  .work__list-box-top {
    display: block;
  }
}
.work__list-box-top .title {
  font-size: 20px;
  margin-bottom: 0;
}

.work__list-box .icon {
  width: 60px;
  height: 60px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  display: flex;
  border-radius: 50%;
  background: #FF6666;
  border: 1px solid #CE3B3B;
  font-size: 35px;
  line-height: 0;
  color: var(--tg-common-color-white);
  -ms-box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.25);
  -o-box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.25);
}

@media (max-width: 1199.98px) {
  .work__list-box .icon {
    margin-bottom: 20px;
  }
}
.work__list-box p {
  margin-bottom: 0;
}

.work__list-box:nth-child(2) .icon {
  background: #1BCBE3;
  border: 1px solid #019AAF;
}

/*=============================
    15. Video
===============================*/
.video__area {
  position: relative;
  padding: 160px 0;
}

@media (max-width: 1199.98px) {
  .video__area {
    padding: 150px 0;
  }
}
@media (max-width: 991.98px) {
  .video__area {
    padding: 140px 0;
  }
}
.video__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  z-index: -1;
}

.video__bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--tg-common-color-black-3);
  opacity: 0.3;
  z-index: -1;
}

.video__content {
  margin-left: 90px;
}

@media (max-width: 1199.98px) {
  .video__content {
    margin-left: 0;
  }
}
@media (max-width: 991.98px) {
  .video__content {
    text-align: center;
  }
}
.video__content .title {
  color: var(--tg-common-color-white);
  font-size: 48px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 15px;
}

@media (max-width: 1500px) {
  .video__content .title {
    font-size: 45px;
  }
}
@media (max-width: 1199.98px) {
  .video__content .title {
    font-size: 42px;
  }
}
@media (max-width: 991.98px) {
  .video__content .title {
    font-size: 40px;
  }
}
.video__content p {
  margin-bottom: 30px;
  color: var(--tg-common-color-white);
  text-transform: capitalize;
}

.video__play-btn {
  margin-left: 180px;
}

@media (max-width: 991.98px) {
  .video__play-btn {
    margin: 0 0 50px;
  }
}
.video__play-btn a {
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tg-common-color-white);
  border-radius: 50%;
  font-size: 25px;
  color: var(--tg-common-color-black-3);
  line-height: 0;
  position: relative;
}

@media (max-width: 991.98px) {
  .video__play-btn a {
    margin: 0 auto;
  }
}
.video__play-btn a::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  border: 1px solid var(--tg-common-color-white);
  border-radius: 50%;
  transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
  animation: pulse-border 1500ms ease-out infinite;
}

.video__play-btn a:hover {
  background: var(--tg-theme-secondary);
}

/*=============================
    22. Contact
===============================*/
.contact-info-wrap .list-wrap li {
  display: flex;
  align-items: center;
  padding: 40px 40px;
  margin-bottom: 30px;
  border-radius: 10px;
  border: 1px solid #E1E1E1;
  background: #F7F7FA;
  gap: 25px;
}

@media (max-width: 1199.98px) {
  .contact-info-wrap .list-wrap li {
    padding: 25px 25px;
    gap: 15px;
    flex-wrap: wrap;
  }
}
@media (max-width: 991.98px) {
  .contact-info-wrap .list-wrap li {
    flex-wrap: nowrap;
  }
}
@media (max-width: 767.98px) {
  .contact-info-wrap .list-wrap li {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 767.98px) {
  .contact-info-wrap .list-wrap li {
    flex-direction: row;
    align-items: center;
  }
}
.contact-info-wrap .list-wrap li:last-child {
  margin-bottom: 0;
}

.contact-info-wrap .list-wrap li .icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
  font-size: 20px;
  line-height: 0;
  flex: 0 0 auto;
}

.contact-info-wrap .list-wrap li .content .title {
  font-size: 20px;
  margin-bottom: 5px;
}

.contact-info-wrap .list-wrap li .content p {
  margin-bottom: 0;
  font-weight: 500;
  line-height: 1.4;
}

.contact-info-wrap .list-wrap li .content a {
  display: block;
  font-weight: 500;
  color: var(--tg-body-color);
  line-height: 1.4;
}

.contact-info-wrap .list-wrap li .content a:hover {
  color: var(--tg-theme-primary);
}

.contact-form-wrap {
  border-radius: 12px;
  border: 1px solid #E1E1E1;
  background: #F7F7FA;
  padding: 30px 40px 42px;
}

@media (max-width: 1199.98px) {
  .contact-form-wrap {
    padding: 30px 25px 40px;
  }
}
@media (max-width: 991.98px) {
  .contact-form-wrap {
    padding: 30px 30px 40px;
    margin-top: 60px;
  }
}
@media (max-width: 767.98px) {
  .contact-form-wrap {
    padding: 25px 20px 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .contact-form-wrap {
    padding: 30px 25px 40px;
  }
}
.contact-form-wrap .title {
  margin-bottom: 5px;
  position: relative;
  font-size: 30px;
}

@media (max-width: 1199.98px) {
  .contact-form-wrap .title {
    font-size: 28px;
  }
}
@media (max-width: 767.98px) {
  .contact-form-wrap .title {
    font-size: 24px;
  }
}
.contact-form-wrap p {
  margin-bottom: 15px;
}

.contact-form-wrap .form-grp {
  margin-bottom: 20px;
}

.contact-form-wrap .form-grp input, .contact-form-wrap .form-grp textarea {
  width: 100%;
  border: 1px solid #E1E4E7;
  border-radius: 5px;
  display: block;
  background: var(--tg-common-color-white);
  font-weight: 400;
  font-size: 16px;
  color: var(--tg-body-color);
  padding: 11px 20px;
  height: 50px;
  transition: 0.3s;
}

.contact-form-wrap .form-grp input::placeholder, .contact-form-wrap .form-grp textarea::placeholder {
  font-weight: 400;
  font-size: 16px;
  color: var(--tg-body-color);
  opacity: 0.8;
}

.contact-form-wrap .form-grp input:focus, .contact-form-wrap .form-grp textarea:focus {
  border-color: var(--tg-theme-primary);
}

.contact-form-wrap .form-grp textarea {
  min-height: 230px;
  max-height: 230px;
}

.contact-form-wrap .row {
  --bs-gutter-x: 20px;
}

.contact-map {
  width: 100%;
  height: 555px;
  margin-top: 70px;
}

@media (max-width: 1199.98px) {
  .contact-map {
    height: 430px;
  }
}
@media (max-width: 767.98px) {
  .contact-map {
    height: 380px;
  }
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(1);
  border-radius: 12px;
}

.ajax-response.error, .ajax-response.success {
  margin: 20px 0 0 !important;
}

.ajax-response.error {
  color: red;
}

.ajax-response.success {
  color: green;
}

/*=============================
    05. SignUp
===============================*/
.singUp-wrap {
  background: #F7F7FA;
  border: 1px solid #E1E1E1;
  border-radius: 8px;
  padding: 30px 50px 40px;
}

@media (max-width: 767.98px) {
  .singUp-wrap {
    padding: 30px 20px 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .singUp-wrap {
    padding: 30px 30px 30px;
  }
}
.singUp-wrap .title {
  font-size: 36px;
  margin-bottom: 10px;
}

@media (max-width: 767.98px) {
  .singUp-wrap .title {
    font-size: 26px;
  }
}
.singUp-wrap p {
  margin-bottom: 25px;
}

@media (max-width: 767.98px) {
  .singUp-wrap p br {
    display: none;
  }
}
.account__social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tg-common-color-white);
  border: 1px solid #E1E1E1;
  border-radius: 5px;
  font-size: 16px;
  gap: 10px;
  color: var(--tg-common-color-dark);
  padding: 10px 20px;
}

.account__social-btn:hover {
  color: var(--tg-theme-primary);
  border-color: var(--tg-theme-primary);
}

.account__divider {
  position: relative;
  text-align: center;
  -webkit-padding-after: 35px;
          padding-block-end: 35px;
  -webkit-margin-before: 35px;
          margin-block-start: 35px;
}

.account__divider::before {
  content: "";
  height: 1px;
  width: 100%;
  left: 0;
  top: 0;
  background: #E1E1E1;
  position: absolute;
}

.account__divider span {
  font-size: 16px;
  color: var(--tg-heading-color);
  padding: 20px;
  top: -35px;
  left: 45%;
  position: absolute;
  background: #F7F7FA;
}

.account__form .form-grp {
  margin-bottom: 20px;
}

.account__form .form-grp label {
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
}

.account__form .form-grp input {
  width: 100%;
  padding: 14px 20px;
  font-size: 16px;
  color: var(--tg-heading-color);
  border: 1px solid #E1E1E1;
  background: var(--tg-common-color-white);
  border-radius: 5px;
  line-height: 1;
  transition: all 0.3s ease-out 0s;
}

.account__form .form-grp input::placeholder {
  font-weight: 400;
  font-size: 16px;
  color: var(--tg-body-color);
  opacity: 0.8;
  text-transform: capitalize;
}

.account__form .form-grp input:focus {
  border-color: var(--tg-theme-primary);
}

.account__form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 30px;
}

.account__switch {
  margin-top: 30px;
}

.account__switch p {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.account__switch p a {
  color: var(--tg-theme-primary);
  text-decoration: underline;
}

.account__switch p a:hover {
  color: var(--tg-theme-secondary);
}

.account__check {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: space-between;
}

.account__check-remember {
  display: flex;
  gap: 5px;
}

.account__check-remember input {
  width: 20px;
  height: 20px;
  -webkit-margin-end: 3px;
          margin-inline-end: 3px;
}

.account__check-remember input:focus {
  box-shadow: none;
}

.account__check-remember input:checked {
  background-color: var(--tg-theme-primary);
  border-color: var(--tg-theme-primary);
}

.account__check-remember label {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.account__check-forgot a {
  color: var(--tg-theme-primary);
  font-size: 16px;
  text-decoration: underline;
}

.account__check-forgot a:hover {
  color: var(--tg-theme-primary);
}

/*=============================
    15. Check Out
===============================*/
.coupon__code-info {
  background: #f5f5f5;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 25px;
}

@media (max-width: 767.98px) {
  .coupon__code-info {
    flex-wrap: wrap;
  }
}
.coupon__code-info a:hover {
  text-decoration: underline;
  color: var(--tg-theme-primary);
}

.coupon__code-form {
  margin-bottom: 35px;
  display: none;
}

.coupon__code-form p {
  margin-bottom: 15px;
}

.coupon__code-form input {
  width: 100%;
  background: #f5f5f5;
  height: 55px;
  border: none;
  color: var(--tg-heading-color);
  padding: 0 20px;
  border-radius: 30px;
  margin-bottom: 15px;
}

.customer__form-wrap {
  border: 1px solid #ebebeb;
  padding: 30px;
}

@media (max-width: 767.98px) {
  .customer__form-wrap {
    padding: 25px 20px;
  }
}
.customer__form-wrap .title {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid #ebebeb;
  color: var(--tg-heading-color);
  font-family: var(--tg-heading-font-family);
  line-height: 1;
}

@media (max-width: 767.98px) {
  .customer__form-wrap .title {
    font-size: 1.3rem;
  }
}
.customer__form-wrap .title.title-two {
  margin-top: 20px;
}

.customer__form-wrap .form-grp {
  margin-bottom: 15px;
}

.customer__form-wrap .form-grp.select-grp {
  position: relative;
}

.customer__form-wrap .form-grp.select-grp::after {
  content: "\f078";
  position: absolute;
  bottom: 13px;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  right: 20px;
  font-size: 14px;
  color: var(--tg-theme-primary);
}

.customer__form-wrap .form-grp label {
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
  color: var(--tg-body-color);
}

.customer__form-wrap .form-grp textarea, .customer__form-wrap .form-grp input {
  width: 100%;
  color: var(--tg-heading-color);
  height: 53px;
  padding: 0 20px;
  background: #f5f5f5;
  border: none;
}

.customer__form-wrap .form-grp textarea {
  padding: 10px 20px 0;
  min-height: 120px;
  max-height: 120px;
}

.customer__form-wrap .form-grp select {
  background-color: #f5f5f5;
  border: none;
  color: var(--tg-heading-color);
  font-weight: 400;
  font-size: 16px;
  text-transform: capitalize;
  border-radius: 0;
  outline: none;
  padding: 12px 37px 9px 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  line-height: 1.2;
  height: 53px;
  cursor: pointer;
}

.order__info-wrap {
  border: 2px solid var(--tg-theme-primary);
  height: -moz-fit-content;
  height: fit-content;
  padding: 30px;
}

@media (max-width: 991.98px) {
  .order__info-wrap {
    margin-top: 50px;
  }
}
@media (max-width: 767.98px) {
  .order__info-wrap {
    padding: 25px 20px;
  }
}
.order__info-wrap > .title {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid #ebebeb;
}

.order__info-wrap .list-wrap {
  margin-bottom: 20px;
}

.order__info-wrap .list-wrap li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ebebeb;
  color: var(--tg-body-color);
  font-weight: 600;
  font-size: 15px;
  gap: 8px;
  padding: 12px 0;
}

.order__info-wrap .list-wrap li span {
  color: var(--tg-heading-color);
  display: block;
  line-height: 1;
  font-weight: 700;
}

.order__info-wrap .list-wrap li.title span {
  color: var(--tg-body-color);
}

.order__info-wrap .list-wrap li:last-child span {
  font-size: 1.25rem;
}

.order__info-wrap p {
  margin-bottom: 15px;
}

.order__info-wrap p a {
  text-decoration: underline;
}

.order__info-wrap p a:hover {
  color: var(--tg-theme-primary);
}

.order__info-wrap .btn {
  width: 100%;
  margin-top: 10px;
  text-align: center;
}

/*=============================
    15. Cart
===============================*/
.cart__table thead th {
  padding: 12px 12px;
  font-size: 15px;
  font-weight: 600;
}

@media (max-width: 767.98px) {
  .cart__table thead th.product__subtotal, .cart__table thead th.product__price {
    display: none;
  }
}
.cart__table tbody tr {
  position: relative;
}

.cart__table tbody td {
  padding: 12px 17px;
  text-align: left;
  line-height: 1.1;
  border: none;
  border-top: 1px solid #ebebeb;
  vertical-align: middle;
  color: var(--tg-body-color);
}

@media (max-width: 767.98px) {
  .cart__table tbody td {
    padding: 12px 10px;
  }
}
.cart__table tbody td:first-child {
  padding-left: 0;
}

.cart__table tbody td a {
  color: var(--tg-theme-primary);
}

.cart__table tbody td.product__name {
  font-weight: 500;
}

.cart__table tbody td.product__remove {
  padding-right: 5px;
  text-align: right;
}

.cart__table tbody td.product__remove a {
  font-size: 25px;
}

.cart__table tbody td.product__quantity {
  text-align: right;
  padding-right: 0;
}

.cart__table .product__thumb img {
  max-width: 70px;
}

@media (max-width: 767.98px) {
  .cart__table .product__price {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .cart__table .product__remove a {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.375rem;
    height: 1.375rem;
    border-radius: 50%;
    color: #fff;
    background-color: red;
    font-size: 15px !important;
    left: 0;
    margin-top: -10px;
  }
}
@media (max-width: 767.98px) {
  .cart__table .product__subtotal {
    display: none;
  }
}
.cart__table .product__remove {
  padding: 0 !important;
  width: 0 !important;
}

.cart__actions {
  padding-top: 25px !important;
  padding-bottom: 10px !important;
  padding-right: 0 !important;
}

.cart__actions-form {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 767.98px) {
  .cart__actions-form {
    width: 100%;
  }
}
.cart__actions-form input {
  flex: 1 1;
  width: 100%;
  margin-bottom: 0;
  height: 50px;
  background: #f5f5f5;
  color: var(--tg-heading-color);
  padding: 0 20px;
  border: 0;
  border-radius: 30px;
  padding-right: 0;
}

.cart__collaterals-wrap {
  border: 1px solid #ebebeb;
  border-radius: 0;
  padding: 1.25rem;
  height: 100%;
  margin-left: 50px;
}

@media (max-width: 1199.98px) {
  .cart__collaterals-wrap {
    margin-left: 0;
  }
}
@media (max-width: 991.98px) {
  .cart__collaterals-wrap {
    margin-top: 50px;
  }
}
.cart__collaterals-wrap .title {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 0.9375rem;
  border-bottom: 0.9375rem;
  border-bottom: 1px solid #ebebeb;
}

.cart__collaterals-wrap .list-wrap {
  padding-bottom: 0.9375rem;
}

.cart__collaterals-wrap .list-wrap li {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  border-bottom: 1px solid #ebebeb;
  color: var(--tg-heading-color);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 5px;
}

.cart__collaterals-wrap .list-wrap li span {
  color: var(--tg-body-color);
  font-weight: 400;
}

.cart__collaterals-wrap .list-wrap li span.amount {
  font-weight: 600;
  color: var(--tg-heading-color);
  font-size: 1.25rem;
}

.cart__collaterals-wrap .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.f-right {
  float: right;
}

@media (max-width: 767.98px) {
  .f-right {
    float: none;
  }
}
@media (max-width: 767.98px) {
  .update__cart-btn {
    text-align: center !important;
    width: 100%;
    margin-top: 20px;
  }
}
@media (max-width: 767.98px) {
  .update__cart-btn .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}
/*=============================
    15. Dashboard
===============================*/
.dashboard__area {
  position: relative;
  z-index: 2;
  padding-top: 70px;
}

.dashboard__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.dashboard__top-wrap {
  position: relative;
}

.dashboard__top-bg {
  background-size: cover;
  background-position: center center;
  position: relative;
  margin-bottom: 30px;
  border-radius: 10px;
  min-height: 350px;
  z-index: 1;
}

@media (max-width: 767.98px) {
  .dashboard__top-bg {
    background-position: right center;
  }
}
.dashboard__top-bg::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  display: block;
  z-index: -1;
  content: "";
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.5) 90%);
  transition: opacity 0.65s cubic-bezier(0.05, 0.2, 0.1, 1);
  cursor: pointer;
  border-radius: 10px;
}

.dashboard__instructor-info {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  justify-content: space-between;
  position: absolute;
  padding: 0 40px 30px;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
}

@media (max-width: 991.98px) {
  .dashboard__instructor-info {
    padding: 0 30px 30px;
  }
}
@media (max-width: 767.98px) {
  .dashboard__instructor-info {
    flex-wrap: wrap;
    padding: 0 20px 30px;
    gap: 15px;
  }
}
.dashboard__instructor-info-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 767.98px) {
  .dashboard__instructor-info-left {
    flex-wrap: wrap;
    gap: 8px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .dashboard__instructor-info-left {
    gap: 20px;
  }
}
.dashboard__instructor-info-left .thumb {
  width: 120px;
  height: 120px;
}

.dashboard__instructor-info-left .thumb img {
  border-radius: 50%;
  width: 100%;
  background: var(--tg-common-color-white);
  border: 2px solid var(--tg-common-color-white);
  padding: 4px;
}

.dashboard__instructor-info-left .content .title {
  font-size: 20px;
  color: var(--tg-common-color-white);
  margin-bottom: 12px;
  text-transform: capitalize;
}

@media (max-width: 767.98px) {
  .dashboard__instructor-info-left .content .title {
    font-size: 18px;
    margin-bottom: 8px;
  }
}
.dashboard__instructor-info-left .content .list-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 15px;
}

.dashboard__instructor-info-left .content .list-wrap li {
  color: var(--tg-common-color-white);
  display: flex;
  align-items: center;
  gap: 5px;
}

@media (max-width: 767.98px) {
  .dashboard__instructor-info-left .content .list-wrap li {
    font-size: 13px;
  }
}
.dashboard__instructor-info-left .content .list-wrap li svg {
  color: var(--tg-common-color-white);
  width: 18px;
  height: 18px;
}

@media (max-width: 767.98px) {
  .dashboard__instructor-info-left .content .list-wrap li svg {
    width: 16px;
    height: 16px;
  }
}
.dashboard__instructor-info-right {
  margin-bottom: 20px;
}

@media (max-width: 767.98px) {
  .dashboard__instructor-info-right {
    margin-bottom: 0;
  }
}
.dashboard__inner-wrap {
  background: var(--tg-common-color-gray-9);
  border-radius: 15px;
  border: 1px solid var(--tg-border-7);
  padding: 30px 30px 40px 0;
}

@media (max-width: 1199.98px) {
  .dashboard__inner-wrap {
    padding: 30px 20px 40px 0;
  }
}
@media (max-width: 991.98px) {
  .dashboard__inner-wrap {
    padding: 30px;
  }
}
@media (max-width: 767.98px) {
  .dashboard__inner-wrap {
    padding: 30px 20px;
  }
}
.dashboard__sidebar-wrap {
  padding: 30px;
  border-radius: 15px 0 0 15px;
  background: var(--tg-common-color-white);
  overflow: hidden;
  border: 1px solid var(--tg-border-7);
  margin: -31px 0 -41px -1px;
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
}

@media (max-width: 1199.98px) {
  .dashboard__sidebar-wrap {
    padding: 20px 10px;
  }
}
@media (max-width: 991.98px) {
  .dashboard__sidebar-wrap {
    padding: 30px;
    border-radius: 15px;
    margin: 0;
  }
}
@media (max-width: 767.98px) {
  .dashboard__sidebar-wrap {
    padding: 25px 20px;
  }
}
.dashboard__sidebar-title .title {
  margin-bottom: 0;
  text-transform: capitalize;
  font-size: 15px;
  letter-spacing: 0;
  font-weight: 500;
  color: #6D6C80;
}

.dashboard__sidebar-menu .list-wrap li {
  margin-bottom: 5px;
}

.dashboard__sidebar-menu .list-wrap li:last-child {
  margin-bottom: 0;
}

.dashboard__sidebar-menu .list-wrap li a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--tg-body-color);
  font-size: 16px;
  font-weight: 500;
  background: var(--tg-common-color-gray-11);
  border-radius: 6px;
  padding: 9px 20px;
}

@media (max-width: 1199.98px) {
  .dashboard__sidebar-menu .list-wrap li a {
    padding: 9px 10px;
  }
}
@media (max-width: 991.98px) {
  .dashboard__sidebar-menu .list-wrap li a {
    padding: 9px 20px;
  }
}
.dashboard__sidebar-menu .list-wrap li a i {
  line-height: 0;
  font-size: 18px;
}

.dashboard__sidebar-menu .list-wrap li a:hover {
  color: var(--tg-theme-primary);
  background: #E9E7FF;
}

.dashboard__sidebar-menu .list-wrap li.active a {
  color: var(--tg-theme-primary);
  background: #E9E7FF;
}

@media (max-width: 991.98px) {
  .dashboard__count-wrap {
    margin-top: 40px;
  }
}
.dashboard__content-wrap {
  padding: 30px;
  overflow: hidden;
  background: var(--tg-common-color-white);
  border-radius: 15px;
  border: 1px solid var(--tg-border-7);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1199.98px) {
  .dashboard__content-wrap {
    padding: 30px 20px;
  }
}
.dashboard__content-wrap-two {
  padding: 30px 30px 0 30px;
}

@media (max-width: 1199.98px) {
  .dashboard__content-wrap-two {
    padding: 30px 20px 0 20px;
  }
}
.dashboard__content-title .title {
  margin-bottom: 20px;
  font-size: 18px;
  text-transform: capitalize;
  font-weight: 600;
}

.dashboard__counter-item {
  padding: 25px;
  transition: transform 0.65s cubic-bezier(0.23, 1, 0.32, 1);
  margin-bottom: 25px;
  border-radius: 15px;
  border: 1px solid var(--tg-border-7);
  background: var(--tg-common-color-white);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 15px;
}

@media (max-width: 1199.98px) {
  .dashboard__counter-item {
    padding: 20px;
  }
}
.dashboard__counter-item:hover {
  transform: translateY(-3px);
}

.dashboard__counter-item .icon {
  position: relative;
  background: var(--tg-theme-primary);
  width: 70px;
  height: 70px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  line-height: 0;
  color: var(--tg-common-color-white);
  flex: 0 0 auto;
}

@media (max-width: 1199.98px) {
  .dashboard__counter-item .icon {
    width: 60px;
    height: 60px;
  }
}
.dashboard__counter-item .content .count {
  margin-bottom: 8px;
  font-family: var(--tg-heading-font-family);
  font-size: 24px;
  font-weight: 600;
  color: var(--tg-heading-color);
  line-height: 1;
}

.dashboard__counter-item .content p {
  margin-bottom: 0;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--tg-heading-color);
  line-height: 1;
}

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

.dashboard__review-table .table {
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .dashboard__review-table .table {
    min-width: 780px;
  }
}
.dashboard__review-table thead {
  vertical-align: middle;
}

.dashboard__review-table thead th {
  color: var(--tg-heading-color);
  font-weight: 700;
  font-size: 16px;
  background: #F3F3F9;
  padding: 10px 20px;
  border: none;
}

@media (max-width: 1199.98px) {
  .dashboard__review-table thead th {
    padding: 10px 10px;
  }
}
.dashboard__review-table tbody tr:nth-child(even) td {
  background: var(--tg-common-color-gray);
}

.dashboard__review-table tbody tr td {
  padding: 10px 20px;
  border: none;
  vertical-align: middle;
}

@media (max-width: 1199.98px) {
  .dashboard__review-table tbody tr td {
    padding: 10px 10px;
  }
}
.dashboard__review-table tbody tr td > a {
  color: var(--tg-heading-color);
  font-weight: 500;
}

.dashboard__review-table tbody tr td > a:hover {
  color: var(--tg-theme-primary);
}

.dashboard__review-table tbody tr td p {
  margin-bottom: 0;
}

.dashboard__review-table tbody tr td p.color-black {
  color: var(--tg-heading-color);
}

.dashboard__review-table tbody tr td .course-feedback {
  color: var(--tg-body-color);
}

.dashboard__review-table tbody tr td .course-feedback a {
  color: var(--tg-heading-color);
  font-weight: 500;
  font-size: 15px;
}

.dashboard__review-table tbody tr td .course-feedback a:hover {
  color: var(--tg-theme-primary);
}

.dashboard__review-action {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-end;
}

@media (max-width: 1199.98px) {
  .dashboard__review-action {
    gap: 10px;
  }
}
.dashboard__review-action a {
  font-size: 30px;
  height: 30px;
  line-height: 0;
  font-size: 14px;
  padding: 0 14px;
  background: rgba(47, 87, 239, 0.1294117647);
  color: var(--tg-theme-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
}

.dashboard__review-action a:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
  transform: translateY(-2px);
}

.dashboard__review-action a:nth-child(2) {
  color: #FF0003;
  background: rgba(255, 0, 3, 0.062745098);
}

.dashboard__review-action a:nth-child(2):hover {
  background: #FF0003;
  color: var(--tg-common-color-white);
}

.dashboard__quiz-info .title {
  margin-bottom: 0;
  font-size: 16px;
  font-family: var(--tg-body-font-family);
  font-weight: 500;
}

.dashboard__quiz-info span {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--tg-body-color);
}

.dashboard__quiz-info span a {
  color: var(--tg-heading-color);
}

.dashboard__quiz-info span a:hover {
  color: var(--tg-theme-primary);
}

.dashboard__quiz-result {
  display: inline-block;
  background: rgba(62, 183, 94, 0.062745098);
  padding: 5px 7px;
  font-size: 12px;
  display: flex;
  height: 22px;
  align-items: center;
  border-radius: 6px;
  justify-content: center;
  width: max-content;
  color: #3EB75E;
}

.dashboard__quiz-result.fail {
  background: rgba(255, 0, 3, 0.062745098);
  color: #FF0003;
}

.dashboard__quiz-result.processing {
  background: rgba(47, 87, 239, 0.1294117647);
  color: #2f57ef;
}

.dashboard__quiz-result.hold {
  background: rgba(255, 143, 60, 0.062745098);
  color: #FF8F3C;
}

.dashboard__nav-wrap .nav-tabs {
  border-bottom: 3px solid #D9D9F3;
  gap: 5px 30px;
  flex-wrap: wrap;
  margin: 0;
  margin-bottom: 30px;
}

@media (max-width: 767.98px) {
  .dashboard__nav-wrap .nav-tabs {
    justify-content: center;
  }
}
.dashboard__nav-wrap .nav-tabs .nav-link {
  font-weight: var(--tg-fw-medium);
  color: #7F7E97;
  border: none;
  position: relative;
  background: transparent;
  padding: 16px 28px;
}

.dashboard__nav-wrap .nav-tabs .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  right: 0;
  width: 0;
  height: 3px;
  background: var(--tg-theme-primary);
  border-radius: 30px;
  margin: 0 auto;
  z-index: 1;
  transition: all 0.3s ease-out 0s;
}

.dashboard__nav-wrap .nav-tabs .nav-link.active {
  color: var(--tg-theme-primary);
}

.dashboard__nav-wrap .nav-tabs .nav-link.active::after {
  width: 100%;
}

.profile__content-wrap .list-wrap li {
  display: flex;
  gap: 4px 30px;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 18px;
}

@media (max-width: 767.98px) {
  .profile__content-wrap .list-wrap li {
    flex-direction: column;
    font-size: 16px;
  }
}
.profile__content-wrap .list-wrap li span {
  min-width: 290px;
}

@media (max-width: 1199.98px) {
  .profile__content-wrap .list-wrap li span {
    min-width: 220px;
  }
}
.profile__content-wrap .list-wrap li:last-child {
  margin-bottom: 0;
}

.review__wrap {
  display: flex;
  align-items: center;
  gap: 5px;
}

.review__wrap .rating {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: var(--tg-common-color-yellow);
}

.review__wrap span {
  font-size: 14px;
  font-weight: 500;
}

.review__wrap-two span {
  color: var(--tg-common-color-white);
}

.instructor__cover-bg {
  position: relative;
  background-size: cover;
  background-position: center center;
  min-height: 245px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.instructor__cover-info {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 0 40px 30px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

@media (max-width: 767.98px) {
  .instructor__cover-info {
    padding: 0 25px 25px;
  }
}
.instructor__cover-info-left {
  position: relative;
}

.instructor__cover-info-left .thumb {
  width: 120px;
  height: 120px;
}

.instructor__cover-info-left .thumb img {
  border-radius: 50%;
  width: 100%;
  background: var(--tg-common-color-white);
  border: 2px solid var(--tg-common-color-white);
  padding: 4px;
}

.instructor__cover-info-left button {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tg-common-color-white);
  border: none;
  color: var(--tg-theme-primary);
  border-radius: 50%;
  font-size: 14px;
  padding: 0;
}

.instructor__cover-info-left button:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
}

.instructor__profile-form .form-grp {
  margin-bottom: 15px;
}

.instructor__profile-form .form-grp label {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--tg-heading-color);
  font-family: var(--tg-heading-font-family);
}

.instructor__profile-form .form-grp textarea, .instructor__profile-form .form-grp input {
  width: 100%;
  background: transparent;
  border: 2px solid #e6e3f1;
  border-radius: 6px;
  line-height: 23px;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--tg-heading-color);
  height: 50px;
  display: block;
  transition: 0.3s ease-in-out;
}

.instructor__profile-form .form-grp textarea:focus, .instructor__profile-form .form-grp input:focus {
  border-color: var(--tg-theme-primary);
}

.instructor__profile-form .form-grp textarea::placeholder, .instructor__profile-form .form-grp input::placeholder {
  font-size: 14px;
}

.instructor__profile-form .form-grp textarea {
  min-height: 140px;
  max-height: 140px;
}

.instructor__profile-form .form-grp select {
  background-color: transparent;
  border: 2px solid #e6e3f1;
  color: var(--tg-heading-color);
  font-weight: 400;
  font-size: 16px;
  text-transform: capitalize;
  border-radius: 6px;
  outline: none;
  padding: 10px 37px 10px 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  line-height: 1.2;
  height: 50px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.instructor__profile-form .form-grp select:focus {
  border-color: var(--tg-theme-primary);
}

.instructor__profile-form .form-grp.select-grp {
  position: relative;
}

.instructor__profile-form .form-grp.select-grp::after {
  content: "\f078";
  position: absolute;
  bottom: 13px;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  right: 20px;
  font-size: 14px;
  color: var(--tg-theme-primary);
}

.load-more-btn .link-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: var(--tg-heading-color);
  font-weight: 600;
  text-decoration: underline;
}

.load-more-btn .link-btn svg {
  width: 14px;
  height: 14px;
}

.load-more-btn .link-btn:hover {
  color: var(--tg-theme-primary);
}

/*=============================
    15. Lesson
===============================*/
.lesson__content > .title {
  margin-bottom: 20px;
  font-size: 20px;
  padding: 17px 20px;
  border-bottom: 1px solid #DCDCEB;
}

.lesson__content .accordion-item {
  border: none;
  background: transparent;
}

.lesson__content .accordion-button {
  border: none;
  box-shadow: none;
  font-size: 16px;
  color: var(--tg-heading-color);
  padding: 18px 50px 18px 20px;
  font-weight: 500;
  border-bottom: 1px solid #DCDCEB;
  display: flex;
  align-items: center;
}

.lesson__content .accordion-button span {
  margin-left: auto;
  font-size: 14px;
}

.lesson__content .accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--tg-theme-primary);
}

.lesson__content .accordion-button:not(.collapsed)::after {
  content: "\f068";
}

.lesson__content .accordion-button::after {
  content: "\f067";
  font-family: var(--tg-icon-font-family);
  font-weight: 700;
  background-image: none;
  width: auto;
  height: auto;
  position: absolute;
  right: 20px;
  top: 17px;
  font-size: 16px;
}

.lesson__content .accordion-body {
  padding: 0;
}

.lesson__content .course-item {
  padding: 13px 20px;
  background: #F8F8FF;
  margin-bottom: 2px;
}

.lesson__content .course-item-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--tg-common-color-dark);
  cursor: no-drop;
}

.lesson__content .course-item-link .item-name {
  display: flex;
  gap: 10px;
  align-items: center;
}

.lesson__content .course-item-link .item-name::before {
  content: "";
  display: block;
  background-image: url(/assets/img/icons/play.svg);
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
}

.lesson__content .course-item-link.active {
  color: var(--tg-theme-primary);
  cursor: pointer;
}

.lesson__content .course-item-meta {
  margin-left: auto;
  display: flex;
  align-items: center;
  line-height: 1;
  gap: 10px;
  flex: 0 0 auto;
}

.lesson__content .course-item-meta .duration {
  margin: 2px 0 0;
}

.lesson__video-wrap {
  margin-bottom: 40px;
  position: relative;
}

.lesson__video-wrap:hover .lesson__next-prev-button button {
  opacity: 1;
  visibility: visible;
}

.lesson__video-wrap-top {
  display: flex;
  align-items: center;
  background: var(--tg-theme-primary);
  padding: 13px 20px;
  justify-content: space-between;
  gap: 10px;
}

.lesson__video-wrap-top-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lesson__video-wrap-top-left a {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1294117647);
  border-radius: 50%;
  color: var(--tg-common-color-white);
  flex: 0 0 auto;
}

.lesson__video-wrap-top-left a i {
  transform: rotate(180deg);
}

.lesson__video-wrap-top-left span {
  display: block;
  color: var(--tg-common-color-white);
  font-size: 18px;
  font-weight: 500;
  font-family: var(--tg-heading-font-family);
}

@media (max-width: 767.98px) {
  .lesson__video-wrap-top-left span {
    font-size: 16px;
  }
}
.lesson__video-wrap-top-right a {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1294117647);
  color: var(--tg-common-color-white);
  border-radius: 50%;
  flex: 0 0 auto;
}

.lesson__video-wrap .plyr__poster {
  background-size: cover;
}

.lesson__video-wrap .plyr__control--overlaid {
  padding: 24px;
  background: var(--tg-theme-primary);
}

.lesson__video-wrap .plyr__control--overlaid:hover {
  background: var(--tg-theme-secondary);
}

.lesson__details-content {
  margin-right: 50px;
}

@media (max-width: 991.98px) {
  .lesson__details-content {
    margin: 0 30px;
  }
}
@media (max-width: 767.98px) {
  .lesson__details-content {
    margin: 0 15px;
  }
}
.lesson__next-prev-button button {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  width: 40px;
  height: 40px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1294117647);
  color: var(--tg-common-color-white);
  line-height: 0;
  font-size: 18px;
  border: 1px solid rgba(255, 255, 255, 0.27);
  opacity: 0;
  visibility: hidden;
}

.lesson__next-prev-button button.next-button {
  left: auto;
  right: 20px;
  transform: translateY(-50%) rotate(0deg);
}

.lesson__next-prev-button button:hover {
  background: var(--tg-theme-primary);
  border-color: var(--tg-theme-primary);
}

.plyr--video .plyr__control.plyr__tab-focus,
.plyr--video .plyr__control:hover,
.plyr--video .plyr__control[aria-expanded=true] {
  background: var(--tg-theme-primary);
}

.plyr--full-ui input[type=range] {
  color: var(--tg-theme-primary);
}

/*=============================
    23. 404 Error
===============================*/
.error-area {
  padding: 120px 0;
}

@media (max-width: 1500px) {
  .error-area {
    padding: 100px 0;
  }
}
.error-img {
  text-align: center;
  width: 648px;
  height: 323px;
  margin: 0 auto 65px;
}

@media (max-width: 1500px) {
  .error-img {
    margin-bottom: 45px;
  }
}
@media (max-width: 991.98px) {
  .error-img {
    margin-bottom: 40px;
  }
}
@media (max-width: 767.98px) {
  .error-img {
    margin-bottom: 30px;
    width: 100%;
    height: 100%;
  }
}
.error-img svg {
  width: 100%;
  height: 100%;
  color: var(--tg-theme-secondary);
}

.error-content .title {
  margin-bottom: 60px;
  font-weight: 700;
  font-size: 40px;
  letter-spacing: -1px;
}

@media (max-width: 1199.98px) {
  .error-content .title {
    margin-bottom: 35px;
    font-size: 35px;
  }
}
@media (max-width: 767.98px) {
  .error-content .title {
    font-size: 30px;
    margin-bottom: 30px;
    letter-spacing: 0;
  }
}
.error-content .title span {
  display: block;
  margin-top: 10px;
}

@media (max-width: 767.98px) {
  .error-content .title span {
    margin-top: 5px;
  }
}
.error-content .tg-button-wrap {
  justify-content: center;
}

p.form_error {
  color: red;
  font-size: 14px;
}

/*=============================
    24. Footer
===============================*/
.footer__area {
  background: var(--tg-common-color-black);
}

.footer__area-two {
  margin-top: -160px;
  background: var(--tg-common-color-black);
}

.footer__area-two .footer__top {
  padding: 230px 0 60px;
}

.footer__area-three {
  background: var(--tg-common-color-black);
}

.footer__area-five {
  padding-top: 100px;
  margin-top: -100px;
}

.footer__bg {
  position: relative;
  z-index: 1;
  margin: 22px 0 0;
}

.footer__bg-shape {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 22px;
  position: absolute;
  left: 0;
  top: -25px;
}

.footer__bg-shape svg {
  color: var(--tg-common-color-blue-2);
  width: 100%;
  height: 22px;
}

.footer__top {
  padding: 100px 0 60px;
}

@media (max-width: 767.98px) {
  .footer__top {
    padding: 80px 0 40px;
  }
}
.footer__top .row [class*=col-]:nth-child(2) .footer__widget {
  margin-left: 60px;
}

@media (max-width: 991.98px) {
  .footer__top .row [class*=col-]:nth-child(2) .footer__widget {
    margin-left: 0;
  }
}
.footer__top .row [class*=col-]:nth-child(3) .footer__widget {
  margin-left: 60px;
}

@media (max-width: 991.98px) {
  .footer__top .row [class*=col-]:nth-child(3) .footer__widget {
    margin-left: 0;
  }
}
.footer__top-three {
  position: relative;
  z-index: 1;
}

.footer__widget {
  margin-bottom: 35px;
}

.footer__widget-title {
  margin-bottom: 0;
  color: var(--tg-common-color-white);
  font-size: 22px;
  font-weight: 600;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.footer__widget-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 4px;
  border-radius: 2px;
  background: var(--tg-theme-primary);
}

.footer__content p {
  margin-bottom: 12px;
  color: var(--tg-common-color-gray-5);
  width: 100%;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .footer__content p {
    width: 100%;
  }
}
.footer__content .list-wrap li {
  color: var(--tg-common-color-gray-5);
  font-weight: 500;
  margin-bottom: 7px;
}

.footer__content .list-wrap li:last-child {
  margin-bottom: 0;
}

.footer__content-two .list-wrap li a {
  font-size: 18px;
  font-weight: 600;
  color: var(--tg-common-color-white);
}

.footer__content-two .list-wrap li a:hover {
  color: var(--tg-theme-secondary);
}

.footer__content-two .list-wrap li.email a {
  font-size: 16px;
  font-weight: 400;
  color: #BBBBBB;
}

.footer__content-two .list-wrap li.email a:hover {
  color: var(--tg-theme-secondary);
}

.footer__link .list-wrap li {
  margin-bottom: 10px;
}

.footer__link .list-wrap li:last-child {
  margin-bottom: 0;
}

.footer__link .list-wrap li a, .footer__link .list-wrap li p {
  font-size: 16px;
  width: max-content;
  font-weight: 500;
  color: var(--tg-common-color-gray-5);
  position: relative;
}

.footer__link .list-wrap li a::before, .footer__link .list-wrap li p::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.6s cubic-bezier(0.74, 0.72, 0.27, 0.24);
}

.footer__link .list-wrap li a:hover, .footer__link .list-wrap li p:hover {
  color: var(--tg-theme-secondary);
}

.footer__link .list-wrap li a:hover::before, .footer__link .list-wrap li p:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.footer__contact-content p {
  margin-bottom: 10px;
  color: var(--tg-common-color-gray-5);
}

.footer__newsletter p {
  margin-bottom: 20px;
  color: var(--tg-common-color-gray-5);
}

.footer__newsletter-form {
  position: relative;
  margin-bottom: 25px;
}

.footer__newsletter-form input {
  width: 100%;
  background: #212040;
  padding: 13px 140px 13px 20px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 400;
  color: var(--tg-common-color-white);
  height: 50px;
}

.footer__newsletter-form input::placeholder {
  font-size: 14px;
  font-weight: 400;
  color: #706f84;
}

.footer__newsletter-form button {
  border: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--tg-heading-color);
  background: var(--tg-theme-secondary);
  text-transform: capitalize;
  border-radius: 0 6px 6px 0;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  padding: 12px 28px;
  height: 50px;
}

.footer__newsletter-form button:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-common-color-white);
}

.footer__newsletter-form-two input {
  border-radius: 100px;
}

.footer__newsletter-form-two button {
  border-radius: 100px;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 35px;
}

.footer__social li a {
  color: var(--tg-common-color-gray-5);
}

.footer__social li a:hover {
  color: var(--tg-theme-secondary);
}

.footer__social-wrap .title {
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--tg-common-color-gray-5);
  font-family: var(--tg-body-font-family);
}

.footer__social-two {
  margin-bottom: 0;
}

.footer__social-two li a {
  color: var(--tg-common-color-white);
}

.footer__social-two li a:hover {
  color: var(--tg-theme-secondary);
}

.footer__bottom {
  background: var(--tg-common-color-dark);
  padding: 35px 0;
}

@media (max-width: 991.98px) {
  .footer__bottom {
    padding: 25px 0;
  }
}
.footer__bottom-two {
  border-top: 1px solid #191838;
  padding: 35px 0;
}

@media (max-width: 991.98px) {
  .footer__bottom-two {
    padding: 25px 0;
  }
}
.footer__bottom-three {
  background: #272260;
}

.footer__bottom-three .copy-right-text p {
  color: #cfd9ea;
}

.footer__bottom-three .footer__bottom-menu .list-wrap li a {
  color: #cfd9ea;
}

.footer__bottom-four {
  position: relative;
  z-index: 2;
}

.footer__bottom-menu .list-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
}

@media (max-width: 767.98px) {
  .footer__bottom-menu .list-wrap {
    justify-content: center;
  }
}
.footer__bottom-menu .list-wrap li a {
  color: #8C9AB4;
  position: relative;
}

.footer__bottom-menu .list-wrap li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.4s cubic-bezier(0.74, 0.72, 0.27, 0.24);
}

.footer__bottom-menu .list-wrap li a::after {
  content: "";
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 12px;
  background: #8C9AB4;
}

.footer__bottom-menu .list-wrap li a:hover {
  color: var(--tg-theme-secondary);
}

.footer__bottom-menu .list-wrap li a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.footer__bottom-menu .list-wrap li:last-child a::after {
  display: none;
}

.footer__shape {
  background-size: cover;
  background-position: center;
  position: absolute;
  z-index: -2;
  left: 0;
  bottom: -55px;
  width: 100%;
  height: 138px;
}

.footer__shape-wrap img {
  position: absolute;
  z-index: -1;
}

.footer__shape-wrap img:nth-child(1) {
  left: 4%;
  top: 13%;
  max-width: 75px;
}

@media (max-width: 1800px) {
  .footer__shape-wrap img:nth-child(1) {
    left: 1%;
  }
}
@media (max-width: 1500px) {
  .footer__shape-wrap img:nth-child(1) {
    top: 1%;
    max-width: 60px;
  }
}
@media (max-width: 767.98px) {
  .footer__shape-wrap img:nth-child(1) {
    display: none;
  }
}
.footer__shape-wrap img:nth-child(2) {
  left: 0;
  bottom: 16%;
  max-width: 82px;
  z-index: 1;
}

@media (max-width: 1199.98px) {
  .footer__shape-wrap img:nth-child(2) {
    bottom: 10%;
  }
}
@media (max-width: 991.98px) {
  .footer__shape-wrap img:nth-child(2) {
    bottom: 8%;
  }
}
@media (max-width: 767.98px) {
  .footer__shape-wrap img:nth-child(2) {
    display: none;
  }
}
.footer__shape-wrap img:nth-child(3) {
  right: 47%;
  bottom: 13%;
  max-width: 115px;
  z-index: 1;
}

@media (max-width: 1199.98px) {
  .footer__shape-wrap img:nth-child(3) {
    bottom: 9%;
  }
}
@media (max-width: 991.98px) {
  .footer__shape-wrap img:nth-child(3) {
    display: none;
  }
}
.footer__shape-wrap img:nth-child(4) {
  right: 6%;
  top: 7%;
  max-width: 120px;
}

@media (max-width: 1800px) {
  .footer__shape-wrap img:nth-child(4) {
    right: 4%;
    top: 7%;
    max-width: 105px;
  }
}
@media (max-width: 1199.98px) {
  .footer__shape-wrap img:nth-child(4) {
    right: 5%;
    top: 26%;
  }
}
@media (max-width: 767.98px) {
  .footer__shape-wrap img:nth-child(4) {
    display: none;
  }
}
.footer__shape-wrap .shape-inner {
  right: 0;
  bottom: 22%;
  position: absolute;
  z-index: -2;
}

@media (max-width: 1800px) {
  .footer__shape-wrap .shape-inner {
    bottom: 43%;
  }
}
@media (max-width: 767.98px) {
  .footer__shape-wrap .shape-inner {
    display: none;
  }
}
@media (max-width: 1800px) {
  .footer__shape-wrap .shape-inner svg {
    max-width: 90px;
    height: auto;
  }
}
.footer__shape-wrap .shape-inner svg path {
  animation: animation__shape-two 0.8s infinite linear;
  animation-play-state: running;
}

.app-download {
  display: flex;
  align-items: center;
  gap: 8px;
}

.app-download a img {
  border-radius: 4px;
}

.copy-right-text p {
  margin-bottom: 0;
  color: #8C9AB4;
}

@media (max-width: 767.98px) {
  .copy-right-text p {
    margin-bottom: 5px;
    text-align: center;
  }
}
/*=============================
    00. Keyframe Animation
===============================*/
@keyframes hoverShine {
  100% {
    left: 125%;
  }
}
.rotateme {
  animation-name: rotateme;
  animation-duration: 180s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes rotateme {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.alltuchtopdown {
  animation: alltuchtopdown 1.5s ease-in-out 0s infinite alternate;
  animation-duration: 3s;
}

@keyframes alltuchtopdown {
  0% {
    transform: rotateX(0deg) translateY(0px);
  }
  50% {
    transform: rotateX(0deg) translateY(-20px);
  }
  100% {
    transform: rotateX(0deg) translateY(0px);
  }
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
@keyframes animation__shape {
  0% {
    stroke-dashoffset: 12;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes animation__shape-two {
  0% {
    stroke-dashoffset: 40;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes fadeInUp2 {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUp2 {
  animation-name: fadeInUp2;
  animation-delay: 0.5s;
  animation-duration: 0.5s;
  animation-fill-mode: both;
}

.border-red {
  border: 1px solid red;
}

.border-green {
  border: 1px solid green;
}

.border-blue {
  border: 1px solid blue;
}

.border-yellow {
  border: 1px solid yellow;
}

/* General skeleton style */
.skeleton {
  background: linear-gradient(90deg, #e0e0e0 25%, #f7f7f7 37%, #e0e0e0 63%);
  background-size: 400% 100%;
  animation: shimmer 1.4s ease infinite;
  border-radius: 6px;
}

/* Keyframes for shimmer effect */
@keyframes shimmer {
  0% {
    background-position: -400px 0;
  }
  100% {
    background-position: 400px 0;
  }
}
/* Skeleton sizes */
.skeleton-title {
  width: 40%;
  height: 32px;
  margin-bottom: 16px;
}

.skeleton-breadcrumb {
  width: 20%;
  height: 18px;
  margin-right: 12px;
  display: inline-block;
}

.skeleton-shape {
  width: 40px;
  height: 40px;
  margin: 6px;
  display: inline-block;
  border-radius: 50%;
}

/* Optional: dim the breadcrumb background while loading */
.skeleton-bg {
  background-color: #f3f3f3 !important;
}
/*!**********************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./node_modules/@flaticon/flaticon-uicons/css/solid/rounded.css ***!
  \**********************************************************************************************************************************************************************************************************************************************************************************************************/
@font-face{font-family:uicons-solid-rounded;src:url(/_next/static/media/uicons-solid-rounded-IYSBBSWN.462410ca.woff2) format("woff2"),url(/_next/static/media/uicons-solid-rounded-UWVI4CEC.a5aa8e08.woff) format("woff"),url(/_next/static/media/uicons-solid-rounded-N5CQNTC6.6f4506cc.eot#iefix) format("embedded-opentype");font-display:swap}i[class^=fi-sr-]:before,i[class*=" fi-sr-"]:before,span[class^=fi-sr-]:before,span[class*=fi-sr-]:before{font-family:uicons-solid-rounded!important;font-style:normal;font-weight:400!important;font-feature-settings:normal;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.variable-selector-00:before{content:"\fe00"}.variable-selector-01:before{content:"\fe01"}.variable-selector-02:before{content:"\fe02"}.variable-selector-03:before{content:"\fe03"}.variable-selector-04:before{content:"\fe04"}.variable-selector-05:before{content:"\fe05"}.variable-selector-06:before{content:"\fe06"}.variable-selector-07:before{content:"\fe07"}.variable-selector-08:before{content:"\fe08"}.variable-selector-09:before{content:"\fe09"}.variable-selector-0a:before{content:"\fe0a"}.variable-selector-0b:before{content:"\fe0b"}.variable-selector-0c:before{content:"\fe0c"}.variable-selector-0d:before{content:"\fe0d"}.variable-selector-0e:before{content:"\fe0e"}.variable-selector-0f:before{content:"\fe0f"}.combining-half-marks-00:before{content:"\fe20"}.combining-half-marks-01:before{content:"\fe21"}.combining-half-marks-02:before{content:"\fe22"}.combining-half-marks-03:before{content:"\fe23"}.combining-half-marks-04:before{content:"\fe24"}.combining-half-marks-05:before{content:"\fe25"}.combining-half-marks-06:before{content:"\fe26"}.combining-half-marks-07:before{content:"\fe27"}.combining-half-marks-08:before{content:"\fe28"}.combining-half-marks-09:before{content:"\fe29"}.combining-half-marks-0a:before{content:"\fe2a"}.combining-half-marks-0b:before{content:"\fe2b"}.combining-half-marks-0c:before{content:"\fe2c"}.combining-half-marks-0d:before{content:"\fe2d"}.combining-half-marks-0e:before{content:"\fe2e"}.combining-half-marks-0f:before{content:"\fe2f"}.zero-width-no-break-space-0f:before{content:"\feff"}.fi-sr-0:before{content:"\f101"}.fi-sr-00s-music-disc:before{content:"\f102"}.fi-sr-1:before{content:"\f103"}.fi-sr-2:before{content:"\f104"}.fi-sr-3:before{content:"\f105"}.fi-sr-360-degrees:before{content:"\f106"}.fi-sr-4:before{content:"\f107"}.fi-sr-404:before{content:"\f108"}.fi-sr-5:before{content:"\f109"}.fi-sr-6:before{content:"\f10a"}.fi-sr-60s-music-disc:before{content:"\f10b"}.fi-sr-7:before{content:"\f10c"}.fi-sr-70s-music-disc:before{content:"\f10d"}.fi-sr-8:before{content:"\f10e"}.fi-sr-80s-music-disc:before{content:"\f10f"}.fi-sr-9:before{content:"\f110"}.fi-sr-90s-music-disc:before{content:"\f111"}.fi-sr-a:before{content:"\f112"}.fi-sr-accident:before{content:"\f113"}.fi-sr-acorn:before{content:"\f114"}.fi-sr-ad-paid:before{content:"\f115"}.fi-sr-ad:before{content:"\f116"}.fi-sr-add-document:before{content:"\f117"}.fi-sr-add-folder:before{content:"\f118"}.fi-sr-add-image:before{content:"\f119"}.fi-sr-add:before{content:"\f11a"}.fi-sr-address-book:before{content:"\f11b"}.fi-sr-address-card:before{content:"\f11c"}.fi-sr-admin-alt:before{content:"\f11d"}.fi-sr-admin:before{content:"\f11e"}.fi-sr-age-alt:before{content:"\f11f"}.fi-sr-age-restriction-eighteen:before{content:"\f120"}.fi-sr-age-restriction-seven:before{content:"\f121"}.fi-sr-age-restriction-six:before{content:"\f122"}.fi-sr-age-restriction-sixteen:before{content:"\f123"}.fi-sr-age-restriction-thirteen:before{content:"\f124"}.fi-sr-age-restriction-three:before{content:"\f125"}.fi-sr-age-restriction-twelve:before{content:"\f126"}.fi-sr-age-restriction-twenty-one:before{content:"\f127"}.fi-sr-age-restriction-zero:before{content:"\f128"}.fi-sr-age:before{content:"\f129"}.fi-sr-air-conditioner:before{content:"\f12a"}.fi-sr-air-freshener:before{content:"\f12b"}.fi-sr-air-pollution:before{content:"\f12c"}.fi-sr-airplane-journey:before{content:"\f12d"}.fi-sr-airplane-window-open:before{content:"\f12e"}.fi-sr-airplay:before{content:"\f12f"}.fi-sr-alarm-clock:before{content:"\f130"}.fi-sr-alarm-exclamation:before{content:"\f131"}.fi-sr-alarm-plus:before{content:"\f132"}.fi-sr-alarm-snooze:before{content:"\f133"}.fi-sr-album-circle-plus:before{content:"\f134"}.fi-sr-album-circle-user:before{content:"\f135"}.fi-sr-album-collection:before{content:"\f136"}.fi-sr-album:before{content:"\f137"}.fi-sr-algorithm:before{content:"\f138"}.fi-sr-alicorn:before{content:"\f139"}.fi-sr-alien:before{content:"\f13a"}.fi-sr-align-center:before{content:"\f13b"}.fi-sr-align-justify:before{content:"\f13c"}.fi-sr-align-left:before{content:"\f13d"}.fi-sr-align-slash:before{content:"\f13e"}.fi-sr-ambulance:before{content:"\f13f"}.fi-sr-amusement-park:before{content:"\f140"}.fi-sr-analyse-alt:before{content:"\f141"}.fi-sr-analyse:before{content:"\f142"}.fi-sr-anatomical-heart:before{content:"\f143"}.fi-sr-anchor:before{content:"\f144"}.fi-sr-angel:before{content:"\f145"}.fi-sr-angle-90:before{content:"\f146"}.fi-sr-angle-circle-down:before{content:"\f147"}.fi-sr-angle-circle-left:before{content:"\f148"}.fi-sr-angle-circle-right:before{content:"\f149"}.fi-sr-angle-circle-up:before{content:"\f14a"}.fi-sr-angle-double-left:before{content:"\f14b"}.fi-sr-angle-double-right:before{content:"\f14c"}.fi-sr-angle-double-small-down:before{content:"\f14d"}.fi-sr-angle-double-small-left:before{content:"\f14e"}.fi-sr-angle-double-small-right:before{content:"\f14f"}.fi-sr-angle-double-small-up:before{content:"\f150"}.fi-sr-angle-down:before{content:"\f151"}.fi-sr-angle-left:before{content:"\f152"}.fi-sr-angle-right:before{content:"\f153"}.fi-sr-angle-small-down:before{content:"\f154"}.fi-sr-angle-small-left:before{content:"\f155"}.fi-sr-angle-small-right:before{content:"\f156"}.fi-sr-angle-small-up:before{content:"\f157"}.fi-sr-angle-square-down:before{content:"\f158"}.fi-sr-angle-square-left:before{content:"\f159"}.fi-sr-angle-square-right:before{content:"\f15a"}.fi-sr-angle-square-up:before{content:"\f15b"}.fi-sr-angle-up:before{content:"\f15c"}.fi-sr-angle:before{content:"\f15d"}.fi-sr-angles-up-down:before{content:"\f15e"}.fi-sr-angry:before{content:"\f15f"}.fi-sr-animated-icon:before{content:"\f160"}.fi-sr-ankh:before{content:"\f161"}.fi-sr-answer-alt:before{content:"\f162"}.fi-sr-answer:before{content:"\f163"}.fi-sr-apartment:before{content:"\f164"}.fi-sr-aperture:before{content:"\f165"}.fi-sr-api:before{content:"\f166"}.fi-sr-apple-core:before{content:"\f167"}.fi-sr-apple-crate:before{content:"\f168"}.fi-sr-apple-whole:before{content:"\f169"}.fi-sr-apps-add:before{content:"\f16a"}.fi-sr-apps-delete:before{content:"\f16b"}.fi-sr-apps-sort:before{content:"\f16c"}.fi-sr-apps:before{content:"\f16d"}.fi-sr-archive:before{content:"\f16e"}.fi-sr-archway:before{content:"\f16f"}.fi-sr-arrow-alt-circle-down:before{content:"\f170"}.fi-sr-arrow-alt-circle-left:before{content:"\f171"}.fi-sr-arrow-alt-circle-right:before{content:"\f172"}.fi-sr-arrow-alt-circle-up:before{content:"\f173"}.fi-sr-arrow-alt-down:before{content:"\f174"}.fi-sr-arrow-alt-from-bottom:before{content:"\f175"}.fi-sr-arrow-alt-from-left:before{content:"\f176"}.fi-sr-arrow-alt-from-right:before{content:"\f177"}.fi-sr-arrow-alt-from-top:before{content:"\f178"}.fi-sr-arrow-alt-left:before{content:"\f179"}.fi-sr-arrow-alt-right:before{content:"\f17a"}.fi-sr-arrow-alt-square-down:before{content:"\f17b"}.fi-sr-arrow-alt-square-left:before{content:"\f17c"}.fi-sr-arrow-alt-square-right:before{content:"\f17d"}.fi-sr-arrow-alt-square-up:before{content:"\f17e"}.fi-sr-arrow-alt-to-bottom:before{content:"\f17f"}.fi-sr-arrow-alt-to-left:before{content:"\f180"}.fi-sr-arrow-alt-to-right:before{content:"\f181"}.fi-sr-arrow-alt-to-top:before{content:"\f182"}.fi-sr-arrow-alt-up:before{content:"\f183"}.fi-sr-arrow-circle-down:before{content:"\f184"}.fi-sr-arrow-circle-left:before{content:"\f185"}.fi-sr-arrow-circle-right:before{content:"\f186"}.fi-sr-arrow-circle-up:before{content:"\f187"}.fi-sr-arrow-comparison:before{content:"\f188"}.fi-sr-arrow-down-from-arc:before{content:"\f189"}.fi-sr-arrow-down-from-dotted-line:before{content:"\f18a"}.fi-sr-arrow-down-left:before{content:"\f18b"}.fi-sr-arrow-down-small-big:before{content:"\f18c"}.fi-sr-arrow-down-to-dotted-line:before{content:"\f18d"}.fi-sr-arrow-down-to-square:before{content:"\f18e"}.fi-sr-arrow-down-triangle-square:before{content:"\f18f"}.fi-sr-arrow-down:before{content:"\f190"}.fi-sr-arrow-from-bottom:before{content:"\f191"}.fi-sr-arrow-from-left:before{content:"\f192"}.fi-sr-arrow-from-right:before{content:"\f193"}.fi-sr-arrow-from-top:before{content:"\f194"}.fi-sr-arrow-left-from-arc:before{content:"\f195"}.fi-sr-arrow-left-from-line:before{content:"\f196"}.fi-sr-arrow-left-to-arc:before{content:"\f197"}.fi-sr-arrow-left:before{content:"\f198"}.fi-sr-arrow-progress-alt:before{content:"\f199"}.fi-sr-arrow-progress:before{content:"\f19a"}.fi-sr-arrow-right-to-bracket:before{content:"\f19b"}.fi-sr-arrow-right:before{content:"\f19c"}.fi-sr-arrow-small-down:before{content:"\f19d"}.fi-sr-arrow-small-left:before{content:"\f19e"}.fi-sr-arrow-small-right:before{content:"\f19f"}.fi-sr-arrow-small-up:before{content:"\f1a0"}.fi-sr-arrow-square-down:before{content:"\f1a1"}.fi-sr-arrow-square-left:before{content:"\f1a2"}.fi-sr-arrow-square-right:before{content:"\f1a3"}.fi-sr-arrow-square-up:before{content:"\f1a4"}.fi-sr-arrow-to-bottom:before{content:"\f1a5"}.fi-sr-arrow-to-left:before{content:"\f1a6"}.fi-sr-arrow-to-right:before{content:"\f1a7"}.fi-sr-arrow-to-top:before{content:"\f1a8"}.fi-sr-arrow-trend-down:before{content:"\f1a9"}.fi-sr-arrow-trend-up:before{content:"\f1aa"}.fi-sr-arrow-turn-down-left:before{content:"\f1ab"}.fi-sr-arrow-turn-down-right:before{content:"\f1ac"}.fi-sr-arrow-turn-left-up:before{content:"\f1ad"}.fi-sr-arrow-up-from-dotted-line:before{content:"\f1ae"}.fi-sr-arrow-up-from-ground-water:before{content:"\f1af"}.fi-sr-arrow-up-from-square:before{content:"\f1b0"}.fi-sr-arrow-up-left-from-circle:before{content:"\f1b1"}.fi-sr-arrow-up-left:before{content:"\f1b2"}.fi-sr-arrow-up-right-and-arrow-down-left-from-center:before{content:"\f1b3"}.fi-sr-arrow-up-right-from-square:before{content:"\f1b4"}.fi-sr-arrow-up-right:before{content:"\f1b5"}.fi-sr-arrow-up-small-big:before{content:"\f1b6"}.fi-sr-arrow-up-square-triangle:before{content:"\f1b7"}.fi-sr-arrow-up-to-arc:before{content:"\f1b8"}.fi-sr-arrow-up-to-dotted-line:before{content:"\f1b9"}.fi-sr-arrow-up:before{content:"\f1ba"}.fi-sr-arrow-upward-growth-crypto:before{content:"\f1bb"}.fi-sr-arrows-alt-h:before{content:"\f1bc"}.fi-sr-arrows-alt-v:before{content:"\f1bd"}.fi-sr-arrows-alt:before{content:"\f1be"}.fi-sr-arrows-cross:before{content:"\f1bf"}.fi-sr-arrows-from-dotted-line:before{content:"\f1c0"}.fi-sr-arrows-from-line:before{content:"\f1c1"}.fi-sr-arrows-h-copy:before{content:"\f1c2"}.fi-sr-arrows-h:before{content:"\f1c3"}.fi-sr-arrows-repeat-1:before{content:"\f1c4"}.fi-sr-arrows-repeat:before{content:"\f1c5"}.fi-sr-arrows-retweet:before{content:"\f1c6"}.fi-sr-arrows-split-right-and-left:before{content:"\f1c7"}.fi-sr-arrows-split-up-and-left:before{content:"\f1c8"}.fi-sr-arrows-to-circle:before{content:"\f1c9"}.fi-sr-arrows-to-dotted-line:before{content:"\f1ca"}.fi-sr-arrows-to-eye:before{content:"\f1cb"}.fi-sr-arrows-to-line:before{content:"\f1cc"}.fi-sr-arrows:before{content:"\f1cd"}.fi-sr-artificial-intelligence:before{content:"\f1ce"}.fi-sr-assept-document:before{content:"\f1cf"}.fi-sr-assessment-alt:before{content:"\f1d0"}.fi-sr-assessment:before{content:"\f1d1"}.fi-sr-assistive-listening-systems:before{content:"\f1d2"}.fi-sr-asterik:before{content:"\f1d3"}.fi-sr-at:before{content:"\f1d4"}.fi-sr-attribution-pen:before{content:"\f1d5"}.fi-sr-attribution-pencil:before{content:"\f1d6"}.fi-sr-aubergine:before{content:"\f1d7"}.fi-sr-auction:before{content:"\f1d8"}.fi-sr-audience-megaphone:before{content:"\f1d9"}.fi-sr-audio-description-slash:before{content:"\f1da"}.fi-sr-audit-alt:before{content:"\f1db"}.fi-sr-audit:before{content:"\f1dc"}.fi-sr-austral-sign:before{content:"\f1dd"}.fi-sr-avocado:before{content:"\f1de"}.fi-sr-award:before{content:"\f1df"}.fi-sr-axe-battle:before{content:"\f1e0"}.fi-sr-axe:before{content:"\f1e1"}.fi-sr-b:before{content:"\f1e2"}.fi-sr-baby-carriage:before{content:"\f1e3"}.fi-sr-baby:before{content:"\f1e4"}.fi-sr-back-up:before{content:"\f1e5"}.fi-sr-background:before{content:"\f1e6"}.fi-sr-backpack:before{content:"\f1e7"}.fi-sr-bacon:before{content:"\f1e8"}.fi-sr-bacteria:before{content:"\f1e9"}.fi-sr-bacterium:before{content:"\f1ea"}.fi-sr-badge-check:before{content:"\f1eb"}.fi-sr-badge-dollar:before{content:"\f1ec"}.fi-sr-badge-leaf:before{content:"\f1ed"}.fi-sr-badge-percent:before{content:"\f1ee"}.fi-sr-badge-sheriff:before{content:"\f1ef"}.fi-sr-badge:before{content:"\f1f0"}.fi-sr-badger-honey:before{content:"\f1f1"}.fi-sr-badminton:before{content:"\f1f2"}.fi-sr-bag-map-pin:before{content:"\f1f3"}.fi-sr-bag-seedling:before{content:"\f1f4"}.fi-sr-bag-shopping-minus:before{content:"\f1f5"}.fi-sr-bags-shopping:before{content:"\f1f6"}.fi-sr-baguette:before{content:"\f1f7"}.fi-sr-bahai:before{content:"\f1f8"}.fi-sr-baht-sign:before{content:"\f1f9"}.fi-sr-balance-scale-left:before{content:"\f1fa"}.fi-sr-balance-scale-right:before{content:"\f1fb"}.fi-sr-ball-pile:before{content:"\f1fc"}.fi-sr-ballet-dance:before{content:"\f1fd"}.fi-sr-balloon:before{content:"\f1fe"}.fi-sr-balloons:before{content:"\f1ff"}.fi-sr-ballot-check:before{content:"\f200"}.fi-sr-ballot:before{content:"\f201"}.fi-sr-ban-bug:before{content:"\f202"}.fi-sr-ban:before{content:"\f203"}.fi-sr-banana:before{content:"\f204"}.fi-sr-band-aid:before{content:"\f205"}.fi-sr-bangladeshi-taka-sign:before{content:"\f206"}.fi-sr-banjo:before{content:"\f207"}.fi-sr-bank:before{content:"\f208"}.fi-sr-banner-2:before{content:"\f209"}.fi-sr-banner-3:before{content:"\f20a"}.fi-sr-banner-4:before{content:"\f20b"}.fi-sr-banner-5:before{content:"\f20c"}.fi-sr-banner:before{content:"\f20d"}.fi-sr-barber-pole:before{content:"\f20e"}.fi-sr-barber-shop:before{content:"\f20f"}.fi-sr-barcode-read:before{content:"\f210"}.fi-sr-barcode-scan:before{content:"\f211"}.fi-sr-barcode:before{content:"\f212"}.fi-sr-bars-filter:before{content:"\f213"}.fi-sr-bars-progress:before{content:"\f214"}.fi-sr-bars-sort:before{content:"\f215"}.fi-sr-bars-staggered:before{content:"\f216"}.fi-sr-baseball-alt:before{content:"\f217"}.fi-sr-baseball:before{content:"\f218"}.fi-sr-basket-shopping-minus:before{content:"\f219"}.fi-sr-basket-shopping-plus:before{content:"\f21a"}.fi-sr-basket-shopping-simple:before{content:"\f21b"}.fi-sr-basketball-hoop:before{content:"\f21c"}.fi-sr-basketball:before{content:"\f21d"}.fi-sr-bat:before{content:"\f21e"}.fi-sr-bath:before{content:"\f21f"}.fi-sr-battery-bolt:before{content:"\f220"}.fi-sr-battery-empty:before{content:"\f221"}.fi-sr-battery-exclamation:before{content:"\f222"}.fi-sr-battery-full:before{content:"\f223"}.fi-sr-battery-half:before{content:"\f224"}.fi-sr-battery-quarter:before{content:"\f225"}.fi-sr-battery-slash:before{content:"\f226"}.fi-sr-battery-three-quarters:before{content:"\f227"}.fi-sr-beacon:before{content:"\f228"}.fi-sr-bed-alt:before{content:"\f229"}.fi-sr-bed-bunk:before{content:"\f22a"}.fi-sr-bed-empty:before{content:"\f22b"}.fi-sr-bed:before{content:"\f22c"}.fi-sr-bee:before{content:"\f22d"}.fi-sr-beer-mug-empty:before{content:"\f22e"}.fi-sr-beer:before{content:"\f22f"}.fi-sr-bell-concierge:before{content:"\f230"}.fi-sr-bell-notification-call:before{content:"\f231"}.fi-sr-bell-notification-social-media:before{content:"\f232"}.fi-sr-bell-ring:before{content:"\f233"}.fi-sr-bell-school-slash:before{content:"\f234"}.fi-sr-bell-school:before{content:"\f235"}.fi-sr-bell-slash:before{content:"\f236"}.fi-sr-bell:before{content:"\f237"}.fi-sr-bells:before{content:"\f238"}.fi-sr-bench-tree:before{content:"\f239"}.fi-sr-benefit-diamond-alt:before{content:"\f23a"}.fi-sr-benefit-diamond:before{content:"\f23b"}.fi-sr-benefit-hand:before{content:"\f23c"}.fi-sr-benefit-increase:before{content:"\f23d"}.fi-sr-benefit-porcent:before{content:"\f23e"}.fi-sr-benefit:before{content:"\f23f"}.fi-sr-betamax:before{content:"\f240"}.fi-sr-bible:before{content:"\f241"}.fi-sr-bicycle-journey:before{content:"\f242"}.fi-sr-bike:before{content:"\f243"}.fi-sr-biking-mountain:before{content:"\f244"}.fi-sr-biking:before{content:"\f245"}.fi-sr-bill-arrow:before{content:"\f246"}.fi-sr-billiard:before{content:"\f247"}.fi-sr-bin-bottles:before{content:"\f248"}.fi-sr-binary-circle-check:before{content:"\f249"}.fi-sr-binary-lock:before{content:"\f24a"}.fi-sr-binary-slash:before{content:"\f24b"}.fi-sr-binary:before{content:"\f24c"}.fi-sr-binoculars:before{content:"\f24d"}.fi-sr-bio-leaves:before{content:"\f24e"}.fi-sr-bio:before{content:"\f24f"}.fi-sr-biohazard:before{content:"\f250"}.fi-sr-bird:before{content:"\f251"}.fi-sr-bitcoin-sign:before{content:"\f252"}.fi-sr-blanket:before{content:"\f253"}.fi-sr-blender-phone:before{content:"\f254"}.fi-sr-blender:before{content:"\f255"}.fi-sr-blinds-open:before{content:"\f256"}.fi-sr-blinds-raised:before{content:"\f257"}.fi-sr-blinds:before{content:"\f258"}.fi-sr-block-brick:before{content:"\f259"}.fi-sr-block-microphone:before{content:"\f25a"}.fi-sr-block-question:before{content:"\f25b"}.fi-sr-block-quote:before{content:"\f25c"}.fi-sr-block:before{content:"\f25d"}.fi-sr-blog-pencil:before{content:"\f25e"}.fi-sr-blog-text:before{content:"\f25f"}.fi-sr-blood-dropper:before{content:"\f260"}.fi-sr-blood-test-tube-alt:before{content:"\f261"}.fi-sr-blood-test-tube:before{content:"\f262"}.fi-sr-blood:before{content:"\f263"}.fi-sr-blossom:before{content:"\f264"}.fi-sr-blueberries:before{content:"\f265"}.fi-sr-blueprint:before{content:"\f266"}.fi-sr-bold:before{content:"\f267"}.fi-sr-bolt-auto:before{content:"\f268"}.fi-sr-bolt-slash:before{content:"\f269"}.fi-sr-bolt:before{content:"\f26a"}.fi-sr-bomb:before{content:"\f26b"}.fi-sr-bone-break:before{content:"\f26c"}.fi-sr-bone:before{content:"\f26d"}.fi-sr-bong:before{content:"\f26e"}.fi-sr-bonus-alt:before{content:"\f26f"}.fi-sr-bonus-star:before{content:"\f270"}.fi-sr-bonus:before{content:"\f271"}.fi-sr-book-alt:before{content:"\f272"}.fi-sr-book-arrow-right:before{content:"\f273"}.fi-sr-book-arrow-up:before{content:"\f274"}.fi-sr-book-atlas:before{content:"\f275"}.fi-sr-book-bookmark:before{content:"\f276"}.fi-sr-book-circle-arrow-right:before{content:"\f277"}.fi-sr-book-circle-arrow-up:before{content:"\f278"}.fi-sr-book-copy:before{content:"\f279"}.fi-sr-book-dead:before{content:"\f27a"}.fi-sr-book-font:before{content:"\f27b"}.fi-sr-book-heart:before{content:"\f27c"}.fi-sr-book-medical:before{content:"\f27d"}.fi-sr-book-open-cover:before{content:"\f27e"}.fi-sr-book-open-reader:before{content:"\f27f"}.fi-sr-book-plus:before{content:"\f280"}.fi-sr-book-quran:before{content:"\f281"}.fi-sr-book-section:before{content:"\f282"}.fi-sr-book-spells:before{content:"\f283"}.fi-sr-book-tanakh:before{content:"\f284"}.fi-sr-book-user:before{content:"\f285"}.fi-sr-book:before{content:"\f286"}.fi-sr-Booking:before{content:"\f287"}.fi-sr-bookmark-slash:before{content:"\f288"}.fi-sr-bookmark:before{content:"\f289"}.fi-sr-books-medical:before{content:"\f28a"}.fi-sr-books:before{content:"\f28b"}.fi-sr-boot-heeled:before{content:"\f28c"}.fi-sr-boot:before{content:"\f28d"}.fi-sr-booth-curtain:before{content:"\f28e"}.fi-sr-border-all:before{content:"\f28f"}.fi-sr-border-bottom:before{content:"\f290"}.fi-sr-border-center-h:before{content:"\f291"}.fi-sr-border-center-v:before{content:"\f292"}.fi-sr-border-inner:before{content:"\f293"}.fi-sr-border-left:before{content:"\f294"}.fi-sr-border-none:before{content:"\f295"}.fi-sr-border-outer:before{content:"\f296"}.fi-sr-border-right:before{content:"\f297"}.fi-sr-border-style-alt:before{content:"\f298"}.fi-sr-border-style:before{content:"\f299"}.fi-sr-border-top:before{content:"\f29a"}.fi-sr-boss:before{content:"\f29b"}.fi-sr-bottle-droplet:before{content:"\f29c"}.fi-sr-bottle:before{content:"\f29d"}.fi-sr-bow-arrow:before{content:"\f29e"}.fi-sr-bowl-chopsticks-noodles:before{content:"\f29f"}.fi-sr-bowl-chopsticks:before{content:"\f2a0"}.fi-sr-bowl-rice:before{content:"\f2a1"}.fi-sr-bowl-scoop:before{content:"\f2a2"}.fi-sr-bowl-scoops:before{content:"\f2a3"}.fi-sr-bowl-soft-serve:before{content:"\f2a4"}.fi-sr-bowl-spoon:before{content:"\f2a5"}.fi-sr-bowling-ball:before{content:"\f2a6"}.fi-sr-bowling-pins:before{content:"\f2a7"}.fi-sr-bowling:before{content:"\f2a8"}.fi-sr-box-alt:before{content:"\f2a9"}.fi-sr-box-ballot:before{content:"\f2aa"}.fi-sr-box-check:before{content:"\f2ab"}.fi-sr-box-circle-check:before{content:"\f2ac"}.fi-sr-box-dollar:before{content:"\f2ad"}.fi-sr-box-fragile:before{content:"\f2ae"}.fi-sr-box-heart:before{content:"\f2af"}.fi-sr-box-open-full:before{content:"\f2b0"}.fi-sr-box-open:before{content:"\f2b1"}.fi-sr-box-tissue:before{content:"\f2b2"}.fi-sr-box-up:before{content:"\f2b3"}.fi-sr-box:before{content:"\f2b4"}.fi-sr-boxes:before{content:"\f2b5"}.fi-sr-boxing-glove:before{content:"\f2b6"}.fi-sr-bracket-curly-right:before{content:"\f2b7"}.fi-sr-bracket-curly:before{content:"\f2b8"}.fi-sr-bracket-round-right:before{content:"\f2b9"}.fi-sr-bracket-round:before{content:"\f2ba"}.fi-sr-bracket-square-right:before{content:"\f2bb"}.fi-sr-bracket-square:before{content:"\f2bc"}.fi-sr-brackets-curly:before{content:"\f2bd"}.fi-sr-brackets-round:before{content:"\f2be"}.fi-sr-brackets-square:before{content:"\f2bf"}.fi-sr-braille-a:before{content:"\f2c0"}.fi-sr-braille-b:before{content:"\f2c1"}.fi-sr-braille-c:before{content:"\f2c2"}.fi-sr-braille-d:before{content:"\f2c3"}.fi-sr-braille-e:before{content:"\f2c4"}.fi-sr-braille-g:before{content:"\f2c5"}.fi-sr-braille-h:before{content:"\f2c6"}.fi-sr-braille-i:before{content:"\f2c7"}.fi-sr-braille-j:before{content:"\f2c8"}.fi-sr-braille-k:before{content:"\f2c9"}.fi-sr-braille-l:before{content:"\f2ca"}.fi-sr-braille-m:before{content:"\f2cb"}.fi-sr-braille-n-alt:before{content:"\f2cc"}.fi-sr-braille-n:before{content:"\f2cd"}.fi-sr-braille-o:before{content:"\f2ce"}.fi-sr-braille-p:before{content:"\f2cf"}.fi-sr-braille-q:before{content:"\f2d0"}.fi-sr-braille-r:before{content:"\f2d1"}.fi-sr-braille-s:before{content:"\f2d2"}.fi-sr-braille-t:before{content:"\f2d3"}.fi-sr-braille-u:before{content:"\f2d4"}.fi-sr-braille-v:before{content:"\f2d5"}.fi-sr-braille-w:before{content:"\f2d6"}.fi-sr-braille-x:before{content:"\f2d7"}.fi-sr-braille-y:before{content:"\f2d8"}.fi-sr-braille-z:before{content:"\f2d9"}.fi-sr-braille:before{content:"\f2da"}.fi-sr-brain-circuit:before{content:"\f2db"}.fi-sr-brain:before{content:"\f2dc"}.fi-sr-brake-warning:before{content:"\f2dd"}.fi-sr-branching:before{content:"\f2de"}.fi-sr-brand:before{content:"\f2df"}.fi-sr-branding:before{content:"\f2e0"}.fi-sr-bread-loaf:before{content:"\f2e1"}.fi-sr-bread-slice-butter:before{content:"\f2e2"}.fi-sr-bread-slice:before{content:"\f2e3"}.fi-sr-bread:before{content:"\f2e4"}.fi-sr-briefcase-arrow-right:before{content:"\f2e5"}.fi-sr-briefcase-blank:before{content:"\f2e6"}.fi-sr-briefcase:before{content:"\f2e7"}.fi-sr-brightness-low:before{content:"\f2e8"}.fi-sr-brightness:before{content:"\f2e9"}.fi-sr-bring-forward:before{content:"\f2ea"}.fi-sr-bring-front:before{content:"\f2eb"}.fi-sr-broadcast-tower:before{content:"\f2ec"}.fi-sr-broccoli:before{content:"\f2ed"}.fi-sr-broken-chain-link-wrong:before{content:"\f2ee"}.fi-sr-broken-image:before{content:"\f2ef"}.fi-sr-broom-ball:before{content:"\f2f0"}.fi-sr-broom:before{content:"\f2f1"}.fi-sr-browser-ui:before{content:"\f2f2"}.fi-sr-browser:before{content:"\f2f3"}.fi-sr-browsers:before{content:"\f2f4"}.fi-sr-brush:before{content:"\f2f5"}.fi-sr-bucket:before{content:"\f2f6"}.fi-sr-budget-alt:before{content:"\f2f7"}.fi-sr-budget:before{content:"\f2f8"}.fi-sr-bug-slash:before{content:"\f2f9"}.fi-sr-bug:before{content:"\f2fa"}.fi-sr-bugs:before{content:"\f2fb"}.fi-sr-build-alt:before{content:"\f2fc"}.fi-sr-build:before{content:"\f2fd"}.fi-sr-building-circle-arrow-right:before{content:"\f2fe"}.fi-sr-building-ngo:before{content:"\f2ff"}.fi-sr-building:before{content:"\f300"}.fi-sr-bulb:before{content:"\f301"}.fi-sr-bullet:before{content:"\f302"}.fi-sr-bullhorn:before{content:"\f303"}.fi-sr-bullseye-arrow:before{content:"\f304"}.fi-sr-bullseye-pointer:before{content:"\f305"}.fi-sr-bullseye:before{content:"\f306"}.fi-sr-burger-alt:before{content:"\f307"}.fi-sr-burger-fries:before{content:"\f308"}.fi-sr-burger-glass:before{content:"\f309"}.fi-sr-burrito:before{content:"\f30a"}.fi-sr-burst:before{content:"\f30b"}.fi-sr-bus-alt:before{content:"\f30c"}.fi-sr-bus:before{content:"\f30d"}.fi-sr-business-time:before{content:"\f30e"}.fi-sr-Butter:before{content:"\f30f"}.fi-sr-butterfly:before{content:"\f310"}.fi-sr-c:before{content:"\f311"}.fi-sr-cabin:before{content:"\f312"}.fi-sr-cactus:before{content:"\f313"}.fi-sr-cage-empty:before{content:"\f314"}.fi-sr-cake-birthday:before{content:"\f315"}.fi-sr-cake-slice:before{content:"\f316"}.fi-sr-cake-wedding:before{content:"\f317"}.fi-sr-calculator-bill:before{content:"\f318"}.fi-sr-calculator-math-tax:before{content:"\f319"}.fi-sr-calculator-money:before{content:"\f31a"}.fi-sr-calculator-simple:before{content:"\f31b"}.fi-sr-calculator:before{content:"\f31c"}.fi-sr-calendar-arrow-down:before{content:"\f31d"}.fi-sr-calendar-arrow-up:before{content:"\f31e"}.fi-sr-calendar-birhtday-cake:before{content:"\f31f"}.fi-sr-calendar-call:before{content:"\f320"}.fi-sr-calendar-check:before{content:"\f321"}.fi-sr-calendar-clock:before{content:"\f322"}.fi-sr-calendar-day:before{content:"\f323"}.fi-sr-calendar-days:before{content:"\f324"}.fi-sr-calendar-event-tax:before{content:"\f325"}.fi-sr-calendar-exclamation:before{content:"\f326"}.fi-sr-calendar-gavel-legal:before{content:"\f327"}.fi-sr-calendar-heart:before{content:"\f328"}.fi-sr-calendar-image:before{content:"\f329"}.fi-sr-calendar-lines-pen:before{content:"\f32a"}.fi-sr-calendar-lines:before{content:"\f32b"}.fi-sr-calendar-minus:before{content:"\f32c"}.fi-sr-calendar-payment-loan:before{content:"\f32d"}.fi-sr-calendar-pen:before{content:"\f32e"}.fi-sr-calendar-plus:before{content:"\f32f"}.fi-sr-calendar-salary:before{content:"\f330"}.fi-sr-calendar-shift-swap:before{content:"\f331"}.fi-sr-calendar-star:before{content:"\f332"}.fi-sr-calendar-swap:before{content:"\f333"}.fi-sr-calendar-week:before{content:"\f334"}.fi-sr-calendar-xmark:before{content:"\f335"}.fi-sr-calendar:before{content:"\f336"}.fi-sr-calendars:before{content:"\f337"}.fi-sr-call-duration:before{content:"\f338"}.fi-sr-call-history:before{content:"\f339"}.fi-sr-call-incoming:before{content:"\f33a"}.fi-sr-call-missed:before{content:"\f33b"}.fi-sr-call-outgoing:before{content:"\f33c"}.fi-sr-camcorder:before{content:"\f33d"}.fi-sr-camera-cctv:before{content:"\f33e"}.fi-sr-camera-movie:before{content:"\f33f"}.fi-sr-camera-retro:before{content:"\f340"}.fi-sr-camera-rotate:before{content:"\f341"}.fi-sr-camera-security:before{content:"\f342"}.fi-sr-camera-slash:before{content:"\f343"}.fi-sr-camera-viewfinder:before{content:"\f344"}.fi-sr-camera:before{content:"\f345"}.fi-sr-campfire:before{content:"\f346"}.fi-sr-camping:before{content:"\f347"}.fi-sr-can-food:before{content:"\f348"}.fi-sr-candle-holder:before{content:"\f349"}.fi-sr-candle-lotus-yoga:before{content:"\f34a"}.fi-sr-candle-pose-yoga:before{content:"\f34b"}.fi-sr-candy-alt:before{content:"\f34c"}.fi-sr-candy-bar:before{content:"\f34d"}.fi-sr-candy-cane:before{content:"\f34e"}.fi-sr-candy-corn:before{content:"\f34f"}.fi-sr-candy-sweet:before{content:"\f350"}.fi-sr-candy:before{content:"\f351"}.fi-sr-Cannabis:before{content:"\f352"}.fi-sr-canned-food:before{content:"\f353"}.fi-sr-capsules:before{content:"\f354"}.fi-sr-car-alt:before{content:"\f355"}.fi-sr-car-battery:before{content:"\f356"}.fi-sr-car-bolt:before{content:"\f357"}.fi-sr-car-building:before{content:"\f358"}.fi-sr-car-bump:before{content:"\f359"}.fi-sr-car-bus:before{content:"\f35a"}.fi-sr-car-circle-bolt:before{content:"\f35b"}.fi-sr-car-crash:before{content:"\f35c"}.fi-sr-car-garage:before{content:"\f35d"}.fi-sr-car-journey:before{content:"\f35e"}.fi-sr-car-mechanic:before{content:"\f35f"}.fi-sr-car-rear:before{content:"\f360"}.fi-sr-car-side-bolt:before{content:"\f361"}.fi-sr-car-side:before{content:"\f362"}.fi-sr-car-tilt:before{content:"\f363"}.fi-sr-car-tunnel:before{content:"\f364"}.fi-sr-car-wash:before{content:"\f365"}.fi-sr-car:before{content:"\f366"}.fi-sr-caravan-alt:before{content:"\f367"}.fi-sr-caravan:before{content:"\f368"}.fi-sr-card-club:before{content:"\f369"}.fi-sr-card-diamond:before{content:"\f36a"}.fi-sr-card-heart:before{content:"\f36b"}.fi-sr-card-spade:before{content:"\f36c"}.fi-sr-cardinal-compass:before{content:"\f36d"}.fi-sr-career-growth:before{content:"\f36e"}.fi-sr-career-path:before{content:"\f36f"}.fi-sr-caret-circle-down:before{content:"\f370"}.fi-sr-caret-circle-right:before{content:"\f371"}.fi-sr-caret-circle-up:before{content:"\f372"}.fi-sr-caret-down:before{content:"\f373"}.fi-sr-caret-left:before{content:"\f374"}.fi-sr-caret-quare-up:before{content:"\f375"}.fi-sr-caret-right:before{content:"\f376"}.fi-sr-caret-square-down:before{content:"\f377"}.fi-sr-caret-square-left_1:before{content:"\f378"}.fi-sr-caret-square-left:before{content:"\f379"}.fi-sr-caret-square-right:before{content:"\f37a"}.fi-sr-caret-up:before{content:"\f37b"}.fi-sr-carrot:before{content:"\f37c"}.fi-sr-cars-crash:before{content:"\f37d"}.fi-sr-cars:before{content:"\f37e"}.fi-sr-cart-arrow-down:before{content:"\f37f"}.fi-sr-cart-minus:before{content:"\f380"}.fi-sr-cart-shopping-fast:before{content:"\f381"}.fi-sr-cash-register:before{content:"\f382"}.fi-sr-cassette-tape:before{content:"\f383"}.fi-sr-cassette-vhs:before{content:"\f384"}.fi-sr-castle:before{content:"\f385"}.fi-sr-cat-head:before{content:"\f386"}.fi-sr-cat-space:before{content:"\f387"}.fi-sr-cat:before{content:"\f388"}.fi-sr-catalog-alt:before{content:"\f389"}.fi-sr-catalog-magazine:before{content:"\f38a"}.fi-sr-catalog:before{content:"\f38b"}.fi-sr-category-alt:before{content:"\f38c"}.fi-sr-category:before{content:"\f38d"}.fi-sr-cauldron:before{content:"\f38e"}.fi-sr-cedi-sign:before{content:"\f38f"}.fi-sr-cello:before{content:"\f390"}.fi-sr-cent-sign:before{content:"\f391"}.fi-sr-chair-office:before{content:"\f392"}.fi-sr-chair:before{content:"\f393"}.fi-sr-chalkboard-user:before{content:"\f394"}.fi-sr-chalkboard:before{content:"\f395"}.fi-sr-challenge-alt:before{content:"\f396"}.fi-sr-challenge:before{content:"\f397"}.fi-sr-channel:before{content:"\f398"}.fi-sr-charging-station:before{content:"\f399"}.fi-sr-chart-area:before{content:"\f39a"}.fi-sr-chart-bullet:before{content:"\f39b"}.fi-sr-chart-candlestick:before{content:"\f39c"}.fi-sr-chart-connected:before{content:"\f39d"}.fi-sr-chart-gantt:before{content:"\f39e"}.fi-sr-chart-histogram:before{content:"\f39f"}.fi-sr-chart-kanban:before{content:"\f3a0"}.fi-sr-chart-line-up-down:before{content:"\f3a1"}.fi-sr-chart-line-up:before{content:"\f3a2"}.fi-sr-chart-mixed-up-circle-currency:before{content:"\f3a3"}.fi-sr-chart-mixed-up-circle-dollar:before{content:"\f3a4"}.fi-sr-chart-mixed:before{content:"\f3a5"}.fi-sr-chart-network:before{content:"\f3a6"}.fi-sr-chart-pie-alt:before{content:"\f3a7"}.fi-sr-chart-pie-simple-circle-currency:before{content:"\f3a8"}.fi-sr-chart-pie-simple-circle-dollar:before{content:"\f3a9"}.fi-sr-chart-pie:before{content:"\f3aa"}.fi-sr-chart-pyramid:before{content:"\f3ab"}.fi-sr-chart-radar:before{content:"\f3ac"}.fi-sr-chart-scatter-3d:before{content:"\f3ad"}.fi-sr-chart-scatter-bubble:before{content:"\f3ae"}.fi-sr-chart-scatter:before{content:"\f3af"}.fi-sr-chart-set-theory:before{content:"\f3b0"}.fi-sr-chart-simple-horizontal:before{content:"\f3b1"}.fi-sr-chart-simple:before{content:"\f3b2"}.fi-sr-chart-tree-map:before{content:"\f3b3"}.fi-sr-chart-tree:before{content:"\f3b4"}.fi-sr-chart-user:before{content:"\f3b5"}.fi-sr-chart-waterfall:before{content:"\f3b6"}.fi-sr-chat-arrow-down:before{content:"\f3b7"}.fi-sr-chat-arrow-grow:before{content:"\f3b8"}.fi-sr-chat-bubble-call:before{content:"\f3b9"}.fi-sr-chatbot-speech-bubble:before{content:"\f3ba"}.fi-sr-chatbot:before{content:"\f3bb"}.fi-sr-check-circle:before{content:"\f3bc"}.fi-sr-check-double:before{content:"\f3bd"}.fi-sr-check-in-calendar:before{content:"\f3be"}.fi-sr-check-out-calendar:before{content:"\f3bf"}.fi-sr-check:before{content:"\f3c0"}.fi-sr-checkbox:before{content:"\f3c1"}.fi-sr-checklist-task-budget:before{content:"\f3c2"}.fi-sr-cheese-alt:before{content:"\f3c3"}.fi-sr-cheese:before{content:"\f3c4"}.fi-sr-cheeseburger:before{content:"\f3c5"}.fi-sr-cherry:before{content:"\f3c6"}.fi-sr-chess-bishop:before{content:"\f3c7"}.fi-sr-chess-board:before{content:"\f3c8"}.fi-sr-chess-clock-alt:before{content:"\f3c9"}.fi-sr-chess-clock:before{content:"\f3ca"}.fi-sr-chess-king-alt:before{content:"\f3cb"}.fi-sr-chess-king:before{content:"\f3cc"}.fi-sr-chess-knight-alt:before{content:"\f3cd"}.fi-sr-chess-knight:before{content:"\f3ce"}.fi-sr-chess-pawn-alt:before{content:"\f3cf"}.fi-sr-chess-pawn:before{content:"\f3d0"}.fi-sr-chess-piece:before{content:"\f3d1"}.fi-sr-chess-queen-alt:before{content:"\f3d2"}.fi-sr-chess-queen:before{content:"\f3d3"}.fi-sr-chess-rook-alt:before{content:"\f3d4"}.fi-sr-chess-rook:before{content:"\f3d5"}.fi-sr-chess:before{content:"\f3d6"}.fi-sr-chevron-double-down:before{content:"\f3d7"}.fi-sr-chevron-double-up:before{content:"\f3d8"}.fi-sr-child-head:before{content:"\f3d9"}.fi-sr-child:before{content:"\f3da"}.fi-sr-chimney:before{content:"\f3db"}.fi-sr-chip:before{content:"\f3dc"}.fi-sr-chocolate:before{content:"\f3dd"}.fi-sr-choir-singing:before{content:"\f3de"}.fi-sr-choose-alt:before{content:"\f3df"}.fi-sr-choose:before{content:"\f3e0"}.fi-sr-church:before{content:"\f3e1"}.fi-sr-circle-0:before{content:"\f3e2"}.fi-sr-circle-1:before{content:"\f3e3"}.fi-sr-circle-2:before{content:"\f3e4"}.fi-sr-circle-3:before{content:"\f3e5"}.fi-sr-circle-4:before{content:"\f3e6"}.fi-sr-circle-5:before{content:"\f3e7"}.fi-sr-circle-6:before{content:"\f3e8"}.fi-sr-circle-7:before{content:"\f3e9"}.fi-sr-circle-8:before{content:"\f3ea"}.fi-sr-circle-9:before{content:"\f3eb"}.fi-sr-circle-a:before{content:"\f3ec"}.fi-sr-circle-b:before{content:"\f3ed"}.fi-sr-circle-bolt:before{content:"\f3ee"}.fi-sr-circle-book-open:before{content:"\f3ef"}.fi-sr-circle-bookmark:before{content:"\f3f0"}.fi-sr-circle-c:before{content:"\f3f1"}.fi-sr-circle-calendar:before{content:"\f3f2"}.fi-sr-circle-camera:before{content:"\f3f3"}.fi-sr-circle-d:before{content:"\f3f4"}.fi-sr-circle-dashed:before{content:"\f3f5"}.fi-sr-circle-divide:before{content:"\f3f6"}.fi-sr-circle-e:before{content:"\f3f7"}.fi-sr-circle-ellipsis-vertical:before{content:"\f3f8"}.fi-sr-circle-ellipsis:before{content:"\f3f9"}.fi-sr-circle-envelope:before{content:"\f3fa"}.fi-sr-circle-exclamation-check:before{content:"\f3fb"}.fi-sr-circle-f:before{content:"\f3fc"}.fi-sr-circle-g:before{content:"\f3fd"}.fi-sr-circle-h:before{content:"\f3fe"}.fi-sr-circle-half-stroke:before{content:"\f3ff"}.fi-sr-circle-half:before{content:"\f400"}.fi-sr-circle-heart:before{content:"\f401"}.fi-sr-circle-i:before{content:"\f402"}.fi-sr-circle-j:before{content:"\f403"}.fi-sr-circle-k:before{content:"\f404"}.fi-sr-circle-l:before{content:"\f405"}.fi-sr-circle-m:before{content:"\f406"}.fi-sr-circle-microphone-lines:before{content:"\f407"}.fi-sr-circle-microphone:before{content:"\f408"}.fi-sr-circle-n:before{content:"\f409"}.fi-sr-circle-nodes:before{content:"\f40a"}.fi-sr-circle-o:before{content:"\f40b"}.fi-sr-circle-overlap:before{content:"\f40c"}.fi-sr-circle-p:before{content:"\f40d"}.fi-sr-circle-phone-flip:before{content:"\f40e"}.fi-sr-circle-phone-hangup:before{content:"\f40f"}.fi-sr-circle-phone:before{content:"\f410"}.fi-sr-circle-q:before{content:"\f411"}.fi-sr-circle-quarter:before{content:"\f412"}.fi-sr-circle-quarters-alt:before{content:"\f413"}.fi-sr-circle-r:before{content:"\f414"}.fi-sr-circle-s:before{content:"\f415"}.fi-sr-circle-small:before{content:"\f416"}.fi-sr-circle-star:before{content:"\f417"}.fi-sr-circle-t:before{content:"\f418"}.fi-sr-circle-three-quarters:before{content:"\f419"}.fi-sr-circle-trash:before{content:"\f41a"}.fi-sr-circle-u:before{content:"\f41b"}.fi-sr-circle-user:before{content:"\f41c"}.fi-sr-circle-v:before{content:"\f41d"}.fi-sr-circle-video:before{content:"\f41e"}.fi-sr-circle-w:before{content:"\f41f"}.fi-sr-circle-waveform-lines:before{content:"\f420"}.fi-sr-circle-x:before{content:"\f421"}.fi-sr-circle-xmark:before{content:"\f422"}.fi-sr-circle-y:before{content:"\f423"}.fi-sr-circle-z:before{content:"\f424"}.fi-sr-circle:before{content:"\f425"}.fi-sr-citrus-slice:before{content:"\f426"}.fi-sr-citrus:before{content:"\f427"}.fi-sr-city:before{content:"\f428"}.fi-sr-clapperboard-play:before{content:"\f429"}.fi-sr-clapperboard:before{content:"\f42a"}.fi-sr-clarinet:before{content:"\f42b"}.fi-sr-claw-marks:before{content:"\f42c"}.fi-sr-clear-alt:before{content:"\f42d"}.fi-sr-clip-file:before{content:"\f42e"}.fi-sr-clip-mail:before{content:"\f42f"}.fi-sr-clip:before{content:"\f430"}.fi-sr-clipboard-check:before{content:"\f431"}.fi-sr-clipboard-list-check:before{content:"\f432"}.fi-sr-clipboard-list:before{content:"\f433"}.fi-sr-clipboard-prescription:before{content:"\f434"}.fi-sr-clipboard-question:before{content:"\f435"}.fi-sr-clipboard-user:before{content:"\f436"}.fi-sr-clipboard:before{content:"\f437"}.fi-sr-clipoard-wrong:before{content:"\f438"}.fi-sr-clock-desk:before{content:"\f439"}.fi-sr-clock-eight-thirty:before{content:"\f43a"}.fi-sr-clock-eleven-thirty:before{content:"\f43b"}.fi-sr-clock-eleven:before{content:"\f43c"}.fi-sr-clock-five-thirty:before{content:"\f43d"}.fi-sr-clock-five:before{content:"\f43e"}.fi-sr-clock-four-thirty:before{content:"\f43f"}.fi-sr-clock-nine-thirty:before{content:"\f440"}.fi-sr-clock-nine:before{content:"\f441"}.fi-sr-clock-one-thirty:before{content:"\f442"}.fi-sr-clock-one:before{content:"\f443"}.fi-sr-clock-seven-thirty:before{content:"\f444"}.fi-sr-clock-seven:before{content:"\f445"}.fi-sr-clock-six-thirty:before{content:"\f446"}.fi-sr-clock-six:before{content:"\f447"}.fi-sr-clock-ten-thirty:before{content:"\f448"}.fi-sr-clock-ten:before{content:"\f449"}.fi-sr-clock-three-thirty:before{content:"\f44a"}.fi-sr-clock-three:before{content:"\f44b"}.fi-sr-clock-time-tracking:before{content:"\f44c"}.fi-sr-clock-twelve-thirty:before{content:"\f44d"}.fi-sr-clock-twelve:before{content:"\f44e"}.fi-sr-clock-two-thirty:before{content:"\f44f"}.fi-sr-clock-two:before{content:"\f450"}.fi-sr-clock-up-arrow:before{content:"\f451"}.fi-sr-clock:before{content:"\f452"}.fi-sr-clone:before{content:"\f453"}.fi-sr-closed-captioning-slash:before{content:"\f454"}.fi-sr-clothes-hanger:before{content:"\f455"}.fi-sr-cloud-back-up-alt:before{content:"\f456"}.fi-sr-cloud-back-up:before{content:"\f457"}.fi-sr-cloud-check:before{content:"\f458"}.fi-sr-cloud-code:before{content:"\f459"}.fi-sr-cloud-disabled:before{content:"\f45a"}.fi-sr-cloud-download-alt:before{content:"\f45b"}.fi-sr-cloud-download:before{content:"\f45c"}.fi-sr-cloud-drizzle:before{content:"\f45d"}.fi-sr-cloud-exclamation:before{content:"\f45e"}.fi-sr-cloud-gear-automation:before{content:"\f45f"}.fi-sr-cloud-hail-mixed:before{content:"\f460"}.fi-sr-cloud-hail:before{content:"\f461"}.fi-sr-cloud-meatball:before{content:"\f462"}.fi-sr-cloud-moon-rain:before{content:"\f463"}.fi-sr-cloud-moon:before{content:"\f464"}.fi-sr-cloud-question:before{content:"\f465"}.fi-sr-cloud-rain:before{content:"\f466"}.fi-sr-cloud-rainbow:before{content:"\f467"}.fi-sr-cloud-share:before{content:"\f468"}.fi-sr-cloud-showers-heavy:before{content:"\f469"}.fi-sr-cloud-showers:before{content:"\f46a"}.fi-sr-cloud-sleet:before{content:"\f46b"}.fi-sr-cloud-snow:before{content:"\f46c"}.fi-sr-cloud-sun-rain:before{content:"\f46d"}.fi-sr-cloud-sun:before{content:"\f46e"}.fi-sr-cloud-upload-alt:before{content:"\f46f"}.fi-sr-cloud-upload:before{content:"\f470"}.fi-sr-cloud:before{content:"\f471"}.fi-sr-clouds-moon:before{content:"\f472"}.fi-sr-clouds-sun:before{content:"\f473"}.fi-sr-clouds:before{content:"\f474"}.fi-sr-clover-alt:before{content:"\f475"}.fi-sr-club:before{content:"\f476"}.fi-sr-cocktail-alt:before{content:"\f477"}.fi-sr-cocktail:before{content:"\f478"}.fi-sr-coconut:before{content:"\f479"}.fi-sr-code-branch:before{content:"\f47a"}.fi-sr-code-commit:before{content:"\f47b"}.fi-sr-code-compare:before{content:"\f47c"}.fi-sr-code-fork:before{content:"\f47d"}.fi-sr-code-merge:before{content:"\f47e"}.fi-sr-code-pull-request-closed:before{content:"\f47f"}.fi-sr-code-pull-request-draft:before{content:"\f480"}.fi-sr-code-pull-request:before{content:"\f481"}.fi-sr-code-simple:before{content:"\f482"}.fi-sr-coffee-bean:before{content:"\f483"}.fi-sr-coffee-beans:before{content:"\f484"}.fi-sr-coffee-heart:before{content:"\f485"}.fi-sr-coffee-pot:before{content:"\f486"}.fi-sr-coffee:before{content:"\f487"}.fi-sr-coffin-cross:before{content:"\f488"}.fi-sr-coffin:before{content:"\f489"}.fi-sr-coin-up-arrow:before{content:"\f48a"}.fi-sr-coin:before{content:"\f48b"}.fi-sr-coins:before{content:"\f48c"}.fi-sr-colon-sign:before{content:"\f48d"}.fi-sr-columns-3:before{content:"\f48e"}.fi-sr-comet:before{content:"\f48f"}.fi-sr-command:before{content:"\f490"}.fi-sr-comment-alt-check:before{content:"\f491"}.fi-sr-comment-alt-dots:before{content:"\f492"}.fi-sr-comment-alt-edit:before{content:"\f493"}.fi-sr-comment-alt-medical:before{content:"\f494"}.fi-sr-comment-alt-middle-top:before{content:"\f495"}.fi-sr-comment-alt-middle:before{content:"\f496"}.fi-sr-comment-alt-minus:before{content:"\f497"}.fi-sr-comment-alt-music:before{content:"\f498"}.fi-sr-comment-alt:before{content:"\f499"}.fi-sr-comment-arrow-down:before{content:"\f49a"}.fi-sr-comment-arrow-up-right:before{content:"\f49b"}.fi-sr-comment-arrow-up:before{content:"\f49c"}.fi-sr-comment-check:before{content:"\f49d"}.fi-sr-comment-code:before{content:"\f49e"}.fi-sr-comment-dollar:before{content:"\f49f"}.fi-sr-comment-dots:before{content:"\f4a0"}.fi-sr-comment-exclamation:before{content:"\f4a1"}.fi-sr-comment-heart:before{content:"\f4a2"}.fi-sr-comment-image:before{content:"\f4a3"}.fi-sr-comment-info:before{content:"\f4a4"}.fi-sr-comment-medical:before{content:"\f4a5"}.fi-sr-comment-minus:before{content:"\f4a6"}.fi-sr-comment-pen:before{content:"\f4a7"}.fi-sr-comment-question:before{content:"\f4a8"}.fi-sr-comment-quote:before{content:"\f4a9"}.fi-sr-comment-slash:before{content:"\f4aa"}.fi-sr-comment-smile:before{content:"\f4ab"}.fi-sr-comment-sms:before{content:"\f4ac"}.fi-sr-comment-text:before{content:"\f4ad"}.fi-sr-comment-user:before{content:"\f4ae"}.fi-sr-comment-xmark:before{content:"\f4af"}.fi-sr-comment:before{content:"\f4b0"}.fi-sr-comments-dollar:before{content:"\f4b1"}.fi-sr-comments-question-check:before{content:"\f4b2"}.fi-sr-comments-question:before{content:"\f4b3"}.fi-sr-comments:before{content:"\f4b4"}.fi-sr-compass-alt:before{content:"\f4b5"}.fi-sr-compass-east:before{content:"\f4b6"}.fi-sr-compass-north:before{content:"\f4b7"}.fi-sr-compass-slash:before{content:"\f4b8"}.fi-sr-compass-south:before{content:"\f4b9"}.fi-sr-compass-west:before{content:"\f4ba"}.fi-sr-completed:before{content:"\f4bb"}.fi-sr-compliance-clipboard:before{content:"\f4bc"}.fi-sr-compliance-document:before{content:"\f4bd"}.fi-sr-compliance:before{content:"\f4be"}.fi-sr-compress-alt:before{content:"\f4bf"}.fi-sr-compress:before{content:"\f4c0"}.fi-sr-computer-classic:before{content:"\f4c1"}.fi-sr-computer-mouse:before{content:"\f4c2"}.fi-sr-computer-speaker:before{content:"\f4c3"}.fi-sr-computer:before{content:"\f4c4"}.fi-sr-concierge-bell:before{content:"\f4c5"}.fi-sr-condition-alt:before{content:"\f4c6"}.fi-sr-condition:before{content:"\f4c7"}.fi-sr-confetti:before{content:"\f4c8"}.fi-sr-constellation:before{content:"\f4c9"}.fi-sr-container-storage:before{content:"\f4ca"}.fi-sr-convert-document:before{content:"\f4cb"}.fi-sr-convert-shapes:before{content:"\f4cc"}.fi-sr-conveyor-belt-alt:before{content:"\f4cd"}.fi-sr-conveyor-belt-arm:before{content:"\f4ce"}.fi-sr-conveyor-belt-empty:before{content:"\f4cf"}.fi-sr-conveyor-belt:before{content:"\f4d0"}.fi-sr-cookie-alt:before{content:"\f4d1"}.fi-sr-cookie:before{content:"\f4d2"}.fi-sr-copy-alt:before{content:"\f4d3"}.fi-sr-copy-image:before{content:"\f4d4"}.fi-sr-copy:before{content:"\f4d5"}.fi-sr-copyright:before{content:"\f4d6"}.fi-sr-corn:before{content:"\f4d7"}.fi-sr-couch:before{content:"\f4d8"}.fi-sr-court-sport:before{content:"\f4d9"}.fi-sr-cow-alt:before{content:"\f4da"}.fi-sr-cow:before{content:"\f4db"}.fi-sr-cowbell-circle-plus:before{content:"\f4dc"}.fi-sr-cowbell-more:before{content:"\f4dd"}.fi-sr-cowbell:before{content:"\f4de"}.fi-sr-crab:before{content:"\f4df"}.fi-sr-crate-empty:before{content:"\f4e0"}.fi-sr-cream:before{content:"\f4e1"}.fi-sr-credit-card-buyer:before{content:"\f4e2"}.fi-sr-credit-card-eye:before{content:"\f4e3"}.fi-sr-credit-card:before{content:"\f4e4"}.fi-sr-cricket:before{content:"\f4e5"}.fi-sr-crm-alt:before{content:"\f4e6"}.fi-sr-crm-computer:before{content:"\f4e7"}.fi-sr-CRM:before{content:"\f4e8"}.fi-sr-croissant:before{content:"\f4e9"}.fi-sr-cross-circle:before{content:"\f4ea"}.fi-sr-cross-religion:before{content:"\f4eb"}.fi-sr-cross-small:before{content:"\f4ec"}.fi-sr-cross:before{content:"\f4ed"}.fi-sr-crow:before{content:"\f4ee"}.fi-sr-crown:before{content:"\f4ef"}.fi-sr-crutch:before{content:"\f4f0"}.fi-sr-crutches:before{content:"\f4f1"}.fi-sr-cruzeiro-sign:before{content:"\f4f2"}.fi-sr-crypto-calendar:before{content:"\f4f3"}.fi-sr-cryptocurrency:before{content:"\f4f4"}.fi-sr-crystal-ball:before{content:"\f4f5"}.fi-sr-cube:before{content:"\f4f6"}.fi-sr-cubes-stacked:before{content:"\f4f7"}.fi-sr-cubes:before{content:"\f4f8"}.fi-sr-cucumber:before{content:"\f4f9"}.fi-sr-cup-straw-swoosh:before{content:"\f4fa"}.fi-sr-cup-straw:before{content:"\f4fb"}.fi-sr-cup-togo:before{content:"\f4fc"}.fi-sr-cupcake-alt:before{content:"\f4fd"}.fi-sr-cupcake:before{content:"\f4fe"}.fi-sr-curling:before{content:"\f4ff"}.fi-sr-cursor-finger:before{content:"\f500"}.fi-sr-cursor-plus:before{content:"\f501"}.fi-sr-cursor-text-alt:before{content:"\f502"}.fi-sr-cursor-text:before{content:"\f503"}.fi-sr-cursor:before{content:"\f504"}.fi-sr-curve-alt:before{content:"\f505"}.fi-sr-curve-arrow:before{content:"\f506"}.fi-sr-curve:before{content:"\f507"}.fi-sr-custard:before{content:"\f508"}.fi-sr-customer-care:before{content:"\f509"}.fi-sr-customer-service:before{content:"\f50a"}.fi-sr-customization-cogwheel:before{content:"\f50b"}.fi-sr-customization:before{content:"\f50c"}.fi-sr-customize-computer:before{content:"\f50d"}.fi-sr-customize-edit:before{content:"\f50e"}.fi-sr-customize:before{content:"\f50f"}.fi-sr-CV:before{content:"\f510"}.fi-sr-cvv-card:before{content:"\f511"}.fi-sr-d:before{content:"\f512"}.fi-sr-dagger:before{content:"\f513"}.fi-sr-daily-calendar:before{content:"\f514"}.fi-sr-damage:before{content:"\f515"}.fi-sr-dart:before{content:"\f516"}.fi-sr-dashboard-monitor:before{content:"\f517"}.fi-sr-dashboard-panel:before{content:"\f518"}.fi-sr-dashboard:before{content:"\f519"}.fi-sr-data-transfer:before{content:"\f51a"}.fi-sr-database:before{content:"\f51b"}.fi-sr-deer-rudolph:before{content:"\f51c"}.fi-sr-deer:before{content:"\f51d"}.fi-sr-delete-document:before{content:"\f51e"}.fi-sr-delete-right:before{content:"\f51f"}.fi-sr-delete-user:before{content:"\f520"}.fi-sr-delete:before{content:"\f521"}.fi-sr-democrat:before{content:"\f522"}.fi-sr-department-structure:before{content:"\f523"}.fi-sr-department:before{content:"\f524"}.fi-sr-deposit-alt:before{content:"\f525"}.fi-sr-deposit:before{content:"\f526"}.fi-sr-description-alt:before{content:"\f527"}.fi-sr-description:before{content:"\f528"}.fi-sr-desk:before{content:"\f529"}.fi-sr-desktop-arrow-down:before{content:"\f52a"}.fi-sr-desktop-wallpaper:before{content:"\f52b"}.fi-sr-devices:before{content:"\f52c"}.fi-sr-dewpoint:before{content:"\f52d"}.fi-sr-dharmachakra:before{content:"\f52e"}.fi-sr-diagram-cells:before{content:"\f52f"}.fi-sr-diagram-lean-canvas:before{content:"\f530"}.fi-sr-diagram-nested:before{content:"\f531"}.fi-sr-diagram-next:before{content:"\f532"}.fi-sr-diagram-predecessor:before{content:"\f533"}.fi-sr-diagram-previous:before{content:"\f534"}.fi-sr-diagram-project:before{content:"\f535"}.fi-sr-diagram-sankey:before{content:"\f536"}.fi-sr-diagram-subtask:before{content:"\f537"}.fi-sr-diagram-successor:before{content:"\f538"}.fi-sr-diagram-venn:before{content:"\f539"}.fi-sr-dial-high:before{content:"\f53a"}.fi-sr-dial-low:before{content:"\f53b"}.fi-sr-dial-max:before{content:"\f53c"}.fi-sr-dial-med-low:before{content:"\f53d"}.fi-sr-dial-med:before{content:"\f53e"}.fi-sr-dial-min:before{content:"\f53f"}.fi-sr-dial-off:before{content:"\f540"}.fi-sr-dial:before{content:"\f541"}.fi-sr-diamond-exclamation:before{content:"\f542"}.fi-sr-diamond-turn-right:before{content:"\f543"}.fi-sr-diamond:before{content:"\f544"}.fi-sr-diary-bookmark-down:before{content:"\f545"}.fi-sr-diary-bookmarks:before{content:"\f546"}.fi-sr-diary-clasp:before{content:"\f547"}.fi-sr-dice-alt:before{content:"\f548"}.fi-sr-dice-d10:before{content:"\f549"}.fi-sr-dice-d12:before{content:"\f54a"}.fi-sr-dice-d20:before{content:"\f54b"}.fi-sr-dice-d4:before{content:"\f54c"}.fi-sr-dice-d6:before{content:"\f54d"}.fi-sr-dice-d8:before{content:"\f54e"}.fi-sr-dice-four:before{content:"\f54f"}.fi-sr-dice-one:before{content:"\f550"}.fi-sr-dice-six:before{content:"\f551"}.fi-sr-dice-three:before{content:"\f552"}.fi-sr-dice-two:before{content:"\f553"}.fi-sr-dice:before{content:"\f554"}.fi-sr-digging:before{content:"\f555"}.fi-sr-digital-tachograph:before{content:"\f556"}.fi-sr-dinner:before{content:"\f557"}.fi-sr-diploma:before{content:"\f558"}.fi-sr-direction-signal-arrow:before{content:"\f559"}.fi-sr-direction-signal:before{content:"\f55a"}.fi-sr-disc-drive:before{content:"\f55b"}.fi-sr-discover:before{content:"\f55c"}.fi-sr-disease:before{content:"\f55d"}.fi-sr-disk:before{content:"\f55e"}.fi-sr-display-arrow-down:before{content:"\f55f"}.fi-sr-display-chart-up:before{content:"\f560"}.fi-sr-display-code:before{content:"\f561"}.fi-sr-display-medical:before{content:"\f562"}.fi-sr-display-slash:before{content:"\f563"}.fi-sr-distribute-spacing-horizontal:before{content:"\f564"}.fi-sr-distribute-spacing-vertical:before{content:"\f565"}.fi-sr-divide:before{content:"\f566"}.fi-sr-dizzy:before{content:"\f567"}.fi-sr-dna:before{content:"\f568"}.fi-sr-do-not-enter:before{content:"\f569"}.fi-sr-doctor:before{content:"\f56a"}.fi-sr-document-circle-wrong:before{content:"\f56b"}.fi-sr-document-paid:before{content:"\f56c"}.fi-sr-document-signed:before{content:"\f56d"}.fi-sr-document:before{content:"\f56e"}.fi-sr-dog-leashed:before{content:"\f56f"}.fi-sr-dog:before{content:"\f570"}.fi-sr-dollar:before{content:"\f571"}.fi-sr-dolly-flatbed-alt:before{content:"\f572"}.fi-sr-dolly-flatbed-empty:before{content:"\f573"}.fi-sr-dolly-flatbed:before{content:"\f574"}.fi-sr-dolphin:before{content:"\f575"}.fi-sr-domino-effect:before{content:"\f576"}.fi-sr-donate:before{content:"\f577"}.fi-sr-dong-sign:before{content:"\f578"}.fi-sr-donut:before{content:"\f579"}.fi-sr-door-closed:before{content:"\f57a"}.fi-sr-door-open:before{content:"\f57b"}.fi-sr-dot-circle:before{content:"\f57c"}.fi-sr-dot-pending:before{content:"\f57d"}.fi-sr-dove:before{content:"\f57e"}.fi-sr-down-from-bracket:before{content:"\f57f"}.fi-sr-down-left-and-up-right-to-center:before{content:"\f580"}.fi-sr-down-left:before{content:"\f581"}.fi-sr-down-right:before{content:"\f582"}.fi-sr-down-to-line:before{content:"\f583"}.fi-sr-down:before{content:"\f584"}.fi-sr-download:before{content:"\f585"}.fi-sr-drafting-compass:before{content:"\f586"}.fi-sr-dragon:before{content:"\f587"}.fi-sr-draw-polygon:before{content:"\f588"}.fi-sr-draw-square:before{content:"\f589"}.fi-sr-drawer-alt:before{content:"\f58a"}.fi-sr-drawer-empty:before{content:"\f58b"}.fi-sr-drawer:before{content:"\f58c"}.fi-sr-dreidel:before{content:"\f58d"}.fi-sr-drink-alt:before{content:"\f58e"}.fi-sr-driver-man:before{content:"\f58f"}.fi-sr-driver-woman:before{content:"\f590"}.fi-sr-drone-alt:before{content:"\f591"}.fi-sr-drone-front:before{content:"\f592"}.fi-sr-drone:before{content:"\f593"}.fi-sr-drop-down:before{content:"\f594"}.fi-sr-dropdown-select:before{content:"\f595"}.fi-sr-dropdown:before{content:"\f596"}.fi-sr-drum-steelpan:before{content:"\f597"}.fi-sr-drum:before{content:"\f598"}.fi-sr-drumstick-bite:before{content:"\f599"}.fi-sr-drumstick:before{content:"\f59a"}.fi-sr-dryer-alt:before{content:"\f59b"}.fi-sr-dryer:before{content:"\f59c"}.fi-sr-duck:before{content:"\f59d"}.fi-sr-dumbbell-fitness:before{content:"\f59e"}.fi-sr-dumbbell-horizontal:before{content:"\f59f"}.fi-sr-dumbbell-ray:before{content:"\f5a0"}.fi-sr-dumbbell-weightlifting:before{content:"\f5a1"}.fi-sr-dumpster-fire:before{content:"\f5a2"}.fi-sr-dumpster:before{content:"\f5a3"}.fi-sr-dungeon:before{content:"\f5a4"}.fi-sr-duplicate:before{content:"\f5a5"}.fi-sr-duration-alt:before{content:"\f5a6"}.fi-sr-duration:before{content:"\f5a7"}.fi-sr-e-learning:before{content:"\f5a8"}.fi-sr-e:before{content:"\f5a9"}.fi-sr-ear-deaf:before{content:"\f5aa"}.fi-sr-ear-muffs:before{content:"\f5ab"}.fi-sr-ear:before{content:"\f5ac"}.fi-sr-earnings:before{content:"\f5ad"}.fi-sr-earth-africa:before{content:"\f5ae"}.fi-sr-earth-americas:before{content:"\f5af"}.fi-sr-earth-asia:before{content:"\f5b0"}.fi-sr-earth-europa:before{content:"\f5b1"}.fi-sr-eclipse-alt:before{content:"\f5b2"}.fi-sr-eclipse:before{content:"\f5b3"}.fi-sr-edit-alt:before{content:"\f5b4"}.fi-sr-edit:before{content:"\f5b5"}.fi-sr-effect:before{content:"\f5b6"}.fi-sr-egg-fried:before{content:"\f5b7"}.fi-sr-egg:before{content:"\f5b8"}.fi-sr-eject:before{content:"\f5b9"}.fi-sr-elephant:before{content:"\f5ba"}.fi-sr-elevator:before{content:"\f5bb"}.fi-sr-email-pending:before{content:"\f5bc"}.fi-sr-employee-alt:before{content:"\f5bd"}.fi-sr-employee-handbook:before{content:"\f5be"}.fi-sr-employee-man-alt:before{content:"\f5bf"}.fi-sr-employee-man:before{content:"\f5c0"}.fi-sr-empty-set:before{content:"\f5c1"}.fi-sr-endless-loop:before{content:"\f5c2"}.fi-sr-engine-warning:before{content:"\f5c3"}.fi-sr-engine:before{content:"\f5c4"}.fi-sr-enter:before{content:"\f5c5"}.fi-sr-entertainment:before{content:"\f5c6"}.fi-sr-envelope-ban:before{content:"\f5c7"}.fi-sr-envelope-bulk:before{content:"\f5c8"}.fi-sr-envelope-dot:before{content:"\f5c9"}.fi-sr-envelope-download:before{content:"\f5ca"}.fi-sr-envelope-heart:before{content:"\f5cb"}.fi-sr-envelope-marker:before{content:"\f5cc"}.fi-sr-envelope-open-dollar:before{content:"\f5cd"}.fi-sr-envelope-open-text:before{content:"\f5ce"}.fi-sr-envelope-open:before{content:"\f5cf"}.fi-sr-envelope-plus:before{content:"\f5d0"}.fi-sr-envelope:before{content:"\f5d1"}.fi-sr-envelopes:before{content:"\f5d2"}.fi-sr-equality:before{content:"\f5d3"}.fi-sr-equals:before{content:"\f5d4"}.fi-sr-equipment:before{content:"\f5d5"}.fi-sr-eraser:before{content:"\f5d6"}.fi-sr-error-camera:before{content:"\f5d7"}.fi-sr-escalator:before{content:"\f5d8"}.fi-sr-ethernet:before{content:"\f5d9"}.fi-sr-euro:before{content:"\f5da"}.fi-sr-excavator:before{content:"\f5db"}.fi-sr-exchange-alt:before{content:"\f5dc"}.fi-sr-exchange-cryptocurrency:before{content:"\f5dd"}.fi-sr-exchange:before{content:"\f5de"}.fi-sr-exclamation:before{content:"\f5df"}.fi-sr-exit-alt:before{content:"\f5e0"}.fi-sr-exit:before{content:"\f5e1"}.fi-sr-expand-arrows-alt:before{content:"\f5e2"}.fi-sr-expand-arrows:before{content:"\f5e3"}.fi-sr-expand:before{content:"\f5e4"}.fi-sr-expense-bill:before{content:"\f5e5"}.fi-sr-expense:before{content:"\f5e6"}.fi-sr-external-hard-drive:before{content:"\f5e7"}.fi-sr-external-world:before{content:"\f5e8"}.fi-sr-eye-crossed:before{content:"\f5e9"}.fi-sr-eye-dropper-half:before{content:"\f5ea"}.fi-sr-eye:before{content:"\f5eb"}.fi-sr-eyes:before{content:"\f5ec"}.fi-sr-f:before{content:"\f5ed"}.fi-sr-fabric:before{content:"\f5ee"}.fi-sr-face-angry-horns:before{content:"\f5ef"}.fi-sr-face-anguished:before{content:"\f5f0"}.fi-sr-face-anxious-sweat:before{content:"\f5f1"}.fi-sr-face-astonished:before{content:"\f5f2"}.fi-sr-face-awesome:before{content:"\f5f3"}.fi-sr-face-beam-hand-over-mouth:before{content:"\f5f4"}.fi-sr-face-confounded:before{content:"\f5f5"}.fi-sr-face-confused:before{content:"\f5f6"}.fi-sr-face-cowboy-hat:before{content:"\f5f7"}.fi-sr-face-disappointed:before{content:"\f5f8"}.fi-sr-face-disguise:before{content:"\f5f9"}.fi-sr-face-downcast-sweat:before{content:"\f5fa"}.fi-sr-face-drooling:before{content:"\f5fb"}.fi-sr-face-explode:before{content:"\f5fc"}.fi-sr-face-expressionless:before{content:"\f5fd"}.fi-sr-face-eyes-xmarks:before{content:"\f5fe"}.fi-sr-face-fearful:before{content:"\f5ff"}.fi-sr-face-glasses:before{content:"\f600"}.fi-sr-face-grin-tongue-wink:before{content:"\f601"}.fi-sr-face-hand-yawn:before{content:"\f602"}.fi-sr-face-head-bandage:before{content:"\f603"}.fi-sr-face-hushed:before{content:"\f604"}.fi-sr-face-icicles:before{content:"\f605"}.fi-sr-face-lying:before{content:"\f606"}.fi-sr-face-mask:before{content:"\f607"}.fi-sr-face-monocle:before{content:"\f608"}.fi-sr-face-nauseated:before{content:"\f609"}.fi-sr-face-nose-steam:before{content:"\f60a"}.fi-sr-face-party:before{content:"\f60b"}.fi-sr-face-pensive:before{content:"\f60c"}.fi-sr-face-persevering:before{content:"\f60d"}.fi-sr-face-pleading:before{content:"\f60e"}.fi-sr-face-raised-eyebrow:before{content:"\f60f"}.fi-sr-face-relieved:before{content:"\f610"}.fi-sr-face-sad-sweat:before{content:"\f611"}.fi-sr-face-scream:before{content:"\f612"}.fi-sr-face-shush:before{content:"\f613"}.fi-sr-face-sleeping:before{content:"\f614"}.fi-sr-face-sleepy:before{content:"\f615"}.fi-sr-face-smile-halo:before{content:"\f616"}.fi-sr-face-smile-hearts:before{content:"\f617"}.fi-sr-face-smile-horns:before{content:"\f618"}.fi-sr-face-smile-tear:before{content:"\f619"}.fi-sr-face-smile-tongue:before{content:"\f61a"}.fi-sr-face-smile-upside-down:before{content:"\f61b"}.fi-sr-face-smiling-hands:before{content:"\f61c"}.fi-sr-face-smirking:before{content:"\f61d"}.fi-sr-face-sunglasses-alt:before{content:"\f61e"}.fi-sr-face-sunglasses:before{content:"\f61f"}.fi-sr-face-swear:before{content:"\f620"}.fi-sr-face-thermometer:before{content:"\f621"}.fi-sr-face-thinking:before{content:"\f622"}.fi-sr-face-tissue:before{content:"\f623"}.fi-sr-face-tongue-money:before{content:"\f624"}.fi-sr-face-tongue-sweat:before{content:"\f625"}.fi-sr-face-unamused:before{content:"\f626"}.fi-sr-face-viewfinder:before{content:"\f627"}.fi-sr-face-vomit:before{content:"\f628"}.fi-sr-face-weary:before{content:"\f629"}.fi-sr-face-woozy:before{content:"\f62a"}.fi-sr-face-worried:before{content:"\f62b"}.fi-sr-face-zany:before{content:"\f62c"}.fi-sr-face-zipper:before{content:"\f62d"}.fi-sr-fail:before{content:"\f62e"}.fi-sr-falafel:before{content:"\f62f"}.fi-sr-family-dress:before{content:"\f630"}.fi-sr-family-pants:before{content:"\f631"}.fi-sr-family:before{content:"\f632"}.fi-sr-fan-table:before{content:"\f633"}.fi-sr-fan:before{content:"\f634"}.fi-sr-farm:before{content:"\f635"}.fi-sr-faucet-drip:before{content:"\f636"}.fi-sr-faucet:before{content:"\f637"}.fi-sr-fax:before{content:"\f638"}.fi-sr-feather-pointed:before{content:"\f639"}.fi-sr-feather:before{content:"\f63a"}.fi-sr-features-alt:before{content:"\f63b"}.fi-sr-features:before{content:"\f63c"}.fi-sr-fee-receipt:before{content:"\f63d"}.fi-sr-fee:before{content:"\f63e"}.fi-sr-feedback-alt:before{content:"\f63f"}.fi-sr-feedback-cycle-loop:before{content:"\f640"}.fi-sr-feedback-hand:before{content:"\f641"}.fi-sr-feedback-review:before{content:"\f642"}.fi-sr-feedback:before{content:"\f643"}.fi-sr-fence:before{content:"\f644"}.fi-sr-field-hockey:before{content:"\f645"}.fi-sr-fighter-jet:before{content:"\f646"}.fi-sr-file-ai:before{content:"\f647"}.fi-sr-file-audio:before{content:"\f648"}.fi-sr-file-binary:before{content:"\f649"}.fi-sr-file-chart-line:before{content:"\f64a"}.fi-sr-file-chart-pie:before{content:"\f64b"}.fi-sr-file-circle-info:before{content:"\f64c"}.fi-sr-file-cloud:before{content:"\f64d"}.fi-sr-file-code:before{content:"\f64e"}.fi-sr-file-csv:before{content:"\f64f"}.fi-sr-file-download:before{content:"\f650"}.fi-sr-file-edit:before{content:"\f651"}.fi-sr-file-eps:before{content:"\f652"}.fi-sr-file-excel:before{content:"\f653"}.fi-sr-file-exclamation:before{content:"\f654"}.fi-sr-file-export:before{content:"\f655"}.fi-sr-file-image:before{content:"\f656"}.fi-sr-file-import:before{content:"\f657"}.fi-sr-file-invoice-dollar:before{content:"\f658"}.fi-sr-file-invoice:before{content:"\f659"}.fi-sr-file-medical-alt:before{content:"\f65a"}.fi-sr-file-medical:before{content:"\f65b"}.fi-sr-file-minus:before{content:"\f65c"}.fi-sr-file-pdf:before{content:"\f65d"}.fi-sr-file-powerpoint:before{content:"\f65e"}.fi-sr-file-prescription:before{content:"\f65f"}.fi-sr-file-psd:before{content:"\f660"}.fi-sr-file-signature:before{content:"\f661"}.fi-sr-file-spreadsheet:before{content:"\f662"}.fi-sr-file-upload:before{content:"\f663"}.fi-sr-file-user:before{content:"\f664"}.fi-sr-file-video:before{content:"\f665"}.fi-sr-file-word:before{content:"\f666"}.fi-sr-file-zipper:before{content:"\f667"}.fi-sr-file:before{content:"\f668"}.fi-sr-files-medical:before{content:"\f669"}.fi-sr-fill:before{content:"\f66a"}.fi-sr-film-canister:before{content:"\f66b"}.fi-sr-film-slash:before{content:"\f66c"}.fi-sr-film:before{content:"\f66d"}.fi-sr-films:before{content:"\f66e"}.fi-sr-filter-list:before{content:"\f66f"}.fi-sr-filter-slash:before{content:"\f670"}.fi-sr-filter:before{content:"\f671"}.fi-sr-filters:before{content:"\f672"}.fi-sr-fingerprint-security-risk:before{content:"\f673"}.fi-sr-fingerprint:before{content:"\f674"}.fi-sr-fire-burner:before{content:"\f675"}.fi-sr-fire-extinguisher:before{content:"\f676"}.fi-sr-fire-flame-curved:before{content:"\f677"}.fi-sr-fire-flame-simple:before{content:"\f678"}.fi-sr-fire-hydrant:before{content:"\f679"}.fi-sr-fire-smoke:before{content:"\f67a"}.fi-sr-fireplace:before{content:"\f67b"}.fi-sr-first-award:before{content:"\f67c"}.fi-sr-first-laurel:before{content:"\f67d"}.fi-sr-first-medal:before{content:"\f67e"}.fi-sr-first:before{content:"\f67f"}.fi-sr-fish-bones:before{content:"\f680"}.fi-sr-fish-cooked:before{content:"\f681"}.fi-sr-fish:before{content:"\f682"}.fi-sr-fishing-rod:before{content:"\f683"}.fi-sr-fist-move:before{content:"\f684"}.fi-sr-flag-alt:before{content:"\f685"}.fi-sr-flag-checkered:before{content:"\f686"}.fi-sr-flag-usa:before{content:"\f687"}.fi-sr-flag:before{content:"\f688"}.fi-sr-flame:before{content:"\f689"}.fi-sr-flashlight:before{content:"\f68a"}.fi-sr-flask-gear:before{content:"\f68b"}.fi-sr-flask-poison:before{content:"\f68c"}.fi-sr-flask-potion:before{content:"\f68d"}.fi-sr-flask:before{content:"\f68e"}.fi-sr-flatbread-stuffed:before{content:"\f68f"}.fi-sr-flatbread:before{content:"\f690"}.fi-sr-flip-horizontal:before{content:"\f691"}.fi-sr-floor-alt:before{content:"\f692"}.fi-sr-floor-layer:before{content:"\f693"}.fi-sr-floor:before{content:"\f694"}.fi-sr-floppy-disk-circle-arrow-right:before{content:"\f695"}.fi-sr-floppy-disk-circle-xmark:before{content:"\f696"}.fi-sr-floppy-disk-pen:before{content:"\f697"}.fi-sr-floppy-disks:before{content:"\f698"}.fi-sr-florin-sign:before{content:"\f699"}.fi-sr-flower-butterfly:before{content:"\f69a"}.fi-sr-flower-daffodil:before{content:"\f69b"}.fi-sr-flower-tulip:before{content:"\f69c"}.fi-sr-flower:before{content:"\f69d"}.fi-sr-flushed:before{content:"\f69e"}.fi-sr-flute:before{content:"\f69f"}.fi-sr-flux-capacitor:before{content:"\f6a0"}.fi-sr-fly-insect:before{content:"\f6a1"}.fi-sr-flying-disc:before{content:"\f6a2"}.fi-sr-fog:before{content:"\f6a3"}.fi-sr-folder-download:before{content:"\f6a4"}.fi-sr-folder-fire:before{content:"\f6a5"}.fi-sr-folder-minus:before{content:"\f6a6"}.fi-sr-folder-open:before{content:"\f6a7"}.fi-sr-folder-times:before{content:"\f6a8"}.fi-sr-folder-tree:before{content:"\f6a9"}.fi-sr-folder-upload:before{content:"\f6aa"}.fi-sr-folder-xmark:before{content:"\f6ab"}.fi-sr-folder:before{content:"\f6ac"}.fi-sr-folders:before{content:"\f6ad"}.fi-sr-follow-folder:before{content:"\f6ae"}.fi-sr-followcollection:before{content:"\f6af"}.fi-sr-following:before{content:"\f6b0"}.fi-sr-fondue-pot:before{content:"\f6b1"}.fi-sr-football:before{content:"\f6b2"}.fi-sr-foreign-language-audio:before{content:"\f6b3"}.fi-sr-fork:before{content:"\f6b4"}.fi-sr-forklift:before{content:"\f6b5"}.fi-sr-form:before{content:"\f6b6"}.fi-sr-fort:before{content:"\f6b7"}.fi-sr-forward-fast:before{content:"\f6b8"}.fi-sr-forward:before{content:"\f6b9"}.fi-sr-fox:before{content:"\f6ba"}.fi-sr-frame:before{content:"\f6bb"}.fi-sr-franc-sign:before{content:"\f6bc"}.fi-sr-free-delivery:before{content:"\f6bd"}.fi-sr-free:before{content:"\f6be"}.fi-sr-french-fries:before{content:"\f6bf"}.fi-sr-friday:before{content:"\f6c0"}.fi-sr-frog:before{content:"\f6c1"}.fi-sr-frown:before{content:"\f6c2"}.fi-sr-ftp:before{content:"\f6c3"}.fi-sr-fuel-gauge:before{content:"\f6c4"}.fi-sr-function-process:before{content:"\f6c5"}.fi-sr-function-square:before{content:"\f6c6"}.fi-sr-function:before{content:"\f6c7"}.fi-sr-funnel-dollar:before{content:"\f6c8"}.fi-sr-g:before{content:"\f6c9"}.fi-sr-galaxy-alt:before{content:"\f6ca"}.fi-sr-galaxy-planet:before{content:"\f6cb"}.fi-sr-galaxy-star:before{content:"\f6cc"}.fi-sr-galaxy:before{content:"\f6cd"}.fi-sr-gallery-thumbnails:before{content:"\f6ce"}.fi-sr-gallery:before{content:"\f6cf"}.fi-sr-game-board-alt:before{content:"\f6d0"}.fi-sr-game:before{content:"\f6d1"}.fi-sr-gamepad:before{content:"\f6d2"}.fi-sr-games:before{content:"\f6d3"}.fi-sr-garage-car:before{content:"\f6d4"}.fi-sr-garage-open:before{content:"\f6d5"}.fi-sr-garage:before{content:"\f6d6"}.fi-sr-garlic-alt:before{content:"\f6d7"}.fi-sr-garlic:before{content:"\f6d8"}.fi-sr-gas-pump-alt:before{content:"\f6d9"}.fi-sr-gas-pump-slash:before{content:"\f6da"}.fi-sr-gas-pump:before{content:"\f6db"}.fi-sr-gauge-circle-bolt:before{content:"\f6dc"}.fi-sr-gauge-circle-minus:before{content:"\f6dd"}.fi-sr-gauge-circle-plus:before{content:"\f6de"}.fi-sr-gavel:before{content:"\f6df"}.fi-sr-gay-couple:before{content:"\f6e0"}.fi-sr-gears:before{content:"\f6e1"}.fi-sr-gem:before{content:"\f6e2"}.fi-sr-general:before{content:"\f6e3"}.fi-sr-ghost:before{content:"\f6e4"}.fi-sr-gif-square:before{content:"\f6e5"}.fi-sr-gif:before{content:"\f6e6"}.fi-sr-gift-box-benefits:before{content:"\f6e7"}.fi-sr-gift-card:before{content:"\f6e8"}.fi-sr-gift:before{content:"\f6e9"}.fi-sr-gifts:before{content:"\f6ea"}.fi-sr-gingerbread-man:before{content:"\f6eb"}.fi-sr-glass-champagne:before{content:"\f6ec"}.fi-sr-glass-cheers:before{content:"\f6ed"}.fi-sr-glass-citrus:before{content:"\f6ee"}.fi-sr-glass-empty:before{content:"\f6ef"}.fi-sr-glass-half:before{content:"\f6f0"}.fi-sr-glass-water-droplet:before{content:"\f6f1"}.fi-sr-glass-whiskey-rocks:before{content:"\f6f2"}.fi-sr-glass-whiskey:before{content:"\f6f3"}.fi-sr-glass:before{content:"\f6f4"}.fi-sr-glasses:before{content:"\f6f5"}.fi-sr-globe-alt:before{content:"\f6f6"}.fi-sr-globe-pointer:before{content:"\f6f7"}.fi-sr-globe-snow:before{content:"\f6f8"}.fi-sr-globe:before{content:"\f6f9"}.fi-sr-goal-net:before{content:"\f6fa"}.fi-sr-golf-ball:before{content:"\f6fb"}.fi-sr-golf-club:before{content:"\f6fc"}.fi-sr-golf-hole:before{content:"\f6fd"}.fi-sr-golf:before{content:"\f6fe"}.fi-sr-gopuram:before{content:"\f6ff"}.fi-sr-government-budget:before{content:"\f700"}.fi-sr-government-flag:before{content:"\f701"}.fi-sr-government-user:before{content:"\f702"}.fi-sr-gps-navigation:before{content:"\f703"}.fi-sr-graduation-cap:before{content:"\f704"}.fi-sr-gramophone:before{content:"\f705"}.fi-sr-grape:before{content:"\f706"}.fi-sr-graph-curve:before{content:"\f707"}.fi-sr-graphic-style:before{content:"\f708"}.fi-sr-graphic-tablet:before{content:"\f709"}.fi-sr-grate-droplet:before{content:"\f70a"}.fi-sr-grate:before{content:"\f70b"}.fi-sr-greater-than-equal:before{content:"\f70c"}.fi-sr-greater-than:before{content:"\f70d"}.fi-sr-greek-helmet:before{content:"\f70e"}.fi-sr-grid-alt:before{content:"\f70f"}.fi-sr-grid-dividers:before{content:"\f710"}.fi-sr-grid:before{content:"\f711"}.fi-sr-grill-hot-alt:before{content:"\f712"}.fi-sr-grill:before{content:"\f713"}.fi-sr-grimace:before{content:"\f714"}.fi-sr-grin-alt:before{content:"\f715"}.fi-sr-grin-beam-sweat:before{content:"\f716"}.fi-sr-grin-beam:before{content:"\f717"}.fi-sr-grin-hearts:before{content:"\f718"}.fi-sr-grin-squint-tears:before{content:"\f719"}.fi-sr-grin-squint:before{content:"\f71a"}.fi-sr-grin-stars:before{content:"\f71b"}.fi-sr-grin-tears:before{content:"\f71c"}.fi-sr-grin-tongue-squint:before{content:"\f71d"}.fi-sr-grin-tongue-wink:before{content:"\f71e"}.fi-sr-grin-tongue:before{content:"\f71f"}.fi-sr-grin-wink:before{content:"\f720"}.fi-sr-grin:before{content:"\f721"}.fi-sr-grip-dots-vertical:before{content:"\f722"}.fi-sr-grip-dots:before{content:"\f723"}.fi-sr-grip-horizontal:before{content:"\f724"}.fi-sr-grip-lines-vertical:before{content:"\f725"}.fi-sr-grip-lines:before{content:"\f726"}.fi-sr-grip-vertical:before{content:"\f727"}.fi-sr-grocery-bag:before{content:"\f728"}.fi-sr-grocery-basket:before{content:"\f729"}.fi-sr-group-arrows-rotate:before{content:"\f72a"}.fi-sr-group-call:before{content:"\f72b"}.fi-sr-group-community-social-media:before{content:"\f72c"}.fi-sr-growth-chart-invest:before{content:"\f72d"}.fi-sr-guarani-sign:before{content:"\f72e"}.fi-sr-guide-alt:before{content:"\f72f"}.fi-sr-guide:before{content:"\f730"}.fi-sr-guitar-electric:before{content:"\f731"}.fi-sr-guitar:before{content:"\f732"}.fi-sr-guitars:before{content:"\f733"}.fi-sr-gun-squirt:before{content:"\f734"}.fi-sr-gym:before{content:"\f735"}.fi-sr-h-square:before{content:"\f736"}.fi-sr-h:before{content:"\f737"}.fi-sr-h1:before{content:"\f738"}.fi-sr-h2:before{content:"\f739"}.fi-sr-h3:before{content:"\f73a"}.fi-sr-h4:before{content:"\f73b"}.fi-sr-hair-clipper:before{content:"\f73c"}.fi-sr-hamburger-soda:before{content:"\f73d"}.fi-sr-hamburger:before{content:"\f73e"}.fi-sr-hammer-crash:before{content:"\f73f"}.fi-sr-hammer-war:before{content:"\f740"}.fi-sr-hammer:before{content:"\f741"}.fi-sr-hamsa:before{content:"\f742"}.fi-sr-hand-back-fist:before{content:"\f743"}.fi-sr-hand-back-point-down:before{content:"\f744"}.fi-sr-hand-back-point-left:before{content:"\f745"}.fi-sr-hand-back-point-ribbon:before{content:"\f746"}.fi-sr-hand-back-point-right:before{content:"\f747"}.fi-sr-hand-bill:before{content:"\f748"}.fi-sr-hand-dots:before{content:"\f749"}.fi-sr-hand-fingers-crossed:before{content:"\f74a"}.fi-sr-hand-fist:before{content:"\f74b"}.fi-sr-hand-heart:before{content:"\f74c"}.fi-sr-hand-holding-box:before{content:"\f74d"}.fi-sr-hand-holding-droplet:before{content:"\f74e"}.fi-sr-hand-holding-heart:before{content:"\f74f"}.fi-sr-hand-holding-magic:before{content:"\f750"}.fi-sr-hand-holding-medical:before{content:"\f751"}.fi-sr-hand-holding-seeding:before{content:"\f752"}.fi-sr-hand-holding-skull:before{content:"\f753"}.fi-sr-hand-holding-usd:before{content:"\f754"}.fi-sr-hand-holding-water:before{content:"\f755"}.fi-sr-hand-horns:before{content:"\f756"}.fi-sr-hand-lizard:before{content:"\f757"}.fi-sr-hand-love:before{content:"\f758"}.fi-sr-hand-middle-finger:before{content:"\f759"}.fi-sr-hand-paper:before{content:"\f75a"}.fi-sr-hand-peace:before{content:"\f75b"}.fi-sr-hand-point-ribbon:before{content:"\f75c"}.fi-sr-hand-scissors:before{content:"\f75d"}.fi-sr-hand-sparkles:before{content:"\f75e"}.fi-sr-hand-spock:before{content:"\f75f"}.fi-sr-hand-wave:before{content:"\f760"}.fi-sr-handmade:before{content:"\f761"}.fi-sr-hands-bubbles:before{content:"\f762"}.fi-sr-hands-clapping:before{content:"\f763"}.fi-sr-hands-heart:before{content:"\f764"}.fi-sr-hands-holding-diamond:before{content:"\f765"}.fi-sr-hands-holding:before{content:"\f766"}.fi-sr-hands-usd:before{content:"\f767"}.fi-sr-handshake-angle:before{content:"\f768"}.fi-sr-handshake-deal-loan:before{content:"\f769"}.fi-sr-handshake-house:before{content:"\f76a"}.fi-sr-handshake-simple-slash:before{content:"\f76b"}.fi-sr-handshake-trust:before{content:"\f76c"}.fi-sr-handshake:before{content:"\f76d"}.fi-sr-hard-hat:before{content:"\f76e"}.fi-sr-hashtag-lock:before{content:"\f76f"}.fi-sr-hastag:before{content:"\f770"}.fi-sr-hat-beach:before{content:"\f771"}.fi-sr-hat-birthday:before{content:"\f772"}.fi-sr-hat-chef:before{content:"\f773"}.fi-sr-hat-cowboy-side:before{content:"\f774"}.fi-sr-hat-cowboy:before{content:"\f775"}.fi-sr-hat-santa:before{content:"\f776"}.fi-sr-hat-winter:before{content:"\f777"}.fi-sr-hat-witch:before{content:"\f778"}.fi-sr-hat-wizard:before{content:"\f779"}.fi-sr-hdd:before{content:"\f77a"}.fi-sr-head-side-brain:before{content:"\f77b"}.fi-sr-head-side-cough-slash:before{content:"\f77c"}.fi-sr-head-side-cough:before{content:"\f77d"}.fi-sr-head-side-headphones:before{content:"\f77e"}.fi-sr-head-side-heart:before{content:"\f77f"}.fi-sr-head-side-mask:before{content:"\f780"}.fi-sr-head-side-medical:before{content:"\f781"}.fi-sr-head-side-thinking:before{content:"\f782"}.fi-sr-head-side-virus:before{content:"\f783"}.fi-sr-head-side:before{content:"\f784"}.fi-sr-head-vr:before{content:"\f785"}.fi-sr-heading:before{content:"\f786"}.fi-sr-headphones:before{content:"\f787"}.fi-sr-headset:before{content:"\f788"}.fi-sr-heart-arrow:before{content:"\f789"}.fi-sr-heart-brain:before{content:"\f78a"}.fi-sr-heart-crack:before{content:"\f78b"}.fi-sr-heart-half-stroke:before{content:"\f78c"}.fi-sr-heart-half:before{content:"\f78d"}.fi-sr-heart-health-muscle:before{content:"\f78e"}.fi-sr-heart-lock:before{content:"\f78f"}.fi-sr-heart-partner-handshake:before{content:"\f790"}.fi-sr-heart-rate:before{content:"\f791"}.fi-sr-heart-slash:before{content:"\f792"}.fi-sr-heart-upside-down:before{content:"\f793"}.fi-sr-heart:before{content:"\f794"}.fi-sr-heat:before{content:"\f795"}.fi-sr-helicopter-side:before{content:"\f796"}.fi-sr-helmet-battle:before{content:"\f797"}.fi-sr-hexagon-check:before{content:"\f798"}.fi-sr-hexagon-divide:before{content:"\f799"}.fi-sr-hexagon-exclamation:before{content:"\f79a"}.fi-sr-hexagon:before{content:"\f79b"}.fi-sr-high-definition:before{content:"\f79c"}.fi-sr-high-five-celebration-yes:before{content:"\f79d"}.fi-sr-high-five:before{content:"\f79e"}.fi-sr-highlighter-line:before{content:"\f79f"}.fi-sr-highlighter:before{content:"\f7a0"}.fi-sr-hiking:before{content:"\f7a1"}.fi-sr-hippo:before{content:"\f7a2"}.fi-sr-hockey-mask:before{content:"\f7a3"}.fi-sr-hockey-puck:before{content:"\f7a4"}.fi-sr-hockey-stick-puck:before{content:"\f7a5"}.fi-sr-hockey-sticks:before{content:"\f7a6"}.fi-sr-holding-hand-gear:before{content:"\f7a7"}.fi-sr-holding-hand-revenue:before{content:"\f7a8"}.fi-sr-holly-berry:before{content:"\f7a9"}.fi-sr-home-heart:before{content:"\f7aa"}.fi-sr-home-location-alt:before{content:"\f7ab"}.fi-sr-home-location:before{content:"\f7ac"}.fi-sr-home:before{content:"\f7ad"}.fi-sr-honey-pot:before{content:"\f7ae"}.fi-sr-hood-cloak:before{content:"\f7af"}.fi-sr-horizontal-rule:before{content:"\f7b0"}.fi-sr-horse-head:before{content:"\f7b1"}.fi-sr-horse-saddle:before{content:"\f7b2"}.fi-sr-horse:before{content:"\f7b3"}.fi-sr-horseshoe-broken:before{content:"\f7b4"}.fi-sr-horseshoe:before{content:"\f7b5"}.fi-sr-hose-reel:before{content:"\f7b6"}.fi-sr-hose:before{content:"\f7b7"}.fi-sr-hospital-symbol:before{content:"\f7b8"}.fi-sr-hospital-user:before{content:"\f7b9"}.fi-sr-hospital:before{content:"\f7ba"}.fi-sr-hospitals:before{content:"\f7bb"}.fi-sr-hot-tub:before{content:"\f7bc"}.fi-sr-hotdog:before{content:"\f7bd"}.fi-sr-hotel:before{content:"\f7be"}.fi-sr-hourglass-end:before{content:"\f7bf"}.fi-sr-hourglass-start:before{content:"\f7c0"}.fi-sr-hourglass:before{content:"\f7c1"}.fi-sr-house-blank:before{content:"\f7c2"}.fi-sr-house-building:before{content:"\f7c3"}.fi-sr-house-chimney-blank:before{content:"\f7c4"}.fi-sr-house-chimney-crack:before{content:"\f7c5"}.fi-sr-house-chimney-heart:before{content:"\f7c6"}.fi-sr-house-chimney-medical:before{content:"\f7c7"}.fi-sr-house-chimney-user:before{content:"\f7c8"}.fi-sr-house-chimney-window:before{content:"\f7c9"}.fi-sr-house-chimney:before{content:"\f7ca"}.fi-sr-house-circle-check:before{content:"\f7cb"}.fi-sr-house-circle-exclamation:before{content:"\f7cc"}.fi-sr-house-circle-xmark:before{content:"\f7cd"}.fi-sr-house-crack-alt:before{content:"\f7ce"}.fi-sr-house-crack:before{content:"\f7cf"}.fi-sr-house-day:before{content:"\f7d0"}.fi-sr-house-fire:before{content:"\f7d1"}.fi-sr-house-flag:before{content:"\f7d2"}.fi-sr-house-flood:before{content:"\f7d3"}.fi-sr-house-laptop:before{content:"\f7d4"}.fi-sr-house-leave:before{content:"\f7d5"}.fi-sr-house-lock:before{content:"\f7d6"}.fi-sr-house-medical:before{content:"\f7d7"}.fi-sr-house-night:before{content:"\f7d8"}.fi-sr-house-return:before{content:"\f7d9"}.fi-sr-house-signal:before{content:"\f7da"}.fi-sr-house-tree:before{content:"\f7db"}.fi-sr-house-tsunami:before{content:"\f7dc"}.fi-sr-house-turret:before{content:"\f7dd"}.fi-sr-house-user:before{content:"\f7de"}.fi-sr-house-window:before{content:"\f7df"}.fi-sr-hr-group:before{content:"\f7e0"}.fi-sr-hr-person:before{content:"\f7e1"}.fi-sr-hr:before{content:"\f7e2"}.fi-sr-hryvnia:before{content:"\f7e3"}.fi-sr-humidity:before{content:"\f7e4"}.fi-sr-hundred-points:before{content:"\f7e5"}.fi-sr-hurricane:before{content:"\f7e6"}.fi-sr-i:before{content:"\f7e7"}.fi-sr-ice-cream:before{content:"\f7e8"}.fi-sr-icicles:before{content:"\f7e9"}.fi-sr-icon-star:before{content:"\f7ea"}.fi-sr-id-badge:before{content:"\f7eb"}.fi-sr-id-card-clip-alt:before{content:"\f7ec"}.fi-sr-igloo:before{content:"\f7ed"}.fi-sr-image-slash:before{content:"\f7ee"}.fi-sr-images-user:before{content:"\f7ef"}.fi-sr-images:before{content:"\f7f0"}.fi-sr-improve-user:before{content:"\f7f1"}.fi-sr-inbox-full:before{content:"\f7f2"}.fi-sr-inbox-in:before{content:"\f7f3"}.fi-sr-inbox-out:before{content:"\f7f4"}.fi-sr-inbox:before{content:"\f7f5"}.fi-sr-inboxes:before{content:"\f7f6"}.fi-sr-incense-sticks-yoga:before{content:"\f7f7"}.fi-sr-incognito:before{content:"\f7f8"}.fi-sr-indent:before{content:"\f7f9"}.fi-sr-indian-rupee-sign:before{content:"\f7fa"}.fi-sr-industry-alt:before{content:"\f7fb"}.fi-sr-industry-windows:before{content:"\f7fc"}.fi-sr-infinity:before{content:"\f7fd"}.fi-sr-info-guide:before{content:"\f7fe"}.fi-sr-info:before{content:"\f7ff"}.fi-sr-information:before{content:"\f800"}.fi-sr-inhaler:before{content:"\f801"}.fi-sr-input-numeric:before{content:"\f802"}.fi-sr-input-pipe:before{content:"\f803"}.fi-sr-input-text:before{content:"\f804"}.fi-sr-insert-alt:before{content:"\f805"}.fi-sr-insert-arrows:before{content:"\f806"}.fi-sr-insert-button-circle:before{content:"\f807"}.fi-sr-insert-credit-card:before{content:"\f808"}.fi-sr-insert-square:before{content:"\f809"}.fi-sr-insert:before{content:"\f80a"}.fi-sr-insight-alt:before{content:"\f80b"}.fi-sr-insight-head:before{content:"\f80c"}.fi-sr-insight:before{content:"\f80d"}.fi-sr-integral:before{content:"\f80e"}.fi-sr-interactive:before{content:"\f80f"}.fi-sr-interlining:before{content:"\f810"}.fi-sr-internet-speed-wifi:before{content:"\f811"}.fi-sr-interrogation:before{content:"\f812"}.fi-sr-intersection:before{content:"\f813"}.fi-sr-introduction-handshake:before{content:"\f814"}.fi-sr-introduction:before{content:"\f815"}.fi-sr-inventory-alt:before{content:"\f816"}.fi-sr-invest:before{content:"\f817"}.fi-sr-investment:before{content:"\f818"}.fi-sr-invite-alt:before{content:"\f819"}.fi-sr-invite:before{content:"\f81a"}.fi-sr-iot-alt:before{content:"\f81b"}.fi-sr-iot:before{content:"\f81c"}.fi-sr-ip-address:before{content:"\f81d"}.fi-sr-island-tropical:before{content:"\f81e"}.fi-sr-it-alt:before{content:"\f81f"}.fi-sr-it-computer:before{content:"\f820"}.fi-sr-it:before{content:"\f821"}.fi-sr-italian-lira-sign:before{content:"\f822"}.fi-sr-italic:before{content:"\f823"}.fi-sr-j:before{content:"\f824"}.fi-sr-jam:before{content:"\f825"}.fi-sr-jar-alt:before{content:"\f826"}.fi-sr-jar-wheat:before{content:"\f827"}.fi-sr-javascript:before{content:"\f828"}.fi-sr-joint:before{content:"\f829"}.fi-sr-joker:before{content:"\f82a"}.fi-sr-journal-alt:before{content:"\f82b"}.fi-sr-journal:before{content:"\f82c"}.fi-sr-journey:before{content:"\f82d"}.fi-sr-joystick:before{content:"\f82e"}.fi-sr-jpg:before{content:"\f82f"}.fi-sr-jug-alt:before{content:"\f830"}.fi-sr-jug-bottle:before{content:"\f831"}.fi-sr-jug:before{content:"\f832"}.fi-sr-jumping-rope:before{content:"\f833"}.fi-sr-k:before{content:"\f834"}.fi-sr-kaaba:before{content:"\f835"}.fi-sr-kazoo:before{content:"\f836"}.fi-sr-kerning:before{content:"\f837"}.fi-sr-key-lock-crypto:before{content:"\f838"}.fi-sr-key-skeleton-left-right:before{content:"\f839"}.fi-sr-key:before{content:"\f83a"}.fi-sr-keyboard-brightness-low:before{content:"\f83b"}.fi-sr-keyboard-brightness:before{content:"\f83c"}.fi-sr-keyboard-down:before{content:"\f83d"}.fi-sr-keyboard-left:before{content:"\f83e"}.fi-sr-keyboard:before{content:"\f83f"}.fi-sr-keynote:before{content:"\f840"}.fi-sr-kidneys:before{content:"\f841"}.fi-sr-kip-sign:before{content:"\f842"}.fi-sr-kiss-beam:before{content:"\f843"}.fi-sr-kiss-wink-heart:before{content:"\f844"}.fi-sr-kiss:before{content:"\f845"}.fi-sr-kite:before{content:"\f846"}.fi-sr-kiwi-bird:before{content:"\f847"}.fi-sr-kiwi-fruit:before{content:"\f848"}.fi-sr-knife-kitchen:before{content:"\f849"}.fi-sr-knife:before{content:"\f84a"}.fi-sr-knitting:before{content:"\f84b"}.fi-sr-kpi-evaluation:before{content:"\f84c"}.fi-sr-kpi:before{content:"\f84d"}.fi-sr-l:before{content:"\f84e"}.fi-sr-label:before{content:"\f84f"}.fi-sr-lacrosse-stick-ball:before{content:"\f850"}.fi-sr-lacrosse-stick:before{content:"\f851"}.fi-sr-lambda:before{content:"\f852"}.fi-sr-lamp-desk:before{content:"\f853"}.fi-sr-lamp-floor:before{content:"\f854"}.fi-sr-lamp-street:before{content:"\f855"}.fi-sr-lamp:before{content:"\f856"}.fi-sr-land-layer-location:before{content:"\f857"}.fi-sr-land-layers:before{content:"\f858"}.fi-sr-land-location:before{content:"\f859"}.fi-sr-landmark-alt:before{content:"\f85a"}.fi-sr-language:before{content:"\f85b"}.fi-sr-laptop-arrow-down:before{content:"\f85c"}.fi-sr-laptop-binary:before{content:"\f85d"}.fi-sr-laptop-code:before{content:"\f85e"}.fi-sr-laptop-medical:before{content:"\f85f"}.fi-sr-laptop-mobile:before{content:"\f860"}.fi-sr-laptop-slash:before{content:"\f861"}.fi-sr-laptop:before{content:"\f862"}.fi-sr-lari-sign:before{content:"\f863"}.fi-sr-lasso-sparkles:before{content:"\f864"}.fi-sr-lasso:before{content:"\f865"}.fi-sr-last-square:before{content:"\f866"}.fi-sr-laugh-beam:before{content:"\f867"}.fi-sr-laugh-squint:before{content:"\f868"}.fi-sr-laugh-wink:before{content:"\f869"}.fi-sr-laugh:before{content:"\f86a"}.fi-sr-lawyer-man:before{content:"\f86b"}.fi-sr-lawyer-woman:before{content:"\f86c"}.fi-sr-layer-minus:before{content:"\f86d"}.fi-sr-layer-plus:before{content:"\f86e"}.fi-sr-layers:before{content:"\f86f"}.fi-sr-layout-fluid:before{content:"\f870"}.fi-sr-lead-funnel:before{content:"\f871"}.fi-sr-lead-management:before{content:"\f872"}.fi-sr-lead:before{content:"\f873"}.fi-sr-leader-alt:before{content:"\f874"}.fi-sr-leader-speech:before{content:"\f875"}.fi-sr-leader:before{content:"\f876"}.fi-sr-leaderboard-alt:before{content:"\f877"}.fi-sr-leaderboard-trophy:before{content:"\f878"}.fi-sr-leaderboard:before{content:"\f879"}.fi-sr-leadership-alt:before{content:"\f87a"}.fi-sr-leadership:before{content:"\f87b"}.fi-sr-leaf-heart:before{content:"\f87c"}.fi-sr-leaf-maple:before{content:"\f87d"}.fi-sr-leaf-oak:before{content:"\f87e"}.fi-sr-leaf:before{content:"\f87f"}.fi-sr-leafy-green:before{content:"\f880"}.fi-sr-leave:before{content:"\f881"}.fi-sr-left-from-bracket:before{content:"\f882"}.fi-sr-left:before{content:"\f883"}.fi-sr-legal:before{content:"\f884"}.fi-sr-lemon:before{content:"\f885"}.fi-sr-lesbian-couple:before{content:"\f886"}.fi-sr-less-than-equal:before{content:"\f887"}.fi-sr-less-than:before{content:"\f888"}.fi-sr-lesson-class:before{content:"\f889"}.fi-sr-lesson:before{content:"\f88a"}.fi-sr-letter-case:before{content:"\f88b"}.fi-sr-lettuce:before{content:"\f88c"}.fi-sr-level-down-alt:before{content:"\f88d"}.fi-sr-level-down:before{content:"\f88e"}.fi-sr-level-up-alt:before{content:"\f88f"}.fi-sr-level-up:before{content:"\f890"}.fi-sr-license:before{content:"\f891"}.fi-sr-life-ring:before{content:"\f892"}.fi-sr-life:before{content:"\f893"}.fi-sr-light-ceiling:before{content:"\f894"}.fi-sr-light-emergency-on:before{content:"\f895"}.fi-sr-light-emergency:before{content:"\f896"}.fi-sr-light-switch-off:before{content:"\f897"}.fi-sr-light-switch-on:before{content:"\f898"}.fi-sr-light-switch:before{content:"\f899"}.fi-sr-lightbulb-cfl-on:before{content:"\f89a"}.fi-sr-lightbulb-cfl:before{content:"\f89b"}.fi-sr-lightbulb-dollar:before{content:"\f89c"}.fi-sr-lightbulb-exclamation:before{content:"\f89d"}.fi-sr-lightbulb-head:before{content:"\f89e"}.fi-sr-lightbulb-on:before{content:"\f89f"}.fi-sr-lightbulb-question:before{content:"\f8a0"}.fi-sr-lightbulb-setting:before{content:"\f8a1"}.fi-sr-lightbulb-slash:before{content:"\f8a2"}.fi-sr-lighthouse:before{content:"\f8a3"}.fi-sr-lights-holiday:before{content:"\f8a4"}.fi-sr-limit-hand:before{content:"\f8a5"}.fi-sr-limit-speedometer:before{content:"\f8a6"}.fi-sr-line-width:before{content:"\f8a7"}.fi-sr-link-alt:before{content:"\f8a8"}.fi-sr-link-horizontal-slash:before{content:"\f8a9"}.fi-sr-link-horizontal:before{content:"\f8aa"}.fi-sr-link-slash-alt:before{content:"\f8ab"}.fi-sr-link-slash:before{content:"\f8ac"}.fi-sr-link:before{content:"\f8ad"}.fi-sr-lion-head:before{content:"\f8ae"}.fi-sr-lion:before{content:"\f8af"}.fi-sr-lips:before{content:"\f8b0"}.fi-sr-lipstick:before{content:"\f8b1"}.fi-sr-lira-sign:before{content:"\f8b2"}.fi-sr-list-check:before{content:"\f8b3"}.fi-sr-list-dropdown:before{content:"\f8b4"}.fi-sr-list-music:before{content:"\f8b5"}.fi-sr-list-timeline:before{content:"\f8b6"}.fi-sr-list:before{content:"\f8b7"}.fi-sr-litecoin-sign:before{content:"\f8b8"}.fi-sr-live-alt:before{content:"\f8b9"}.fi-sr-live:before{content:"\f8ba"}.fi-sr-loading:before{content:"\f8bb"}.fi-sr-loan:before{content:"\f8bc"}.fi-sr-lobster:before{content:"\f8bd"}.fi-sr-location-alt:before{content:"\f8be"}.fi-sr-location-arrow:before{content:"\f8bf"}.fi-sr-location-crosshairs-slash:before{content:"\f8c0"}.fi-sr-location-crosshairs:before{content:"\f8c1"}.fi-sr-location-dot-slash:before{content:"\f8c2"}.fi-sr-location-exclamation:before{content:"\f8c3"}.fi-sr-location-pin-call:before{content:"\f8c4"}.fi-sr-lock-alt:before{content:"\f8c5"}.fi-sr-lock-hashtag:before{content:"\f8c6"}.fi-sr-lock-open-alt:before{content:"\f8c7"}.fi-sr-lock:before{content:"\f8c8"}.fi-sr-locust:before{content:"\f8c9"}.fi-sr-loop-square:before{content:"\f8ca"}.fi-sr-loveseat:before{content:"\f8cb"}.fi-sr-low-vision:before{content:"\f8cc"}.fi-sr-luchador:before{content:"\f8cd"}.fi-sr-luggage-cart:before{content:"\f8ce"}.fi-sr-luggage-rolling:before{content:"\f8cf"}.fi-sr-lungs-virus:before{content:"\f8d0"}.fi-sr-lungs:before{content:"\f8d1"}.fi-sr-m:before{content:"\f8d2"}.fi-sr-mace:before{content:"\f8d3"}.fi-sr-magnet-user:before{content:"\f8d4"}.fi-sr-magnet:before{content:"\f8d5"}.fi-sr-mailbox-envelope:before{content:"\f8d6"}.fi-sr-mailbox-flag-up:before{content:"\f8d7"}.fi-sr-mailbox:before{content:"\f8d8"}.fi-sr-makeup-brush:before{content:"\f8d9"}.fi-sr-man-head:before{content:"\f8da"}.fi-sr-man-scientist:before{content:"\f8db"}.fi-sr-manat-sign:before{content:"\f8dc"}.fi-sr-mandolin:before{content:"\f8dd"}.fi-sr-mango:before{content:"\f8de"}.fi-sr-manhole:before{content:"\f8df"}.fi-sr-map-location-track:before{content:"\f8e0"}.fi-sr-map-marker-check:before{content:"\f8e1"}.fi-sr-map-marker-cross:before{content:"\f8e2"}.fi-sr-map-marker-edit:before{content:"\f8e3"}.fi-sr-map-marker-home:before{content:"\f8e4"}.fi-sr-map-marker-minus:before{content:"\f8e5"}.fi-sr-map-marker-plus:before{content:"\f8e6"}.fi-sr-map-marker-question:before{content:"\f8e7"}.fi-sr-map-marker-slash:before{content:"\f8e8"}.fi-sr-map-marker-smile:before{content:"\f8e9"}.fi-sr-map-marker:before{content:"\f8ea"}.fi-sr-map-pin:before{content:"\f8eb"}.fi-sr-map-point:before{content:"\f8ec"}.fi-sr-map:before{content:"\f8ed"}.fi-sr-marker-time:before{content:"\f8ee"}.fi-sr-marker:before{content:"\f8ef"}.fi-sr-marketplace-alt:before{content:"\f8f0"}.fi-sr-marketplace-store:before{content:"\f8f1"}.fi-sr-marketplace:before{content:"\f8f2"}.fi-sr-mars-double:before{content:"\f8f3"}.fi-sr-mars-stroke-right:before{content:"\f8f4"}.fi-sr-mars-stroke-up:before{content:"\f8f5"}.fi-sr-mars:before{content:"\f8f6"}.fi-sr-martini-glass-citrus:before{content:"\f8f7"}.fi-sr-martini-glass-empty:before{content:"\f8f8"}.fi-sr-mask-carnival:before{content:"\f8f9"}.fi-sr-mask-face:before{content:"\f8fa"}.fi-sr-mask-snorkel:before{content:"\f8fb"}.fi-sr-massage:before{content:"\f8fc"}.fi-sr-match-fire:before{content:"\f8fd"}.fi-sr-mattress-pillow:before{content:"\f8fe"}.fi-sr-measuring-tape:before{content:"\f8ff"}.fi-sr-meat:before{content:"\f900"}.fi-sr-medal:before{content:"\f901"}.fi-sr-medical-star:before{content:"\f902"}.fi-sr-medicine:before{content:"\f903"}.fi-sr-meditation:before{content:"\f904"}.fi-sr-meeting-alt:before{content:"\f905"}.fi-sr-meeting:before{content:"\f906"}.fi-sr-megaphone-announcement-leader:before{content:"\f907"}.fi-sr-megaphone:before{content:"\f908"}.fi-sr-meh-blank:before{content:"\f909"}.fi-sr-meh-rolling-eyes:before{content:"\f90a"}.fi-sr-meh:before{content:"\f90b"}.fi-sr-melon-alt:before{content:"\f90c"}.fi-sr-melon:before{content:"\f90d"}.fi-sr-member-list:before{content:"\f90e"}.fi-sr-member-search:before{content:"\f90f"}.fi-sr-membership-vip:before{content:"\f910"}.fi-sr-membership:before{content:"\f911"}.fi-sr-memo-circle-check:before{content:"\f912"}.fi-sr-memo-pad:before{content:"\f913"}.fi-sr-memo:before{content:"\f914"}.fi-sr-memory:before{content:"\f915"}.fi-sr-menu-burger:before{content:"\f916"}.fi-sr-menu-dots-vertical:before{content:"\f917"}.fi-sr-menu-dots:before{content:"\f918"}.fi-sr-mercury:before{content:"\f919"}.fi-sr-message-arrow-down:before{content:"\f91a"}.fi-sr-message-arrow-up-right:before{content:"\f91b"}.fi-sr-message-arrow-up:before{content:"\f91c"}.fi-sr-message-bot:before{content:"\f91d"}.fi-sr-message-code:before{content:"\f91e"}.fi-sr-message-dollar:before{content:"\f91f"}.fi-sr-message-heart:before{content:"\f920"}.fi-sr-message-image:before{content:"\f921"}.fi-sr-message-question:before{content:"\f922"}.fi-sr-message-quote:before{content:"\f923"}.fi-sr-message-slash:before{content:"\f924"}.fi-sr-message-sms:before{content:"\f925"}.fi-sr-message-text:before{content:"\f926"}.fi-sr-message-xmark:before{content:"\f927"}.fi-sr-messages-dollar:before{content:"\f928"}.fi-sr-messages-question:before{content:"\f929"}.fi-sr-messages:before{content:"\f92a"}.fi-sr-meteor:before{content:"\f92b"}.fi-sr-meter-bolt:before{content:"\f92c"}.fi-sr-meter-droplet:before{content:"\f92d"}.fi-sr-meter-fire:before{content:"\f92e"}.fi-sr-meter:before{content:"\f92f"}.fi-sr-microchip-ai:before{content:"\f930"}.fi-sr-microchip:before{content:"\f931"}.fi-sr-microphone-alt:before{content:"\f932"}.fi-sr-microphone-slash:before{content:"\f933"}.fi-sr-microphone:before{content:"\f934"}.fi-sr-microscope:before{content:"\f935"}.fi-sr-microwave:before{content:"\f936"}.fi-sr-milk-alt:before{content:"\f937"}.fi-sr-milk:before{content:"\f938"}.fi-sr-mill-sign:before{content:"\f939"}.fi-sr-mind-share:before{content:"\f93a"}.fi-sr-minus-circle:before{content:"\f93b"}.fi-sr-minus-hexagon:before{content:"\f93c"}.fi-sr-minus-small:before{content:"\f93d"}.fi-sr-minus:before{content:"\f93e"}.fi-sr-mistletoe:before{content:"\f93f"}.fi-sr-mix:before{content:"\f940"}.fi-sr-mobile-button:before{content:"\f941"}.fi-sr-mobile-notch:before{content:"\f942"}.fi-sr-mobile:before{content:"\f943"}.fi-sr-mockup:before{content:"\f944"}.fi-sr-mode-alt:before{content:"\f945"}.fi-sr-mode-landscape:before{content:"\f946"}.fi-sr-mode-portrait:before{content:"\f947"}.fi-sr-mode:before{content:"\f948"}.fi-sr-model-cube-arrows:before{content:"\f949"}.fi-sr-model-cube-space:before{content:"\f94a"}.fi-sr-model-cube:before{content:"\f94b"}.fi-sr-module:before{content:"\f94c"}.fi-sr-monday:before{content:"\f94d"}.fi-sr-money-bill-simple:before{content:"\f94e"}.fi-sr-money-bill-transfer:before{content:"\f94f"}.fi-sr-money-bill-wave-alt:before{content:"\f950"}.fi-sr-money-bill-wave:before{content:"\f951"}.fi-sr-money-bills-simple:before{content:"\f952"}.fi-sr-money-bills:before{content:"\f953"}.fi-sr-money-check-edit-alt:before{content:"\f954"}.fi-sr-money-check-edit:before{content:"\f955"}.fi-sr-money-check:before{content:"\f956"}.fi-sr-money-coin-transfer:before{content:"\f957"}.fi-sr-money-from-bracket:before{content:"\f958"}.fi-sr-money-simple-from-bracket:before{content:"\f959"}.fi-sr-money-transfer-alt:before{content:"\f95a"}.fi-sr-money-transfer-coin-arrow:before{content:"\f95b"}.fi-sr-money-transfer-smartphone:before{content:"\f95c"}.fi-sr-money-wings:before{content:"\f95d"}.fi-sr-money:before{content:"\f95e"}.fi-sr-monkey:before{content:"\f95f"}.fi-sr-monument:before{content:"\f960"}.fi-sr-moon-stars:before{content:"\f961"}.fi-sr-moon:before{content:"\f962"}.fi-sr-moped:before{content:"\f963"}.fi-sr-mortar-pestle:before{content:"\f964"}.fi-sr-mortgage:before{content:"\f965"}.fi-sr-mosque-alt:before{content:"\f966"}.fi-sr-mosque-moon:before{content:"\f967"}.fi-sr-mosque:before{content:"\f968"}.fi-sr-mosquito-net:before{content:"\f969"}.fi-sr-mosquito:before{content:"\f96a"}.fi-sr-motorcycle:before{content:"\f96b"}.fi-sr-mound:before{content:"\f96c"}.fi-sr-mountain-city:before{content:"\f96d"}.fi-sr-mountain:before{content:"\f96e"}.fi-sr-mountains:before{content:"\f96f"}.fi-sr-mouse-field:before{content:"\f970"}.fi-sr-mouse:before{content:"\f971"}.fi-sr-mov-file:before{content:"\f972"}.fi-sr-move-to-folder-2:before{content:"\f973"}.fi-sr-move-to-folder:before{content:"\f974"}.fi-sr-mp3-file:before{content:"\f975"}.fi-sr-mp3-player:before{content:"\f976"}.fi-sr-mp4-file:before{content:"\f977"}.fi-sr-mug-alt:before{content:"\f978"}.fi-sr-mug-hot-alt:before{content:"\f979"}.fi-sr-mug-hot:before{content:"\f97a"}.fi-sr-mug-marshmallows:before{content:"\f97b"}.fi-sr-mug-tea-saucer:before{content:"\f97c"}.fi-sr-mug-tea:before{content:"\f97d"}.fi-sr-mug:before{content:"\f97e"}.fi-sr-multiple-alt:before{content:"\f97f"}.fi-sr-multiple:before{content:"\f980"}.fi-sr-muscle:before{content:"\f981"}.fi-sr-mushroom-alt:before{content:"\f982"}.fi-sr-mushroom:before{content:"\f983"}.fi-sr-music-alt-slash:before{content:"\f984"}.fi-sr-music-alt:before{content:"\f985"}.fi-sr-music-file:before{content:"\f986"}.fi-sr-music-note:before{content:"\f987"}.fi-sr-music-slash:before{content:"\f988"}.fi-sr-music:before{content:"\f989"}.fi-sr-n:before{content:"\f98a"}.fi-sr-naira-sign:before{content:"\f98b"}.fi-sr-narwhal:before{content:"\f98c"}.fi-sr-navigation:before{content:"\f98d"}.fi-sr-nesting-dolls:before{content:"\f98e"}.fi-sr-network-cloud:before{content:"\f98f"}.fi-sr-network:before{content:"\f990"}.fi-sr-neuter:before{content:"\f991"}.fi-sr-newsletter-subscribe:before{content:"\f992"}.fi-sr-newspaper-open:before{content:"\f993"}.fi-sr-newspaper:before{content:"\f994"}.fi-sr-nfc-lock:before{content:"\f995"}.fi-sr-nfc-magnifying-glass:before{content:"\f996"}.fi-sr-nfc-pen:before{content:"\f997"}.fi-sr-nfc-slash:before{content:"\f998"}.fi-sr-nfc-trash:before{content:"\f999"}.fi-sr-nfc:before{content:"\f99a"}.fi-sr-night-day:before{content:"\f99b"}.fi-sr-no-fee:before{content:"\f99c"}.fi-sr-no-people:before{content:"\f99d"}.fi-sr-noodles:before{content:"\f99e"}.fi-sr-nose:before{content:"\f99f"}.fi-sr-not-equal:before{content:"\f9a0"}.fi-sr-not-found-alt:before{content:"\f9a1"}.fi-sr-not-found-magnifying-glass:before{content:"\f9a2"}.fi-sr-not-found:before{content:"\f9a3"}.fi-sr-notdef:before{content:"\f9a4"}.fi-sr-note-medical:before{content:"\f9a5"}.fi-sr-note-sticky:before{content:"\f9a6"}.fi-sr-note:before{content:"\f9a7"}.fi-sr-notebook-alt:before{content:"\f9a8"}.fi-sr-notebook:before{content:"\f9a9"}.fi-sr-notes-medical:before{content:"\f9aa"}.fi-sr-notes:before{content:"\f9ab"}.fi-sr-o:before{content:"\f9ac"}.fi-sr-object-exclude:before{content:"\f9ad"}.fi-sr-object-group:before{content:"\f9ae"}.fi-sr-object-intersect:before{content:"\f9af"}.fi-sr-object-subtract:before{content:"\f9b0"}.fi-sr-object-ungroup:before{content:"\f9b1"}.fi-sr-object-union:before{content:"\f9b2"}.fi-sr-objects-column:before{content:"\f9b3"}.fi-sr-octagon-check:before{content:"\f9b4"}.fi-sr-octagon-divide:before{content:"\f9b5"}.fi-sr-octagon-exclamation:before{content:"\f9b6"}.fi-sr-octagon-minus:before{content:"\f9b7"}.fi-sr-octagon-plus:before{content:"\f9b8"}.fi-sr-octagon-xmark:before{content:"\f9b9"}.fi-sr-octagon:before{content:"\f9ba"}.fi-sr-oil-can:before{content:"\f9bb"}.fi-sr-oil-temp:before{content:"\f9bc"}.fi-sr-olive-oil:before{content:"\f9bd"}.fi-sr-olive:before{content:"\f9be"}.fi-sr-olives:before{content:"\f9bf"}.fi-sr-om:before{content:"\f9c0"}.fi-sr-omega:before{content:"\f9c1"}.fi-sr-onboarding:before{content:"\f9c2"}.fi-sr-onion:before{content:"\f9c3"}.fi-sr-opacity:before{content:"\f9c4"}.fi-sr-open-mail-clip:before{content:"\f9c5"}.fi-sr-operating-system-upgrade:before{content:"\f9c6"}.fi-sr-operation:before{content:"\f9c7"}.fi-sr-order-history:before{content:"\f9c8"}.fi-sr-organization-chart:before{content:"\f9c9"}.fi-sr-ornament:before{content:"\f9ca"}.fi-sr-otp:before{content:"\f9cb"}.fi-sr-otter:before{content:"\f9cc"}.fi-sr-outdent:before{content:"\f9cd"}.fi-sr-oval-alt:before{content:"\f9ce"}.fi-sr-oval:before{content:"\f9cf"}.fi-sr-oven:before{content:"\f9d0"}.fi-sr-overline:before{content:"\f9d1"}.fi-sr-overview:before{content:"\f9d2"}.fi-sr-p:before{content:"\f9d3"}.fi-sr-package:before{content:"\f9d4"}.fi-sr-padlock-check:before{content:"\f9d5"}.fi-sr-page-break:before{content:"\f9d6"}.fi-sr-pager:before{content:"\f9d7"}.fi-sr-paid:before{content:"\f9d8"}.fi-sr-paint-roller:before{content:"\f9d9"}.fi-sr-paint:before{content:"\f9da"}.fi-sr-paintbrush-pencil:before{content:"\f9db"}.fi-sr-palette:before{content:"\f9dc"}.fi-sr-pallet-alt:before{content:"\f9dd"}.fi-sr-pallet:before{content:"\f9de"}.fi-sr-pan-food:before{content:"\f9df"}.fi-sr-pan-frying:before{content:"\f9e0"}.fi-sr-pan:before{content:"\f9e1"}.fi-sr-pancakes:before{content:"\f9e2"}.fi-sr-panorama:before{content:"\f9e3"}.fi-sr-paper-plane-launch:before{content:"\f9e4"}.fi-sr-paper-plane-top:before{content:"\f9e5"}.fi-sr-paper-plane:before{content:"\f9e6"}.fi-sr-paperclip-vertical:before{content:"\f9e7"}.fi-sr-parachute-box:before{content:"\f9e8"}.fi-sr-paragraph-left:before{content:"\f9e9"}.fi-sr-paragraph:before{content:"\f9ea"}.fi-sr-parking-circle-slash:before{content:"\f9eb"}.fi-sr-parking-circle:before{content:"\f9ec"}.fi-sr-parking-slash:before{content:"\f9ed"}.fi-sr-parking:before{content:"\f9ee"}.fi-sr-party-bell:before{content:"\f9ef"}.fi-sr-party-horn:before{content:"\f9f0"}.fi-sr-party:before{content:"\f9f1"}.fi-sr-passport:before{content:"\f9f2"}.fi-sr-password-alt:before{content:"\f9f3"}.fi-sr-password-computer:before{content:"\f9f4"}.fi-sr-password-email:before{content:"\f9f5"}.fi-sr-password-smartphone:before{content:"\f9f6"}.fi-sr-password:before{content:"\f9f7"}.fi-sr-paste:before{content:"\f9f8"}.fi-sr-pattern:before{content:"\f9f9"}.fi-sr-pause-circle:before{content:"\f9fa"}.fi-sr-pause-square:before{content:"\f9fb"}.fi-sr-pause:before{content:"\f9fc"}.fi-sr-paw-claws:before{content:"\f9fd"}.fi-sr-paw-heart:before{content:"\f9fe"}.fi-sr-paw:before{content:"\f9ff"}.fi-sr-payment-pos:before{content:"\fa00"}.fi-sr-payroll-check:before{content:"\fa01"}.fi-sr-peace:before{content:"\fa02"}.fi-sr-peach:before{content:"\fa03"}.fi-sr-peanut:before{content:"\fa04"}.fi-sr-peanuts:before{content:"\fa05"}.fi-sr-peapod:before{content:"\fa06"}.fi-sr-pear:before{content:"\fa07"}.fi-sr-pedestal:before{content:"\fa08"}.fi-sr-pen-circle:before{content:"\fa09"}.fi-sr-pen-clip-slash:before{content:"\fa0a"}.fi-sr-pen-clip:before{content:"\fa0b"}.fi-sr-pen-fancy-slash:before{content:"\fa0c"}.fi-sr-pen-fancy:before{content:"\fa0d"}.fi-sr-pen-field:before{content:"\fa0e"}.fi-sr-pen-nib-slash:before{content:"\fa0f"}.fi-sr-pen-nib:before{content:"\fa10"}.fi-sr-pen-slash:before{content:"\fa11"}.fi-sr-pen-square:before{content:"\fa12"}.fi-sr-pen-swirl:before{content:"\fa13"}.fi-sr-pencil-paintbrush:before{content:"\fa14"}.fi-sr-pencil-ruler:before{content:"\fa15"}.fi-sr-pencil-slash:before{content:"\fa16"}.fi-sr-pencil:before{content:"\fa17"}.fi-sr-pending:before{content:"\fa18"}.fi-sr-pennant:before{content:"\fa19"}.fi-sr-people-arrows-left-right:before{content:"\fa1a"}.fi-sr-people-carry-box:before{content:"\fa1b"}.fi-sr-people-dress:before{content:"\fa1c"}.fi-sr-people-network-partner:before{content:"\fa1d"}.fi-sr-people-pants:before{content:"\fa1e"}.fi-sr-people-poll:before{content:"\fa1f"}.fi-sr-people-pulling:before{content:"\fa20"}.fi-sr-people-roof:before{content:"\fa21"}.fi-sr-people:before{content:"\fa22"}.fi-sr-pepper-alt:before{content:"\fa23"}.fi-sr-pepper-hot:before{content:"\fa24"}.fi-sr-pepper:before{content:"\fa25"}.fi-sr-percentage:before{content:"\fa26"}.fi-sr-person-burst:before{content:"\fa27"}.fi-sr-person-carry-box:before{content:"\fa28"}.fi-sr-person-circle-check:before{content:"\fa29"}.fi-sr-person-circle-exclamation:before{content:"\fa2a"}.fi-sr-person-circle-minus:before{content:"\fa2b"}.fi-sr-person-circle-plus:before{content:"\fa2c"}.fi-sr-person-circle-question:before{content:"\fa2d"}.fi-sr-person-circle-xmark:before{content:"\fa2e"}.fi-sr-person-cv:before{content:"\fa2f"}.fi-sr-person-dolly-empty:before{content:"\fa30"}.fi-sr-person-dolly:before{content:"\fa31"}.fi-sr-person-dress-simple:before{content:"\fa32"}.fi-sr-person-dress:before{content:"\fa33"}.fi-sr-person-luggage:before{content:"\fa34"}.fi-sr-person-lunge:before{content:"\fa35"}.fi-sr-person-pilates:before{content:"\fa36"}.fi-sr-person-praying:before{content:"\fa37"}.fi-sr-person-pregnant:before{content:"\fa38"}.fi-sr-person-seat-reclined:before{content:"\fa39"}.fi-sr-person-seat:before{content:"\fa3a"}.fi-sr-person-shelter:before{content:"\fa3b"}.fi-sr-person-sign:before{content:"\fa3c"}.fi-sr-person-simple:before{content:"\fa3d"}.fi-sr-person-walking-with-cane:before{content:"\fa3e"}.fi-sr-peseta-sign:before{content:"\fa3f"}.fi-sr-peso-sign:before{content:"\fa40"}.fi-sr-pets:before{content:"\fa41"}.fi-sr-pharmacy:before{content:"\fa42"}.fi-sr-phone-call:before{content:"\fa43"}.fi-sr-phone-cross:before{content:"\fa44"}.fi-sr-phone-flip:before{content:"\fa45"}.fi-sr-phone-guide:before{content:"\fa46"}.fi-sr-phone-heart-message:before{content:"\fa47"}.fi-sr-phone-office:before{content:"\fa48"}.fi-sr-phone-pause:before{content:"\fa49"}.fi-sr-phone-plus:before{content:"\fa4a"}.fi-sr-phone-rotary:before{content:"\fa4b"}.fi-sr-phone-slash:before{content:"\fa4c"}.fi-sr-photo-capture:before{content:"\fa4d"}.fi-sr-photo-film-music:before{content:"\fa4e"}.fi-sr-photo-video:before{content:"\fa4f"}.fi-sr-physics:before{content:"\fa50"}.fi-sr-Pi:before{content:"\fa51"}.fi-sr-piano-keyboard:before{content:"\fa52"}.fi-sr-piano:before{content:"\fa53"}.fi-sr-pickaxe:before{content:"\fa54"}.fi-sr-picking-box:before{content:"\fa55"}.fi-sr-picking:before{content:"\fa56"}.fi-sr-picnic:before{content:"\fa57"}.fi-sr-picpeople-filled:before{content:"\fa58"}.fi-sr-picpeople:before{content:"\fa59"}.fi-sr-picture:before{content:"\fa5a"}.fi-sr-pie:before{content:"\fa5b"}.fi-sr-pig-bank-bulb:before{content:"\fa5c"}.fi-sr-pig-face:before{content:"\fa5d"}.fi-sr-pig:before{content:"\fa5e"}.fi-sr-piggy-bank-budget:before{content:"\fa5f"}.fi-sr-piggy-bank:before{content:"\fa60"}.fi-sr-pills:before{content:"\fa61"}.fi-sr-pinata:before{content:"\fa62"}.fi-sr-pineapple-alt:before{content:"\fa63"}.fi-sr-pineapple:before{content:"\fa64"}.fi-sr-pipe-smoking:before{content:"\fa65"}.fi-sr-pipette:before{content:"\fa66"}.fi-sr-pizza-slice:before{content:"\fa67"}.fi-sr-place-of-worship:before{content:"\fa68"}.fi-sr-plan-strategy:before{content:"\fa69"}.fi-sr-plan:before{content:"\fa6a"}.fi-sr-plane-alt:before{content:"\fa6b"}.fi-sr-plane-arrival:before{content:"\fa6c"}.fi-sr-plane-departure:before{content:"\fa6d"}.fi-sr-plane-prop:before{content:"\fa6e"}.fi-sr-plane-slash:before{content:"\fa6f"}.fi-sr-plane-tail:before{content:"\fa70"}.fi-sr-plane:before{content:"\fa71"}.fi-sr-planet-moon:before{content:"\fa72"}.fi-sr-planet-ringed:before{content:"\fa73"}.fi-sr-plant-care:before{content:"\fa74"}.fi-sr-plant-growth:before{content:"\fa75"}.fi-sr-plant-seed-invest:before{content:"\fa76"}.fi-sr-plant-wilt:before{content:"\fa77"}.fi-sr-plate-utensils:before{content:"\fa78"}.fi-sr-plate-wheat:before{content:"\fa79"}.fi-sr-plate:before{content:"\fa7a"}.fi-sr-play-alt:before{content:"\fa7b"}.fi-sr-play-circle:before{content:"\fa7c"}.fi-sr-play-microphone:before{content:"\fa7d"}.fi-sr-play-pause:before{content:"\fa7e"}.fi-sr-play:before{content:"\fa7f"}.fi-sr-plug-alt:before{content:"\fa80"}.fi-sr-plug-cable:before{content:"\fa81"}.fi-sr-plug-circle-bolt:before{content:"\fa82"}.fi-sr-plug-circle-check:before{content:"\fa83"}.fi-sr-plug-circle-exclamation:before{content:"\fa84"}.fi-sr-plug-circle-minus:before{content:"\fa85"}.fi-sr-plug-circle-plus:before{content:"\fa86"}.fi-sr-plug-connection:before{content:"\fa87"}.fi-sr-plug:before{content:"\fa88"}.fi-sr-plus-hexagon:before{content:"\fa89"}.fi-sr-plus-minus:before{content:"\fa8a"}.fi-sr-plus-small:before{content:"\fa8b"}.fi-sr-plus:before{content:"\fa8c"}.fi-sr-png-file:before{content:"\fa8d"}.fi-sr-podcast:before{content:"\fa8e"}.fi-sr-podium-star:before{content:"\fa8f"}.fi-sr-podium-victory-leader:before{content:"\fa90"}.fi-sr-podium:before{content:"\fa91"}.fi-sr-point-of-sale-bill:before{content:"\fa92"}.fi-sr-point-of-sale-signal:before{content:"\fa93"}.fi-sr-point-of-sale:before{content:"\fa94"}.fi-sr-pointer-loading:before{content:"\fa95"}.fi-sr-pointer-text:before{content:"\fa96"}.fi-sr-police-box:before{content:"\fa97"}.fi-sr-poll-h:before{content:"\fa98"}.fi-sr-pollution:before{content:"\fa99"}.fi-sr-pompebled:before{content:"\fa9a"}.fi-sr-poo-bolt:before{content:"\fa9b"}.fi-sr-poo:before{content:"\fa9c"}.fi-sr-pool-8-ball:before{content:"\fa9d"}.fi-sr-poop:before{content:"\fa9e"}.fi-sr-popcorn:before{content:"\fa9f"}.fi-sr-popsicle:before{content:"\faa0"}.fi-sr-portal-enter:before{content:"\faa1"}.fi-sr-portal-exit:before{content:"\faa2"}.fi-sr-portrait:before{content:"\faa3"}.fi-sr-postal-address:before{content:"\faa4"}.fi-sr-pot:before{content:"\faa5"}.fi-sr-potato:before{content:"\faa6"}.fi-sr-pound:before{content:"\faa7"}.fi-sr-power:before{content:"\faa8"}.fi-sr-ppt-file:before{content:"\faa9"}.fi-sr-practice:before{content:"\faaa"}.fi-sr-praying-hands:before{content:"\faab"}.fi-sr-prescription-bottle-alt:before{content:"\faac"}.fi-sr-prescription-bottle-pill:before{content:"\faad"}.fi-sr-prescription-bottle:before{content:"\faae"}.fi-sr-prescription:before{content:"\faaf"}.fi-sr-presentation:before{content:"\fab0"}.fi-sr-preview:before{content:"\fab1"}.fi-sr-previous-square:before{content:"\fab2"}.fi-sr-print-magnifying-glass:before{content:"\fab3"}.fi-sr-print-slash:before{content:"\fab4"}.fi-sr-print:before{content:"\fab5"}.fi-sr-priority-arrow:before{content:"\fab6"}.fi-sr-priority-arrows:before{content:"\fab7"}.fi-sr-priority-importance:before{content:"\fab8"}.fi-sr-procedures:before{content:"\fab9"}.fi-sr-process:before{content:"\faba"}.fi-sr-productivity:before{content:"\fabb"}.fi-sr-progress-complete:before{content:"\fabc"}.fi-sr-progress-download:before{content:"\fabd"}.fi-sr-progress-upload:before{content:"\fabe"}.fi-sr-projector:before{content:"\fabf"}.fi-sr-protractor:before{content:"\fac0"}.fi-sr-pulse:before{content:"\fac1"}.fi-sr-pump-medical:before{content:"\fac2"}.fi-sr-pump:before{content:"\fac3"}.fi-sr-pumpkin-alt-2:before{content:"\fac4"}.fi-sr-pumpkin-alt:before{content:"\fac5"}.fi-sr-pumpkin:before{content:"\fac6"}.fi-sr-puzzle-alt:before{content:"\fac7"}.fi-sr-puzzle-piece-integration:before{content:"\fac8"}.fi-sr-puzzle-piece:before{content:"\fac9"}.fi-sr-puzzle-pieces:before{content:"\faca"}.fi-sr-pyramid:before{content:"\facb"}.fi-sr-q:before{content:"\facc"}.fi-sr-qr-scan:before{content:"\facd"}.fi-sr-QR:before{content:"\face"}.fi-sr-qrcode:before{content:"\facf"}.fi-sr-question-square:before{content:"\fad0"}.fi-sr-question:before{content:"\fad1"}.fi-sr-queue-alt:before{content:"\fad2"}.fi-sr-queue-line:before{content:"\fad3"}.fi-sr-queue-signal:before{content:"\fad4"}.fi-sr-queue:before{content:"\fad5"}.fi-sr-quill-pen-story:before{content:"\fad6"}.fi-sr-quiz-alt:before{content:"\fad7"}.fi-sr-quiz:before{content:"\fad8"}.fi-sr-quote-right:before{content:"\fad9"}.fi-sr-r:before{content:"\fada"}.fi-sr-rabbit-fast:before{content:"\fadb"}.fi-sr-rabbit:before{content:"\fadc"}.fi-sr-raccoon:before{content:"\fadd"}.fi-sr-racquet:before{content:"\fade"}.fi-sr-radar-monitoring-track:before{content:"\fadf"}.fi-sr-radar:before{content:"\fae0"}.fi-sr-radiation-alt:before{content:"\fae1"}.fi-sr-radiation:before{content:"\fae2"}.fi-sr-radio-alt:before{content:"\fae3"}.fi-sr-radio-button:before{content:"\fae4"}.fi-sr-radio:before{content:"\fae5"}.fi-sr-radish:before{content:"\fae6"}.fi-sr-rainbow:before{content:"\fae7"}.fi-sr-raindrops:before{content:"\fae8"}.fi-sr-ram:before{content:"\fae9"}.fi-sr-ramp-loading:before{content:"\faea"}.fi-sr-rank:before{content:"\faeb"}.fi-sr-ranking-podium-empty:before{content:"\faec"}.fi-sr-ranking-podium:before{content:"\faed"}.fi-sr-ranking-star:before{content:"\faee"}.fi-sr-ranking-stars:before{content:"\faef"}.fi-sr-raygun:before{content:"\faf0"}.fi-sr-razor-barber:before{content:"\faf1"}.fi-sr-react:before{content:"\faf2"}.fi-sr-rec:before{content:"\faf3"}.fi-sr-receipt:before{content:"\faf4"}.fi-sr-recipe-book:before{content:"\faf5"}.fi-sr-recipe:before{content:"\faf6"}.fi-sr-record-vinyl:before{content:"\faf7"}.fi-sr-rectabgle-vertical:before{content:"\faf8"}.fi-sr-rectangle-barcode:before{content:"\faf9"}.fi-sr-rectangle-code:before{content:"\fafa"}.fi-sr-rectangle-history-circle-plus:before{content:"\fafb"}.fi-sr-rectangle-horizontal:before{content:"\fafc"}.fi-sr-rectangle-list:before{content:"\fafd"}.fi-sr-rectangle-panoramic:before{content:"\fafe"}.fi-sr-rectangle-pro:before{content:"\faff"}.fi-sr-rectangle-vertical-history:before{content:"\fb00"}.fi-sr-rectangle-vertical:before{content:"\fb01"}.fi-sr-rectangle-xmark:before{content:"\fb02"}.fi-sr-rectangles-mixed:before{content:"\fb03"}.fi-sr-recycle-bin:before{content:"\fb04"}.fi-sr-recycle:before{content:"\fb05"}.fi-sr-redo-alt:before{content:"\fb06"}.fi-sr-redo:before{content:"\fb07"}.fi-sr-reel:before{content:"\fb08"}.fi-sr-refer-arrow:before{content:"\fb09"}.fi-sr-refer:before{content:"\fb0a"}.fi-sr-referral-alt:before{content:"\fb0b"}.fi-sr-referral-user:before{content:"\fb0c"}.fi-sr-referral:before{content:"\fb0d"}.fi-sr-reflect-horizontal-alt:before{content:"\fb0e"}.fi-sr-reflect-horizontal:before{content:"\fb0f"}.fi-sr-reflect-vertical:before{content:"\fb10"}.fi-sr-reflect:before{content:"\fb11"}.fi-sr-refresh:before{content:"\fb12"}.fi-sr-refrigerator:before{content:"\fb13"}.fi-sr-refund-alt:before{content:"\fb14"}.fi-sr-refund:before{content:"\fb15"}.fi-sr-region-pin-alt:before{content:"\fb16"}.fi-sr-region-pin:before{content:"\fb17"}.fi-sr-registered:before{content:"\fb18"}.fi-sr-registration-paper:before{content:"\fb19"}.fi-sr-remove-folder:before{content:"\fb1a"}.fi-sr-remove-user:before{content:"\fb1b"}.fi-sr-rent-signal:before{content:"\fb1c"}.fi-sr-rent:before{content:"\fb1d"}.fi-sr-replace:before{content:"\fb1e"}.fi-sr-replay-10:before{content:"\fb1f"}.fi-sr-replay-30:before{content:"\fb20"}.fi-sr-replay-5:before{content:"\fb21"}.fi-sr-reply-all:before{content:"\fb22"}.fi-sr-republican:before{content:"\fb23"}.fi-sr-reservation-smartphone:before{content:"\fb24"}.fi-sr-reservation-table:before{content:"\fb25"}.fi-sr-resistance-band:before{content:"\fb26"}.fi-sr-resize:before{content:"\fb27"}.fi-sr-resources:before{content:"\fb28"}.fi-sr-restaurant:before{content:"\fb29"}.fi-sr-restroom-simple:before{content:"\fb2a"}.fi-sr-resume:before{content:"\fb2b"}.fi-sr-revenue-alt:before{content:"\fb2c"}.fi-sr-revenue-euro:before{content:"\fb2d"}.fi-sr-Revenue:before{content:"\fb2e"}.fi-sr-review:before{content:"\fb2f"}.fi-sr-rewind-button-circle:before{content:"\fb30"}.fi-sr-rewind:before{content:"\fb31"}.fi-sr-rhombus:before{content:"\fb32"}.fi-sr-ribbon:before{content:"\fb33"}.fi-sr-right-from-bracket:before{content:"\fb34"}.fi-sr-right:before{content:"\fb35"}.fi-sr-ring-diamond:before{content:"\fb36"}.fi-sr-ring:before{content:"\fb37"}.fi-sr-rings-wedding:before{content:"\fb38"}.fi-sr-risk-alt:before{content:"\fb39"}.fi-sr-risk:before{content:"\fb3a"}.fi-sr-road-barrier:before{content:"\fb3b"}.fi-sr-road-sign-left:before{content:"\fb3c"}.fi-sr-road:before{content:"\fb3d"}.fi-sr-robot:before{content:"\fb3e"}.fi-sr-robotic-arm:before{content:"\fb3f"}.fi-sr-rocket-lunch:before{content:"\fb40"}.fi-sr-rocket:before{content:"\fb41"}.fi-sr-roller-coaster:before{content:"\fb42"}.fi-sr-room-service:before{content:"\fb43"}.fi-sr-rotate-exclamation:before{content:"\fb44"}.fi-sr-rotate-left:before{content:"\fb45"}.fi-sr-rotate-reverse:before{content:"\fb46"}.fi-sr-rotate-right:before{content:"\fb47"}.fi-sr-rotate-square:before{content:"\fb48"}.fi-sr-roulette:before{content:"\fb49"}.fi-sr-route-highway:before{content:"\fb4a"}.fi-sr-route-interstate:before{content:"\fb4b"}.fi-sr-route:before{content:"\fb4c"}.fi-sr-router:before{content:"\fb4d"}.fi-sr-rss-alt:before{content:"\fb4e"}.fi-sr-rss:before{content:"\fb4f"}.fi-sr-ruble-sign:before{content:"\fb50"}.fi-sr-rugby-helmet:before{content:"\fb51"}.fi-sr-rugby:before{content:"\fb52"}.fi-sr-ruler-combined:before{content:"\fb53"}.fi-sr-ruler-horizontal:before{content:"\fb54"}.fi-sr-ruler-triangle:before{content:"\fb55"}.fi-sr-ruler-vertical:before{content:"\fb56"}.fi-sr-rules-alt:before{content:"\fb57"}.fi-sr-rules:before{content:"\fb58"}.fi-sr-running-track:before{content:"\fb59"}.fi-sr-running:before{content:"\fb5a"}.fi-sr-rupee-sign:before{content:"\fb5b"}.fi-sr-rupiah-sign:before{content:"\fb5c"}.fi-sr-rv:before{content:"\fb5d"}.fi-sr-s:before{content:"\fb5e"}.fi-sr-sack-dollar:before{content:"\fb5f"}.fi-sr-sack:before{content:"\fb60"}.fi-sr-sad-cry:before{content:"\fb61"}.fi-sr-sad-tear:before{content:"\fb62"}.fi-sr-sad:before{content:"\fb63"}.fi-sr-safe-box:before{content:"\fb64"}.fi-sr-sailboat:before{content:"\fb65"}.fi-sr-salad:before{content:"\fb66"}.fi-sr-salary-alt:before{content:"\fb67"}.fi-sr-salt-pepper:before{content:"\fb68"}.fi-sr-salt-shaker:before{content:"\fb69"}.fi-sr-sandwich-alt:before{content:"\fb6a"}.fi-sr-sandwich:before{content:"\fb6b"}.fi-sr-satellite-dish:before{content:"\fb6c"}.fi-sr-satellite:before{content:"\fb6d"}.fi-sr-saturday:before{content:"\fb6e"}.fi-sr-sauce:before{content:"\fb6f"}.fi-sr-sausage:before{content:"\fb70"}.fi-sr-sax-hot:before{content:"\fb71"}.fi-sr-saxophone:before{content:"\fb72"}.fi-sr-scale-comparison-alt:before{content:"\fb73"}.fi-sr-scale-comparison:before{content:"\fb74"}.fi-sr-scale:before{content:"\fb75"}.fi-sr-scalpel-path:before{content:"\fb76"}.fi-sr-scalpel:before{content:"\fb77"}.fi-sr-scanner-gun:before{content:"\fb78"}.fi-sr-scanner-image:before{content:"\fb79"}.fi-sr-scanner-keyboard:before{content:"\fb7a"}.fi-sr-scanner-touchscreen:before{content:"\fb7b"}.fi-sr-scarecrow:before{content:"\fb7c"}.fi-sr-scarf:before{content:"\fb7d"}.fi-sr-school-bus:before{content:"\fb7e"}.fi-sr-school:before{content:"\fb7f"}.fi-sr-scissors:before{content:"\fb80"}.fi-sr-scooter:before{content:"\fb81"}.fi-sr-screen:before{content:"\fb82"}.fi-sr-screencast:before{content:"\fb83"}.fi-sr-screw-alt:before{content:"\fb84"}.fi-sr-screw:before{content:"\fb85"}.fi-sr-screwdriver:before{content:"\fb86"}.fi-sr-scribble:before{content:"\fb87"}.fi-sr-script:before{content:"\fb88"}.fi-sr-scroll-document-story:before{content:"\fb89"}.fi-sr-scroll-old:before{content:"\fb8a"}.fi-sr-scroll-torah:before{content:"\fb8b"}.fi-sr-scroll:before{content:"\fb8c"}.fi-sr-scrubber:before{content:"\fb8d"}.fi-sr-scythe:before{content:"\fb8e"}.fi-sr-sd-card:before{content:"\fb8f"}.fi-sr-sd-cards:before{content:"\fb90"}.fi-sr-seal-exclamation:before{content:"\fb91"}.fi-sr-seal-question:before{content:"\fb92"}.fi-sr-seal:before{content:"\fb93"}.fi-sr-search-alt:before{content:"\fb94"}.fi-sr-search-dollar:before{content:"\fb95"}.fi-sr-search-heart:before{content:"\fb96"}.fi-sr-search-location:before{content:"\fb97"}.fi-sr-search:before{content:"\fb98"}.fi-sr-seat-airline:before{content:"\fb99"}.fi-sr-seatbelt-safety-driver:before{content:"\fb9a"}.fi-sr-second-award:before{content:"\fb9b"}.fi-sr-second-laurel:before{content:"\fb9c"}.fi-sr-second-medal:before{content:"\fb9d"}.fi-sr-second:before{content:"\fb9e"}.fi-sr-seedling:before{content:"\fb9f"}.fi-sr-select:before{content:"\fba0"}.fi-sr-selection:before{content:"\fba1"}.fi-sr-seller-store:before{content:"\fba2"}.fi-sr-seller:before{content:"\fba3"}.fi-sr-send-back:before{content:"\fba4"}.fi-sr-send-backward:before{content:"\fba5"}.fi-sr-sensor-alert:before{content:"\fba6"}.fi-sr-sensor-fire:before{content:"\fba7"}.fi-sr-sensor-on:before{content:"\fba8"}.fi-sr-sensor-smoke:before{content:"\fba9"}.fi-sr-sensor:before{content:"\fbaa"}.fi-sr-settings-sliders:before{content:"\fbab"}.fi-sr-settings:before{content:"\fbac"}.fi-sr-share-alt-square:before{content:"\fbad"}.fi-sr-share-square:before{content:"\fbae"}.fi-sr-share:before{content:"\fbaf"}.fi-sr-sheep:before{content:"\fbb0"}.fi-sr-shekel-sign:before{content:"\fbb1"}.fi-sr-shelves:before{content:"\fbb2"}.fi-sr-shield-alt:before{content:"\fbb3"}.fi-sr-shield-cat:before{content:"\fbb4"}.fi-sr-shield-check:before{content:"\fbb5"}.fi-sr-shield-cross:before{content:"\fbb6"}.fi-sr-shield-dog:before{content:"\fbb7"}.fi-sr-shield-exclamation:before{content:"\fbb8"}.fi-sr-shield-interrogation:before{content:"\fbb9"}.fi-sr-shield-keyhole:before{content:"\fbba"}.fi-sr-shield-minus:before{content:"\fbbb"}.fi-sr-shield-plus:before{content:"\fbbc"}.fi-sr-shield-security-risk:before{content:"\fbbd"}.fi-sr-shield-slash:before{content:"\fbbe"}.fi-sr-shield-trust:before{content:"\fbbf"}.fi-sr-shield-virus:before{content:"\fbc0"}.fi-sr-shield-xmark:before{content:"\fbc1"}.fi-sr-shield:before{content:"\fbc2"}.fi-sr-ship-side:before{content:"\fbc3"}.fi-sr-ship:before{content:"\fbc4"}.fi-sr-shipping-fast:before{content:"\fbc5"}.fi-sr-shipping-timed:before{content:"\fbc6"}.fi-sr-shirt-long-sleeve:before{content:"\fbc7"}.fi-sr-shirt-running:before{content:"\fbc8"}.fi-sr-shirt-tank-top:before{content:"\fbc9"}.fi-sr-shirt:before{content:"\fbca"}.fi-sr-shish-kebab:before{content:"\fbcb"}.fi-sr-shoe-prints:before{content:"\fbcc"}.fi-sr-shop-lock:before{content:"\fbcd"}.fi-sr-shop-slash:before{content:"\fbce"}.fi-sr-shop:before{content:"\fbcf"}.fi-sr-shopping-bag-add:before{content:"\fbd0"}.fi-sr-shopping-bag:before{content:"\fbd1"}.fi-sr-shopping-basket:before{content:"\fbd2"}.fi-sr-shopping-cart-add:before{content:"\fbd3"}.fi-sr-shopping-cart-buyer:before{content:"\fbd4"}.fi-sr-shopping-cart-check:before{content:"\fbd5"}.fi-sr-shopping-cart:before{content:"\fbd6"}.fi-sr-shovel-snow:before{content:"\fbd7"}.fi-sr-shovel:before{content:"\fbd8"}.fi-sr-shower-down:before{content:"\fbd9"}.fi-sr-shower:before{content:"\fbda"}.fi-sr-shredder:before{content:"\fbdb"}.fi-sr-shrimp:before{content:"\fbdc"}.fi-sr-shuffle:before{content:"\fbdd"}.fi-sr-shuttle-van:before{content:"\fbde"}.fi-sr-shuttlecock:before{content:"\fbdf"}.fi-sr-Sickle:before{content:"\fbe0"}.fi-sr-sidebar-flip:before{content:"\fbe1"}.fi-sr-sidebar:before{content:"\fbe2"}.fi-sr-sigma:before{content:"\fbe3"}.fi-sr-sign-hanging:before{content:"\fbe4"}.fi-sr-sign-in-alt:before{content:"\fbe5"}.fi-sr-sign-out-alt:before{content:"\fbe6"}.fi-sr-sign-posts-wrench:before{content:"\fbe7"}.fi-sr-sign-posts:before{content:"\fbe8"}.fi-sr-sign-up:before{content:"\fbe9"}.fi-sr-signal-alt-1:before{content:"\fbea"}.fi-sr-signal-alt-2:before{content:"\fbeb"}.fi-sr-signal-alt-slash:before{content:"\fbec"}.fi-sr-signal-alt:before{content:"\fbed"}.fi-sr-signal-bars-fair:before{content:"\fbee"}.fi-sr-signal-bars-good:before{content:"\fbef"}.fi-sr-signal-bars-weak:before{content:"\fbf0"}.fi-sr-signal-stream-slash:before{content:"\fbf1"}.fi-sr-signal-stream:before{content:"\fbf2"}.fi-sr-signature-lock:before{content:"\fbf3"}.fi-sr-signature-slash:before{content:"\fbf4"}.fi-sr-signature:before{content:"\fbf5"}.fi-sr-sim-card:before{content:"\fbf6"}.fi-sr-sim-cards:before{content:"\fbf7"}.fi-sr-sink:before{content:"\fbf8"}.fi-sr-siren-on:before{content:"\fbf9"}.fi-sr-Siren:before{content:"\fbfa"}.fi-sr-site-alt:before{content:"\fbfb"}.fi-sr-site-browser:before{content:"\fbfc"}.fi-sr-site:before{content:"\fbfd"}.fi-sr-sitemap:before{content:"\fbfe"}.fi-sr-skateboard:before{content:"\fbff"}.fi-sr-skating:before{content:"\fc00"}.fi-sr-skeleton-ribs:before{content:"\fc01"}.fi-sr-skeleton:before{content:"\fc02"}.fi-sr-skewer:before{content:"\fc03"}.fi-sr-ski-boot-ski:before{content:"\fc04"}.fi-sr-ski-jump:before{content:"\fc05"}.fi-sr-ski-lift:before{content:"\fc06"}.fi-sr-skiing-nordic:before{content:"\fc07"}.fi-sr-skiing:before{content:"\fc08"}.fi-sr-skill-alt:before{content:"\fc09"}.fi-sr-skill-user:before{content:"\fc0a"}.fi-sr-skill:before{content:"\fc0b"}.fi-sr-skin-arrow:before{content:"\fc0c"}.fi-sr-skin-drop:before{content:"\fc0d"}.fi-sr-skin-hair:before{content:"\fc0e"}.fi-sr-skin:before{content:"\fc0f"}.fi-sr-skip-15-seconds:before{content:"\fc10"}.fi-sr-skull-cow:before{content:"\fc11"}.fi-sr-skull-crossbones:before{content:"\fc12"}.fi-sr-skull:before{content:"\fc13"}.fi-sr-slash:before{content:"\fc14"}.fi-sr-sledding:before{content:"\fc15"}.fi-sr-sleeping-bag:before{content:"\fc16"}.fi-sr-sleigh:before{content:"\fc17"}.fi-sr-sliders-h-square:before{content:"\fc18"}.fi-sr-sliders-v-square:before{content:"\fc19"}.fi-sr-sliders-v:before{content:"\fc1a"}.fi-sr-slot-machine:before{content:"\fc1b"}.fi-sr-smart-home-alt:before{content:"\fc1c"}.fi-sr-smart-home:before{content:"\fc1d"}.fi-sr-smartphone:before{content:"\fc1e"}.fi-sr-smile-beam:before{content:"\fc1f"}.fi-sr-smile-plus:before{content:"\fc20"}.fi-sr-smile-wink:before{content:"\fc21"}.fi-sr-smile:before{content:"\fc22"}.fi-sr-smiley-comment-alt:before{content:"\fc23"}.fi-sr-smog:before{content:"\fc24"}.fi-sr-smoke:before{content:"\fc25"}.fi-sr-smoking-ban:before{content:"\fc26"}.fi-sr-smoking:before{content:"\fc27"}.fi-sr-snake:before{content:"\fc28"}.fi-sr-snap:before{content:"\fc29"}.fi-sr-snooze:before{content:"\fc2a"}.fi-sr-snow-blowing:before{content:"\fc2b"}.fi-sr-snowboarding:before{content:"\fc2c"}.fi-sr-snowflake-droplets:before{content:"\fc2d"}.fi-sr-snowflake:before{content:"\fc2e"}.fi-sr-snowflakes:before{content:"\fc2f"}.fi-sr-snowman-alt:before{content:"\fc30"}.fi-sr-snowman-head:before{content:"\fc31"}.fi-sr-snowmobile:before{content:"\fc32"}.fi-sr-snowplow:before{content:"\fc33"}.fi-sr-soap-alt:before{content:"\fc34"}.fi-sr-soap:before{content:"\fc35"}.fi-sr-socks:before{content:"\fc36"}.fi-sr-sofa-size:before{content:"\fc37"}.fi-sr-sofa:before{content:"\fc38"}.fi-sr-solar-panel-sun:before{content:"\fc39"}.fi-sr-solar-panel:before{content:"\fc3a"}.fi-sr-solar-system:before{content:"\fc3b"}.fi-sr-sold-house:before{content:"\fc3c"}.fi-sr-sold-signal:before{content:"\fc3d"}.fi-sr-sort-alpha-down-alt:before{content:"\fc3e"}.fi-sr-sort-alpha-down:before{content:"\fc3f"}.fi-sr-sort-alpha-up-alt:before{content:"\fc40"}.fi-sr-sort-alpha-up:before{content:"\fc41"}.fi-sr-sort-alt:before{content:"\fc42"}.fi-sr-sort-amount-down-alt:before{content:"\fc43"}.fi-sr-sort-amount-down:before{content:"\fc44"}.fi-sr-sort-amount-up-alt:before{content:"\fc45"}.fi-sr-sort-amount-up:before{content:"\fc46"}.fi-sr-sort-circle-down:before{content:"\fc47"}.fi-sr-sort-circle-up:before{content:"\fc48"}.fi-sr-sort-circle:before{content:"\fc49"}.fi-sr-sort-down:before{content:"\fc4a"}.fi-sr-sort-numeric-down-alt:before{content:"\fc4b"}.fi-sr-sort-numeric-down:before{content:"\fc4c"}.fi-sr-sort-shapes-down:before{content:"\fc4d"}.fi-sr-sort-shapes-up:before{content:"\fc4e"}.fi-sr-sort-size-down:before{content:"\fc4f"}.fi-sr-sort-size-up:before{content:"\fc50"}.fi-sr-sort:before{content:"\fc51"}.fi-sr-soup:before{content:"\fc52"}.fi-sr-source-data:before{content:"\fc53"}.fi-sr-source-document-alt:before{content:"\fc54"}.fi-sr-source-document:before{content:"\fc55"}.fi-sr-spa:before{content:"\fc56"}.fi-sr-space-shuttle:before{content:"\fc57"}.fi-sr-space-station-moon-alt:before{content:"\fc58"}.fi-sr-space-station-moon:before{content:"\fc59"}.fi-sr-spade:before{content:"\fc5a"}.fi-sr-spaghetti-monster-flying:before{content:"\fc5b"}.fi-sr-spain-map:before{content:"\fc5c"}.fi-sr-sparkles:before{content:"\fc5d"}.fi-sr-spartan-helmet:before{content:"\fc5e"}.fi-sr-speaker:before{content:"\fc5f"}.fi-sr-speakers:before{content:"\fc60"}.fi-sr-speech-bubble-story:before{content:"\fc61"}.fi-sr-speedometer-arrow:before{content:"\fc62"}.fi-sr-speedometer-kpi:before{content:"\fc63"}.fi-sr-sphere:before{content:"\fc64"}.fi-sr-spider-black-widow:before{content:"\fc65"}.fi-sr-spider-web:before{content:"\fc66"}.fi-sr-spider:before{content:"\fc67"}.fi-sr-spinner:before{content:"\fc68"}.fi-sr-split-up-relation:before{content:"\fc69"}.fi-sr-split:before{content:"\fc6a"}.fi-sr-splotch:before{content:"\fc6b"}.fi-sr-spoon:before{content:"\fc6c"}.fi-sr-spray-can-sparkles:before{content:"\fc6d"}.fi-sr-spray-can:before{content:"\fc6e"}.fi-sr-spring-calendar:before{content:"\fc6f"}.fi-sr-sprinkler:before{content:"\fc70"}.fi-sr-spy:before{content:"\fc71"}.fi-sr-square-0:before{content:"\fc72"}.fi-sr-square-1:before{content:"\fc73"}.fi-sr-square-2:before{content:"\fc74"}.fi-sr-square-3:before{content:"\fc75"}.fi-sr-square-4:before{content:"\fc76"}.fi-sr-square-5:before{content:"\fc77"}.fi-sr-square-6:before{content:"\fc78"}.fi-sr-square-7:before{content:"\fc79"}.fi-sr-square-8:before{content:"\fc7a"}.fi-sr-square-9:before{content:"\fc7b"}.fi-sr-square-a:before{content:"\fc7c"}.fi-sr-square-b:before{content:"\fc7d"}.fi-sr-square-bolt:before{content:"\fc7e"}.fi-sr-square-c:before{content:"\fc7f"}.fi-sr-square-code:before{content:"\fc80"}.fi-sr-square-d:before{content:"\fc81"}.fi-sr-square-dashed-circle-plus:before{content:"\fc82"}.fi-sr-square-dashed:before{content:"\fc83"}.fi-sr-square-divide:before{content:"\fc84"}.fi-sr-square-e:before{content:"\fc85"}.fi-sr-square-ellipsis-vertical:before{content:"\fc86"}.fi-sr-square-ellipsis:before{content:"\fc87"}.fi-sr-square-exclamation:before{content:"\fc88"}.fi-sr-square-f:before{content:"\fc89"}.fi-sr-square-g:before{content:"\fc8a"}.fi-sr-square-h:before{content:"\fc8b"}.fi-sr-square-heart:before{content:"\fc8c"}.fi-sr-square-i:before{content:"\fc8d"}.fi-sr-square-info:before{content:"\fc8e"}.fi-sr-square-j:before{content:"\fc8f"}.fi-sr-square-k:before{content:"\fc90"}.fi-sr-square-kanban:before{content:"\fc91"}.fi-sr-square-l:before{content:"\fc92"}.fi-sr-square-m:before{content:"\fc93"}.fi-sr-square-minus:before{content:"\fc94"}.fi-sr-square-n:before{content:"\fc95"}.fi-sr-square-o:before{content:"\fc96"}.fi-sr-square-p:before{content:"\fc97"}.fi-sr-square-phone-hangup:before{content:"\fc98"}.fi-sr-square-plus:before{content:"\fc99"}.fi-sr-square-poll-horizontal:before{content:"\fc9a"}.fi-sr-square-poll-vertical:before{content:"\fc9b"}.fi-sr-square-q:before{content:"\fc9c"}.fi-sr-square-quote:before{content:"\fc9d"}.fi-sr-square-r:before{content:"\fc9e"}.fi-sr-square-root:before{content:"\fc9f"}.fi-sr-square-s:before{content:"\fca0"}.fi-sr-square-small:before{content:"\fca1"}.fi-sr-square-star:before{content:"\fca2"}.fi-sr-square-t:before{content:"\fca3"}.fi-sr-square-terminal:before{content:"\fca4"}.fi-sr-square-u:before{content:"\fca5"}.fi-sr-square-up-right:before{content:"\fca6"}.fi-sr-square-v:before{content:"\fca7"}.fi-sr-square-w:before{content:"\fca8"}.fi-sr-square-x:before{content:"\fca9"}.fi-sr-square-y:before{content:"\fcaa"}.fi-sr-square-z:before{content:"\fcab"}.fi-sr-square:before{content:"\fcac"}.fi-sr-squid:before{content:"\fcad"}.fi-sr-squircle:before{content:"\fcae"}.fi-sr-squirrel:before{content:"\fcaf"}.fi-sr-staff:before{content:"\fcb0"}.fi-sr-stage-concert:before{content:"\fcb1"}.fi-sr-stage-theatre:before{content:"\fcb2"}.fi-sr-stage:before{content:"\fcb3"}.fi-sr-stairs:before{content:"\fcb4"}.fi-sr-stamp:before{content:"\fcb5"}.fi-sr-standard-definition:before{content:"\fcb6"}.fi-sr-star-and-crescent:before{content:"\fcb7"}.fi-sr-star-christmas:before{content:"\fcb8"}.fi-sr-star-comment-alt:before{content:"\fcb9"}.fi-sr-star-exclamation:before{content:"\fcba"}.fi-sr-star-octogram:before{content:"\fcbb"}.fi-sr-star-of-david:before{content:"\fcbc"}.fi-sr-star-rating-call:before{content:"\fcbd"}.fi-sr-star-sharp-half-stroke:before{content:"\fcbe"}.fi-sr-star-sharp-half:before{content:"\fcbf"}.fi-sr-star-shooting:before{content:"\fcc0"}.fi-sr-star:before{content:"\fcc1"}.fi-sr-starfighter:before{content:"\fcc2"}.fi-sr-stars:before{content:"\fcc3"}.fi-sr-state-country:before{content:"\fcc4"}.fi-sr-stationary-bike:before{content:"\fcc5"}.fi-sr-stats:before{content:"\fcc6"}.fi-sr-steak:before{content:"\fcc7"}.fi-sr-steering-wheel:before{content:"\fcc8"}.fi-sr-step-backward:before{content:"\fcc9"}.fi-sr-step-forward:before{content:"\fcca"}.fi-sr-sterling-sign:before{content:"\fccb"}.fi-sr-stethoscope:before{content:"\fccc"}.fi-sr-sticker:before{content:"\fccd"}.fi-sr-stocking:before{content:"\fcce"}.fi-sr-stomach:before{content:"\fccf"}.fi-sr-stop-circle:before{content:"\fcd0"}.fi-sr-stop-square:before{content:"\fcd1"}.fi-sr-stop:before{content:"\fcd2"}.fi-sr-stopwatch:before{content:"\fcd3"}.fi-sr-store-alt:before{content:"\fcd4"}.fi-sr-store-buyer:before{content:"\fcd5"}.fi-sr-store-lock:before{content:"\fcd6"}.fi-sr-store-slash:before{content:"\fcd7"}.fi-sr-story-book:before{content:"\fcd8"}.fi-sr-story-fairy-tale:before{content:"\fcd9"}.fi-sr-story-fantasy:before{content:"\fcda"}.fi-sr-strategy-chess-risk:before{content:"\fcdb"}.fi-sr-strawberry:before{content:"\fcdc"}.fi-sr-street-view:before{content:"\fcdd"}.fi-sr-stretcher:before{content:"\fcde"}.fi-sr-strikethrough:before{content:"\fcdf"}.fi-sr-stroopwafel:before{content:"\fce0"}.fi-sr-student-alt:before{content:"\fce1"}.fi-sr-student:before{content:"\fce2"}.fi-sr-subscript:before{content:"\fce3"}.fi-sr-subscription-alt:before{content:"\fce4"}.fi-sr-subscription:before{content:"\fce5"}.fi-sr-subtitles-slash:before{content:"\fce6"}.fi-sr-subtitles:before{content:"\fce7"}.fi-sr-subway:before{content:"\fce8"}.fi-sr-suitcase-alt:before{content:"\fce9"}.fi-sr-summary-check:before{content:"\fcea"}.fi-sr-summer:before{content:"\fceb"}.fi-sr-sun-dust:before{content:"\fcec"}.fi-sr-sun-plant-wilt:before{content:"\fced"}.fi-sr-sun-salutation-yoga:before{content:"\fcee"}.fi-sr-sun:before{content:"\fcef"}.fi-sr-sunday:before{content:"\fcf0"}.fi-sr-sunglasses-alt:before{content:"\fcf1"}.fi-sr-sunglasses:before{content:"\fcf2"}.fi-sr-sunrise-alt:before{content:"\fcf3"}.fi-sr-sunrise:before{content:"\fcf4"}.fi-sr-sunset:before{content:"\fcf5"}.fi-sr-superscript:before{content:"\fcf6"}.fi-sr-surfing:before{content:"\fcf7"}.fi-sr-surprise:before{content:"\fcf8"}.fi-sr-surveillance-camera:before{content:"\fcf9"}.fi-sr-survey-xmark:before{content:"\fcfa"}.fi-sr-sushi-alt:before{content:"\fcfb"}.fi-sr-sushi-roll:before{content:"\fcfc"}.fi-sr-sushi:before{content:"\fcfd"}.fi-sr-svg:before{content:"\fcfe"}.fi-sr-swap:before{content:"\fcff"}.fi-sr-swatchbook:before{content:"\fd00"}.fi-sr-swimmer:before{content:"\fd01"}.fi-sr-swimming-pool:before{content:"\fd02"}.fi-sr-swing:before{content:"\fd03"}.fi-sr-swipe-down:before{content:"\fd04"}.fi-sr-swipe-left:before{content:"\fd05"}.fi-sr-swipe-right:before{content:"\fd06"}.fi-sr-swipe-up:before{content:"\fd07"}.fi-sr-sword:before{content:"\fd08"}.fi-sr-symbol:before{content:"\fd09"}.fi-sr-symbols:before{content:"\fd0a"}.fi-sr-synagogue:before{content:"\fd0b"}.fi-sr-syringe:before{content:"\fd0c"}.fi-sr-system-cloud:before{content:"\fd0d"}.fi-sr-t:before{content:"\fd0e"}.fi-sr-tab-folder:before{content:"\fd0f"}.fi-sr-table-columns:before{content:"\fd10"}.fi-sr-table-layout:before{content:"\fd11"}.fi-sr-table-list:before{content:"\fd12"}.fi-sr-table-picnic:before{content:"\fd13"}.fi-sr-table-pivot:before{content:"\fd14"}.fi-sr-table-rows:before{content:"\fd15"}.fi-sr-table-tree:before{content:"\fd16"}.fi-sr-table:before{content:"\fd17"}.fi-sr-tablet-android-alt:before{content:"\fd18"}.fi-sr-tablet-android:before{content:"\fd19"}.fi-sr-tablet-rugged:before{content:"\fd1a"}.fi-sr-tablet:before{content:"\fd1b"}.fi-sr-tachometer-alt-average:before{content:"\fd1c"}.fi-sr-tachometer-alt-fastest:before{content:"\fd1d"}.fi-sr-tachometer-alt-slow:before{content:"\fd1e"}.fi-sr-tachometer-alt-slowest:before{content:"\fd1f"}.fi-sr-tachometer-average:before{content:"\fd20"}.fi-sr-tachometer-fast:before{content:"\fd21"}.fi-sr-tachometer-fastest:before{content:"\fd22"}.fi-sr-tachometer-slow:before{content:"\fd23"}.fi-sr-tachometer-slowest:before{content:"\fd24"}.fi-sr-tachometer:before{content:"\fd25"}.fi-sr-taco:before{content:"\fd26"}.fi-sr-tags:before{content:"\fd27"}.fi-sr-talent-alt:before{content:"\fd28"}.fi-sr-talent-hand:before{content:"\fd29"}.fi-sr-talent:before{content:"\fd2a"}.fi-sr-tally-1:before{content:"\fd2b"}.fi-sr-tally-2:before{content:"\fd2c"}.fi-sr-tally-3:before{content:"\fd2d"}.fi-sr-tally-4:before{content:"\fd2e"}.fi-sr-tally:before{content:"\fd2f"}.fi-sr-tamale:before{content:"\fd30"}.fi-sr-tank-water:before{content:"\fd31"}.fi-sr-tap:before{content:"\fd32"}.fi-sr-tape:before{content:"\fd33"}.fi-sr-target-audience:before{content:"\fd34"}.fi-sr-target:before{content:"\fd35"}.fi-sr-tax-alt:before{content:"\fd36"}.fi-sr-tax:before{content:"\fd37"}.fi-sr-taxi-bus:before{content:"\fd38"}.fi-sr-taxi:before{content:"\fd39"}.fi-sr-team-check-alt:before{content:"\fd3a"}.fi-sr-team-check:before{content:"\fd3b"}.fi-sr-teddy-bear:before{content:"\fd3c"}.fi-sr-teeth-open:before{content:"\fd3d"}.fi-sr-telescope:before{content:"\fd3e"}.fi-sr-temperature-down:before{content:"\fd3f"}.fi-sr-temperature-frigid:before{content:"\fd40"}.fi-sr-temperature-high:before{content:"\fd41"}.fi-sr-temperature-list:before{content:"\fd42"}.fi-sr-temperature-low:before{content:"\fd43"}.fi-sr-temperature-up:before{content:"\fd44"}.fi-sr-template-alt:before{content:"\fd45"}.fi-sr-template:before{content:"\fd46"}.fi-sr-tenge:before{content:"\fd47"}.fi-sr-tennis:before{content:"\fd48"}.fi-sr-tent-arrow-down-to-line:before{content:"\fd49"}.fi-sr-tent-arrow-left-right:before{content:"\fd4a"}.fi-sr-tent-arrow-turn-left:before{content:"\fd4b"}.fi-sr-tent-arrows-down:before{content:"\fd4c"}.fi-sr-tents:before{content:"\fd4d"}.fi-sr-terminal:before{content:"\fd4e"}.fi-sr-terrace:before{content:"\fd4f"}.fi-sr-test-tube:before{content:"\fd50"}.fi-sr-test:before{content:"\fd51"}.fi-sr-text-box-dots:before{content:"\fd52"}.fi-sr-text-box-edit:before{content:"\fd53"}.fi-sr-text-box:before{content:"\fd54"}.fi-sr-text-check:before{content:"\fd55"}.fi-sr-text-height:before{content:"\fd56"}.fi-sr-text-shadow:before{content:"\fd57"}.fi-sr-text-size:before{content:"\fd58"}.fi-sr-text-slash:before{content:"\fd59"}.fi-sr-text-width:before{content:"\fd5a"}.fi-sr-text:before{content:"\fd5b"}.fi-sr-theater-masks:before{content:"\fd5c"}.fi-sr-thermometer-alt:before{content:"\fd5d"}.fi-sr-thermometer-empty:before{content:"\fd5e"}.fi-sr-thermometer-full:before{content:"\fd5f"}.fi-sr-thermometer-half:before{content:"\fd60"}.fi-sr-thermometer-quarter:before{content:"\fd61"}.fi-sr-thermometer-three-quarters:before{content:"\fd62"}.fi-sr-theta:before{content:"\fd63"}.fi-sr-third-award:before{content:"\fd64"}.fi-sr-third-laurel:before{content:"\fd65"}.fi-sr-third-medal:before{content:"\fd66"}.fi-sr-third:before{content:"\fd67"}.fi-sr-thought-bubble:before{content:"\fd68"}.fi-sr-three-leaf-clover:before{content:"\fd69"}.fi-sr-thumbs-down:before{content:"\fd6a"}.fi-sr-thumbs-up-trust:before{content:"\fd6b"}.fi-sr-thumbs-up:before{content:"\fd6c"}.fi-sr-thumbtack:before{content:"\fd6d"}.fi-sr-thunderstorm-moon:before{content:"\fd6e"}.fi-sr-thunderstorm-risk:before{content:"\fd6f"}.fi-sr-thunderstorm-sun:before{content:"\fd70"}.fi-sr-thunderstorm:before{content:"\fd71"}.fi-sr-thursday:before{content:"\fd72"}.fi-sr-ticket-airline:before{content:"\fd73"}.fi-sr-ticket-alt:before{content:"\fd74"}.fi-sr-ticket:before{content:"\fd75"}.fi-sr-tickets-airline:before{content:"\fd76"}.fi-sr-tie:before{content:"\fd77"}.fi-sr-tilde:before{content:"\fd78"}.fi-sr-time-add:before{content:"\fd79"}.fi-sr-time-check:before{content:"\fd7a"}.fi-sr-time-delete:before{content:"\fd7b"}.fi-sr-time-fast:before{content:"\fd7c"}.fi-sr-time-forward-sixty:before{content:"\fd7d"}.fi-sr-time-forward-ten:before{content:"\fd7e"}.fi-sr-time-forward:before{content:"\fd7f"}.fi-sr-time-half-past:before{content:"\fd80"}.fi-sr-time-oclock:before{content:"\fd81"}.fi-sr-time-past:before{content:"\fd82"}.fi-sr-time-quarter-past:before{content:"\fd83"}.fi-sr-time-quarter-to:before{content:"\fd84"}.fi-sr-time-twenty-four:before{content:"\fd85"}.fi-sr-time-watch-calendar:before{content:"\fd86"}.fi-sr-timer-clock-call:before{content:"\fd87"}.fi-sr-times-hexagon:before{content:"\fd88"}.fi-sr-tint-slash:before{content:"\fd89"}.fi-sr-tip-coin:before{content:"\fd8a"}.fi-sr-tire-flat:before{content:"\fd8b"}.fi-sr-tire-pressure-warning:before{content:"\fd8c"}.fi-sr-tire-rugged:before{content:"\fd8d"}.fi-sr-tire:before{content:"\fd8e"}.fi-sr-tired:before{content:"\fd8f"}.fi-sr-to-do-alt:before{content:"\fd90"}.fi-sr-to-do:before{content:"\fd91"}.fi-sr-together-people:before{content:"\fd92"}.fi-sr-toggle-off:before{content:"\fd93"}.fi-sr-toggle-on:before{content:"\fd94"}.fi-sr-toilet-paper-blank-under:before{content:"\fd95"}.fi-sr-toilet-paper-blank:before{content:"\fd96"}.fi-sr-toilet-paper-slash:before{content:"\fd97"}.fi-sr-toilet-paper-under-slash:before{content:"\fd98"}.fi-sr-toilet-paper-under:before{content:"\fd99"}.fi-sr-toilet:before{content:"\fd9a"}.fi-sr-toilets-portable:before{content:"\fd9b"}.fi-sr-token:before{content:"\fd9c"}.fi-sr-tomato:before{content:"\fd9d"}.fi-sr-tombstone-alt:before{content:"\fd9e"}.fi-sr-tombstone:before{content:"\fd9f"}.fi-sr-tool-box:before{content:"\fda0"}.fi-sr-tool-crop:before{content:"\fda1"}.fi-sr-tool-marquee:before{content:"\fda2"}.fi-sr-tools:before{content:"\fda3"}.fi-sr-tooth:before{content:"\fda4"}.fi-sr-toothbrush:before{content:"\fda5"}.fi-sr-torch-inspiration-leader:before{content:"\fda6"}.fi-sr-torii-gate:before{content:"\fda7"}.fi-sr-tornado:before{content:"\fda8"}.fi-sr-total:before{content:"\fda9"}.fi-sr-tour-guide-people:before{content:"\fdaa"}.fi-sr-tour-virtual:before{content:"\fdab"}.fi-sr-tower-control:before{content:"\fdac"}.fi-sr-track:before{content:"\fdad"}.fi-sr-tractor:before{content:"\fdae"}.fi-sr-trademark:before{content:"\fdaf"}.fi-sr-traffic-cone:before{content:"\fdb0"}.fi-sr-traffic-light-go:before{content:"\fdb1"}.fi-sr-traffic-light-slow:before{content:"\fdb2"}.fi-sr-traffic-light-stop:before{content:"\fdb3"}.fi-sr-traffic-light:before{content:"\fdb4"}.fi-sr-trailer:before{content:"\fdb5"}.fi-sr-train-journey:before{content:"\fdb6"}.fi-sr-train-side:before{content:"\fdb7"}.fi-sr-train-station-building:before{content:"\fdb8"}.fi-sr-train-station:before{content:"\fdb9"}.fi-sr-train-subway-tunnel:before{content:"\fdba"}.fi-sr-train-track:before{content:"\fdbb"}.fi-sr-train-tram:before{content:"\fdbc"}.fi-sr-train:before{content:"\fdbd"}.fi-sr-tram:before{content:"\fdbe"}.fi-sr-transform:before{content:"\fdbf"}.fi-sr-transformation-block:before{content:"\fdc0"}.fi-sr-transformation-circle:before{content:"\fdc1"}.fi-sr-transformation-design:before{content:"\fdc2"}.fi-sr-transformation-shapes:before{content:"\fdc3"}.fi-sr-transformer-bolt:before{content:"\fdc4"}.fi-sr-transgender:before{content:"\fdc5"}.fi-sr-transporter-1:before{content:"\fdc6"}.fi-sr-transporter-2:before{content:"\fdc7"}.fi-sr-transporter-3:before{content:"\fdc8"}.fi-sr-transporter-4:before{content:"\fdc9"}.fi-sr-transporter-5:before{content:"\fdca"}.fi-sr-transporter-6:before{content:"\fdcb"}.fi-sr-transporter-7:before{content:"\fdcc"}.fi-sr-transporter-empty:before{content:"\fdcd"}.fi-sr-transporter:before{content:"\fdce"}.fi-sr-trash-can-check:before{content:"\fdcf"}.fi-sr-trash-can-clock:before{content:"\fdd0"}.fi-sr-trash-can-list:before{content:"\fdd1"}.fi-sr-trash-can-plus:before{content:"\fdd2"}.fi-sr-trash-can-slash:before{content:"\fdd3"}.fi-sr-trash-check:before{content:"\fdd4"}.fi-sr-trash-clock:before{content:"\fdd5"}.fi-sr-trash-empty:before{content:"\fdd6"}.fi-sr-trash-list:before{content:"\fdd7"}.fi-sr-trash-plus:before{content:"\fdd8"}.fi-sr-trash-restore-alt:before{content:"\fdd9"}.fi-sr-trash-restore:before{content:"\fdda"}.fi-sr-trash-slash:before{content:"\fddb"}.fi-sr-trash-undo-alt:before{content:"\fddc"}.fi-sr-trash-undo:before{content:"\fddd"}.fi-sr-trash-xmark:before{content:"\fdde"}.fi-sr-trash:before{content:"\fddf"}.fi-sr-treadmill:before{content:"\fde0"}.fi-sr-treasure-chest:before{content:"\fde1"}.fi-sr-treatment:before{content:"\fde2"}.fi-sr-tree-alt:before{content:"\fde3"}.fi-sr-tree-christmas:before{content:"\fde4"}.fi-sr-tree-deciduous:before{content:"\fde5"}.fi-sr-tree:before{content:"\fde6"}.fi-sr-trees-alt:before{content:"\fde7"}.fi-sr-trees:before{content:"\fde8"}.fi-sr-triangle-music:before{content:"\fde9"}.fi-sr-triangle-person-digging:before{content:"\fdea"}.fi-sr-triangle-warning:before{content:"\fdeb"}.fi-sr-triangle:before{content:"\fdec"}.fi-sr-tricycle:before{content:"\fded"}.fi-sr-trillium:before{content:"\fdee"}.fi-sr-trophy-achievement-skill:before{content:"\fdef"}.fi-sr-trophy-star:before{content:"\fdf0"}.fi-sr-trophy:before{content:"\fdf1"}.fi-sr-truck-arrow-left:before{content:"\fdf2"}.fi-sr-truck-arrow-right:before{content:"\fdf3"}.fi-sr-truck-bolt:before{content:"\fdf4"}.fi-sr-truck-box:before{content:"\fdf5"}.fi-sr-truck-check:before{content:"\fdf6"}.fi-sr-truck-container-empty:before{content:"\fdf7"}.fi-sr-truck-container:before{content:"\fdf8"}.fi-sr-truck-couch:before{content:"\fdf9"}.fi-sr-truck-fire:before{content:"\fdfa"}.fi-sr-truck-flatbed:before{content:"\fdfb"}.fi-sr-truck-front:before{content:"\fdfc"}.fi-sr-truck-ladder:before{content:"\fdfd"}.fi-sr-truck-loading:before{content:"\fdfe"}.fi-sr-truck-medical:before{content:"\fdff"}.fi-sr-truck-monster:before{content:"\fe10"}.fi-sr-truck-moving:before{content:"\fe11"}.fi-sr-truck-pickup:before{content:"\fe12"}.fi-sr-truck-plow:before{content:"\fe13"}.fi-sr-truck-ramp:before{content:"\fe14"}.fi-sr-truck-side:before{content:"\fe15"}.fi-sr-truck-tow:before{content:"\fe16"}.fi-sr-truck-utensils:before{content:"\fe17"}.fi-sr-trumpet:before{content:"\fe18"}.fi-sr-trust-alt:before{content:"\fe19"}.fi-sr-trust:before{content:"\fe1a"}.fi-sr-tshirt:before{content:"\fe1b"}.fi-sr-tty-answer:before{content:"\fe1c"}.fi-sr-tty:before{content:"\fe1d"}.fi-sr-tubes:before{content:"\fe1e"}.fi-sr-tuesday:before{content:"\fe1f"}.fi-sr-tugrik-sign:before{content:"\fe30"}.fi-sr-turkey:before{content:"\fe31"}.fi-sr-turn-left-down:before{content:"\fe32"}.fi-sr-turn-left:before{content:"\fe33"}.fi-sr-turn-right:before{content:"\fe34"}.fi-sr-turntable:before{content:"\fe35"}.fi-sr-turtle:before{content:"\fe36"}.fi-sr-tv-music:before{content:"\fe37"}.fi-sr-tv-retro:before{content:"\fe38"}.fi-sr-typewriter:before{content:"\fe39"}.fi-sr-u:before{content:"\fe3a"}.fi-sr-ufo-beam:before{content:"\fe3b"}.fi-sr-ufo:before{content:"\fe3c"}.fi-sr-ui-ux:before{content:"\fe3d"}.fi-sr-umbrella-beach:before{content:"\fe3e"}.fi-sr-umbrella:before{content:"\fe3f"}.fi-sr-under-construction:before{content:"\fe40"}.fi-sr-underline:before{content:"\fe41"}.fi-sr-undo-alt:before{content:"\fe42"}.fi-sr-undo:before{content:"\fe43"}.fi-sr-unicorn:before{content:"\fe44"}.fi-sr-uniform-martial-arts:before{content:"\fe45"}.fi-sr-universal-access:before{content:"\fe46"}.fi-sr-unlock:before{content:"\fe47"}.fi-sr-up-from-bracket:before{content:"\fe48"}.fi-sr-up-left:before{content:"\fe49"}.fi-sr-up-right-from-square:before{content:"\fe4a"}.fi-sr-up-right:before{content:"\fe4b"}.fi-sr-up:before{content:"\fe4c"}.fi-sr-upload:before{content:"\fe4d"}.fi-sr-url:before{content:"\fe4e"}.fi-sr-usb-pendrive:before{content:"\fe4f"}.fi-sr-usd-circle:before{content:"\fe50"}.fi-sr-usd-square:before{content:"\fe51"}.fi-sr-user-add:before{content:"\fe52"}.fi-sr-user-alien:before{content:"\fe53"}.fi-sr-user-astronaut:before{content:"\fe54"}.fi-sr-user-check:before{content:"\fe55"}.fi-sr-user-chef:before{content:"\fe56"}.fi-sr-user-coach:before{content:"\fe57"}.fi-sr-user-cowboy:before{content:"\fe58"}.fi-sr-user-crown:before{content:"\fe59"}.fi-sr-user-gear:before{content:"\fe5a"}.fi-sr-user-graduate:before{content:"\fe5b"}.fi-sr-user-headset:before{content:"\fe5c"}.fi-sr-user-helmet-safety:before{content:"\fe5d"}.fi-sr-user-injured:before{content:"\fe5e"}.fi-sr-user-interface-ui:before{content:"\fe5f"}.fi-sr-user-key:before{content:"\fe60"}.fi-sr-user-lock:before{content:"\fe61"}.fi-sr-user-md-chat:before{content:"\fe62"}.fi-sr-user-md:before{content:"\fe63"}.fi-sr-user-minus:before{content:"\fe64"}.fi-sr-user-music:before{content:"\fe65"}.fi-sr-user-ninja:before{content:"\fe66"}.fi-sr-user-nurse:before{content:"\fe67"}.fi-sr-user-pen:before{content:"\fe68"}.fi-sr-user-pilot-tie:before{content:"\fe69"}.fi-sr-user-pilot:before{content:"\fe6a"}.fi-sr-user-police:before{content:"\fe6b"}.fi-sr-user-robot-xmarks:before{content:"\fe6c"}.fi-sr-user-robot:before{content:"\fe6d"}.fi-sr-user-salary:before{content:"\fe6e"}.fi-sr-user-shield:before{content:"\fe6f"}.fi-sr-user-skill-gear:before{content:"\fe70"}.fi-sr-user-slash:before{content:"\fe71"}.fi-sr-user-tag:before{content:"\fe72"}.fi-sr-user-time:before{content:"\fe73"}.fi-sr-user-trust:before{content:"\fe74"}.fi-sr-user-unlock:before{content:"\fe75"}.fi-sr-user-visor:before{content:"\fe76"}.fi-sr-user-xmark:before{content:"\fe77"}.fi-sr-user:before{content:"\fe78"}.fi-sr-users-alt:before{content:"\fe79"}.fi-sr-users-class:before{content:"\fe7a"}.fi-sr-users-gear:before{content:"\fe7b"}.fi-sr-users-medical:before{content:"\fe7c"}.fi-sr-users-slash:before{content:"\fe7d"}.fi-sr-users:before{content:"\fe7e"}.fi-sr-utensils-slash:before{content:"\fe7f"}.fi-sr-utensils:before{content:"\fe80"}.fi-sr-utility-pole-double:before{content:"\fe81"}.fi-sr-utility-pole:before{content:"\fe82"}.fi-sr-ux-browser:before{content:"\fe83"}.fi-sr-ux:before{content:"\fe84"}.fi-sr-v:before{content:"\fe85"}.fi-sr-vacuum-robot:before{content:"\fe86"}.fi-sr-vacuum:before{content:"\fe87"}.fi-sr-value-absolute:before{content:"\fe88"}.fi-sr-vault:before{content:"\fe89"}.fi-sr-vector-alt:before{content:"\fe8a"}.fi-sr-vector-circle:before{content:"\fe8b"}.fi-sr-vector-polygon:before{content:"\fe8c"}.fi-sr-vector:before{content:"\fe8d"}.fi-sr-venus-double:before{content:"\fe8e"}.fi-sr-venus-mars:before{content:"\fe8f"}.fi-sr-venus:before{content:"\fe90"}.fi-sr-vest-patches:before{content:"\fe91"}.fi-sr-vest:before{content:"\fe92"}.fi-sr-video-arrow-down-left:before{content:"\fe93"}.fi-sr-video-arrow-up-right:before{content:"\fe94"}.fi-sr-video-camera-alt:before{content:"\fe95"}.fi-sr-video-camera:before{content:"\fe96"}.fi-sr-video-duration:before{content:"\fe97"}.fi-sr-video-plus:before{content:"\fe98"}.fi-sr-video-slash:before{content:"\fe99"}.fi-sr-videoconference:before{content:"\fe9a"}.fi-sr-vihara:before{content:"\fe9b"}.fi-sr-violin:before{content:"\fe9c"}.fi-sr-virus-slash:before{content:"\fe9d"}.fi-sr-virus:before{content:"\fe9e"}.fi-sr-viruses:before{content:"\fe9f"}.fi-sr-visit:before{content:"\fea0"}.fi-sr-voicemail:before{content:"\fea1"}.fi-sr-volcano:before{content:"\fea2"}.fi-sr-volleyball:before{content:"\fea3"}.fi-sr-volume-down:before{content:"\fea4"}.fi-sr-volume-mute:before{content:"\fea5"}.fi-sr-volume-off:before{content:"\fea6"}.fi-sr-volume-slash:before{content:"\fea7"}.fi-sr-volume:before{content:"\fea8"}.fi-sr-vote-nay:before{content:"\fea9"}.fi-sr-vote-yea:before{content:"\feaa"}.fi-sr-vr-cardboard:before{content:"\feab"}.fi-sr-w:before{content:"\feac"}.fi-sr-waffle:before{content:"\fead"}.fi-sr-wagon-covered:before{content:"\feae"}.fi-sr-walker:before{content:"\feaf"}.fi-sr-walkie-talkie:before{content:"\feb0"}.fi-sr-walking:before{content:"\feb1"}.fi-sr-wallet-arrow:before{content:"\feb2"}.fi-sr-wallet-buyer:before{content:"\feb3"}.fi-sr-wallet:before{content:"\feb4"}.fi-sr-warehouse-alt:before{content:"\feb5"}.fi-sr-washer:before{content:"\feb6"}.fi-sr-waste-pollution:before{content:"\feb7"}.fi-sr-waste:before{content:"\feb8"}.fi-sr-watch-calculator:before{content:"\feb9"}.fi-sr-watch-fitness:before{content:"\feba"}.fi-sr-watch-smart:before{content:"\febb"}.fi-sr-watch:before{content:"\febc"}.fi-sr-water-bottle:before{content:"\febd"}.fi-sr-water-ladder:before{content:"\febe"}.fi-sr-water-lower:before{content:"\febf"}.fi-sr-water-rise:before{content:"\fec0"}.fi-sr-water:before{content:"\fec1"}.fi-sr-watermelon:before{content:"\fec2"}.fi-sr-wave-sine:before{content:"\fec3"}.fi-sr-wave-square:before{content:"\fec4"}.fi-sr-wave-triangle:before{content:"\fec5"}.fi-sr-wave:before{content:"\fec6"}.fi-sr-waveform-path:before{content:"\fec7"}.fi-sr-waveform:before{content:"\fec8"}.fi-sr-web-design:before{content:"\fec9"}.fi-sr-webcam-slash:before{content:"\feca"}.fi-sr-webcam:before{content:"\fecb"}.fi-sr-webhook:before{content:"\fecc"}.fi-sr-wednesday:before{content:"\fecd"}.fi-sr-whale:before{content:"\fece"}.fi-sr-wheat-awn-circle-exclamation:before{content:"\fecf"}.fi-sr-wheat-awn-slash:before{content:"\fed0"}.fi-sr-wheat-awn:before{content:"\fed1"}.fi-sr-wheat-slash:before{content:"\fed2"}.fi-sr-wheat:before{content:"\fed3"}.fi-sr-wheelchair-move:before{content:"\fed4"}.fi-sr-wheelchair-sleeping:before{content:"\fed5"}.fi-sr-wheelchair:before{content:"\fed6"}.fi-sr-whistle:before{content:"\fed7"}.fi-sr-white-space:before{content:"\fed8"}.fi-sr-wifi-1:before{content:"\fed9"}.fi-sr-wifi-2:before{content:"\feda"}.fi-sr-wifi-alt:before{content:"\fedb"}.fi-sr-wifi-exclamation:before{content:"\fedc"}.fi-sr-wifi-slash:before{content:"\fedd"}.fi-sr-wifi:before{content:"\fede"}.fi-sr-wind-turbine:before{content:"\fedf"}.fi-sr-wind-warning:before{content:"\fee0"}.fi-sr-wind:before{content:"\fee1"}.fi-sr-window-alt:before{content:"\fee2"}.fi-sr-window-frame-open:before{content:"\fee3"}.fi-sr-window-frame:before{content:"\fee4"}.fi-sr-window-maximize:before{content:"\fee5"}.fi-sr-window-minimize:before{content:"\fee6"}.fi-sr-window-restore:before{content:"\fee7"}.fi-sr-windsock:before{content:"\fee8"}.fi-sr-wine-bottle:before{content:"\fee9"}.fi-sr-wine-glass-crack:before{content:"\feea"}.fi-sr-wine-glass-empty:before{content:"\feeb"}.fi-sr-wishlist-heart:before{content:"\feec"}.fi-sr-wishlist-star:before{content:"\feed"}.fi-sr-woman-head:before{content:"\feee"}.fi-sr-woman-scientist:before{content:"\feef"}.fi-sr-won-sign:before{content:"\fef0"}.fi-sr-workflow-alt:before{content:"\fef1"}.fi-sr-workflow-setting-alt:before{content:"\fef2"}.fi-sr-workflow-setting:before{content:"\fef3"}.fi-sr-workflow:before{content:"\fef4"}.fi-sr-workshop:before{content:"\fef5"}.fi-sr-world:before{content:"\fef6"}.fi-sr-worm:before{content:"\fef7"}.fi-sr-wreath:before{content:"\fef8"}.fi-sr-wrench-alt:before{content:"\fef9"}.fi-sr-wrench-simple:before{content:"\fefa"}.fi-sr-x-ray:before{content:"\fefb"}.fi-sr-x:before{content:"\fefc"}.fi-sr-y:before{content:"\fefd"}.fi-sr-yen:before{content:"\fefe"}.fi-sr-yin-yang:before{content:"\ff00"}.fi-sr-z:before{content:"\ff01"}.fi-sr-zip-file:before{content:"\ff02"}.fi-sr-zoom-in:before{content:"\ff03"}.fi-sr-zoom-out:before{content:"\ff04"}
/*!
*   _____       _             __                 _____                               ______ _       _   _
*  |_   _|     | |           / _|               |_   _|                             |  ____| |     | | (_)
*    | |  _ __ | |_ ___ _ __| |_ __ _  ___ ___    | |  ___ ___  _ __  ___   ______  | |__  | | __ _| |_ _  ___ ___  _ __
*    | | | '_ \| __/ _ \ '__|  _/ _` |/ __/ _ \   | | / __/ _ \| '_ \/ __| |______| |  __| | |/ _` | __| |/ __/ _ \| '_ \
*   _| |_| | | | ||  __/ |  | || (_| | (_|  __/  _| || (_| (_) | | | \__ \          | |    | | (_| | |_| | (_| (_) | | | |
*  |_____|_| |_|\__\___|_|  |_| \__,_|\___\___| |_____\___\___/|_| |_|___/          |_|    |_|\__,_|\__|_|\___\___/|_| |_|
*
*                         UIcons 2.4.2 - https://www.flaticon.com/uicons/interface-icons
*/
/*# sourceMappingURL=rounded.css.map */

