body {
  margin: 0;
}
/* Font Size*/
p {
  margin: 0;
  text-align: left;
}

strong {
  font-weight: 600;
}

.fs-xl h1 {
  font-size: 3.5rem;
  line-height: 4rem;
  margin: 0rem;
  font-weight: normal;
}
.fs-lg h1 {
  font-size: 3rem;
  line-height: 3.5rem;
  margin: 0rem;
  font-weight: normal;
}
.fs-md h1 {
  font-size: 2.5rem;
  line-height: 3rem;
  margin: 0rem;
  font-weight: normal;
}
.fs-sm h1 {
  font-size: 2rem;
  line-height: 2.5rem;
  margin: 0rem;
  font-weight: normal;
}
.fs-xs h1 {
  font-size: 1.5rem;
  line-height: 2rem;
  margin: 0rem;
  font-weight: normal;
}

.fs-xl h2 {
  font-size: 2.75rem;
  line-height: 3.25rem;
  margin: 0rem;
  font-weight: normal;
}
.fs-lg h2 {
  font-size: 2.375rem;
  line-height: 2.875rem;
  margin: 0rem;
  font-weight: normal;
}
.fs-md h2 {
  font-size: 2rem;
  line-height: 2.5rem;
  margin: 0rem;
  font-weight: normal;
}
.fs-sm h2 {
  font-size: 1.625rem;
  line-height: 2.125rem;
  margin: 0rem;
  font-weight: normal;
}
.fs-xs h2 {
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin: 0rem;
  font-weight: normal;
}

.fs-xl h3 {
  font-size: 2rem;
  line-height: 2.5rem;
  margin: 0rem;
  font-weight: normal;
}
.fs-lg h3 {
  font-size: 1.75rem;
  line-height: 2.25rem;
  margin: 0rem;
  font-weight: normal;
}
.fs-md h3 {
  font-size: 1.5rem;
  line-height: 2rem;
  margin: 0rem;
  font-weight: normal;
}
.fs-sm h3 {
  font-size: 1.25rem;
  line-height: 1.75rem;
  margin: 0rem;
  font-weight: normal;
}
.fs-xs h3 {
  font-size: 1rem;
  line-height: 1.5rem;
  margin: 0rem;
  font-weight: normal;
}

.fs-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: normal;
  margin: 0rem;
}
.fs-lg {
  font-size: 1.125rem;
  line-height: 1.625rem;
  font-weight: normal;
  margin: 0rem;
}
.fs-md {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: normal;
  margin: 0rem;
}
.fs-sm {
  font-size: 0.875rem;
  line-height: 1.375rem;
  font-weight: normal;
  margin: 0rem;
}
.fs-xs {
  font-size: 0.75rem;
  line-height: 1.25rem;
  font-weight: normal;
  margin: 0rem;
}

.button.fs-lg,
.text.fs-lg {
  font-size: 1.125rem;
  line-height: 1.5rem;
}
.button.fs-md,
.text.fs-md {
  font-size: 1rem;
  line-height: 1.5rem;
}
.button.fs-sm,
.text.fs-sm {
  font-size: 0.875rem;
  line-height: 1.5rem;
}

/** Site Header/Footer **/

/* Class with display none */
.hidden {
  display: none;
}

.modal {
  opacity: 1;
  visibility: visible;
}

html {
  overflow-x: hidden;
}
#section-header {
  height: 100%;
  z-index: 999;
}
#section-footer {
  height: 100%;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100%);
  }

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

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

  100% {
    transform: translateX(-100%);
  }
}
@keyframes slideInToLeft {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(0rem);
  }
}
@keyframes slideInToRight {
  0% {
    transform: translateX(-100%);
  }

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

.slideInFromLeft {
  animation: slideInFromLeft 0.5s ease-in;
}

.slideInFromRight {
  animation: slideInFromRight 0.5s ease-out;
}
.slideInToLeft {
  animation: slideInToLeft 1s ease-out;
}
.slideInToRight {
  animation: slideInToLeft 1s ease-out;
}

.contact-form label p {
  margin: 0;
}

.ql-align-center {
  text-align: center;
}
.ql-align-left {
  text-align: left;
}
.ql-align-right {
  text-align: right;
}
.ql-align-justify {
  text-align: justify;
}
