@import url("https://use.typekit.net/fxp1fsk.css");

/* VARIABLES */
:root {
  /* COLORES */
  --color-one: #1c8af2;
  --color-two: #1b4194;
  --color-accent: #B53C2A;

  /* FUENTES */
  --font-pri: "Open Sans", sans-serif;

  /* DIMENSIONES */
  --ancho-max: 1440px;

  /* TAMAÑOS DE FUENTE */
  --font-base: 2rem;
  --font-sm: 1.6rem;
  --font-lg: 4rem;
  --font-btn: 2.2rem;

  /* ESPACIADOS */
  --espacio-xxs: 0.4rem;
  --espacio-xs: 1rem;
  --espacio-sm: 2rem;
  --espacio-md: 4rem;
  --espacio-lg: 6rem;
  --espacio-xl: 8rem;
  --espacio-xxl: 12rem;
  --espacio-xxxl: 16rem;
  --espacio-xxxxl: 20rem;

  /* BORDES Y SOMBRAS */
  --radio-borde: 1.2rem;
  --sombra: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* RESETEO Y ESTILOS BÁSICOS */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 62.5%;
  width: 100%;
}
body {
  font-size: var(--font-base);
  color: var(--color-negro);
  font-family: var(--font-pri);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}
/* resetear márgenes */
p,
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-pri) !important;
  margin: 0 !important;
}

/* CONTENEDORES */
.section {
  position: relative;
  width: 100%;
  max-width: 100vw;
  scroll-snap-align: start;
  margin: 0 auto;
  padding-left: 1.2rem;
  padding-right: 1.2rem;
  font-family: var(--font-pri) !important;
}
.container {
  width: 100%;
  max-width: var(--ancho-max);
  margin: 0 auto;
  padding: 0;
  position: relative;
  z-index: 2;
}
.container-580 {
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
}
.container-900 {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.container-920 {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
}
.container-960 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}
.container-full {
  width: 100%;
  max-width: 100%;
}
.container-iframe {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
.flex {
  display: flex;
  gap: var(--espacio-md);
  align-items: flex-start;
}
.container.flex {
  align-items: flex-start;
}
.gap-0 {
  gap: 0 !important;
}
.gap-sm {
  gap: 1rem;
}
.gap-md {
  gap: 2.4rem;
}
.gap-lg {
  gap: 4rem;
}
.flex-center {
  justify-content: center !important;
  align-items: center !important;
}
.flex-space-a {
  justify-content: space-around;
}
.column {
  position: relative;
  flex: 1;
}
.column-center {
  align-self: center;
}
.column-60 {
  flex: 0 0 60%;
  max-width: 60%;
}
.column-70 {
  flex: 0 0 70%;
  max-width: 70%;
}
.column-80 {
  flex: 0 0 80%;
  max-width: 80%;
}
.column-90 {
  flex: 0 0 90%;
  max-width: 90%;
}
.column-40 {
  position: relative;
  flex: 0 0 40%;
  max-width: 40%;
}
.column-30 {
  position: relative;
  flex: 0 0 30%;
  max-width: 30%;
}
.column-20 {
  position: relative;
  flex: 0 0 20%;
  max-width: 20%;
}
.column-10 {
  position: relative;
  flex: 0 0 10%;
  max-width: 10%;
}
.column-reverse {
  flex-direction: row-reverse;
}
.relative {
  position: relative;
}
.dp-block {
  display: block;
}
/* ELEMENTOS */
.color-primary {
  color: var(--color-two);
}
.highlight {
  color: var(--color-accent);
}
.txt {
  font-size: var(--font-base);
  font-family: var(--font-pri) !important;
  line-height: 1.6;
}
.img {
  width: 100%;
  font-size: 0;
}
.img img {
  max-width: 100%;
  height: auto;
}
.img-rounder img {
  border-radius: 20px;
}
.img-center {
  text-align: center;
}
.logo-cero img {
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}
.video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* Proporción 16:9 */
  overflow: hidden;
  border-radius: var(--radio-borde);
}
.video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* TEXTOS Y TIPOGRAFÍA */
.heading h2 {
  font-size: clamp(4rem, 5vw, 8rem) !important;
  line-height: 1.2;
}
.txt-center {
  text-align: center !important;
}
.txt-right {
  text-align: right;
}
.txt-left {
  text-align: left;
}
.txt-justify {
  text-align: justify;
  text-align-last: right;
}
.txt-0 {
  font-size: 0;
}
.txt-sm h2,
.txt-sm h3,
.txt-sm h4,
.txt-sm p,
.txt-sm span {
  font-size: var(--font-sm) !important;
}
.txt-base h2,
.txt-base h3,
.txt-base h4,
.txt-base p,
.txt-base span {
  font-size: var(--font-base) !important;
}
.txt-lg h2,
.txt-lg h3,
.txt-lg h4,
.txt-lg p,
.txt-lg span {
  font-size: 2.4rem !important;
}
.txt-xl h2,
.txt-xl h3,
.txt-xl h4,
.txt-xl p,
.txt-xl ul,
.txt-xl span {
  font-size: 3.6rem !important;
}
.txt-xxl h2,
.txt-xxl h3,
.txt-xxl h4,
.txt-xxl p,
.txt-xxl span,
.txt-xxl ul {
  font-size: 4rem !important;
}
.txt-xxxl h2,
.txt-xxxl h3,
.txt-xxxl h4,
.txt-xxxl p,
.txt-xxxl span {
  font-size: 5.2rem !important;
}
.txt-xxxxl h2,
.txt-xxxxl h3,
.txt-xxxxl h4,
.txt-xxxxl p,
.txt-xxxxl span {
  font-size: clamp(3.2rem, 5vw, 6rem) !important;
}
.txt-black {
  color: black;
}
.txt-white h1,
.txt-white h2,
.txt-white h3,
.txt-white h4,
.txt-white p,
.txt-white ul li {
  color: white !important;
}
.font-normal h1,
.font-normal h2,
.font-normal h3,
.font-normal h4,
.font-normal p,
.font-normal ul li {
  font-weight: 300 !important;
}
.font-medium h1,
.font-medium h2,
.font-medium h3,
.font-medium h4,
.font-medium p,
.font-medium ul li {
  font-weight: 500 !important;
}
.font-bold h1,
.font-bold h2,
.font-bold h3,
.font-bold h4,
.font-bold p {
  font-weight: 600 !important;
}
.lh-small h1,
.lh-small h2,
.lh-small h3,
.lh-small h4,
.lh-small p {
  line-height: 1;
}
.lh-tight h1,
.lh-tight h2,
.lh-tight h3,
.lh-tight h4,
.lh-tight p {
  line-height: 1.2;
}
.lh-normal h1,
.lh-normal h2,
.lh-normal h3,
.lh-normal h4,
.lh-normal p,
.lh-normal ul li {
  line-height: 1.6;
}
.lh-relaxed h1,
.lh-relaxed h2,
.lh-relaxed h3,
.lh-relaxed h4,
.lh-relaxed p,
.lh-relaxed ul li {
  line-height: 2;
}
.list-style-none {
  list-style: none;
}
span.list-color {
  color: #f32aa9;
}
/* ESPACIADOS */
.mt-auto {
  margin-top: auto;
}
.mb-auto {
  margin-bottom: auto;
}
.mt-0 {
  margin-top: 0;
}
.mt-sm {
  margin-top: var(--espacio-sm);
}
.mt-md {
  margin-top: var(--espacio-md);
}
.mt-lg {
  margin-top: var(--espacio-lg);
}
.mb-0 {
  margin-bottom: 0;
}
.mb-xxs {
  margin-bottom: var(--espacio-xxs);
}
.mb-xs {
  margin-bottom: var(--espacio-xs);
}
.mb-sm {
  margin-bottom: var(--espacio-sm);
}
.mb-md {
  margin-bottom: var(--espacio-md);
}
.mb-lg {
  margin-bottom: var(--espacio-lg);
}
.mb-xl {
  margin-bottom: var(--espacio-xl);
}
.mb-xxl {
  margin-bottom: var(--espacio-xxl);
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.my-sm {
  margin-top: var(--espacio-sm);
  margin-bottom: var(--espacio-sm);
}
.my-md {
  margin-top: var(--espacio-md);
  margin-bottom: var(--espacio-md);
}
.my-lg {
  margin-top: var(--espacio-lg);
  margin-bottom: var(--espacio-lg);
}
.my-xl {
  margin-top: var(--espacio-xl);
  margin-bottom: var(--espacio-xl);
}
.my-xxl {
  margin-top: var(--espacio-xxl);
  margin-bottom: var(--espacio-xxl);
}
.p-0 {
  padding: 0;
}
.p-sm {
  padding: var(--espacio-sm);
}
.p-md {
  padding: var(--espacio-md);
}
.p-lg {
  padding: var(--espacio-lg);
}
.p-xl {
  padding: var(--espacio-xl);
}
.p-xxl {
  padding: var(--espacio-xxl);
}
.px-0 {
  padding-left: 0;
  padding-right: 0;
}
.px-sm {
  padding-left: var(--espacio-sm);
  padding-right: var(--espacio-sm);
}
.px-md {
  padding-left: var(--espacio-md);
  padding-right: var(--espacio-md);
}
.px-lg {
  padding-left: var(--espacio-lg);
  padding-right: var(--espacio-lg);
}
.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}
.py-sm {
  padding-top: var(--espacio-sm);
  padding-bottom: var(--espacio-sm);
}
.py-md {
  padding-top: var(--espacio-md);
  padding-bottom: var(--espacio-md);
}
.py-lg {
  padding-top: var(--espacio-lg);
  padding-bottom: var(--espacio-lg);
}
.py-xl {
  padding-top: var(--espacio-xl);
  padding-bottom: var(--espacio-xl);
}
.py-xxl {
  padding-top: var(--espacio-xxl);
  padding-bottom: var(--espacio-xxl);
}
.py-xxxl {
  padding-top: var(--espacio-xxxl);
  padding-bottom: var(--espacio-xxxl);
}
.py-xxxxl {
  padding-top: var(--espacio-xxxxl);
  padding-bottom: var(--espacio-xxxxl);
}
.pt-sm {
  padding-top: var(--espacio-sm);
}
.pt-md {
  padding-top: var(--espacio-md);
}
.pt-lg {
  padding-top: var(--espacio-lg);
}
.pt-xl {
  padding-top: var(--espacio-xl);
}
.pt-xxl {
  padding-top: var(--espacio-xxl);
}
.pt-xxxl {
  padding-top: var(--espacio-xxxl);
}
.pt-xxxxl {
  padding-top: var(--espacio-xxxxl);
}
.pb-0 {
  padding-bottom: 0 !important;
}
.pb-sm {
  padding-bottom: var(--espacio-sm);
}
.pb-md {
  padding-bottom: var(--espacio-md);
}
.pb-lg {
  padding-bottom: var(--espacio-lg);
}
.pb-xl {
  padding-bottom: var(--espacio-xl);
}
.pb-xxl {
  padding-bottom: var(--espacio-xxl);
}
.pb-xxxl {
  padding-bottom: var(--espacio-xxxl);
}
.pb-xxxxl {
  padding-bottom: var(--espacio-xxxxl);
}

/* BORDES Y SOMBRAS */
.shadow {
  box-shadow: 0px 16px 24px -4px rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.rounded {
  border-radius: var(--radio-borde);
}
.highlight-bg {
  background-color: var(--color-one-cc);
  padding: 8px;
  border-radius: 4px;
}
.space {
  display: block;
  width: 100%;
  height: 340px;
}

/* BOTONES */
.btn {
  display: inline-block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  color: white !important;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  line-height: 1;
  background: var(--color-accent);
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: none;
  border-radius: 0.8rem;
  padding: 1.4rem 1.6rem;
  transition: ease-in-out 0.2s;
}
.btn:hover {
  transform: scale(.98);
}
.btn-small {
  width: 50%;
  display: block;
}
.btn-center {
  margin: 0 auto;
}
hr.divider {
  display: block;
  width: 30%;
  border: 1px solid #e7e7e7;
  margin: 2rem auto;
}
.bleeding {
  margin-left: 16px;
}
.bleeding-lg {
  margin-left: 20px;
}

/* BACKGROUNDS */
.bg-one {
  background: #000;
}
.bg-two {
  background: #f2f5f8;
}
.bg-white {
  background: #fff;
}
.bg-img {
  background: url("https://valleyblinds.agncmediagroup.com/wp-content/uploads/2025/07/banner-measure.webp")
    no-repeat top center / auto;
}

/* FORM */
form .column input {
  padding: 1.2rem;
}
form .column input,
form .column button {
  font-size: 1.6rem;
  width: 100% !important;
  padding: 1.2rem !important;
  border-radius: 4px;
}
form .column input {
  border: 2px solid #ccc;
}
form .column button {
  color: white !important;
  font-weight: bolder;
  background: var(--color-accent);
  border: 2px solid var(--color-accent);
}

/* Contenedor principal de la timeline */
.timeline-container {
  position: relative;
}

/* Línea vertical */
.timeline-container::before {
  content: "";
  position: absolute;
  left: 2rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--color-accent);
  z-index: 0;
}
.timeline-container::after {
  content: "";
  position: absolute;
  left: 17px; /* Alineado con la línea (ajusta si es necesario) */
  bottom: 0;
  width: 8px;
  height: 8px;
  background-color: var(--color-accent);
  border-radius: 50%;
  z-index: 2;
}

/* Cada elemento de la timeline */
.timeline-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

/* El círculo con el número */
.timeline-step .number-circle {
  flex-shrink: 0; /* evita que se reduzca de tamaño */
  width: 40px;
  height: 40px;
  border: 2px solid var(--color-accent);
  border-radius: 50%;
  background-color: #fff;
  color: var(--color-accent);
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  z-index: 1; /* para que esté por encima de la línea */
}

/* Contenido del paso (título + párrafo) */
.timeline-content {
  max-width: 600px; /* Ajusta según tu diseño */
}

.timeline-content h3 {
  font-size: 2.8rem;
  margin: 0 0 0.5rem;
  color: #333;
}

.timeline-content p {
  font-size: 1.8rem;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

/* Comparation box */
.comparison-card {
  max-width: 500px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
}

/* Encabezado oscuro */
.comparison-header {
  background-color: #2B2B2B; /* Ajusta el color según tu marca */
  color: #ffffff;
  text-align: center;
  padding: 10px;
  font-size: 2rem;
  font-weight: bold;
}

/* Sección principal con dos columnas */
.comparison-rows {
  display: flex;
  flex-direction: column;
  border: 1px solid #f0f0f0;
  border-radius: 0 0 8px 8px;
  box-shadow: 0px 10px 16px -3px rgba(0, 0, 0, 0.1);
}
.comparison-rows span {
  font-size: 2rem;
  line-height: 1.4;
}

/* Fila con dos columnas */
.comparison-row {
  display: flex;
  gap: 0;
  justify-content: center;
  align-items: center;
  border: 1px solid #ccc;
}

.comparison-row:nth-child(1), .comparison-row:nth-of-type(2), .comparison-row:nth-of-type(3) {
  border-bottom: none; /* Quita la línea en la última fila */
}
.comparison-row:last-child {
  border-radius: 0 0 8px 8px;
}

/* Columnas */
.col {
  width: 48%;
  display: flex;
  align-items: center;
  padding: 1.2rem;
}

/* Íconos (check y x) */
.vb-icon-check {
  color: #2ca02c; /* verde */
  margin-right: 8px;
  font-weight: bold;
}
.icon-x {
  color: #d9534f; /* rojo */
  margin-right: 8px;
  font-weight: bold;
}

/* CTA al final */
.comparison-cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}
.comparison-cta button {
  background-color: #3777dd; /* Ajusta según tu paleta */
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 2rem;
}
.comparison-cta h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

/* FORM CONSULTATION */
#startOverBtn {
  position: absolute;
  top: 5%;
  right: 5%;
  z-index: 10;
  display: none; /* Se mostrará a partir del Paso 2 */
}
.start-over {
  color: var(--color-accent);
  text-decoration: underline;
  cursor: pointer;
  font-size: 1.2rem;
}

/* ================== Step 2 (Opciones) Styles ================== */
.step-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.step-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.main-title {
  font-size: 1.2rem;
  margin: 0;
  font-weight: bold;
}
.main-title .accent {
  color: #ff6633;
}
.success-message {
  display: flex;
  align-items: center;
  color: #327D56;
  font-size: 16px;
  background-color: #e3fcef;
  border: 1px solid #327D56;
  border-radius: 12px;
  padding: 8px;
}
.success-message svg {
  margin-right: 8px;
}
.options-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.option-item {
  position: relative;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 12px;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
}
.option-item:hover {
  background-color: #f0f8ff;
}
.option-radio {
  margin-right: 12px;
  margin-top: auto;
  margin-bottom: auto;
  cursor: pointer;
}
.option-label {
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 6px 0;
}
.option-description {
  margin: 0;
  font-size: 16px;
  color: #555;
}
.actions {
  text-align: right;
}
.next-btn {
  background-color: var(--color-accent);
  color: #fff;
  border: none;
  font-size: 12px;
  border-radius: 99px;
  padding: 10px 18px;
  cursor: pointer;
}
.next-btn:disabled {
  background-color: #cccccc;
  cursor: not-allowed;
}

/* ================== Step 3 (Opciones) Styles ================== */
.request-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.request-form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.request-form-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.request-form-field {
  flex: 1 1 50%;
  max-width: 50%;
}
.request-form-field label {
  font-size: 16px; 
  line-height: 1.2;
  margin-left: 16px;
}
.request-form-field input {
  width: 100%;
  height: 100%;
  color: #ccc;
  font-size: 16px;
  text-align: center;
  background: #fafafa;
  border: 1px solid #DADAD5;
  border-radius: 99px;
  padding: 12px;
}
.request-form-btn {
  display: inline-block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  color: white !important;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  line-height: 1;
  background: var(--color-accent);
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: none;
  border-radius: 99px;
  padding: 1.4rem 1.6rem;
  transition: ease-in-out 0.2s;
  cursor: pointer;
}
.request-form-btn:hover {
  transform: scale(.98);
}
/* MEASURE WORDPRESS THEME CSS */
.measure-box {
    width: 100%;
    max-width: 800px;
  display: flex;
  flex-direction: column;
  background: rgb(255, 255, 255, 0.85);
  border-radius: 20px;
  margin: 0 auto;
  padding: 40px;
  gap: 32px;
}
.measure-title h1 {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: bolder;
  line-height: 1.2;
}
.zip-verification {
  width: 100%;
  height: 52px;
  display: flex;
  gap: 12px;
}
.verify-btn button {
  display: inline-block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  color: white !important;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  line-height: 1;
  background: var(--color-accent);
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: none;
  border-radius: 99px;
  padding: 1.4rem 1.6rem;
  transition: ease-in-out 0.2s;
  cursor: pointer;
}
.verify-btn:hover {
  transform: scale(.98);
}
.zip-input, .verify-btn {
    flex: 1 1 50%;
    max-width: 50%;
}
.zip-verification input {
  width: 100%;
  height: 100%;
  color: #ccc;
  font-size: clamp(12px, 5vw, 16px);
  text-align: center;
  background: #fafafa;
  border: 1px solid #DADAD5;
  border-radius: 99px;
  padding: 12px;
}
.measure-benefits {
  display: flex;
  gap: 20px;
  flex-direction: column;
  background: #fafafa;
  border: 1px solid #DADAD5;
  border-radius: 20px;
  padding: 20px;
}
.benefit-item {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.benefit-item .benefit-icon {
  flex: 1 1 10%;
  max-width: 10%;
}
.benefit-item .benefit-content {
  flex: 1 1 90%;
  max-width: 90%;
}
.benefit-icon {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.benefit-icon img {
  width: 100%;
}
.benefit-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.benefit-title h4 {
  font-size: clamp(16px, 5vw, 20px);
  line-height: 1.2;
  margin: 0;
}
.benefit-content p {
  font-size: clamp(12px, 5vw, 16px);
  line-height: 1.6;
  margin: 0;
}
hr.benefit-divider {
  width: 82%;
  height: 1px;
  background: #f0f0f0;
  border: none;
  margin: 0 auto;
}
.measure-disclaimer {
  font-size: clamp(12px, 5vw, 18px);
  line-height: 1.4;
  margin: 0;
}

/* TRUST POINTS */
.trust-points {
  width: 100%;
  max-width: 96%;
  display: flex;
  gap: 12px;
  margin: 0 auto;
  padding: 20px;
}
.point {
  display: flex;
  flex: 1 1 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 4px;
  background: #fafafa;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  padding: 20px;
}
.point-icon {
  width: 100%;
  text-align: center;
}
.point-icon img {
  width: 100%;
  max-width: 32px;
}
.point-title h4 {
  font-size: clamp(12px, 5vw, 16px);
  line-height: 1;
  text-align: center;
}
.point-description p {
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
}
/* ================== Responsive (Opcional) ================== */
@media (max-width: 768px) {
  .container.flex {
    flex-direction: column;
  }
}

/* Dispositivos móviles */
@media screen and (max-width: 1000px) {
  .bg-img {
    background: url("https://cdn.shopify.com/s/files/1/0647/9190/4326/files/banner-measure.png")
      no-repeat top right / auto;
  }
}
@media screen and (max-width: 768px) {
  .flex, .trust-points {
    flex-direction: column;
  }
  .column {
    width: 100%;
  }
}