/* Red Light scheme (Default) */
/* Can be forced with data-theme="light" */
[data-theme="light"],
:root:not([data-theme="dark"]) {
  --font-family: 'Lato', sans-serif !important;
  --spacing-company: 3rem;
  --primary: #006bdf;
  --primary-hover: #024ea0;
  --primary-focus: rgba(229, 57, 53, 0.125);
  --primary-inverse: #FFF;
}

/* Red Dark scheme (Auto) */
/* Automatically enabled if user has Dark mode enabled */
@media only screen and (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --primary: #006bdf;
    --primary-hover: #f44336;
    --primary-focus: rgba(229, 57, 53, 0.25);
    --primary-inverse: #FFF;
  }
}

/* Red Dark scheme (Forced) */
/* Enabled if forced with data-theme="dark" */
[data-theme="dark"] {
  --primary: #006bdf;
  --primary-hover: #f44336;
  --primary-focus: rgba(229, 57, 53, 0.25);
  --primary-inverse: #FFF;
}

/* Red (Common styles) */
:root {
  --form-element-active-border-color: var(--primary);
  --form-element-focus-color: var(--primary-focus);
  --switch-color: var(--primary-inverse);
  --switch-checked-background-color: var(--primary);
}

/* Main */
@media (min-width: 992px) {
  main .grid {
    grid-column-gap: var(--spacing-company);
    grid-template-columns: auto 25%;
  }
}

.scroll-top {
  bottom: 16px;
  font-size: 30px;
  height: 60px;
  position: fixed;
  text-align: center;
  width: 60px;
  z-index: 10;
  cursor: pointer;
  transition: .3s;
  border-radius: 50%;
  line-height: 60px;
  right: -100px;
  color: #ffffff;
  background-color: #006bdf;
}

.scroll-top.active {
  right: 100px;
}

.shadow-bottom {
  box-shadow: 0px 0px 2px rgb(0 0 0 / 20%);
  /* background-color: rgba(255, 255, 255, 0.98); */
}

html, body {
  /* font-family: 'Nunito', sans-serif !important; */
}
:root {
  --font-family: 'Lato', sans-serif !important;
}
.fas {
  color:#c2c2c2;
  margin-right: 8px;
}
img {
  box-shadow: 0 8px 24px rgb(0 0 0 / 10%);
  border-radius: 0.25rem !important;
  vertical-align: middle;
  border-style: none;
  max-width: 100%;
  height: auto;
}
.box {
  padding: 50px 0px;
}
.centered {
  text-align: center;
}
.margin-less {
  margin: 0 !important;
}
nav a {
  border-radius: 0 !important;
}