/* ===== Front Page styles ===== */

/* ===== Product Range ===== */
.home-pr { background: #fff; }
.home-pr .container {
  padding-left: 20px;
  padding-right: 20px;
}

/* Grid 3x2 như ảnh */
.home-pr__grid{
  --gap: 22px; --cols: 3;
  display: grid; gap: var(--gap);
  grid-template-columns: repeat(var(--cols), 1fr);
}
@media (max-width: 980px){ .home-pr__grid{ --cols: 2; } }
@media (max-width: 650px){ .home-pr__grid{ --cols: 1; } }

.pr-card{
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 230px;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, .06);
  text-decoration: none;
  transition: box-shadow .2s ease;
}
.pr-card:hover{ 
  border: 1px solid var(--color-primary); }

.pr-card__media{ 
  margin: 0; 
  height: 100%; 
  background: #fff; 
  display:flex; 
  align-items:center; 
  justify-content:center; 
}
.pr-card__media img{
  width: 100%;
  height: 100%;
  object-fit: contain; 
  padding-left: 12px;
}

.pr-card__body{ 
  padding: 18px 20px;
  position: relative; 
}
.pr-card__heading{
  margin: 0 0 8px; font-size: 18px; font-weight: 700; color: #252525; }
.pr-card__view{ 
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-muted);
}
.pr-card:hover .pr-card__view {
  color: var(--color-primary);
}
/* Biến thể CTA cho “Custom Solutions” */
.pr-card--cta{
  grid-template-columns: 1fr;        /* bỏ cột ảnh */
  background: var(--color-bg-soft);               /* đổi màu ô */
}
.pr-card--cta .pr-card__body{ 
  padding: 22px 24px; 
  margin-left: 18px;
}
.pr-card--cta .pr-card__heading{ color:var(--color-primary); margin-bottom:8px; }
.pr-card--cta .pr-card__view{ color:var(--color-muted); font-weight:600; }

/* === YouTube embeded video ===*/
.youtube-embed {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  margin-top: 40px;        
}

.youtube-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ===== Home: Industries slider ===== */
.home-industries { margin-top: clamp(32px,4vw,56px); }

/* khung để đặt mũi tên không bị clip */
.hi-wrap{
  --gap: 24px;               /* khoảng cách giữa card */
  position: relative;
  overflow: visible;
}

/* viewport */
.hi-viewport{ 
  -webkit-overflow-scrolling: touch;
  overflow:hidden; 
  width:100%; 
  padding-top: clamp(12px, 2.2vw, 28px);
  padding-bottom: clamp(12px, 2.2vw, 28px);
  box-sizing: border-box;
}
/* track */
.hi-track{ 
  display:flex; 
  gap:var(--gap); 
  scroll-snap-type:x mandatory; 
  padding-right: 8px;
  padding-left: 8px;

}

/* 3-per-view (2 khoảng trống = 2*gap) */
.hi-card{
  box-sizing:border-box;
  flex: 0 0 calc((100% - (2 * var(--gap))) / 3);
  scroll-snap-align:start;
}
.hi-card .thumb img, .hi-card .thumb .ph{ width:100%; display:block; }
.hi-card .ph{ background:#f2f2f2; aspect-ratio:16/9; }

/* 2-per-view */
@media (max-width: 1024px){
  .hi-card{ flex-basis: calc((100% - var(--gap)) / 2); }
}
/* 1-per-view */
@media (max-width: 640px){
  .hi-card{ flex-basis: 100%; }
}

/* arrows: luôn “ngoài” 2 mép wrap */
.hi-arrow{
  position:absolute; top:50%;
  z-index:5;
  width:40px; height:40px; border:1px solid rgba(0,0,0,.12); border-radius:50%;
  display:grid; place-items:center; background:#fff; cursor:pointer;
  box-shadow:0 4px 12px rgba(0,0,0,.08);
  transition:transform .12s ease, box-shadow .12s ease, opacity .12s ease;
}
.hi-prev{ left:-20px; }   /* đẩy ra ngoài */
.hi-next{ right:-20px; }
.hi-arrow:hover{ box-shadow:0 8px 18px rgba(0,0,0,.12); }
.hi-arrow:disabled{ opacity:.45; cursor:not-allowed; }

/* dots */
.hi-dots{ display:flex; justify-content:center; gap:8px; margin-top:12px; }
.hi-dot{ width:8px; height:8px; border-radius:50%; background:var(--color-bg-soft); border:none; padding:0; cursor:pointer; }
.hi-dot[aria-current="true"]{ background:var(--color-primary); }

/* ===== Home: Applications slider ===== */
.home-apps{ margin-top: clamp(36px,4.5vw,64px); }
.ha-head{ display:flex; justify-content:space-between; align-items:center; gap:16px; }
.ha-wrap{
  position: relative;
}
.ha-arrow{
  position: absolute;
  top: 50%;
  z-index: 3;                  /* nổi lên trên overlay tối của ảnh */
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(0,0,0,.12);
  width: 40px; height: 40px;   /* hơi to hơn để dễ bấm */
  box-shadow: 0 6px 16px rgba(0,0,0,.12);
}
.ha-arrow:disabled{ opacity:.45; cursor:not-allowed; }

.ha-prev{ left: 12px; }
.ha-next{ right: 12px; }

.ha-btn{
  width:36px; height:36px; border-radius:50%;
  border:1px solid rgba(0,0,0,.12); background:#fff;
  display:grid; place-items:center; cursor:pointer;
  box-shadow:0 4px 12px rgba(0,0,0,.08);
  transition:transform .12s ease, box-shadow .12s ease;
}
.ha-btn:hover{ box-shadow:0 8px 18px rgba(0,0,0,.12); }
.ha-btn:disabled{ opacity:.45; cursor:not-allowed; }

/* khung slider */
.ha-viewport{ 
  overflow:hidden; 
  position:relative; 
  margin-top:10px; 
  border-radius: 4px;
}
.ha-track{ display:flex; gap:0; scroll-snap-type:x mandatory; }
.ha-slide{ flex:0 0 100%; scroll-snap-align:start; }

.ha-slide__link{
  display:block; width:100%;
  aspect-ratio: 16 / 6;        /* tỷ lệ rộng như ảnh demo; chỉnh tùy banner */
  border-radius: 4px; overflow:hidden; position:relative;
  background: #ccc center / cover no-repeat;
  background-image: var(--bg);
}
.ha-slide__link::after{
  content:""; position:absolute; inset:0;
  background: linear-gradient(0deg, rgba(0,0,0,.38), rgba(0,0,0,.12));
}
.ha-slide__title{
  position:absolute; left: clamp(20px,3vw,36px); bottom: clamp(16px,2.5vw,28px);
  z-index:1; color:#fff; font-weight:800;
  font-size: clamp(22px, 3vw, 38px);
  text-shadow: 0 2px 8px rgba(0,0,0,.35);
}
.ha-dots{ display:flex; justify-content:center; gap:8px; margin-top:12px; }
.ha-dot{ width:8px; height:8px; border-radius:50%; background:var(--color-bg-soft); border:none; padding:0; cursor:pointer; }
.ha-dot[aria-current="true"]{ background:var(--color-primary); }


/* đặt nav nổi ở góc phải trên như ảnh */
.home-apps .ha-head{ position:static; }

/* mobile */
@media (max-width: 640px){
  .ha-arrow{ width: 36px; height: 36px; }
  .ha-prev{ left: 8px; }
  .ha-next{ right: 8px; }
  .ha-slide__link{ aspect-ratio: 16 / 9; }
}


/* ===== Home: Material Handling ===== */
.home-materials{
  margin-top: clamp(36px,4.5vw,68px);
}

/* Container giống các section khác, chỉ tinh chỉnh nhẹ trên mobile */
.home-materials .container {
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

/* Grid 3-2-1, không overflow */
.mh-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));  /* max 3 cột */
  gap: clamp(18px, 3.2vw, 44px);
  align-items: start;
  box-sizing: border-box;
}

/* Thumbnail */
.mh-card__thumb{
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--color-bg-soft) center/cover no-repeat;
  background-image: var(--bg);
  border-radius: 4px;
  overflow: hidden;
}

/* Tiêu đề + mô tả */
.mh-card__title{
  text-align: center;
  font-size: clamp(14px, 1.6vw, 16px);
  margin-top: 14px;
}
.mh-card__desc{
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-muted);
  margin-top: 6px;
}

/* Tablet: 2 cột */
@media (max-width: 1024px){
  .mh-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile: 1 cột + padding hai bên nhỏ lại cho giống section khác */
@media (max-width: 600px){
  .mh-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .home-materials .container{
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* ===== Home: About Us ===== */
.home-about{
  background: #f3f6f8; /* xám nhạt */
  padding: clamp(48px, 8vw, 96px) 0;
  text-align: center;
}

.home-about .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.home-about .ha-eyebrow {
  margin-bottom: 14px;
  text-align: center;
  color: var(--color-muted);
}

.home-about .ha-title {
  margin: 8px 0 10px;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--color-text)
}

.home-about .ha-desc {
  margin: 18px auto 18px;
  font-size: 1rem;
  color: var(--color-muted);
  max-width: 820px; /* keep readable line length */
}

/* center CTA row */
.home-about .ha-cta-wrap,
.home-about .ha-cta {
  display: inline-flex;
  justify-content: center;
  gap: 12px;
  border-radius: 4px;
  margin-top: 8px;
}
.home-about .ha-cta svg {
  align-items: center;
  vertical-align: middle;
}


/* responsive tweaks (optional) */
@media (max-width: 960px){
  .home-about .ha-desc { padding-left: 16px; padding-right: 16px; }
}

/* ===== Home: Project-Based Customization ===== */
.home-pbc{ padding: clamp(36px,6vw,72px) 0; }

/* responsive */
@media (max-width: 980px){
  .home-faq__acc {
    margin-left: 0;   /* bỏ auto */
    margin-right: 0;
    max-width: none;  /* full width cột */
    width: 100%;
    box-sizing: border-box;
  }
}

/* ===== Home: FAQ ===== */
.home-faq { padding: 48px 0; }
.home-faq__wrap { 
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 0 16px; 
  display: grid; 
  gap: 28px; 
  grid-template-columns: 1.1fr 1.4fr;
}

@media (max-width: 980px){ 
  .home-faq__wrap{ 
    grid-template-columns: 1fr;
    justify-items: stretch;
  }
    .home-faq__acc {
    margin-left: 0;     /* remove auto centering */
    margin-right: 0;
    max-width: none;    /* allow it to fill the column */
    width: 100%;
    box-sizing: border-box;
  }
  .home-faq__title,
  .home-faq__desc {
    text-align: left;   /* ensure headings/descriptions are left aligned */
  }
}

.home-faq__title{
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800; line-height: 1.1; margin: 0 0 14px; 
  color: var(--color-text);
}
.home-faq__desc{ 
  color:var(--color-muted); 
  margin: 0 0 16px; 
  max-width: 100%; }
.home-faq__more{
  display: inline-flex; 
  font-size: 0.875rem;
  align-items: center; gap: 4px;
  font-weight: 600; 
  color:var(--color-primary);
  text-decoration: none;
}
.home-faq__more:hover{ color:var(--color-text); }

.home-faq__more svg{
  margin-left: 0px; 
  height: 14px; 
  vertical-align: middle;
  width: 14px; 
}
/* Accordion */
.home-faq__acc{ 
  width: 100%;
  box-sizing: border-box;
  max-width: 100%; 
  margin: 0;
  justify-self: start;
 }
.faq-item{
  border-bottom: 1px solid #e5e7eb; 
  padding: 14px 0;
  width: 100%;
  box-sizing: border-box;
}
.faq-item:first-child{ border-top: 1px solid #e5e7eb; }

.faq-q{
  list-style: none; cursor: pointer; font-weight: 700; color:var(--color-text);
  display:flex; align-items:center; justify-content:space-between;
  gap: 16px; outline: none;
}
.faq-q::-webkit-details-marker{ display:none; }

/* plus/minus icon */
.faq-q::after{
  content: '+'; font-weight: 700; font-size: 18px; color:#6b7280;
  line-height: 1;
}
.faq-item[open] .faq-q::after{ content: '–'; } /* minus */

.faq-a{
  color:var(--color-muted); margin-top: 10px; line-height: 1.6;
  animation: faqFade .18s ease;
}
@keyframes faqFade { from{ opacity:0 } to{ opacity:1 } }

/* ================================
   HOME – FEATURED EVENT (overlay)
   ================================ */

.ne-featured{ margin: 48px 0; }

.ne-featured__card{
  position: relative;
  display: block;
}

/* Media + overlay gradient */
.ne-featured__media{
  position: relative;
  display: block;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.14);
  margin-bottom:24px;
}
.ne-featured__media img{
  width: 100%;
  height: clamp(260px, 46vw, 420px);
  object-fit: cover;
  display: block;
}
/* gradient phủ từ trong suốt -> đen ở đáy */
.ne-featured__media::after{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 30%,
    rgba(0,0,0,.35) 60%,
    rgba(0,0,0,.65) 100%
  );
  pointer-events: none;
}

/* Badge giữ ở góc trên trái */
.ne-featured__badge{
  position: absolute; left: 48px; top: 48px;
  display: inline-block;
  padding: 6px 10px;
  border-radius: 4px;
  background: var(--color-primary);
  color:#fff; 
  font-weight:600;
  letter-spacing:.2px;
  z-index: 2;
  font-size: 0.75rem;
}

/* === Overlay text: đặt body absolute + trắng === */
.ne-featured__body{
  position: absolute;
  left: 24px; 
  right: 24px;
  bottom: 24px;
  padding: 24px;
  color: #fff;
  z-index: 2;
}
/* ===== Chips (Date | Time) – scoped cho featured ===== */
.ne-featured__chips{ margin: 0 0 10px; }

.ne-featured .chip.chip--combo{
  display: inline-flex; align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #fff;
  backdrop-filter: blur(4px);
  font-size: 14px;
  line-height: 1;
}
.ne-featured .chip.chip--combo .seg{
  display: inline-flex; align-items: center;
  gap: 8px; position: relative;
}
.ne-featured .chip.chip--combo .seg + .seg{
  padding-left: 14px; margin-left: 2px;
}
.ne-featured .chip.chip--combo .seg + .seg::before{
  content: ""; position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 18px;
  background: rgba(255,255,255,.35);
}

/* Icons trong chip – FIX lịch bị fill */
.ne-featured .chip.chip--combo svg{
  width: 16px; height: 16px;
  stroke: #fff; fill: none; stroke-width: 1.8;
  display: block;
}
/* đảm bảo mọi phần tử của SVG không bị đổ nền */
.ne-featured .chip.chip--combo svg rect,
.ne-featured .chip.chip--combo svg path,
.ne-featured .chip.chip--combo svg circle,
.ne-featured .chip.chip--combo svg line,
.ne-featured .chip.chip--combo svg polyline{
  fill: none; stroke: #fff;
}
/* Title*/
.ne-featured__title{
  margin: 16px 0 16px;
  font-size: clamp(22px, 3.2vw, 36px);
  line-height: 1.18;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0,0,0,.55);
}
.ne-featured__title a{ color:#fff; text-decoration:none; }

/*địa điểm*/
.ne-featured__locline{
  display:flex; gap:8px; align-items:center;
  color:#fff; opacity:.95;
  font-size: clamp(13px, 1.6vw, 15px);
  text-shadow: 0 1px 6px rgba(0,0,0,.45);
}
.ne-featured__locline svg{
  width: 20px; 
  height: 20px; 
  stroke:#fff;
   fill:none; 
   stroke-width:1.8;
}
.ne-featured__locline svg path{ 
  fill:none; 
  stroke:#fff; 
}
.ne-featured__locline svg circle{ 
  fill:none; 
}
/* Responsive: body nhích vào cho mobile */
@media (max-width: 640px){
  .ne-featured__body{ left: 16px; right: 16px; bottom: 16px; }
  .ne-featured__media img{ height: 280px; }
  .ne-featured__badge{
    left: 16px; top: 16px;
    padding: 4px 8px;
  }
  .ne-featured__title{
    margin: 12px 0 12px;
  }
}
/* ===== Home: Newsletter ===== */
/* ===== Home: Newsletter (final hardened) ===== */
.home-nl{ background:var(--color-primary); color:#fff; padding:36px 0; }
.home-nl .container{ max-width:1200px; margin:0 auto; padding:0 16px; }

.home-nl__wrap{
  display:grid; grid-template-columns: 1.2fr 1fr; gap:28px; align-items:center;
}
@media (max-width:960px){
  .home-nl__wrap{ grid-template-columns:1fr; gap:18px; }
}

.home-nl__title{
  margin:0 0 8px; font-size:clamp(20px,2.6vw,28px); font-weight:600; color:#fff;
}
.home-nl__desc{ margin:0; opacity:.95; max-width:50ch; }

/* === CF7 form inline (robust, always one row) === */
.home-nl .wpcf7{ width:100%; }
.home-nl .wpcf7-form{ margin:0; }                     /* bỏ khoảng trống mặc định */

/* CF7 hay tự bọc <p> / <br>, flatten để không phá layout */
.home-nl .nl-form > p{ display:contents !important; }
.home-nl .nl-form br{ display:none !important; }

/* Form luôn nằm một hàng: input co giãn, nút auto-width */
.home-nl .nl-form{
  display:flex !important;
  flex-wrap:nowrap !important;
  align-items:center;
  gap:12px;
  flex-wrap:nowrap !important;      /* KHÔNG cho xuống hàng ở mọi breakpoint */
  width:100%;
  max-width: none !important;
  align-self:center;
  justify-content:stretch;
  margin: 0; 
  box-sizing:border-box;
  align-self: stretch;
}

/* Ẩn label khỏi flow (giữ cho screen reader) */
.home-nl .nl-form label{
  position:absolute !important; width:1px; height:1px; margin:-1px; padding:0;
  overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0;
}

/* CF7 wrap quanh input */
.home-nl .nl-form .wpcf7-form-control-wrap{
  flex:1 1 0% !important;
  width: 100% !important;
  min-width:0;                       /* chìa khoá để không đẩy nút xuống ở màn hẹp */
  display:block !important;
}

/* Email input */
.home-nl .nl-form input[type="email"].wpcf7-form-control{
  flex:1 1 0%;
  width: 100% !important;
  height: 48px !important;
  min-width:0;
  max-width:100%;
  background:#fff; color:#111; border:0; border-radius:4px;
  padding:0 14px; font-size:16px; line-height:1.2;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.2);
  box-sizing:border-box;
}

/* Submit button: luôn bên phải, không kéo giãn */
.home-nl .nl-form input[type="submit"].wpcf7-form-control{
  flex:0 0 auto !important;
  display:inline-block !important;
  width:auto !important;
  height: 48px !important;
  margin: 0 !important;
  padding: 0 16px !important;
  align-self: stretch !important;
  white-space:nowrap;
  background:#fff; color:var(--color-primary); font-weight:700;
  border:0; border-radius:4px; padding:12px 18px; cursor:pointer;
  box-shadow:0 2px 6px rgba(0,0,0,.12);
  transition: transform .1s ease, box-shadow .2s ease, opacity .2s ease;
}
.home-nl .nl-form input[type="submit"].wpcf7-form-control:hover{
  box-shadow:0 4px 10px rgba(0,0,0,.18);
}
.home-nl .nl-form input[type="submit"].wpcf7-form-control:active{ transform:translateY(0); }
.home-nl .wpcf7-not-valid-tip{
  color:#ffff
}
/* Tối ưu spacing ở màn rất nhỏ – vẫn giữ 1 hàng */
@media (max-width:480px){
  .home-nl .nl-form{ gap:8px; max-width:none; }
  .home-nl .nl-form input[type="email"].wpcf7-form-control{ padding:10px 12px; }
  .home-nl .nl-form input[type="submit"].wpcf7-form-control{ padding:10px 12px; }
}


.home-nl .wpcf7-form .wpcf7-form-control-wrap {
    display: block;
    margin-bottom: 16px;
}
/* ===== Home: Featured Posts ===== */
.home-featured-posts { padding: 40px 0; }
.grid.grid--4 { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
@media (max-width:1024px){ .grid.grid--4{grid-template-columns:repeat(2,1fr);} }
@media (max-width:600px){ .grid.grid--4{grid-template-columns:1fr;} }


/* ======= Section spacing & title consistency ======= */

/* Section: apply consistent vertical spacing */
section,
.home-pr,
.home-industries,
.home-apps,
.home-materials,
.home-about,
.home-pbc,
.home-faq,
.home-event,
.home-nl,
.home-featured-posts {
  padding-top: clamp(24px, 3vw, 40px);
  padding-bottom: clamp(24px, 3vw, 40px);
  margin-bottom: 0; /* avoid double spacing */
}

/* Remove extra padding for first section (hero) if needed */
.home-pr:first-of-type,
section:first-of-type {
  padding-top: clamp(24px, 4vw, 48px);
}

/* Container: consistent horizontal gutter */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

/* Section title: consistent margin and font */
.section-title {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800;
  letter-spacing: .4px;
  color: var(--color-text);
  margin: 0 0 28px 0;
}

/* Space between section and next section */
section + section,
.home-pr + section,
.home-industries + section,
.home-apps + section,
.home-materials + section,
.home-about + section,
.home-pbc + section,
.home-faq + section,
.home-event + section,
.home-nl + section,
.home-featured-posts + section {
  margin-top: clamp(16px, 2vw, 32px);
}

/* Card grid titles: unify margin */
.pr-card__title,
.mh-card__title,
.pbc-title,
.industry-card .title {
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #252525;
}

/* Responsive: reduce vertical spacing on mobile */
@media (max-width: 600px) {
  section,
  .home-pr,
  .home-industries,
  .home-apps,
  .home-materials,
  .home-about,
  .home-pbc,
  .home-faq,
  .home-event,
  .home-nl,
  .home-featured-posts {
    padding-top: 28px;
    padding-bottom: 28px;
  }
  .section-title {
    margin-bottom: 18px;
    font-size: clamp(1.2rem, 5vw, 1.5rem);
  }
  section + section {
    margin-top: 22px;
  }
}

/* ==== GLOBAL GUARD: chặn tràn ngang ở cấp trang ==== */
html, body {
  max-width: 100%;
  overflow-x: clip; /* tốt hơn hidden vì vẫn cho overflow-y mượt */
}

/* Cẩn thận các phần tử bị tính vào layout (không tính transform) */
img, svg, video, canvas, iframe {
  max-width: 100%;
}


.home-nl .nl-form{
  position: relative;
}

.home-nl .nl-form .wpcf7-spinner{
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
}