@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap");

/* Global override */
* {
  font-family: "Lato", sans-serif;
  box-sizing: border-box;
  font-size: 100%;
}

@media (min-width: 1440px) {
  p {
    font-size: 160%;
  }
}

@media (max-width: 768px) {
  p {
    font-size: 80%;
  }
}

a {
  margin: 0 !important;
  padding: 0 !important;
  font-weight: 700 !important;
  font-size: 0.92rem !important;
  text-decoration: none !important;
}

h1 {
  font-size: 3.1rem;
  font-weight: 900;
}

h2 {
  font-weight: 700;
}

h3 {
  font-weight: 700;
}

h4 {
  font-size: 1.3rem;
  font-weight: 600;
}

h5 {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 700;
}

p {
  font-size: 1.2rem !important;
}

h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
  padding: 0;
}
.content p {
  margin-bottom: 0.8rem;
}

.icon {
  height: 48px;
  width: 48px;
  border-radius: 1em;
  background-color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit-icon{
  height: 28px !important;
  width: 28px !important;
}

.shadow-primary {
  position: relative;
}

.shadow-primary::after {
  content: " ";
  background-color: var(--primary-100);
  width: 80%;
  height: 64px;
  position: absolute;
  left: 50%;
  bottom: -4px;
  transform: translateX(-50%);
  z-index: -1;
  border-radius: 25%;
  filter: blur(24px);
  -webkit-filter: blur(24px);
}

.shadow-sm {
  box-shadow: 0 0 15px !important;
}

#cta-2 {
  width: 100%;
  display: flex;
  position: relative;
  overflow-x: hidden;
  /* background-image: linear-gradient(to bottom, var(--primary-60) 0%, var(--primary-100) 100%); */
}

#cta-2 > img {
  width: 50%;
  height: 100%;
  position: absolute;
  right: 0;
}

#cta-2 > video {
  width: 100%;
  margin: auto;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  z-index: -40;
}

#cta-2::before {
  content: "";
  background: linear-gradient(
    90deg,
    rgba(0, 85, 203, 0.9),
    rgba(0, 85, 203, 0.6)
  );
  /* background-color: rgba(0,85,203,.8); */
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
}

#hero-automud .background {
  width: 100%;
  margin: auto;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  z-index: -40;
}

#hero-automud::before {
    content: "";
    background: linear-gradient(
      133deg,
      rgba(0, 85, 203, 1),
      rgba(0, 85, 203, .8)
    );
    /* background-color: rgba(0,85,203,.8); */
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: -1;
  }

.wp-custom-content p {
  margin-bottom: 1rem !important;
}
/* 
.divider{
    position: relative;
    width: 100%;
}
.divider::after{
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    flex: 1;
    height: 1px;
    width: 100%;
    background: var(--primary-100);
} */
