/* ChottuLink Static Site Styles */

/* CSS Variables */
:root {
  --app-bg-primary: #001219;
  --app-tertiary-color: rgba(255, 255, 255, 0.6);
  --card-bg-primary: #001D29;
  --app-text-primary: white;
  --app-gradient: linear-gradient(94.42deg, #F53B3B -18.78%, #256FC3 21.41%, #B929DD 57.22%, #FF9D00 105.58%);
  --responsive-width: 1400px;
  --link-gradient: linear-gradient(103.28deg, #256FC3 0.5%, #F318FF 30%, #DC5217 98%);
  --table-border: #000D12;
  --border-color: #363843;
  --danger-color: #e42855;
  --success-color: #00a261;
  --info-color: #883fff;
  --warning-color: #F0B101FF;

  /* Modal and Form specific variables */
  --card-bg: var(--card-bg-primary);
  --text-primary: var(--app-text-primary);
  --text-secondary: var(--app-tertiary-color);
  --primary-color: #256FC3;
  --primary-rgb: 37, 111, 195;
  --error-color: var(--danger-color);
  --input-bg: #001D29;
}

/* Base Styles */
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--app-bg-primary);
  color: var(--app-text-primary);
  font-family: "Poppins", sans-serif;
  background-image: url('../images/background.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

/* Main Container */
.container {
  max-width: var(--responsive-width);
  margin: 0 auto;
  padding: 0 1rem;
}

p,
table {
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
}

table {
  font-weight: 500;
}

/* Table styling to match Angular */
.table-wrapper {
  overflow-x: auto;
  background: var(--app-bg-primary);
  border-radius: 15px;
}

.table {
  min-width: 100%;
  background-color: transparent !important;
}

.table > :not(caption) > * > * {
  border: none;
}

.table thead tr {
  background: linear-gradient(
    269.61deg,
    #3369c5 -8.08%,
    #f318ff 66.81%,
    #ff9d00 137.47%
  );
  border-radius: 18px 18px 0 0;
}

.table thead th {
  width: 33%;
  background: transparent !important;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--app-text-primary);
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  height: 60px;
}

.table thead th:first-child {
  border-top-left-radius: 18px;
}

.table thead th:last-child {
  border-top-right-radius: 18px;
}

.table tbody tr {
  font-family: "Poppins", sans-serif;
  background-color: var(--app-bg-primary);
}

.table tbody tr:first-child {
  background-color: var(--card-bg-primary);
  font-weight: bold;
}

.table tbody td {
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  background-color: inherit;
  height: 60px;
}

.table tbody td:not(:last-child) {
  border-right: 1px solid #003950;
}

@media screen and (max-width: 768px) {
  .table thead th:first-child {
    background: linear-gradient(
      269.61deg,
      #3369c5 -8.08%,
      #f318ff 0%
    ) !important;
  }

  .table tr th:first-child,
  .table tr td:first-child {
    background-color: var(--app-bg-primary);
  }
}

a,
button {
  cursor: pointer;
}

.text-tertiary {
  color: var(--app-tertiary-color);
}

/* Layout */
.main-layout {
  margin-top: 6rem;
  min-height: 79vh;
}

.main-layout .container {
  max-width: var(--responsive-width);
  margin: 0 auto;
  padding: 0 1rem;
}

.spinner-container {
  min-height: 79vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 18, 25, 0.95);
  backdrop-filter: blur(10px);
  z-index: 110;
  width: 100%;
}

.navbar .container {
  max-width: var(--responsive-width);
  margin: 0 auto;
  padding: 0 1rem;
}

.nav-link {
  transition: color 0.3s ease;
}

.nav-link:hover,
.active-link {
  background: linear-gradient(103.28deg, #256FC3 0.5%, #F318FF 30%, #DC5217 98%);
  color: transparent;
  background-clip: text;
}

/* Buttons */
.btn-gradient {
  cursor: pointer;
  width: 10rem;
  height: 3rem;
  padding: 3px;
  border-radius: 27px;
  color: white !important;
  background-size: 200% !important;
  background: var(--app-gradient);
  animation: gradient-animation 10s linear infinite;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  border: none;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-gradient:hover {
  box-shadow: 1px 1px 14px #ffffff5e;
}

.btn-signup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-signup span {
  display: flex;
  background-color: var(--app-bg-primary);
  padding: 4px;
  border-radius: inherit;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.btn-fill {
  padding: 10px 0;
  width: 100%;
  background: #abc7ff;
  font-family: "Poppins", sans-serif;
  color: var(--app-bg-primary);
  border-radius: 2rem;
  font-size: 15px;
  font-weight: 500;
  border: none;
  cursor: pointer;
}

.btn-fill:hover {
  background: #9ebbf3;
}

/* Shimmer Animation */
.shimmer {
  position: relative;
  overflow: hidden;
}

.shimmer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.shimmer:hover::before {
  left: 100%;
}

/* CSS property for animated gradient */
@property --angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

/* Cards */
.card {
  background-color: var(--card-bg-primary);
  border-radius: 0.75rem;
  padding: 1.5rem;
  width: 100%;
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s both;
  font-family: "Quicksand", sans-serif;
  text-align: start;
  max-width: 20rem;
}

.card::after {
  opacity: 0;
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  z-index: -1;
  background: conic-gradient(from var(--angle),
  transparent 0%,
  #B929DD 21.41%,
  #256FC3 57.22%,
  #F53B3B 105.58%);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: destination-out;
  transition: opacity 0.3s ease;
  animation: spinAnimation 5s linear infinite;
}

.card:hover::after {
  opacity: 1;
}

.card-subscribe {
  max-width: 350px;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-header {
  flex-direction: column;
  gap: 1.75rem;
  padding-block-end: 1rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: #f5f5f5;
  margin: 1rem 0 0;
}

.card-description {
  font-size: 0.875rem;
  color: var(--app-tertiary-color);
  margin-bottom: 0;
}

.card-price {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 1rem;
}

.card-price-value {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0;
}

.card-price-label {
  font-size: 0.875rem;
  font-style: italic;
  font-weight: 600;
  color: var(--app-tertiary-color);
  margin-bottom: 0;
}

.card-body {
  padding-block-end: 1rem;
  height: 100%;
}

.card-body h6 {
  font-weight: 600;
}

.card-body hr {
  opacity: 0.2;
  margin: 10px 0;
}

.card-body ul.list-unstyled {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-body li {
  font-size: 1rem;
  margin-bottom: 8px;
  font-weight: 500;
}

.card-footer {
  margin-top: 1rem;
}

/* Icons */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.icon-pack {
  background: linear-gradient(135deg, #e9f2fe, #45a5f3, #3688f1);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
}

.icon-pack-advance {
  background: linear-gradient(135deg, #e3defe, #8f3dea);
}

.icon-pack svg {
  display: inline;
  vertical-align: middle;
}

/* Sections */
.hero-section {
  padding: 2rem 0;
}

.chottu-link-section {
  padding: 3rem 0;
}

.feature-section {
  padding: 3rem 0;
}

.resource-section {
  padding: 3rem 0;
}

.get-started {
  margin: 3rem 0;
}

/* Legal Content */
.client-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.client-content p {
  margin-bottom: 1rem;
}

.client-content h1,
.client-content h2,
.client-content h3,
.client-content h4,
.client-content h5,
.client-content h6 {
  font-size: revert;
  font-weight: revert;
  margin-bottom: revert;
  font-family: "Quicksand", sans-serif;
}

.client-content ul {
  list-style: revert;
  margin: revert;
  padding: revert;
}

.client-content a {
  color: #006ae6;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  body {
    padding: 0.5rem;
  }

  .navbar {
    padding: 0 0.5rem;
  }

  .main-layout {
    margin-top: 5rem;
  }

  .card-subscribe {
    max-width: 100%;
    margin: 0 auto;
  }

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

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

/* Utilities */
.hidden {
  display: none;
}

/* Slider styling to match Angular Material exactly */
.slider-container {
  position: relative;
  margin: 20px 0;
  display: flex;
  align-items: center;
}

.slider {
  -webkit-appearance: none;
  appearance: none;
  height: 20px; /* Angular Material track height */
  background: #333437; /* Angular Material inactive track color */
  outline: none;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  width: 100%;
}

/* WebKit (Chrome, Safari, Edge) */
.slider::-webkit-slider-track {
  -webkit-appearance: none;
  appearance: none;
  height: 20px;
  background: #333437; /* Angular Material inactive track color */
  border-radius: 10px;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 35px; /* Angular Material handle width */
  height: 20px; /* Angular Material handle height */
  background: white; /* Angular Material handle color */
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  position: relative;
  top: 0;
}

.slider::-webkit-slider-thumb:hover {
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

.slider::-webkit-slider-thumb:active {
  box-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
}

.slider::-moz-range-thumb {
  width: 35px;
  height: 20px;
  background: white;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.slider::-moz-range-thumb:hover {
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

.slider::-moz-range-thumb:active {
  box-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
}

/* Internet Explorer/Edge */
.slider::-ms-track {
  height: 20px;
  background: transparent;
  border-color: transparent;
  color: transparent;
}

.slider::-ms-fill-lower {
  background: linear-gradient(
    269.61deg,
    #3369c5 -8.08%,
    #f318ff 66.81%,
    #ff9d00 137.47%
  );
  border-radius: 10px;
}

.slider::-ms-fill-upper {
  background: #333437;
  border-radius: 10px;
}

.slider::-ms-thumb {
  width: 35px;
  height: 20px;
  background: white;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.slider::-ms-thumb:hover {
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

.slider::-ms-thumb:active {
  box-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
}

/* Custom active track fill simulation for WebKit browsers */
.slider {
  background: linear-gradient(to right,
  #3369c5 0%,
  #f318ff 50%,
  #ff9d00 100%) 0% 0% / var(--slider-fill, 10%) 100% no-repeat,
  #333437;
  border-radius: 10px;
}

.slider-label {
  color: var(--app-tertiary-color);
  font-size: 0.75rem;
  pointer-events: none;
  user-select: none;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

.thumb-label-container {
  position: absolute;
  top: -50px;
  left: 0;
  padding: 4px 8px;
  font-size: 12px;
  white-space: nowrap;
  transition: left 0.05s;
  pointer-events: none;
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50% / 50% 50% 0%;
  transform: rotate(45deg);
  color: black;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
}

.thumb-label {
  transform: rotate(-45deg);
}

@media (max-width: 767px) {
  .thumb-label-container {
    top: -41px;
    height: 33px;
    width: 33px;
    font-size: 10px;
  }
}

.tooltip-icon {
  cursor: pointer;
  position: relative;
}

/* Custom Tooltip Styles */
.custom-tooltip {
  position: absolute;
  background-color: #e5dff7;
  color: #000;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  width: 320px;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  display: none;
  line-height: 1.4;
  font-weight: normal;
  white-space: normal;
}

.custom-tooltip.show {
  display: block;
}

/* Tooltip arrow */
.custom-tooltip::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
}

/* Right positioned tooltip (default for desktop) */
.custom-tooltip.tooltip-right {
  left: 30px;
  top: -10px;
}

.custom-tooltip.tooltip-right::before {
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-right: 7px solid #e5dff7;
  top: 15px;
  left: -7px;
}

/* Mobile responsive */
@media (max-width: 767px) {
  .custom-tooltip.tooltip-right {
    right: -12px;
    bottom: 28px;
    top: initial;
    left: initial;
    max-width: 280px;
  }

  .custom-tooltip.tooltip-right::before {
    border-top: 7px solid #e5dff7;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: none;
    top: 99%;
    left: 90%;
  }
}


.card-no-payment {
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.monthly-user {
  font-weight: 500;
  font-family: "Quicksand", sans-serif;
}

.no-payment-features {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
}

.no-payment-features ul {
  list-style: initial;
  padding: 0;
  margin: 0;
  flex: 1;
}

.no-payment-features li {
  padding: 5px 0;
}

/* Section spacing utilities */
.mt-25 {
  margin-top: 6.25rem;
}

.mt-30 {
  margin-top: 7.5rem;
}

.mt-32 {
  margin-top: 8rem;
}

.mt-40 {
  margin-top: 10rem;
}

@media screen and (max-width: 640px) {
  .card-no-payment ul {
    padding-left: 10px;
  }

  .no-payment-features {
    flex-direction: column;
    gap: 1rem;
  }

  .slider-label {
    font-size: 0.65rem;
  }

  /* Reduce spacing on mobile */
  .mt-32 {
    margin-top: 6rem;
  }

  .mt-40 {
    margin-top: 8rem;
  }
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-container {
  background: linear-gradient(
    to bottom,
    #3a5f6c,
    #021620);
  /*border: 1px solid var(--border-color);*/
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  /*border-bottom: 1px solid var(--border-color);*/
}

.modal-title-wrapper {
  flex: 1;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  color: var(--text-primary);
}

.modal-description {
  font-size: 15px;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.5;
}

.modal-close-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 6px;
  transition: all 0.2s ease;
  margin-left: 1rem;
}

.modal-close-btn:hover {
  background: var(--border-color);
  color: var(--text-primary);
}

.modal-content {
  padding: 10px 20px;
}

.modal-actions {
  padding: 10px 20px;
  /*border-top: 1px solid var(--border-color);*/
}

/* Form Styles */
.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.form-group input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--text-primary);
  border-radius: 6px;
  background: transparent;
  color: var(--text-primary);
  font-size: 1rem;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.form-group input:focus {
  outline: none;
  border-color: #9ebbf3;
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.form-group input.error {
  border-color: var(--error-color);
  box-shadow: 0 0 0 3px rgba(220, 38, 127, 0.1);
}

.form-group input::placeholder {
  color: var(--text-secondary);
}

.error-message {
  font-size: 0.75rem;
  color: var(--error-color);
  margin-top: 0.25rem;
  min-height: 1rem;
}

/* Modal button specific styles */
.modal-actions .btn-gradient {
  width: 60%;
  display: flex;
  margin: auto;
}

.modal-actions .btn-gradient:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Responsive modal */
@media (max-width: 576px) {
  .modal-container {
    margin: 1rem;
    max-width: none;
    width: calc(100% - 2rem);
  }

  .modal-header {
    padding: 1rem 1rem 0.75rem;
  }

  .modal-content {
    padding: 1rem;
  }

  .modal-actions {
    padding: 0.75rem 1rem 1rem;
  }

  .modal-title {
    font-size: 1.25rem;
  }
}

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

/* Animations */
@keyframes spinAnimation {
  0% {
    --angle: 0deg;
  }
  100% {
    --angle: 360deg;
  }
}

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

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

@keyframes blur {
  0% {
    filter: blur(25px);
  }
  100% {
    filter: blur(0px);
  }
}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Home page section animations */
.hero-section h1,
.hero-section p,
.hero-section .btn-container,
.chottu-link-section h2,
.chottu-link-section p,
.feature-section h2,
.feature-section h3,
.feature-section p,
.resource-section h2,
.resource-section p,
.get-started h2,
.get-started p,
.get-started .custom-input {
  animation-name: fadeInUp;
  animation-fill-mode: both;
  animation-duration: 1s;
}

.hero-section p, .animate-delay-300ms {
  animation-delay: 0.3s !important;
}

.hero-section img,
.feature-section img,
.resource-section img {
  animation: blur 1000ms ease-in-out forwards;
}

.hero-section .btn-container, .animate-delay-450ms {
  animation-delay: 0.45s !important;
}

.chottu-link-section h2 {
  animation-delay: 0.58s;
}

.chottu-link-section p, .animate-delay-650ms {
  animation-delay: 0.65s !important;
}

.chottu-scroll-ani {
  animation-name: fadeInUp;
  animation-fill-mode: both;
  animation-duration: 1s;
}

.chottu-scroll-ani p {
  animation-delay: 0.2s;
}

.feature-section h2 {
  animation-delay: 0.3s;
}

.feature-section h3,
.feature-section p {
  animation-delay: 0.4s;
}

.feature-section img {
  animation-name: fadeIn;
  animation-fill-mode: both;
  animation-duration: 1s;
  animation-delay: 0.55s;
}

.resource-section p {
  animation-delay: 0.2s;
}

.resource-section img {
  animation-name: fadeIn;
  animation-fill-mode: both;
  animation-duration: 1s;
  animation-delay: 0.3s;
}

.get-started h2 {
  animation-delay: 0.38s;
}

.get-started p {
  animation-delay: 0.45s;
}

.get-started .custom-input {
  animation-delay: 0.45s;
}

/* Card animation delays */
.card:nth-child(1) {
  animation-delay: 0.2s;
}

.card:nth-child(2) {
  animation-delay: 0.25s;
}

.card:nth-child(3) {
  animation-delay: 0.3s;
}

.card:nth-child(4) {
  animation-delay: 0.35s;
}

.card:nth-child(5) {
  animation-delay: 0.4s;
}

.card:nth-child(6) {
  animation-delay: 0.45s;
}

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

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.text-5xl {
  font-size: 3rem;
}

.font-light {
  font-weight: 300;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

.mt-15 {
  margin-top: 3.75rem;
}

.mt-20 {
  margin-top: 5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes loading-spin {
  to {
    transform: rotate(360deg);
  }
}

.animate-spin {
  animation: loading-spin 1s linear infinite;
}

.fadeInUp {

  animation: fadeInUp 1s both;
}
