*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
}

body {
  font-family: gilroy, "gilroy Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.6;
  min-height: 100vh;
  background-color: #f7f7f7;
}

input:-webkit-autofill {
  background-color: transparent !important;
  -webkit-box-shadow: 0 0 0 50px white inset;
}

.btn {
  text-decoration: none;
}
.btn, .btn:link, .btn:visited {
  border-radius: 0.7rem;
  border: 1px solid #006bff;
  font-size: 1.5rem;
  font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
}
.btn--blue {
  color: #fff;
  background-color: #006bff;
  padding: 1rem 2rem;
}
.btn--blue:hover {
  background-color: #104893;
}
.btn--wide-primary {
  padding: 1rem 3rem;
  border-radius: 0.7rem;
  font-size: 1.8rem;
  font-weight: 600;
  width: 100%;
  text-align: center;
  color: #fff;
  background-color: #006bff;
}
.btn--wide-primary:hover {
  background-color: #104893;
}
.btn__icon {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  align-self: center;
  margin-right: 0.8rem;
  flex-shrink: 0;
}
.btn--google, .btn--microsoft {
  flex: 1;
  background-color: #fff;
  padding: 1.2rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.4;
  white-space: nowrap;
  min-width: 0;
  font-size: 1.4rem;
  text-align: center;
}
.btn--google:hover, .btn--microsoft:hover {
  background-color: #f8f9fb;
}
@media (max-width: 768px) {
  .btn--google, .btn--microsoft {
    white-space: normal;
    font-size: 1.6rem;
    padding: 1.5rem 1rem;
  }
}
.btn--white {
  background-color: #fff;
  color: #fff;
  border: 1px solid inherit;
  padding: 1rem 2rem;
}
.btn--white:hover {
  background-color: #f8f9fb;
  text-decoration: none;
}
.btn--primary {
  background-color: #006bff;
  color: #fff;
  padding: 1rem 2rem;
}
.btn--primary:hover {
  background-color: #104893;
}
.btn--secondary {
  background-color: #e4e2e2;
  color: #737272;
  border: 1px solid #e4e2e2;
  padding: 1rem 2rem;
}
.btn--secondary:hover {
  background-color: #f8f9fb;
}
.btn--danger {
  background-color: #e53935;
  color: #fff;
  border: 1px solid #e53935;
  padding: 1rem 2rem;
}
.btn--danger:hover {
  background-color: #c62828;
}

.chip {
  display: block;
  padding: 0.5rem 1rem;
  max-width: fit-content;
  border-radius: 2rem;
  font-size: 1.4rem;
  color: #104893;
  font-weight: 600;
  padding: 0.5rem 1rem;
}
.chip--blue {
  background-color: #e7f0ff;
  color: #104893;
}

.btn-inline {
  border: none;
  color: #fff;
  font-size: 1.3rem;
  padding: 0.7rem 1.5rem;
  display: inline-block;
  background-color: #006bff;
  border-radius: 2rem;
  text-decoration: none;
  opacity: 0.8;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid #1f68ad;
}
.btn-inline span {
  margin-left: 3px;
  transition: margin-left 0.2s;
}
.btn-inline:hover {
  opacity: 1;
}
.btn-inline:hover span {
  margin-left: 8px;
}
.btn-inline:focus {
  outline: none;
  animation: pulsate 1s infinite;
}

.hero {
  width: 100%;
  height: 40rem;
}
.hero__content {
  max-width: 110rem;
  margin: 0 auto;
  padding: 5rem 0;
}
.hero__header {
  font-size: 4rem;
  font-weight: 800;
  width: 60%;
  color: #f8f9fb;
}
.hero__header span {
  background-color: #1f68ad;
  border-radius: 0.5rem;
  padding: 0 1rem;
}
.hero__text {
  width: 60%;
  margin-top: 2rem;
  color: #f8f9fb;
  font-size: 2rem;
}
.hero__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
}

.centered-container {
  display: flex;
  flex-direction: column;
  font-size: 1.6rem;
  align-items: center;
  justify-content: start;
  min-height: 100vh;
  padding: 2rem;
  background-color: #f8f9fb;
}
.centered-container__content {
  width: 100%;
  max-width: 40rem;
  padding: 3rem;
  background-color: #fff;
  border-radius: 2rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
.centered-container__header {
  text-align: center;
  margin-bottom: 2rem;
}
.centered-container__header--h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #104893;
}
.centered-container__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.centered-container__footer {
  margin-top: 2rem;
  text-align: center;
  font-size: 1.4rem;
  color: #777;
}
.centered-container__footer a {
  color: #104893;
  text-decoration: none;
  font-weight: 600;
}
.centered-container__footer a:hover {
  text-decoration: underline;
}

.divider {
  display: flex;
  align-items: center;
  text-align: center;
  font-size: 1.4rem;
  color: #777;
  margin: 2rem -1rem;
}
.divider::before, .divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #e4e2e2;
  margin: 0 1rem;
}

.gsi-material-button {
  display: inline-block;
  width: 100%;
  cursor: pointer;
}

.gsi-material-button-icon {
  width: 24px;
  height: 24px;
  align-items: center;
}

.oauth-options {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.oauth-btn {
  flex: 1 1 0;
  min-width: 180px;
  max-width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.badge {
  padding: 0.4rem 0.8rem;
  border-radius: 0.4rem;
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge--success {
  background-color: #e8f5e8;
  color: #2e7d32;
}
.badge--warning {
  background-color: #fff3e0;
  color: #e65100;
}
.badge--info {
  background-color: #e3f2fd;
  color: #0277bd;
}
.badge--primary {
  background-color: #e8eaf6;
  color: #3f51b5;
}
.badge--secondary {
  background-color: #f3f4f6;
  color: #6b7280;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal {
  background: white;
  border-radius: 0.8rem;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  border-bottom: 1px solid #e0e0e0;
}
.modal-header h3 {
  margin: 0;
  font-size: 1.8rem;
  color: #333;
}

.modal-body {
  padding: 2rem;
}

.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: flex-end;
}

.form-hint {
  font-size: 1.2rem;
  color: #666;
  margin-top: 0.5rem;
}

.empty-state {
  text-align: center;
  padding: 3rem;
  color: #666;
}

.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem;
}
.loading-container .spinner {
  margin-bottom: 1rem;
}

.header {
  width: 100%;
  border-bottom: 0.1rem solid #d9d6d6;
  position: sticky;
  top: 0;
  left: 0;
  padding: 0;
  z-index: 100;
  background-color: #fff;
}
.header__action-link {
  margin-right: 1rem;
  font-size: 1.4rem;
  text-decoration: none;
  font-weight: 500;
  color: #476788;
}
.header__action-link:hover {
  color: #006bff;
}
.header__action-link[type=submit] {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
}
.header__tools {
  height: 3rem;
  background-color: #f8f9fb;
}
.header__tools-container {
  max-width: 110rem;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
}
.header__tools-container__link:link {
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: bold;
  color: #476788;
  outline: none;
}
.header__tools-container__link:link:hover {
  color: #006bff;
}
.header__container {
  max-width: 110rem;
  margin: 0 auto;
  display: grid;
  grid-row: 1/-1;
  padding: 1rem 0;
  grid-template-columns: minmax(min-content, max-content) 1fr minmax(min-content, max-content);
  z-index: 10;
  align-items: center;
}
.header__logo-box {
  justify-self: start;
}
.header__logo {
  display: flex;
  align-items: center;
}
.header__logo-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}
.header__logo-icon {
  height: 4rem;
  width: auto;
  flex-shrink: 0;
}
.header__logo-text {
  height: 2.5rem;
  width: auto;
}
@media (max-width: 768px) {
  .header__logo-text {
    display: none;
  }
}
.header__logo-image {
  width: 100%;
  height: auto;
}
.header__text-box {
  justify-self: end;
  gap: 1rem;
}
.header__mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  gap: 0.6rem;
}
.header__mobile-menu-btn__line {
  width: 100%;
  height: 0.25rem;
  background-color: #0b3558;
  border-radius: 0.125rem;
  transition: all 0.3s ease;
  transform-origin: center center;
}
.header__mobile-menu-btn.active .header__mobile-menu-btn__line:nth-child(1) {
  transform: rotate(45deg);
  position: relative;
  top: 0.85rem;
}
.header__mobile-menu-btn.active .header__mobile-menu-btn__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.header__mobile-menu-btn.active .header__mobile-menu-btn__line:nth-child(3) {
  transform: rotate(-45deg);
  position: relative;
  top: -0.85rem;
}
.header__mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -30rem;
  width: 30rem;
  height: 100vh;
  background-color: #fff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: right 0.3s ease;
  overflow-y: auto;
}
.header__mobile-nav.active {
  right: 0;
}
.header__mobile-nav-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2rem;
  padding-top: 8rem;
}
.header__mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 3rem;
}
.header__mobile-nav-link {
  color: #0b3558;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 500;
  padding: 1.5rem 0;
  border-bottom: 1px solid #e4e2e2;
  transition: all 0.3s ease;
}
.header__mobile-nav-link:hover {
  color: #006bff;
  padding-left: 1rem;
}
.header__mobile-nav-link--primary {
  background-color: #006bff;
  color: #fff;
  font-size: 1.6rem;
  margin-top: 1rem;
  padding: 1.2rem 2rem;
  border-radius: 0.8rem;
  text-align: center;
  border-bottom: none;
}
.header__mobile-nav-link--primary:hover {
  background-color: #104893;
  color: #fff;
  padding-left: 2rem;
}
.header__mobile-nav-link--secondary {
  border: 2px solid #0b3558;
  color: #0b3558;
  font-size: 1.6rem;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  padding: 1.2rem 2rem;
  border-radius: 0.8rem;
  text-align: center;
  margin-top: 1rem;
  border-bottom: 2px solid #0b3558;
}
.header__mobile-nav-link--secondary:hover {
  background-color: #0b3558;
  color: #fff;
  padding-left: 2rem;
}
.header__mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.header__mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}
.header__mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  max-width: 30rem;
}
.header__mobile-actions form {
  width: 100%;
}
.header__mobile-actions form button {
  width: 100%;
}
.header__phone-link {
  display: none;
}
.header__nav__link {
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: bold;
  color: #0b3558;
  outline: none;
}
.header__nav__link:hover {
  color: #006bff;
}
.header__nav__link:focus {
  color: #006bff;
  outline: none;
}
.header__nav-list {
  list-style: none;
  display: flex;
  gap: 2rem;
  justify-content: center;
}
@media (max-width: 768px) {
  .header__container {
    grid-template-columns: 1fr auto;
    padding: 1rem 2rem;
  }
  .header__mobile-menu-btn {
    display: flex;
  }
  .header__nav-wrapper, .header__actions {
    display: none;
  }
  .header__mobile-nav, .header__mobile-overlay {
    display: block;
  }
  .header__logo-icon {
    height: 3.5rem;
  }
  .header__tools {
    display: none;
  }
}

.content-box {
  max-width: 110rem;
  margin: 2rem auto;
}
@media (max-width: 768px) {
  .content-box {
    margin: 1rem auto;
    padding: 0 2rem;
  }
}

.footer {
  background-color: #fff;
  font-size: 1.5rem;
  height: auto;
}
.footer__content {
  max-width: 110rem;
  margin: 0 auto;
  padding: 5rem 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 2;
}
.footer__vcard {
  display: grid;
}
.footer__info {
  display: grid;
  grid-gap: 1.5rem;
}
.footer__info__title {
  font-size: 2rem;
  font-weight: 600;
}
.footer__info__phone {
  display: block;
  width: 100%;
  text-align: left;
  margin-bottom: 0.5rem;
}

.sidebar-layout {
  display: grid;
  grid-template-columns: 63% 33%;
  gap: 4%;
  max-width: 110rem;
  margin: 2rem auto;
}
@media (max-width: 768px) {
  .sidebar-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 1rem auto;
    padding: 0 2rem;
  }
}

.container {
  max-width: 110rem;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}

.grid {
  display: grid;
  gap: 2rem;
}
.grid--2-cols {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 768px) {
  .grid--2-cols {
    grid-template-columns: 1fr;
  }
}
.grid--3-cols {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
  .grid--3-cols {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1024px) and (min-width: 769px) {
  .grid--3-cols {
    grid-template-columns: 1fr 1fr;
  }
}

.editor > .header {
  position: relative;
  z-index: 1;
}

.contact-form,
.signup-form {
  max-width: 100%;
  margin: 4rem 0;
  padding: 3rem 4rem;
  background-color: #fff;
  border: 1px solid #d9d6d6;
  border-radius: 1rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .contact-form,
  .signup-form {
    margin: 2rem 0;
    padding: 2rem;
  }
}
.contact-form a,
.signup-form a {
  text-decoration: none;
}
.contact-form__options,
.signup-form__options {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  margin-bottom: 1.5rem;
  width: 100%;
}
@media (max-width: 768px) {
  .contact-form__options,
  .signup-form__options {
    flex-direction: column;
    gap: 1rem;
  }
}
.contact-form__center,
.signup-form__center {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  text-decoration: none !important;
  font-weight: 500;
}
.contact-form__center a,
.signup-form__center a {
  color: #0b3558;
}
.contact-form__disclaimer,
.signup-form__disclaimer {
  margin-top: 1.5rem;
  font-size: 1.3rem;
  color: #666;
  line-height: 1.4;
}

.signup-container,
.contact-container {
  max-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: min-content;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 768px) {
  .signup-container,
  .contact-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 2rem;
  }
}

.signup-aside,
.contact-aside {
  margin: 4rem 0 0 3rem;
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  .signup-aside,
  .contact-aside {
    margin: 0;
    order: -1;
    text-align: center;
  }
}
.signup-aside__title,
.contact-aside__title {
  line-height: 1.3;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #0b3558;
}
@media (max-width: 768px) {
  .signup-aside__title,
  .contact-aside__title {
    font-size: 2.8rem;
  }
}
.signup-aside__content,
.contact-aside__content {
  margin-top: 2rem;
}
.signup-aside__cta,
.contact-aside__cta {
  padding: 2rem;
  background-color: #f8f9fb;
  border-radius: 1rem;
  border-left: 4px solid #006bff;
  margin-top: 2rem;
}
.signup-aside__cta-text,
.contact-aside__cta-text {
  font-size: 1.5rem;
  color: #0b3558;
  font-weight: 500;
  margin: 0;
}

.signup-form {
  font-size: 1.6rem;
}
.signup-form .heading-1,
.signup-form .heading-2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.signup-form__subtitle {
  font-size: 1.5rem;
  color: #666;
  margin-bottom: 2.5rem;
  font-weight: 400;
}
.signup-form__features {
  margin: 2rem 0;
}
.signup-form__features .feature-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  color: #555;
}
.signup-form__features .feature-item i {
  color: #28a745;
  font-size: 1.2rem;
}
.signup-form__features .feature-item:last-child {
  margin-bottom: 0;
}
.signup-form .floating-label-group {
  margin-bottom: 2rem;
}
.signup-form .floating-label-group .floating-input {
  font-size: 1.6rem;
  padding: 1.2rem 1rem 0.8rem 1rem;
}
.signup-form .floating-label-group .floating-label {
  font-size: 1.4rem;
  color: #888;
}
.signup-form .btn {
  font-size: 1.6rem;
}
.signup-form .form-message {
  font-size: 1.4rem;
}

.pricing-overview {
  background-color: #ffffff;
  border: 1px solid #e6edf7;
  border-radius: 0.8rem;
  padding: 2rem;
  margin-bottom: 2rem;
}
.pricing-overview__title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #0b3558;
  margin-bottom: 1.5rem;
}

.pricing-tiers {
  margin-bottom: 1.5rem;
}
.pricing-tiers .tier {
  font-size: 1.4rem;
  color: #666;
  margin-bottom: 0.8rem;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.pricing-tiers .tier i {
  color: #006bff;
  font-size: 1.2rem;
}
.pricing-tiers .tier:last-child {
  margin-bottom: 0;
}

.chip--coming-soon {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.chip--coming-soon i {
  margin-right: 0.5rem;
  font-size: 1.1rem;
}

.heading-3, .heading-2, .heading-1 {
  font-family: inherit;
  font-weight: 400;
  color: #0b3558;
}

.heading-1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
}

.heading-2 {
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  line-height: 1;
}

.heading-3 {
  font-size: 3rem;
}
.heading-3--light {
  text-transform: uppercase;
  color: #f8f9fb;
}

.main-content {
  font-size: 1.6rem;
}
.main-content h2 {
  margin-bottom: 2rem;
}
.main-content p:not(.coupon-container__coupon__text) {
  line-height: 2;
}
.main-content p:not(:last-child) {
  margin-bottom: 1.4rem;
}

.sidebar__text {
  margin: 2rem 0;
  font-size: 1.7rem;
  font-style: italic;
}

.bg-orange {
  background-color: #f96422;
  color: #f8f9fb;
  padding: 0 1rem;
  border-radius: 0.5rem;
}

.site-red {
  color: red;
}

.block {
  display: block;
}

span {
  font-size: 1.3rem;
}

.w-full {
  width: 100%;
}

.mb-sm {
  margin-bottom: 2rem;
}

.mb-md {
  margin-bottom: 3rem;
}

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

.mb-xl {
  margin-bottom: 8rem;
}

.center {
  text-align: center;
}

.form-container {
  background-color: #fff;
  max-width: 60rem;
  margin: 3rem auto;
  padding: 3rem;
  border-radius: 1px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.form {
  font-size: inherit;
  font-family: inherit;
}

/* Forms */
.form .fields-single-line {
  width: 100%;
}

.form .field-group {
  display: block;
  clear: both;
  margin-bottom: 10px;
}

.form .field-group .field {
  display: inline-block;
  width: 100%;
  text-align: left;
  margin: 0 0 10px 0;
}

.form .fields-single-line .txt,
.form .postal-city-state .txt {
  width: 100% !important;
}

.form .fields-single-line p {
  float: left;
  margin: 0;
  box-sizing: border-box;
  padding-right: 10px;
}

.form .fields-single-line .field-loc-city {
  width: 50%;
}

.form .fields-single-line .field-loc-state {
  width: 20%;
}

.form .fields-single-line .field-loc-postal {
  width: 30%;
  float: right;
  padding: 0;
}

/* Floating Label Styles */
.floating-label-group {
  display: block;
  position: relative;
  margin-bottom: 1.5rem; /* Add space between input groups */
}

.floating-label {
  position: absolute;
  top: 50%; /* Position the label at the vertical midpoint */
  left: 0.5rem;
  font-size: 1.4rem;
  transform: translateY(-50%); /* Shift the label up by half its height */
  pointer-events: none;
  transition: 0.2s ease all;
  color: #777; /* Default label color */
}

.floating-label,
.floating-textarea-label {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  transition: all 0.2s ease-in-out;
  color: #666;
  background-color: white;
  padding: 0 0.25rem;
  font-size: 1.2rem;
}

.floating-input {
  padding: 0.5rem 0.5rem; /* Reduced top and bottom padding */
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 1.3rem;
  height: 4.5rem; /* Adjust height as needed for a compact look */
  background-color: #fff; /* Change background color on focus */
}

.floating-textarea {
  position: relative;
  padding: 0.5rem 0.5rem; /* Reduced top and bottom padding */
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 1.3rem;
  height: 8rem; /* Adjust height as needed */
}

.floating-input:focus ~ .floating-label,
.floating-input:not(:placeholder-shown) ~ .floating-label {
  top: -1rem;
  font-size: 1.2rem;
  color: #0c4599; /* Color when focused or filled */
  transform: translateY(0); /* Reset vertical shift when focused or filled */
  background-color: #fff; /* Change background color on focus */
  padding: 0 0.5rem; /* Add padding to the label to match the input's padding */
}

.floating-input:focus {
  outline: none; /* Remove default focus outline */
  border-color: #0c4599; /* Change border color on focus */
}

textarea:focus + .floating-textarea-label,
textarea:not(:placeholder-shown) + .floating-textarea-label,
input:focus + .floating-label,
input:not(:placeholder-shown) + .floating-label,
select:focus + .floating-label,
select:not([value=""]) + .floating-label {
  top: 0;
  font-size: 1rem;
  transform: translateY(-50%);
  color: #5b9dd9;
}

.floating-textarea:focus {
  outline: none; /* Remove default focus outline */
  border-color: #0c4599; /* Change border color on focus */
}

.form-required {
  margin: 10px 0;
  display: block;
}

.form .fields-single-line {
  width: 100%;
  margin-bottom: 10px; /* Add margin to separate field groups */
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between; /* Space between items */
}

.form .fields-single-line input[type=checkbox],
.form .fields-single-line input[type=number] {
  margin-left: 5px; /* Adjust margin as needed */
  width: auto;
}

.form .fields-single-line label {
  margin-right: 1rem; /* Adjust right margin as needed */
  display: inline;
}

.form .fields-single-line input[type=checkbox] {
  display: inline;
}

.txt-med,
.txt-wide,
.txt,
.txt-date,
.txt-num,
select {
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px #ddd;
  padding: 0.3em;
  vertical-align: middle;
  box-sizing: border-box;
}

.txt-wide {
  width: 100%;
}

.input-validation-error,
.div-validation-target {
  border: 2px solid #f00 !important;
  background-color: #fdf2f2 !important;
}

.label-validation-error {
  color: #f00;
}

input,
select,
textarea {
  font-size: 1em;
}

input {
  line-height: 2.5em;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #0192ff;
  outline-offset: -1px;
  -moz-outline-radius: 4px;
}

select {
  line-height: 3.2em;
  height: 3.2em;
}

/*Alerts*/
.alert {
  font-size: 1.4rem;
  padding: 25px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.alert h2 {
  margin-bottom: 0.5em;
  font-weight: bold;
  float: left;
}

.alert .alert-link {
  font-weight: bold;
}

.alert > p,
.alert > ul {
  margin-bottom: 0;
  color: #000;
  clear: both;
}

.alert > p + p {
  margin-top: 5px;
}

.alert-dismissable .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}

.alert-success {
  color: #468847;
  background-color: #dff0d8;
  border-color: #d6e9c6;
  background-image: -webkit-linear-gradient(linear, left top, left bottom, from(#dff0d8), to(#c8e5bc));
  background-image: -webkit-linear-gradient(top, #dff0d8 0, #c8e5bc 100%);
  background-image: -o-linear-gradient(top, #dff0d8 0, #c8e5bc 100%);
  background-image: linear-gradient(to bottom, #dff0d8 0, #c8e5bc 100%);
}

.alert-success hr {
  border-top-color: #c9e2b3;
}

.alert-success .alert-link {
  color: #356635;
}

.alert-info {
  color: #3a87ad;
  background-color: #d9edf7;
  border-color: #bce8f1;
  background-image: -webkit-linear-gradient(linear, left top, left bottom, from(#d9edf7), to(#b9def0));
  background-image: -webkit-linear-gradient(top, #d9edf7 0, #b9def0 100%);
  background-image: -o-linear-gradient(top, #d9edf7 0, #b9def0 100%);
  background-image: linear-gradient(to bottom, #d9edf7 0, #b9def0 100%);
}

.alert-info hr {
  border-top-color: #a6e1ec;
}

.alert-info .alert-link {
  color: #2d6987;
}

.alert-warning {
  color: #c09853;
  background-color: #fcf8e3;
  border-color: #fbeed5;
  background-image: -webkit-linear-gradient(linear, left top, left bottom, from(#fcf8e3), to(#f8efc0));
  background-image: -webkit-linear-gradient(top, #fcf8e3 0, #f8efc0 100%);
  background-image: -o-linear-gradient(top, #fcf8e3 0, #f8efc0 100%);
  background-image: linear-gradient(to bottom, #fcf8e3 0, #f8efc0 100%);
}

.alert-warning hr {
  border-top-color: #f8e5be;
}

.alert-warning i {
  color: #c09853;
}

.alert-warning i.site-red {
  color: var(--site-red);
}

.alert-warning .alert-link {
  color: #a47e3c;
}

.alert-danger {
  color: #b94a48;
  background-color: #f2dede;
  border-color: #eed3d7;
  background-image: -webkit-linear-gradient(top, #f2dede 0, #e7c3c3 100%);
  background-image: -o-linear-gradient(top, #f2dede 0, #e7c3c3 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#e7c3c3));
  background-image: linear-gradient(to bottom, #f2dede 0, #e7c3c3 100%);
}

.alert-danger hr {
  border-top-color: #e6c1c7;
}

.alert-danger .alert-link {
  color: #953b39;
}

.legal-page {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2.5rem 2rem 3rem 2rem;
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #222;
  font-size: 1.3rem;
}
.legal-page h1, .legal-page h2, .legal-page h3 {
  font-family: inherit;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.legal-page h1 {
  font-size: 2.7rem;
  margin-bottom: 2rem;
  text-align: center;
  letter-spacing: -1px;
}
.legal-page h2 {
  font-size: 2.1rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 0.5rem;
}
.legal-page h3 {
  font-size: 1.7rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: #2b4a6f;
}
.legal-page section {
  margin-bottom: 2rem;
}
.legal-page ul, .legal-page ol {
  margin: 0 0 1.2rem 1.5rem;
  padding: 0;
  font-size: 1.4rem;
  line-height: 1.8;
}
.legal-page ul ul, .legal-page ol ul, .legal-page ul ol, .legal-page ol ol {
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}
.legal-page li {
  margin-bottom: 0.5rem;
}
.legal-page p {
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
  line-height: 1.8;
}
.legal-page a {
  color: #2563eb;
  text-decoration: underline;
}
.legal-page a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}
.legal-page .legal-meta {
  font-size: 1.05rem;
  color: #6b7280;
  margin-bottom: 2rem;
  text-align: center;
}
.legal-page .legal-highlight {
  background: #f3f4f6;
  border-left: 4px solid #2563eb;
  padding: 0.75rem 1rem;
  margin: 1.5rem 0;
  border-radius: 0.5rem;
  font-size: 1.08rem;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f5f7fa, #e0e7ef);
  padding: 4rem 2rem;
  text-align: center;
}
@media (max-width: 768px) {
  .hero {
    padding: 3rem 1rem;
  }
}
.hero__content {
  max-width: 700px;
  margin: 0 auto 2rem;
}
.hero__title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #0b3558;
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 2.8rem;
  }
}
.hero__subtitle {
  font-size: 1.5rem;
  color: #555;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .hero__subtitle {
    font-size: 1.3rem;
  }
}
.hero__actions .btn {
  margin: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s, color 0.3s;
}
@media (max-width: 768px) {
  .hero__actions .btn {
    display: block;
    margin: 1rem auto;
    max-width: 25rem;
  }
}
.hero .btn--hero-primary {
  background: #0070f3;
  color: #fff;
}
.hero .btn--hero-primary:hover {
  background: #0051a3;
}
.hero .btn--hero-secondary {
  background: #fff;
  color: #0070f3;
  border: 1px solid #0070f3;
}
.hero .btn--hero-secondary:hover {
  background: #0070f3;
  color: #fff;
}

/* CTA Section */
.cta {
  background: #f5f7fa;
  padding: 4rem 2rem;
  text-align: center;
}
.cta__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}
.cta__subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
}
.cta__actions .btn {
  margin: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s, color 0.3s;
}
.cta .btn--cta-primary {
  background: #0070f3;
  color: #fff;
}
.cta .btn--cta-primary:hover {
  background: #0051a3;
}
.cta .btn--cta-secondary {
  background: #fff;
  color: #0070f3;
  border: 1px solid #0070f3;
}
.cta .btn--cta-secondary:hover {
  background: #0070f3;
  color: #fff;
}

.mockup-window {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  display: inline-block;
  max-width: 300px;
}
.mockup-window__header {
  background: #eee;
  padding: 0.5rem;
  display: flex;
  gap: 4px;
  justify-content: flex-start;
}
.mockup-window__header__dots span {
  width: 8px;
  height: 8px;
  background: #ccc;
  border-radius: 50%;
  display: inline-block;
}
.mockup-window__content {
  padding: 1rem;
}

/* Features Section */
.features__container {
  padding: 4rem 2rem;
  text-align: center;
}

.features__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.features__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.feature-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 1.5rem;
  flex: 1 1 250px;
  max-width: 300px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.feature-card__title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.feature-card__description {
  font-size: 1rem;
  color: #555;
}

/* Coming Soon Section */
.coming-soon {
  background: linear-gradient(135deg, #0070f3, #0051a3);
  color: #fff;
  text-align: center;
  padding: 4rem 2rem;
}
.coming-soon__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.coming-soon__subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.coming-soon .btn--hero-secondary {
  background: #fff;
  color: #0070f3;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: background 0.3s, color 0.3s;
}
.coming-soon .btn--hero-secondary:hover {
  background: #0051a3;
  color: #fff;
}

/* CTA Section */
.cta {
  background: #f9f9f9;
  padding: 4rem 2rem;
  text-align: center;
}
.cta__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.cta__subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #555;
}
.cta .btn {
  margin: 0.5rem;
}

.subscription-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
@media (max-width: 768px) {
  .subscription-cards {
    flex-direction: column;
    gap: 2rem;
  }
}

.subscription-card {
  font-size: 1.5rem;
  flex-direction: column;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  text-align: center;
  background: #fff;
}
@media (max-width: 768px) {
  .subscription-card {
    flex: 1 1 auto;
    max-width: 100%;
  }
}
.subscription-card__desc {
  margin: 1.4rem 0;
  text-align: left;
  color: #737272;
}

.subscription-card__header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #0b3558;
}

.subscription-card__header__price {
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 0.5rem;
}

.subscription-card__features {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.subscription-card__features li {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.subscription-card__features .checkmark {
  color: #28a745; /* green */
  font-size: 1.2rem;
  margin-right: 0.5rem;
}

.subscription-card__cta {
  margin-top: auto; /* pushes button to the bottom */
  display: inline-block;
  padding: 0.75rem 1.5rem;
  text-align: center;
  text-decoration: none;
  border-radius: 7px;
  background-color: #006bff; /* blue */
  color: #fff;
}
.subscription-card__cta:hover {
  background-color: #1f68ad;
}

.interval-toggle {
  display: inline-flex;
  margin: 1rem auto;
  border: 1px solid #0070f3;
  border-radius: 999px;
  overflow: hidden;
}

.interval-toggle__btn {
  padding: 0.5rem 1rem;
  border: none;
  background: none;
  color: #0070f3;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}

.interval-toggle__btn.active {
  background: #0070f3;
  color: #fff;
}

/* Hero Section */
.solutions-hero {
  background: linear-gradient(135deg, #f5f7fa, #e0e7ef);
  padding: 4rem 2rem;
  text-align: center;
}
.solutions-hero__title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #0b3558;
}
.solutions-hero__subtitle {
  font-size: 1.5rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

/* Solutions Grid */
.solutions-grid__container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  padding: 3rem 2rem;
}

.solution-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  flex: 1 1 250px;
  max-width: 300px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.solution-card__title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}
.solution-card__subtitle {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1rem;
}
.solution-card .feature-list {
  list-style: none;
  padding: 0;
  text-align: left;
}
.solution-card .feature-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
.solution-card .feature-list li .checkmark {
  color: #28a745;
  margin-right: 0.5rem;
  font-size: 1.2rem;
}

/* How It Works Section */
.how-it-works {
  background: #f9f9f9;
  padding: 4rem 2rem;
  text-align: center;
}
.how-it-works__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.how-it-works__steps {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.how-it-works .step-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  flex: 1 1 250px;
  max-width: 280px;
  padding: 1.5rem;
  text-align: center;
}
.how-it-works .step-card__icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 1rem;
  background: #0070f3;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}
.how-it-works .step-card__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.how-it-works .step-card p {
  font-size: 1.3rem;
  color: #555;
}

/* Coming Soon Section */
.coming-soon {
  background: linear-gradient(135deg, #0070f3, #0051a3);
  color: #fff;
  text-align: center;
  padding: 4rem 2rem;
}
.coming-soon__container {
  max-width: 800px;
  margin: 0 auto;
}
.coming-soon__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.coming-soon__subtitle {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}
.coming-soon__features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.coming-soon__feature {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 1rem 1.5rem;
  flex: 1 1 200px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.coming-soon__feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.coming-soon__icon {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  display: block;
}
.coming-soon__icon i {
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.9);
}

.products-hero {
  background-color: #f9f9f9;
  text-align: center;
  padding: 3rem 1rem;
}
.products-hero__title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #0b3558;
}
.products-hero__subtitle {
  font-size: 1.4rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.products-features__container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  padding: 3rem 1rem;
}

.feature-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 1.5rem;
  flex: 1 1 250px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.feature-card__title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.feature-card__desc {
  font-size: 1.3rem;
  color: #555;
  margin-bottom: 1rem;
}
.feature-card__list {
  list-style: none;
  padding: 0;
}
.feature-card__list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
.feature-card__list li .checkmark {
  color: #28a745;
  font-size: 1.2rem;
  margin-right: 0.5rem;
}

.coming-soon {
  background: linear-gradient(135deg, #0070f3, #0051a3);
  color: #fff;
  text-align: center;
  padding: 4rem 1rem;
}
.coming-soon__container {
  max-width: 900px;
  margin: 0 auto;
}
.coming-soon__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.coming-soon__features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.coming-soon__feature {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 1rem 1.5rem;
  flex: 1 1 200px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.coming-soon__feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.coming-soon__icon {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  display: block;
}
.coming-soon__icon i {
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.9);
}

.footer {
  background: #0b3558;
  color: #fff;
  padding: 6rem 0 2rem;
}
.footer__container {
  max-width: 110rem;
  margin: 0 auto;
  padding: 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 4rem;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.footer__brand {
  max-width: 30rem;
}
.footer__logo {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #fff;
}
.footer__description {
  font-size: 1.5rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}
.footer__social {
  display: flex;
  gap: 1.5rem;
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.8rem;
  color: #fff;
  transition: all 0.3s;
}
.footer__social-link:hover {
  background: #006bff;
  transform: translateY(-2px);
}
.footer__heading {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #fff;
}
.footer__list {
  list-style: none;
  padding: 0;
}
.footer__link {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 0.8rem 0;
  font-size: 1.5rem;
  transition: color 0.3s;
}
.footer__link:hover {
  color: #fff;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .footer__bottom {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
}
.footer__copyright {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.8);
}
.footer__bottom-links {
  display: flex;
  gap: 2rem;
}
.footer__bottom-link {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}
.footer__bottom-link:hover {
  color: #fff;
}

/*# sourceMappingURL=site.css.map */
