    *{
      margin:0;
      padding:0;
      box-sizing:border-box;
    }

    body{
      font-family: Arial, Helvetica, sans-serif;
      background:#f5f5f5;
      color:#111;
    }

    a{
      text-decoration:none;
      color:inherit;
    }

    img{
      display:block;
      max-width:100%;
    }

:root{
  --red:#d62828;
  --red-dark:#b91f1f;
  --dark:#061827;
  --white:#ffffff;
  --container:1400px;
}

    /* =========================
       HEADER
    ========================== */

    .site-header{
      width:100%;
      background:#ffffff;
      border-bottom:1px solid #e5e5e5;
    }

.header-inner{
  max-width:1400px;
  margin:0 auto;
  padding:0 40px;
  height:135px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
}

    /* LOGO */

    .logo{
      flex-shrink:0;
    }

.logo img{
  width:auto;
  height:auto; width:250px;
}

    /* NAVIGATION */

    .main-nav{
      display:flex;
      align-items:center;
      gap:42px;
      margin-left:auto;
      margin-right:20px;
    }

    .main-nav a{
      font-size:15px;
      font-weight:700;
      text-transform:uppercase;
      letter-spacing:.5px;
      color:#111111;
      transition:.2s ease;
    }

    .main-nav a:hover{
      color:#d62828;
    }

    /* RIGHT SIDE */

    .header-right{
      display:flex;
      align-items:center;
      gap:28px;
      flex-shrink:0;
    }

    .contact-info{
      display:flex;
      flex-direction:column;
      gap:8px;
    }

    .contact-item{
      display:flex;
      align-items:center;
      gap:10px;

      font-size:18px;
      color:#222;
      white-space:nowrap;
    }

    .contact-icon{
      width:16px;
      text-align:center;
      font-size:14px;
    }

    /* BUTTON */

    .bid-button{
      height:52px;
      padding:0 30px;

      display:flex;
      align-items:center;
      justify-content:center;

      background:#d62828;
      color:#fff;

      font-size:14px;
      font-weight:700;
      text-transform:uppercase;
      letter-spacing:.5px;

      transition:.2s ease;
    }

    .bid-button:hover{
      background:#b91f1f;
    }

/* =========================
   HERO
========================== */

.hero{
  width:100%;
  min-height:610px;
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.78) 0%,
      rgba(0,0,0,.58) 36%,
      rgba(0,0,0,.20) 68%,
      rgba(0,0,0,.08) 100%
    ),
    url("images/hero2.jpg");
    background-size: 80%;
  background-size:cover;
  background-repeat: no-repeat;
  background-position:center;
}

.hero-inner{
  max-width:1400px;
  margin:0 auto;
  padding:0 40px;
  min-height:610px;
  display:flex;
  align-items:center;
}

.hero-content{
  max-width:700px;
  color:#fff;
  padding-left:65px;
}

.hero-title{
  font-family:"Impact","Arial Narrow", Arial, sans-serif;
  font-size:55px;
  line-height:1.10;
  font-weight:500;
  text-transform:uppercase;
  letter-spacing:2px;
  margin-bottom:28px;
  transform:scaleY(1.12);
transform-origin:left top;
}

.hero-title span{
  display:block;
  color:#d62828;
}

.hero-text{
  max-width:540px;
  font-size:20px;
  line-height:1.5;
  color:#fff;
  margin-bottom:36px;
}

.hero-actions{
  display:flex;
  align-items:center;
  gap:18px;
}

.hero-btn{
  height:56px;
  padding:0 34px;

  display:inline-flex;
  align-items:center;
  justify-content:center;

  font-size:15px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.5px;
}

.hero-btn.primary{
  background:#d62828;
  color:#fff;
}

.hero-btn.primary:hover{
  background:#b91f1f;
}

.hero-btn.secondary{
  border:2px solid #fff;
  color:#fff;
}

.hero-btn.secondary:hover{
  background:#fff;
  color:#111;
}


/* =========================
   ABOUT HERO
========================== */

.about-hero{
  width:100%;
  background:
    linear-gradient(90deg, rgba(6,24,39,.96) 0%, rgba(6,24,39,.90) 52%, rgba(6,24,39,.78) 100%),
    url("images/hero2.jpg");
  background-size:cover;
  background-position:center;
  color:#ffffff;
}

.about-hero-inner{
  max-width:1400px;
  margin:0 auto;
  min-height:610px;
  padding:80px 40px;
  display:grid;
  grid-template-columns:1.3fr .7fr;
  gap:70px;
  align-items:center;
}

.about-hero-content{
  max-width:780px;
  padding-left:65px;
}

.about-kicker{
  font-size:15px;
  font-weight:700;
  letter-spacing:1.8px;
  text-transform:uppercase;
  color:#d62828;
  margin-bottom:18px;
}

.about-title{
  font-family:"Impact","Arial Narrow", Arial, sans-serif;
  font-size:48px;
  line-height:1.12;
  font-weight:500;
  text-transform:uppercase;
  letter-spacing:1.5px;
  margin-bottom:28px;
  transform:scaleY(1.08);
  transform-origin:left top;
}

.about-lead{
  font-size:21px;
  line-height:1.5;
  color:#ffffff;
  margin-bottom:22px;
}

.about-copy{
  font-size:18px;
  line-height:1.6;
  color:rgba(255,255,255,.88);
  max-width:720px;
}

.about-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:38px;
}

.about-stat{
  border-left:4px solid #d62828;
  background:rgba(255,255,255,.08);
  padding:18px 18px 16px;
}

.about-stat span{
  display:block;
  font-size:28px;
  font-weight:700;
  line-height:1;
  margin-bottom:8px;
}

.about-stat p{
  font-size:14px;
  line-height:1.35;
  color:rgba(255,255,255,.86);
  margin:0;
}

.about-hero-panel{
  background:#ffffff;
  color:#111111;
  border-top:6px solid #d62828;
  padding:42px 38px;
  box-shadow:0 22px 55px rgba(0,0,0,.28);
}

.about-hero-panel h2{
  font-family:"Arial Narrow", Arial, sans-serif;
  font-size:32px;
  line-height:1.1;
  text-transform:uppercase;
  margin-bottom:24px;
}

.about-hero-panel ul{
  list-style:none;
}

.about-hero-panel li{
  position:relative;
  padding-left:24px;
  margin-bottom:18px;
  font-size:18px;
  line-height:1.35;
  color:#333;
}

.about-hero-panel li:before{
  content:"";
  position:absolute;
  left:0;
  top:9px;
  width:9px;
  height:9px;
  background:#d62828;
}

@media (max-width:1024px){
  .about-hero-inner{
    grid-template-columns:1fr;
    gap:40px;
  }

  .about-hero-content{
    padding-left:0;
  }
}

@media (max-width:768px){
  .about-hero-inner{
    min-height:auto;
    padding:70px 22px;
  }

  .about-title{
    font-size:36px;
  }

  .about-lead{
    font-size:19px;
  }

  .about-stats{
    grid-template-columns:1fr;
  }

  .about-hero-panel{
    padding:32px 26px;
  }
}

    /* =========================
       RESPONSIVE
    ========================== */

    @media (max-width:1200px){

      .header-inner{
        padding:0 24px;
        gap:24px;
      }

      .main-nav{
        gap:28px;
      }

      .main-nav a{
        font-size:14px;
      }

      .logo img{
        width:auto;
        height:100px;
      }
    }

    @media (max-width:1024px){

      .header-inner{
        height:auto;
        padding:24px;
        flex-wrap:wrap;
      }

      .main-nav{
        order:3;
        width:100%;
        justify-content:center;
        margin:0;
      }

      .header-right{
        margin-left:auto;
      }
    }

    @media (max-width:768px){

      .header-inner{
        flex-direction:column;
        align-items:flex-start;
        gap:24px;
      }

      .main-nav{
        justify-content:flex-start;
        flex-wrap:wrap;
        gap:18px 24px;
      }

      .header-right{
        width:100%;
        flex-direction:column;
        align-items:flex-start;
        gap:20px;
      }

      .bid-button{
        width:100%;
      }

.logo img{
  width:auto;
  height:100px;
}
    }
    
    
/* =========================
   SERVICES
========================== */

.services{
  background:#f5f5f5;
  padding:38px 0 38px;
}

.services-inner{
  max-width:1400px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px;
}

.service-card{
  background:#fff;
  border:2px solid #e8e8e8;
  text-align:center;
padding:28px 20px 24px;
}

.service-icon{
  height:120px;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  border:0;
  color:#d62828;
}

.service-icon svg,
.service-icon img{
  width:auto;
    color: #d62828;
}

.service-card h3{
  min-height:44px;
  margin-top:18px;
}

.service-card h3{
  font-family:"Arial Narrow", Arial, sans-serif;
  font-size:20px;
  line-height:1.1;
  font-weight:700;
  text-transform:uppercase;
  margin-bottom:8px;
  margin-top:18px;
  color:#111;
  white-space:nowrap;
}

.service-card p{
  font-size:18px;
  line-height:1.35;
  color:#555;
   margin-bottom:18px;
}

/* RESPONSIVE */

@media (max-width:1100px){

  .services-inner{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:768px){

  .services-inner{
    grid-template-columns:1fr;
  }
}

/* =========================
   MOTION STRIP
========================== */

.motion-strip{
  min-height:190px;
  background:
    linear-gradient(rgba(0,0,0,.56), rgba(0,0,0,.56)),
    url("images/ductwork.jpg");

  background-size:cover;
  background-position:center 60%;
  display:flex;
  align-items:center;
  border-top:1px solid #ffffff;
}

.motion-strip-inner{
  width:100%;
  max-width:1400px;
  margin:0 auto;
  padding:0 40px;
  text-align:center;
}

.motion-strip h2{
  font-family:"Arial Narrow", Arial, sans-serif;
  font-size:38px;
  line-height:1.15;
  font-weight:700;
  font-style:italic;
  text-transform:uppercase;
  letter-spacing:1px;
  color:#fff;
}

.motion-strip-line{
  width:74px;
  height:4px;
  background:#d62828;
  margin:18px auto 0;
}

@media (max-width:768px){

  .motion-strip{
    min-height:140px;
  }

  .motion-strip h2{
    font-size:28px;
  }
}

/* =========================
   WHY MOTION MECHANICAL
========================== */

.why-motion{
  position:relative;
  background:
    linear-gradient(
      90deg,
      rgba(2,16,34,.95) 0%,
      rgba(5,35,70,.90) 45%,
      rgba(2,16,34,.95) 100%
    ),
    url("images/ductwork-2.jpg");

  background-size:cover;
  background-position:center;
  padding:30px 0 10px;
  overflow:hidden;
}

.why-inner{
  position:relative;
  z-index:2;
  max-width:1400px;
  margin:0 auto;
  padding:0 40px;
}

.why-heading{
  text-align:center;
  margin-bottom:35px;
}

.why-heading h2{
  font-family:"Arial Narrow", Arial, sans-serif;
  font-size:38px;
  font-weight:700;
  text-transform:uppercase;
  color:#fff;
  line-height:1.15;
  letter-spacing:1px;
}

.why-line{
  width:72px;
  height:4px;
  background:#d62828;
  margin:16px auto 0;
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:28px;
}

.why-item{
  text-align:center;
  color:#fff;
}

.why-icon{
    height:95px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:30px;
}

.why-icon img{
    height:95px;
    width:auto;
}

.why-icon svg{
height:95px;
  width:auto;
}

.why-item h3{
  font-family:"Arial Narrow", Arial, sans-serif;
  font-size:22px;
  font-weight:700;
  text-transform:uppercase;
  line-height:1.05;
  margin-bottom:16px;
}

.why-item p{
  font-size:17px;
  line-height:1.45;
  color:rgba(255,255,255,.92);
  max-width:240px;
  margin:0 auto;
}

@media (max-width:1200px){
  .why-grid{
    grid-template-columns:repeat(3,1fr);
    row-gap:50px;
  }
}

@media (max-width:768px){
  .why-grid{
    grid-template-columns:1fr;
  }

  .why-heading h2{
    font-size:40px;
  }
}


.project-contact-strip{
  background:#ffffff;
  padding:70px 40px;
}

.project-contact-inner{
  max-width:1400px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.2fr 1.2fr .9fr;
  gap:60px;
  align-items:center;
}

.project-contact-left h2{
  font-family:"Arial Narrow", Arial, sans-serif;
  font-size:40px;
  line-height:1.35;
  font-weight:600;
  color:#0f1b2a;
  margin:0 0 28px;
  text-transform:uppercase;
  letter-spacing:.5px;
}

.project-contact-left p{
  font-size:18px;
  line-height:1.15;
  color:#3d4650;
  margin:0;
  max-width:520px;
}

.project-contact-center{
  display:flex;
  flex-direction:column;
  gap:30px;
}

.project-contact-item{
  display:flex;
  align-items:center;
  gap:24px;
  font-size:30px;
  color:#1b2430;
}

.project-contact-icon svg{
  width:38px;
  height:38px;
  color:#d62828;
}

.project-contact-cta{
  display:flex;
  justify-content:flex-end;
}

.project-service-area{
  background:#f8f8f8;
  border:1px solid #ececec;
  padding:36px;
  width:100%;
  max-width:360px;
}

.project-service-top{
  display:flex;
  align-items:flex-start;
  gap:18px;
  margin-bottom:30px;
}

.project-service-icon{
  font-size:42px;
  color:#d62828;
  line-height:1;
}

.project-service-area h3{
  margin:0 0 8px;
  font-size:24px;
  font-weight:700;
  color:#111827;
  letter-spacing:.5px;
}

.project-service-area p{
  margin:0;
  font-size:18px;
  line-height:1.5;
  color:#4b5563;
}

.project-contact-btn{
  display:block;
  background:#d62828;
  color:#ffffff;
  text-align:center;
  text-decoration:none;
  padding:18px 24px;
  font-size:18px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.5px;
  transition:.2s ease;
}

.project-contact-btn:hover{
  background:#b61f1f;
}


/* =========================
   FOOTER
========================== */
.footer-logo img{
  width:170px;
  height:auto;
}

.site-footer{
  background:#000000;
  color:#fff;
  padding:28px 0;
}

.footer-inner{
  max-width:1400px;
  margin:0 auto;
  padding:0 40px;

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}


.footer-copy{
  font-size:14px;
  color:rgba(255,255,255,.85);
  text-align:center;
}

.footer-nav{
  display:flex;
  align-items:center;
  gap:44px;
}

.footer-nav a{
  font-size:14px;
  font-weight:700;
  text-transform:uppercase;
  color:#fff;
}

.footer-nav a:hover{
  color:#d62828;
}




/* =========================
   MOBILE VERSION
========================== */
@media (max-width:768px){

  body{
    overflow-x:hidden;
  }

  .header-inner{
    height:auto;
    padding:18px 20px;
    flex-direction:column;
    align-items:center;
    gap:18px;
  }

  .logo img{
    width:220px;
    height:auto;
  }

  .main-nav{
    display:none;
  }

  .header-right{
    width:100%;
    flex-direction:column;
    align-items:center;
    gap:16px;
    margin:0;
  }

  .contact-info{
    align-items:center;
    text-align:center;
  }

  .contact-item{
    justify-content:center;
  }

  .bid-button{
    width:100%;
    max-width:260px;
  }

  .hero{
    min-height:auto;
    background-position:center;
  }

  .hero-inner{
    min-height:auto;
    padding:80px 22px;
  }

  .hero-content{
    padding-left:0;
    max-width:100%;
  }

  .hero-title{
    font-size:40px;
    line-height:1.05;
    letter-spacing:1px;
  }

  .hero-text{
    font-size:18px;
    line-height:1.45;
  }

  .hero-actions{
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
  }

  .hero-btn{
    width:100%;
    max-width:260px;
  }

  .services{
    padding:34px 20px;
  }

  .services-inner{
    grid-template-columns:1fr;
    gap:22px;
  }

  .service-card{
    padding:30px 20px 26px;
  }

  .service-card h3{
    white-space:normal;
    min-height:auto;
  }

  .why-motion{
    padding:42px 0 34px;
  }

  .why-inner{
    padding:0 22px;
  }

  .why-heading h2{
    font-size:34px;
  }

  .why-grid{
    grid-template-columns:1fr;
    gap:38px;
  }

  .motion-strip{
    min-height:160px;
  }

  .motion-strip-inner{
    padding:0 22px;
  }

  .motion-strip h2{
    font-size:30px;
  }

  .project-contact-strip{
    padding:50px 22px;
  }

  .project-contact-inner{
    grid-template-columns:1fr;
    gap:36px;
    text-align:center;
  }

  .project-contact-left h2{
    font-size:34px;
  }

  .project-contact-left p{
    margin:0 auto;
  }

  .project-contact-center{
    gap:22px;
  }

  .project-contact-item{
    justify-content:center;
    gap:18px;
    font-size:20px;
    flex-wrap:wrap;
  }

  .project-contact-icon svg{
    width:30px;
    height:30px;
  }

  .project-contact-cta{
    justify-content:center;
  }

  .project-service-area{
    max-width:100%;
  }

  .footer-inner{
    flex-direction:column;
    text-align:center;
  }

  .footer-nav{
    flex-wrap:wrap;
    justify-content:center;
    gap:22px;
  }
}

/* =========================
   CAPABILITIES PAGE HERO
========================== */

.capabilities-hero{
  background:
    linear-gradient(
      90deg,
      rgba(2,16,34,.96) 0%,
      rgba(2,16,34,.88) 45%,
      rgba(2,16,34,.72) 100%
    ),
    url("images/hero2.jpg");
  background-size:cover;
  background-position:center;
  padding:95px 40px;
}

.capabilities-hero-inner{
  max-width:1400px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:70px;
  align-items:center;
}

.capabilities-label{
  display:inline-block;
  color:#d62828;
  font-size:18px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1px;
  margin-bottom:20px;
}

.capabilities-hero h1{
  font-family:"Impact","Arial Narrow", Arial, sans-serif;
  font-size:56px;
  line-height:1.1;
  font-weight:500;
  text-transform:uppercase;
  letter-spacing:2px;
  color:#ffffff;
  margin-bottom:28px;
  transform:scaleY(1.08);
  transform-origin:left top;
}

.capabilities-hero-content p{
  max-width:650px;
  font-size:20px;
  line-height:1.55;
  color:#ffffff;
}

.capabilities-box{
  background:#ffffff;
  padding:42px 42px 38px;
  border-left:6px solid #d62828;
}

.capabilities-box h2{
  font-family:"Arial Narrow", Arial, sans-serif;
  font-size:32px;
  text-transform:uppercase;
  color:#111;
  margin-bottom:24px;
}

.capabilities-box ul{
  list-style:none;
  padding:0;
  margin:0;
}

.capabilities-box li{
  font-size:18px;
  line-height:1.35;
  color:#222;
  padding:14px 0;
  border-bottom:1px solid #e5e5e5;
}

.capabilities-box li:before{
  content:"";
  position:absolute;
  left:0;
  top:9px;
  width:9px;
  height:9px;
  background:#d62828;
},

.capabilities-box li:last-child{
  border-bottom:0;
}

@media (max-width:900px){

  .capabilities-hero{
    padding:75px 22px;
  }

  .capabilities-hero-inner{
    grid-template-columns:1fr;
    gap:40px;
  }

  .capabilities-hero h1{
    font-size:40px;
  }

  .capabilities-hero-content p{
    font-size:18px;
  }

  .capabilities-box{
    padding:32px 26px;
  }
}

/* =========================
   MISSION PAGE HERO
========================== */

.mission-hero{
  background:
    linear-gradient(
      90deg,
      rgba(2,16,34,.96) 0%,
      rgba(2,16,34,.88) 45%,
      rgba(2,16,34,.72) 100%
    ),
    url("images/ductwork-2.jpg");
  background-size:cover;
  background-position:center;
  padding:100px 40px;
}

.mission-hero-inner{
  max-width:1400px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:70px;
  align-items:center;
}

.mission-label{
  display:inline-block;
  color:#d62828;
  font-size:18px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1px;
  margin-bottom:20px;
}

.mission-hero h1{
  font-family:"Impact","Arial Narrow", Arial, sans-serif;
  font-size:56px;
  line-height:1.1;
  font-weight:500;
  text-transform:uppercase;
  letter-spacing:2px;
  color:#ffffff;
  margin-bottom:28px;
  transform:scaleY(1.08);
  transform-origin:left top;
}

.mission-hero-content p{
  max-width:680px;
  font-size:20px;
  line-height:1.55;
  color:#ffffff;
}

.mission-box{
  background:#ffffff;
  padding:44px 42px;
  border-left:6px solid #d62828;
}

.mission-box h2{
  font-family:"Arial Narrow", Arial, sans-serif;
  font-size:32px;
  text-transform:uppercase;
  color:#111;
  margin-bottom:22px;
}

.mission-box p{
  font-size:19px;
  line-height:1.55;
  color:#333;
}

@media (max-width:900px){

  .mission-hero{
    padding:75px 22px;
  }

  .mission-hero-inner{
    grid-template-columns:1fr;
    gap:40px;
  }

  .mission-hero h1{
    font-size:40px;
  }

  .mission-hero-content p,
  .mission-box p{
    font-size:18px;
  }

  .mission-box{
    padding:32px 26px;
  }
}

/* =========================
   SAFETY PAGE HERO
========================== */

.safety-hero{
  background:
    linear-gradient(
      90deg,
      rgba(2,16,34,.96) 0%,
      rgba(2,16,34,.88) 45%,
      rgba(2,16,34,.72) 100%
    ),
    url("images/hero2.jpg");
  background-size:cover;
  background-position:center;
  padding:100px 40px;
}

.safety-hero-inner{
  max-width:1400px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:70px;
  align-items:center;
}

.safety-label{
  display:inline-block;
  color:#d62828;
  font-size:18px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:1px;
  margin-bottom:20px;
}

.safety-hero h1{
  font-family:"Impact","Arial Narrow", Arial, sans-serif;
  font-size:56px;
  line-height:1.1;
  font-weight:500;
  text-transform:uppercase;
  letter-spacing:2px;
  color:#ffffff;
  margin-bottom:28px;
  transform:scaleY(1.08);
  transform-origin:left top;
}

.safety-hero-content p{
  max-width:680px;
  font-size:20px;
  line-height:1.55;
  color:#ffffff;
}

.safety-box{
  background:#ffffff;
  padding:42px 42px 38px;
  border-left:6px solid #d62828;
}

.safety-box h2{
  font-family:"Arial Narrow", Arial, sans-serif;
  font-size:32px;
  text-transform:uppercase;
  color:#111;
  margin-bottom:24px;
}

.safety-box ul{
  list-style:none;
  padding:0;
  margin:0;
}

.safety-box li{
  font-size:19px;
  line-height:1.35;
  color:#222;
  padding:14px 0;
  border-bottom:1px solid #e5e5e5;
}

.safety-box li:last-child{
  border-bottom:0;
}

@media (max-width:900px){

  .safety-hero{
    padding:75px 22px;
  }

  .safety-hero-inner{
    grid-template-columns:1fr;
    gap:40px;
  }

  .safety-hero h1{
    font-size:40px;
  }

  .safety-hero-content p{
    font-size:18px;
  }

  .safety-box{
    padding:32px 26px;
  }
}2


/*=========================
REQUEST A BID PAGE
=========================*/

.bid-page{
    background:#f5f5f5;
    padding:90px 40px;
}

.bid-inner{
    max-width:1400px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1fr 620px;
    gap:70px;
    align-items:start;
    padding:40px 40px;
}

.bid-label{
    display:inline-block;
    color:#d62828;
    font-size:18px;
    font-weight:700;
    text-transform:uppercase;
    margin-bottom:18px;
}

.bid-intro h1{
    font-family:"Impact","Arial Narrow",Arial,sans-serif;
    font-size:56px;
    line-height:1.08;
    letter-spacing:2px;
    font-weight:500;
    color:#111;
    margin-bottom:28px;
    transform:scaleY(1.08);
    transform-origin:left top;
}

.bid-intro p{
    font-size:20px;
    line-height:1.6;
    color:#555;
    max-width:650px;
    margin-bottom:45px;
}

.bid-info{
    display:flex;
    flex-direction:column;
    gap:24px;
}

.bid-info-item strong{
    display:block;
    text-transform:uppercase;
    color:#d62828;
    margin-bottom:6px;
}

.bid-info-item span{
    font-size:20px;
    color:#222;
}

.bid-form-card{
    background:#fff;
    border:2px solid #e8e8e8;
    padding:42px;
}

.form-row{
    margin-bottom:18px;
}

.form-row.two-col{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.bid-form-card input,
.bid-form-card select,
.bid-form-card textarea{
    width:100%;
    padding:16px 18px;
    border:1px solid #d9d9d9;
    font-size:17px;
    font-family:Arial,Helvetica,sans-serif;
}

.bid-form-card textarea{
    resize:vertical;
}

.submit-btn{
    width:100%;
    height:56px;
    border:0;
    background:#d62828;
    color:#fff;
    font-size:16px;
    font-weight:700;
    text-transform:uppercase;
    cursor:pointer;
}

.submit-btn:hover{
    background:#b91f1f;
}

@media(max-width:900px){

    .bid-page{
        padding:60px 22px;
    }

    .bid-inner{
        grid-template-columns:1fr;
    }

    .bid-intro h1{
        font-size:40px;
    }

    .form-row.two-col{
        grid-template-columns:1fr;
    }

.bid-section-close{
  width:100%;
  height:6px;
  background:#d62828;
}