/** Shopify CDN: Minification failed

Line 133:21 Expected identifier but found whitespace
Line 133:23 Unexpected "{"
Line 133:32 Expected ":"
Line 134:12 Expected identifier but found whitespace
Line 134:14 Unexpected "{"
Line 134:23 Expected ":"

**/
/* ── Section wrapper ── */
.cwi-section { overflow: hidden; }

/* ── Inner: relative container so heading + form can position against it ── */
.cwi-inner { position: relative; }

/* ── Layout: image is full width background, form overlays right side ── */
.cwi-layout {
  position: relative;
  display: block;
  border-radius: 2rem;
  overflow: hidden;
}

/* ── Full width background image ── */
.cwi-media {
  position: relative;
  width: 100%;
  min-height: 55rem;
  border-radius: 2rem;
  overflow: hidden;
}
.cwi-form-bottom-text {
  margin-top: 5px;
}
@media screen and (min-width: 990px) {
  .cwi-media { min-height: unset; height: 100%; }
  .cwi-layout { min-height: 74rem; }
}

.cwi-media__img-wrap {
  position: absolute;
  inset: 0;
}

.cwi-media__img,
.cwi-media__placeholder .placeholder-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cwi-media__placeholder {
  background: rgba(var(--color-foreground), 0.06);
}

/* ── Heading: absolute top-left over image ── */
.cwi-heading {
  position: absolute;
  top: 3.2rem;
  left: 3.2rem;
  z-index: 2;
  margin: 0;
  max-width: 36rem;
}

/* ── Info box: absolute bottom-left over image ── */
.cwi-infobox {
  position: absolute;
  bottom: 2.4rem;
  left: 2.4rem;
  z-index: 2;
  padding: 2rem 2.4rem;
  border-radius: 1.6rem;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  max-width: 26rem;
}

.cwi-infobox__badge {
  margin: 0;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cwi-infobox__items {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.cwi-infobox__item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.cwi-infobox__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cwi-infobox__text { line-height: 1.5; }

/* ── Form card: absolute right side over image ── */
.cwi-form-wrap {
  position: absolute;
  top: 50%;
  right: 2.4rem;
  transform: translateY(-50%);
  z-index: 2;
  width: 46rem;
  border-radius: 1.6rem;
  padding: 3.2rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.14);
  display: flex;
  flex-direction: column;
}

 /* ── Overlay ── */
  .cwi-media__img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: {{ section.settings.overlay_color }};
    opacity: {{ section.settings.overlay_opacity | divided_by: 100.0 }};
    pointer-events: none;
    z-index: 1;
  }

  /* ── Top-left white corner cutout ── */
  .cwi-media::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 150px;
    background: rgb(var(--color-background));
    z-index: 3;
    border-bottom-right-radius: 2rem;
  }
.cwi-media::after {
    content: "";
    position: absolute;
    top: 150px;
    left: 0;
    width: 30px;
    height: 30px;
    background: url(/cdn/shop/files/Service_Shape.png?v=1776424532);
    z-index: 3;
}
.cwi-media__img-wrap:before{
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 30px;
    height: 30px;
    background: url(/cdn/shop/files/Service_Shape.png?v=1776424532);
    z-index: 3;
}

@media screen and (max-width: 989px) {
  .cwi-layout {
    display: flex;
    flex-direction: column;
  }

  .cwi-media {
    min-height: 42rem;
    border-radius: 2rem 2rem 0 0;
    flex-shrink: 0;
  }

  .cwi-heading {
    top: 2rem;
    left: 2rem;
    max-width: calc(100% - 4rem);
  }

  .cwi-infobox {
    bottom: 15px;
    left: 15px;
    right: 15px;
    max-width: unset;
    gap: 15px;
    padding: 2rem 2rem;
    border-radius: 14px;
  }

  .cwi-form-wrap {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 100%;
    border-radius: 2rem;
    box-shadow: none;
    padding: 25px 0px 0 0;
    padding: 4rem 0rem !important;
  }
  .cwi-heading {
    padding: 0 0 0 10px;
}
.cwi-field .field__label {
    font-size: 16px;
}
.cwi-infobox__items {
    gap: 0;
}
.cwi-infobox__icon {
    width: 38px;
    height: 38px;
}
.cwi-infobox__icon svg {
    width: 20px;
}
.cwi-infobox__item {
    gap: 5px;
}
.cwi-infobox__text p {
    margin: 5px 0;
}
}

/* ── Form internals ── */
.cwi-form__success {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.4rem 1.6rem;
  border-radius: 0.8rem;
  margin-bottom: 2rem;
  background: rgba(0, 128, 0, 0.08);
  color: rgb(0, 100, 0);
  border: 1px solid rgba(0, 128, 0, 0.2);
}

.cwi-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2rem;
  flex: 1;
}

@media screen and (max-width: 749px) {
  .cwi-form__grid { grid-template-columns: 1fr; }
}

.cwi-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-bottom: 0;
}

.cwi-field--full { grid-column: 1 / -1; }

/* Field labels */
.cwi-field .field__label {
    font-size: 18px;
    text-transform: capitalize;
    position: static;
    transform: none;
    margin-bottom: .4rem;
}

/* Inputs — underline style */
.cwi-field .field__input,
.cwi-field .field__textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 12px 10px;
    font-size: inherit;
    color: rgb(var(--color-foreground));
    font-family: inherit;
    transition: border-color .25s ease;
    box-shadow: none;
    height: auto;
    border: 1px solid #0000001A;
    background: #00000005;
    border-radius: 10px;
}
.field__label p{
    margin:0;
}

.cwi-field .field__input:focus,
.cwi-field .field__textarea:focus {
  outline: none;
  border-bottom-color: rgb(var(--color-foreground));
  box-shadow: none;
}

.cwi-field .field__input::placeholder,
.cwi-field .field__textarea::placeholder {
  color: rgba(var(--color-foreground), 0.65);
  opacity:1;
}

/* Kill Dawn's default field pseudo-element border */
.cwi-field.field::after { display: none !important; }

.cwi-field .field__textarea {
  resize: none;
  min-height: 9rem;
}

/* Select */
.cwi-select-wrap { position: relative; }

.cwi-select-wrap .cwi-select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 3rem;
  cursor: pointer;
  width: 100%;
}

.cwi-select__caret {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0.5;
}

/* Submit */
.cwi-form__footer { margin-top: 2rem; }