/* 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: #e53935;
  --primary-hover: #d41d1d;
  --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: #e53935;
    --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: #e53935;
  --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%;
  }
}

.no-click {
  --primary-focus: rgba(229, 57, 53, 0);
  --primary-hover: white;
  --primary: white;
}

.logo {
  box-shadow: none !important;
  width: 50%;
  padding: 0px;
  color: none;
}

.-h4 {
  margin-top: 0;
  margin-bottom: 0px;
  color: var(--color);
  font-weight: var(--font-weight);
  font-size: var(--font-size);
  font-family: var(--font-family);
  --font-size: 1.25rem;
  --typography-spacing-vertical: 1.874rem;
  --font-weight: 700;
}
.-h5 {
  --color: var(--muted-color);
  --font-weight: unset;
  font-size: 1rem;
  font-family: unset;
  margin-top: 0;
  color: var(--color);
  font-weight: var(--font-weight);
  --font-size: 1.125rem;
  --typography-spacing-vertical: 1.6875rem;
  margin-bottom: 10px;
}

.--h5 {
  --color: var(--h5-color);
  --font-weight: 700;
  margin-top: 0;
  margin-bottom: var(--typography-spacing-vertical);
  color: var(--color);
  font-weight: var(--font-weight);
  font-size: var(--font-size);
  font-family: var(--font-family);
  --font-size: 1.125rem;
  --typography-spacing-vertical: 1.6875rem;
}

.pricing {
  /* color: var(--color); */
  --color: var(--h1-color);
  font-weight: var(--font-weight);
  font-size: var(--font-size);
  font-family: var(--font-family);
  --font-size: 2rem;
  --typography-spacing-vertical: 3rem;
  --font-weight: 700;
  margin-bottom: 16px;
}

.title {
  font-size: 1.5rem; 
  color: hsl(205deg 25% 23%); 
  font-weight: 700; 
  margin-bottom: 0
}

.sub-title {

}

.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: #e53935;
}

.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;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 8px;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary) !important;
}

.nav-dropdown-toggle::after {
  content: "▾";
  font-size: 0.75em;
  line-height: 1;
}

.nav-dropdown-toggle:hover {
  color: var(--primary-hover) !important;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 240px;
  padding: 24px 24px;
  margin-top: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  z-index: 20;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 16px;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  color: #e53835 !important;
  background: rgba(229, 57, 53, 0.06);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: block;
}

#get-started-btn {
  background-color: #e53835;
  color: white;
  margin-left: 5px;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  border-radius: 0.25rem !important;
}

#get-started-btn:hover {
  background-color: #d41d1d;
}

#logo {
  display: block;
}
#mini-logo {
  display: none;
}

#before_after {
  padding: 0px 60px; 
  padding-bottom: 25px;
}

#home {
  display: block;
}

#qrcode img {
  margin: auto;
}

#pricing article {
  /* padding-left: 10px;
  padding-right: 10px; */
}
/* 
#pricing .desc{
  font-size: 17px;
} */

@media screen and (max-width:576px) {
  #pricing .container {
    padding: 0 20px !important;
  }
  #field_table .container {
    padding: 0 20px !important;
  }
  #before_after {
    padding: 0px 10px; 
    padding-bottom: 25px;
  }
  #reviews {
    padding: 0 20px !important;
  }
  #logo {
    display: none;
  }
  #mini-logo {
    display: block;
  }
  #home {
    display: none;
  }
}

@media screen and (min-width:768px) {
  #pricing .container {
    padding: 0 20px !important;
  }
}

@media screen and (min-width:1200px) {
  #pricing .container {
    padding: 0 80px !important;
  }
}

@media screen and (min-width:992px) {
  #pricing .container {
    padding: 0 80px !important;
  }
}
