.top_level_container {
    width: 1300px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

@media (max-width: 1360px) {
    .top_level_container {
        width: 95%;
        padding-right: 15px;
    }
}

@media (max-width: 1030px) {
  .top_level_container {
      box-sizing: border-box; /* Include padding and border in the element's width */
      width: calc(100% - 10px); /* Subtract padding from the total width */
      padding-right: 10px;
  }
}

.page_header {
    display: flex;
    flex-direction: row;
}

.header_content {
    width: 100%;
    position: relative;
    z-index: 3; /* Ensure content is above the image */
    margin-right: -300px; /* Adjust overlap amount */
}

.header_headline {
    font-size: 40px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.tube_laser_image {
    max-width: 1000px;
    max-height: 500px;
    overflow: hidden;
    display: block;
    position: relative;
    object-fit: cover;
    transform: scaleX(-1);
    z-index: 1; /* Ensure image is below the content */
}

@media (max-width: 1030px) {
  .header-img {
    height: 100%;
    max-height: 2000px;
    width: auto;
    object-fit: cover;
    overflow: hidden;
    clip-path: inset(0 0 0 0);
  }

  .tube_laser_image {
    max-height: 4000px;
    max-width: 1000px;
  }

  .img-gradient {
    width: 100% !important;
    background: linear-gradient(270deg, rgb(255, 255, 255, 0.70) 0%, rgb(255, 255, 255) 100%) !important;

  }

  .header_content {
    width: 90%;
    position:absolute;
  }
}

@media (max-width: 439px) {
  .tube_laser_image {
    max-height: 4000px;
    max-width: 1200px;
  }
}

.img-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 100%;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0.0) 0%, rgb(255, 255, 255) 100%);
    z-index: 2; /* Ensure gradient is above both content and image */
}

.header-img {
    margin: -15px;
    overflow: hidden;
    height: auto;
    position: relative;
    display: inline-block;
}

.header_subheading {
    font-size: 20px;
    color: #555;
    margin-bottom: 20px;
}
.header_bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 600px;
}

.header_bullets li {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    border: 1px solid #ccc; /* Add border around each point */
    padding: 10px; /* Add padding inside the border */
    background-color: #f9f9f9; /* Optional: light background color */
}

.header_bullets li strong {
    font-size: 20px; /* Make the main point larger */
    margin-bottom: 5px; /* Add space below the main point */
}

.header_bullets li p {
    font-size: 16px; /* Style the subheading */
    color: #555; /* Slightly lighter color for subheading */
    margin: 0; /* Remove default margin */
}

.header_bullets li::before {
    content: '✔';
    color: green;
    font-size: 30px;
    margin-right: 10px;
    align-self: flex-start; /* Align the checkmark with the main point */
}

.upper_CTAs,
.lower_CTAs {
    text-align: center;
}

#cta-back-btn {
  position: relative;
  margin-bottom: -50px;
  width: 100px;
  margin-top: 15px;
  padding: 0px;
  background-color: transparent;
  font-size: 18px;
  font-weight: bold;
  color: #999;
  opacity: 0;
}

.cta_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta_headline {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.cta_buttons,
.quote_choice_buttons {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

@media (max-width: 1030px) {
    .cta_buttons,
    .quote_choice_buttons {
        flex-direction: column;
        gap: 1rem;
    }
    .vertical_line_upper_cta,
    .vertical_line_upper_quote_choices {
      display: none;
    }
    .cta_button,
    .quote_option  {
        width: 100% !important;
    }
    #cta-back-btn {
      position: relative !important;
      margin-bottom: 0px;
    }

    .contact {
      flex-direction: column;
    }

    .contact-method {
      margin-bottom: 20px;
      max-width: 1000px !important; 
      width: calc(100% - 45px); /* Adjust width to fit within the container */
      border: 2px solid #ccc; /* Add a border */
      box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Add a shadow */
    }

    .contact-method-description {
      height: auto;
    }
}

.cta_button,
.quote_option {
    width: 
    500px;
    margin: auto;
}

.learn_more_button,
.online_quote_button {
    margin-top:-10px;
    color:black;
    background-color:#ffffff;
    border: 3px solid #2b4a94;
    padding: 7px;
    margin-bottom: -10px;
}


.learn_more_button:hover,
.online_quote_button:hover {
    background-color: #2b4a94; /* Change background color on hover */
    color: #ffffff; /* Change text color on hover */
    cursor: pointer; /* Show pointer cursor on hover */
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease; /* Smooth transition */
}

.vertical_line_upper_quote_choices,
.vertical_line_upper_cta,
.vertical_line_lower_quote_choices,
.vertical_line_lower_cta {
  width: 2px;
  height: 150px;
  background-color: #333;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.vertical_line_upper_quote_choices.left,
.vertical_line_upper_cta.left,
.vertical_line_lower_quote_choices.left,
.vertical_line_lower_cta.left {
  transform: translateX(-650px);
  opacity: 0.0;
}

.vertical_line_upper_quote_choices.right,
.vertical_line_upper_cta.right,
.vertical_line_lower_quote_choices.right,
.vertical_line_lower_cta.right {
  transform: translateX(650px);
  opacity: 0.0;
}

.quote_options {
    display: none;
    text-align: center;
    justify-content: center;
}

.quote_options.hidden {
    display: none;
}


.contact {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    margin-top: 40px;
    padding: 20px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
}

.contact-method {
    flex: 1;
    text-align: center;
    padding: 20px;
    max-width: 300px;
}

.contact-method .contact_content h2 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.contact-method .contact_content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.contact-method-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background-color: #375db8;
  border: none;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-method .quote-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background-color: #375db8;
    border: none;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-method .quote-button:hover {
    background-color: #2b4a94;
    cursor: pointer;
}

.contact-method-description {
    height: 50px;
}

.contact-method .upload-icon {
    margin-right: 10px;
    display: inline-flex;
    align-items: center;
}

.contact-method .upload-icon svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
}

.add-more-parts {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    margin-top: 40px;
    justify-self: center;
    margin: auto;
}

.add-more-parts .content h2 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.add-more-parts .content p.file-types {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.quote-button {
    background-color: #375db8;
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 15px 25px;
    border: none;
      cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background-color 0.3s ease;
    text-decoration: none;
    text-decoration: none;
}
.quote-button:hover {
  background-color: #2b4a94;
}

.add-more-parts .upload-icon {
    margin-right: 10px;
    display: inline-flex;
    align-items: center;
}

.add-more-parts .upload-icon svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
}

.add-more-parts .show-video-btn {
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.add-more-parts .show-video-btn:hover {
    background-color: #375db8;
}

.add-more-parts #file-list {
    margin-top: 20px;
    font-size: 14px;
    color: #333;
}

.add-more-parts #add-parts-button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background-color: #375db8;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.add-more-parts #add-parts-button:hover {
    background-color: #2b4a94;
}

.add-more-parts .status-message-container {
    margin-top: 10px;
    font-size: 14px;
    color: #333;
}

.part-top {
    text-align:left
  }
  
  .loading-and-status {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: none; /* Initially hidden */
  }
  
  .status-message-container {
    padding:10px;
    padding-left: 20px;
    padding-right: 20px;
    border: 1px solid #d7d7d7;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    background-color: #ffffff;
    color: #000000;
    font-size: 1.2em;
  }
  
  #status {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 10px; 
    margin-top: 10px; 
    animation: growShrink .2s ease-in-out;
  }
  @keyframes growShrink {
    0% {
        transform: scale(.8); /* Start small */
        opacity: 0; /* Fully transparent */
    }
    70% {
        transform: scale(1.02); /* Grow larger */
        opacity: 1; /* Fully visible */
    }
    100% {
        transform: scale(1); /* Settle to normal size */
        opacity: 1; /* Still visible */
    }
  }

  .part-details-row {
    display: flex;
    flex-direction: column;
    gap: 10px;  /* Adjust the spacing between elements */
    align-items: flex-star;
    padding:10px;
    border: 1px solid #d7d7d7;
    border-radius:0px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    margin-bottom:10px;
    margin-top:10px;
    width:300px;
  }
  
  .part-details-row > div {
    display: flex;
    flex-direction: row;
  }
  
  .part-details-row label {
    margin-bottom: 4px;  /* Space between label and input */
    margin: auto;
  }
  
  .part-details-row input,
  .part-details-row select {
    width: 100px; 
  }
  
  .show-details-button,
  .hide-details-button {
    margin-top:10px;
    height:40px;
    width: 325px;
    margin-bottom:10px;
    color:black;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    background-color:#ffffff;
    border: 1px solid #c9c9c9;
    padding: 7px;
  }
  
  .show-details-button:hover,
  .hide-details-button:hover {
    height:40px;
    width: 325px;
    background-color: #f5f5f5;
    color: black;
    padding: 10px;
  }
  
  .hide-details-button,
  .hide-details-button:hover {
    width:300px;
    margin-top:0px;
  }
  
  .part-details {
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: max-height 1s ease, opacity 0.5s ease;
  }
  
  .part-details.show {
      max-height: 260px;
      opacity: 1;
  }
  
  .hidden {
    display: none !important;  /* Ensure it overrides any other display settings */
  }
  
  .part-left {
    display:flex;
    justify-content:space-between;
    width:550px;
  }
  
  .see-more {
    height: 100px;
    color: #ffffff;
    text-align: center;
    opacity: .5;
  }
  .see-more.hidden-see-more {
    color: #ffffff;
    opacity: 0;
    transition: opacity .5s ease;
  }

  .feather-chevron-down {
    width: 20px;
    height: 20px;
    color: #ffffff;
    opacity: .5;
  }

.quote-details,
.jobs-list,
.add-more-parts {
  margin-bottom: 20px;
  padding: 15px;
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);

}

.part-item {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  border-bottom: 1px solid #ddd;
}

.part-item:last-child {
  border-bottom: none;
}

.part-file {
  font-weight: bold;
  font-size:1.3em;
}

.part-filename {
  max-width: 200px;
  display: inline-block;
  white-space: normal;
  word-wrap: break-word;
}


.part-material {
  border-color: transparent;
  background-color: transparent;
}

.part-qty,
.part-material,
.part-tolerance,
.part-tapped-holes,
.part-inspection{
  height: 25px;
}

.part-qty-box,
.part-material-box,
.part-tolerance-box,
.part-tapped-holes-box,
.part-inspection-box {
  width:50px;
  flex: 1;
  text-align: right;
  border-color: transparent;
  background-color: transparent;
}


.delete-part-button {
  width: 40px;
  height: 40px;
}

.part-bottom {
  display:flex;
  flex-direction: row;
  justify-items:center;
  position:relative;
  bottom: 10px;
  right: 10px;
}

button {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: #375db8;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 1em;
  margin-top: 20px;
}

button:hover {
  background-color: #2b4a94;
}

.add-more-parts {
  padding: 10px;
  padding-top: 0;
  padding: 10px;
  padding-top: 0;
  text-align: center;
  font-family: Arial, sans-serif;
  width: 650px;
  background-color: #f9f9f9;
}

.add-more-parts p {
    margin: 10px 0;
    color: #333;
    font-size: 16px;
}

#file-list {
  max-height: calc(100vh - 400px); 
  overflow:auto;
}
.file-types {
    color: #666;
    font-weight: bold;
    margin-bottom: 20px;
}


.logo img {
  max-height: 80px; /* Ensure the logo doesn't exceed the header height */
  margin-bottom: -14px;
}

/* General styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #000000;
}

.quote-details,
.jobs-list,
.add-more-parts {
  margin-bottom: 20px;
  padding: 15px;
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);

}

.part-item {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  border-bottom: 1px solid #ddd;
}

.part-item:last-child {
  border-bottom: none;
}

.part-file {
  font-weight: bold;
  font-size:1.3em;
}

.part-filename {
  max-width: 200px;
  display: inline-block;
  white-space: normal;
  word-wrap: break-word;
}


.part-material {
  border-color: transparent;
  background-color: transparent;
}

.part-qty,
.part-material,
.part-tolerance,
.part-tapped-holes,
.part-inspection{
  height: 25px;
}

.part-qty-box,
.part-material-box,
.part-tolerance-box,
.part-tapped-holes-box,
.part-inspection-box {
  width:50px;
  flex: 1;
  text-align: right;
  border-color: transparent;
  background-color: transparent;
}


.delete-part-button {
  width: 40px;
  height: 40px;
}

.part-bottom {
  display:flex;
  flex-direction: row;
  justify-items:center;
  position:relative;
  bottom: 10px;
  right: 10px;
}

button {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: #375db8;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 1em;
  margin-top: 20px;
}

button:hover {
  background-color: #2b4a94;
}

.add-more-parts {
  padding: 10px;
  padding-top: 0;
  padding: 10px;
  padding-top: 0;
  text-align: center;
  font-family: Arial, sans-serif;
  width: 650px;
  background-color: #f9f9f9;
}

.add-more-parts p {
    margin: 10px 0;
    color: #333;
    font-size: 16px;
}

#file-list {
  max-height: calc(100vh - 400px); 
  overflow:auto;
}
.file-types {
    color: #666;
    font-weight: bold;
    margin-bottom: 20px;
}

.quote-button {
    background-color: #375db8;
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 15px 25px;
    border: none;
      cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background-color 0.3s ease;
    text-decoration: none;
    text-decoration: none;
}
.quote-button:hover {
  background-color: #2b4a94;
}
.upload-icon {
    background-size: contain;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
}

.part-top {
  text-align:left
}

.loading-and-status {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: none; /* Initially hidden */
}

.status-message-container {
  padding:10px;
  padding-left: 20px;
  padding-right: 20px;
  border: 1px solid #d7d7d7;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  background-color: #ffffff;
  color: #000000;
  font-size: 1.2em;
}

#status {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 10px; 
  margin-top: 10px; 
  animation: growShrink .2s ease-in-out;
}
@keyframes growShrink {
  0% {
      transform: scale(.8); /* Start small */
      opacity: 0; /* Fully transparent */
  }
  70% {
      transform: scale(1.02); /* Grow larger */
      opacity: 1; /* Fully visible */
  }
  100% {
      transform: scale(1); /* Settle to normal size */
      opacity: 1; /* Still visible */
  }
}

.content {
  position: relative;
  width: 650px;
}

/* Container to hold the video and content */
.video-container {
  background-color: #000000;
    position: relative;
    height: max(100vh, 1100px); /* Full viewport height or 1000px, whichever is bigger */
    height: max(100vh, 1100px); /* Full viewport height or 1000px, whichever is bigger */
    margin-top: 80px;
    overflow: hidden;
    z-index: 0;
    margin-bottom: -125px;
}

/* Style for the background video */
#background-video {
  opacity: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 125%;
  height: 100%;
  object-fit: cover;
  transform: translate(-60%, -50%);
  z-index: -2; /* Ensure video is behind other content */
  overflow-x: hidden;
  overflow-x: hidden;
}

/* Gradient overlay to fade the bottom of the video to black */
.video-gradient {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 125%;
  height: 100%;
  object-fit: cover;
  transform: translate(-60%, -50%);
  background: linear-gradient(180deg, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, 1) 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, 1) 100%);
  z-index: -1; /* Ensure gradient is above the video */
}

/* Style for the content that appears in front of the video */
/* Style for the content that appears in front of the video */
.banner-span {
  display:flex;
  justify-content:space-between;
  padding:50px;
  padding-top: 20px;
}

.leadtime-container {
  margin-top: 25px;
  background-color: #ffffff; 
  border: 1px solid #ccc;
  padding: 15px;
  z-index: 1000;
  max-width: 340px;
  text-align: center;
  margin-bottom: 25px;
}

.orders-place-now-text {
  font-size: 30px;
  margin-bottom: 0px;
}

.leadtime {
  margin-top: 0px;
  font-size: 30px;
  font-weight: bold;
  padding-top: 20px;
}

.leadtime-container {
  margin-top: 25px;
  background-color: #ffffff; 
  border: 1px solid #ccc;
  padding: 15px;
  z-index: 1000;
  max-width: 340px;
  text-align: center;
  margin-bottom: 25px;
}

.leadtime {
  margin-top: 0px;
  font-size: 30px;
  font-weight: bold;
}

.modal {
  display: none; 
  position: fixed; 
  z-index: 1000; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow: hidden; 
  background-color: rgb(0,0,0); 
  background-color: rgba(0,0,0,0.4); 
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}


.modal-content {
  margin: 15% auto;
  padding: 30px;
  text-align: center;
  font-family: Arial, sans-serif;
  width: 400px;
  background-color: #ffffff;
  border: 1px solid #ccc;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
  
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"]{
  width: 100%;
  padding-block: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  }
  

#login-error{
  color: red; 
  margin-top: 10px;
}

.welcome-title {
  color: #ffffff;
  font-size: 140px;
  font-weight: bold;
  margin-bottom: 0px;
  margin-top: 0px;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 25px;
  margin: -25px;
  text-shadow: 0px 0px 25px rgba(0, 0, 0, 0.9);
}

.welcome-subtitle {
  color: #ffffff;
  font-size: 60px;
  margin-bottom: 0px;
  margin-top: 0px;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 25px;
  padding-top: 10px;
  margin: -25px;
  margin-top: -40px;
  text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.9);
}

@media (max-width: 2100px) {
  .welcome-title {
    font-size: 100px;
  }
  .welcome-subtitle {
    font-size: 35px;
  }
}

@media (max-width: 1700px) {
  .welcome-title {
    font-size: 85px;
  }
  .welcome-subtitle {
    font-size: 40px;
  }
}

@media (max-width: 1500px) {
  .welcome-title {
    font-size: 65px;
  }
  .welcome-subtitle {
    font-size: 30px;
  }
}

@media (max-width: 1350px) {
  .welcome-title {
    font-size: 80px;
    text-align: center;
  }
  .welcome-subtitle {
    font-size: 35px;
    margin-bottom: 25px;
    text-align: center;
  }
  .banner-span {
    flex-direction: column;
    align-items: center;
    padding:50px;
    padding-top: 25px;
  }

  .leadtime-container {
    max-width: 2000px;
    width: 640px;
    justify-self: center;
  }

  .leadtime-container {
    max-width: 2000px;
    width: 640px;
    justify-self: center;
  }
}

@media (max-width: 670px) {
  .welcome-title {
    font-size: 50px;
    text-align: center;
  }
  .welcome-subtitle {
    font-size: 25px;
    margin-bottom: 25px;
    text-align: center;
  }
  .banner-span {
    flex-direction: column;
    align-items: center;
    padding:50px;
    padding-top: 25px;
  }
}

@media (max-width: 800px) {
  .add-more-parts {
    width: 400px;
  }
  .leadtime-container {
    width: 398px;
  }
  .leadtime-container {
    width: 398px;
  }
  .content {
    width: 400px;
  }
}

@media (max-width: 500px) {
  .welcome-title {
    font-size: 34px;
    font-size: 34px;
    text-align: center;
  }
  .welcome-subtitle {
    font-size: 15px;
    margin-top: -35px;
    text-align: center;
  }
  .banner-span {
    flex-direction: column;
    align-items: center;
    padding:50px;
    padding-top: 25px;
  }
  .add-more-parts {
    width: 250px;
  }
  .leadtime-container {
    width: 248px;
    width: 250px;
  }
  .leadtime-container {
    width: 248px;
  }
  .content {
    width: 250px;
  }
  
}

.part-details-row {
  display: flex;
  flex-direction: column;
  gap: 10px;  /* Adjust the spacing between elements */
  align-items: flex-star;
  padding:10px;
  border: 1px solid #d7d7d7;
  border-radius:0px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  margin-bottom:10px;
  margin-top:10px;
  width:300px;
}

.part-details-row > div {
  display: flex;
  flex-direction: row;
}

.part-details-row label {
  margin-bottom: 4px;  /* Space between label and input */
  margin: auto;
}

.part-details-row input,
.part-details-row select {
  width: 100px; 
}

.show-details-button,
.hide-details-button {
  margin-top:10px;
  height:40px;
  width: 325px;
  margin-bottom:10px;
  color:black;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  background-color:#ffffff;
  border: 1px solid #c9c9c9;
  padding: 7px;
}

.show-details-button:hover,
.hide-details-button:hover {
  height:40px;
  width: 325px;
  background-color: #f5f5f5;
  color: black;
  padding: 10px;
}

.hide-details-button,
.hide-details-button:hover {
  width:300px;
  margin-top:0px;
}

.part-details {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 1s ease, opacity 0.5s ease;
}

.part-details.show {
    max-height: 260px;
    opacity: 1;
}

.hidden {
  display: none !important;  /* Ensure it overrides any other display settings */
}

.part-left {
  display:flex;
  justify-content:space-between;
  width:550px;
}

.see-more {
  height: 100px;
  color: #ffffff;
  text-align: center;
  opacity: .5;
}
.see-more.hidden-see-more {
  color: #ffffff;
  opacity: 0;
  transition: opacity .5s ease;
}

.feather-chevron-down {
  width: 20px;
  height: 20px;
  color: #ffffff;
  opacity: .5;
}

.capabilities-container,
.materials-container, 
.profiles-container {
  display: flex;
  flex-direction: column;
  justify-self: center;
  text-align: center;
  padding: 25px;
  padding-top: 5px;
  margin-bottom: 25px;
  margin-top: 25px;
  background-color: #f4f4f4;
  z-index: 1000;
}

.capabilities-list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap; /* Allow items to wrap to the next line */
  gap: 20px; /* Space between items */
}

.capability-item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  margin: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  background-color:#ffffff;
  border: 1px solid #c9c9c9;
  padding: 0; 
}

.capability-details {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: flex-start;
}

.capability-detail {
  display: flex;
  flex-direction: Row;
  margin-top: 10px;
}

.capability-img {
  max-width: 1000px;
  max-height: 600px;
  width: 50%;
  height: auto;
  overflow: hidden;
  display: block;
  position: relative;
  object-fit: cover;
}

.capability-img-upper {
  display:none;
}

.capability-icon {
margin-right: 25px;
}

.icon {
  background-color: #000000; /* Bright color for completed steps */
  width: 50px;
  height: 50px;
  padding:5px;
  border-radius:0px;
  border: 1px solid #ffffff;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.3);
}

.feather-capability {
  width: 50px;
  height: 50px;
  color: #ffffff; /* Change icon color to white */
}

.capability-detail-text {
  font-size: 22px;
  color: #333;
}

@media (max-width: 830px) {
  .capabilities-list {
    flex-direction: column; /* Stack items vertically */
  }
  .capability-item {
    flex-direction: column;
    width: 100%; /* Full width for smaller screens */
    margin: 10px 0; /* Adjust margin for better spacing */
  }
  .capability-img-upper {
    max-height: 600px;
    width: 100%;
    height: auto;
    overflow: hidden;
    display: block;
    position: relative;
    object-fit: cover;
  }

  .capability-img-lower {
    display: none;
  }
}

.materials-list,
.profiles-list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap; /* Allow items to wrap to the next line */
}

.material-item,
.profile-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: calc(33.33% - 45px); /* Adjust width to fit three items per row with gap */
  margin: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  background-color:#ffffff;
  border: 1px solid #c9c9c9;
  padding: 0; 
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.material-item:not(.comming-soon):hover,
.profile-item:hover {
  background-color: #e0e0e0;
  color: #000000;
  transform: scale(1.02);
}

.comming-soon {
  background-color: #ffffff; /* Lighter color for "Coming Soon" items */
  color: #999999; /* Grey text for "Coming Soon" items */
}

.coming-soon-container {
  position: relative;
  display: inline-block;
  width: 100%; /* or a fixed width */
}

.material-img,
.material-coming-soon-img {
  width: 100%; /* Makes image responsive */
  height: auto;
  display: block;
}

.coming-soon-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;  /* vertical center */
  justify-content: center;  /* horizontal center */
  background-color: rgba(255, 255, 255, 0.6); /* optional dark overlay */
}

.coming-soon-text {
  color: white;
  font-size: 36px;
  font-weight: bold;
}


.material-img,
.profile-img {
  height: auto;
  overflow: hidden;
  display: block;
  object-fit: cover;
}

.material-details,
.profile-details {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: center;
}

.material-detail,
.profile-detail {
  background-color: #000000;
  color: #ffffff;
  padding: 10px 15px;
  margin: 10;
  margin-top: 10px;
  border: 1px solid #ccc;
  border-radius: 0px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  max-width: 300px;
  width: calc(100% - 40px); /* Adjust width to fit within the container */
}

.grades {
  font-family: Arial, sans-serif;
  font-size: 16px;
  color: #ffffff;
}

.grades ul {
  list-style-type: none;
  padding: 0;
  margin: 10px 0;
}

.material-grade {
  background-color: #141414;
  padding: 10px 15px;
  margin: 5px 0;
  border: 1px solid #ccc;
  border-radius: 0px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.material-grade:hover {
  background-color: #e0e0e0;
  color: #000000;
  transform: scale(1.02);
}

.material-max-thickness {
  font-weight: bold;
}

.profile-instantly-quotable-container {
  align-items: center;
  margin-top: 0px;
  width: 100%;
  background-color: #000000;
  margin-top: -41px;
}

.profile-instantly-quotable {
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  margin-top: 10px;
  margin-bottom: 10px;
}

.profile-detail {
  font-size: 16px;
}

@media (max-width: 1000px) {
  .materials-list,
  .profiles-list {
    flex-direction: column; /* Stack items vertically */
  }
  .material-item,
  .profile-item {
    flex-direction: row;
    width: 100%; /* Full width for smaller screens */
    margin: 10px 0; /* Adjust margin for better spacing */
  }
  .material-img,
  .profile-img {
    max-width: 500px;
    max-height: 600px;
    width: 50%;
    height: auto;
    overflow: hidden;
    display: block;
    position: relative;
    object-fit: cover;

  }
  .coming-soon-container {
    width: 50%;
  }
  .material-coming-soon-img {
    height: 100%;
    width: 100%;
    overflow: hidden;
    display: block;
    position: relative;
    object-fit: cover;
  }
}

@media (max-width: 600px) {
  .profile-item {
    width: 100%;
  }
}

@media (max-width: 650px) {
  .material-item,
  .profile-item {
    flex-direction: column;
    width: 100%; /* Full width for smaller screens */
    margin: 10px 0; /* Adjust margin for better spacing */
  }
  .material-img,
  .profile-img {
    max-width: 500px;
    max-height: 600px;
    width: 100%;
    height: auto;
    overflow: hidden;
    display: block;
    position: relative;
    object-fit: cover;

  }
  .coming-soon-container {
    width: 100%;
  }
  .material-coming-soon-img {
    height: 100%;
    width: 100%;
    overflow: hidden;
    display: block;
    position: relative;
    object-fit: cover;
  }
}

@media (max-width: 600px) {
  .profile-item {
    width: 100%;
  }
}

.demo-video-container {
  display: flex;
  flex-direction: column;
  justify-self: center;
  text-align: center;
  width: 80%;
  padding: 25px;
  margin-bottom: 25px;
  margin-top: 25px;
  background-color: #f4f4f4;
  z-index: 1000;
  aspect-ratio: 16 / 9; /* Matches the aspect ratio of the video */
  height: auto; /* Ensures the height adjusts automatically based on the width */
}

.demo-video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.capability-detail {
  display: flex;
  flex-direction: Row;
  margin-top: 10px;
}

.capability-img {
  max-width: 1000px;
  max-height: 600px;
  width: 50%;
  height: auto;
  overflow: hidden;
  display: block;
  position: relative;
  object-fit: cover;
}

.capability-img-upper {
  display:none;
}

.capability-icon {
margin-right: 25px;
}

.icon {
  background-color: #000000; /* Bright color for completed steps */
  width: 50px;
  height: 50px;
  padding:5px;
  border-radius:0px;
  border: 1px solid #ffffff;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.3);
}

.feather-capability {
  width: 50px;
  height: 50px;
  color: #ffffff; /* Change icon color to white */
}

.capability-detail-text {
  font-size: 22px;
  color: #333;
}

@media (max-width: 830px) {
  .capabilities-list {
    flex-direction: column; /* Stack items vertically */
  }
  .capability-item {
    flex-direction: column;
    width: 100%; /* Full width for smaller screens */
    margin: 10px 0; /* Adjust margin for better spacing */
  }
  .capability-img-upper {
    max-height: 600px;
    width: 100%;
    height: auto;
    overflow: hidden;
    display: block;
    position: relative;
    object-fit: cover;
  }

  .capability-img-lower {
    display: none;
  }
}

.materials-list,
.profiles-list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap; /* Allow items to wrap to the next line */
}

.material-item,
.profile-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: calc(33.33% - 45px); /* Adjust width to fit three items per row with gap */
  margin: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  background-color:#ffffff;
  border: 1px solid #c9c9c9;
  padding: 0; 
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.material-item:not(.comming-soon):hover,
.profile-item:hover {
  background-color: #e0e0e0;
  color: #000000;
  transform: scale(1.02);
}

.comming-soon {
  background-color: #ffffff; /* Lighter color for "Coming Soon" items */
  color: #999999; /* Grey text for "Coming Soon" items */
}

.coming-soon-container {
  position: relative;
  display: inline-block;
  width: 100%; /* or a fixed width */
}

.material-img,
.material-coming-soon-img {
  width: 100%; /* Makes image responsive */
  height: auto;
  display: block;
}

.coming-soon-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;  /* vertical center */
  justify-content: center;  /* horizontal center */
  background-color: rgba(255, 255, 255, 0.6); /* optional dark overlay */
}

.coming-soon-text {
  color: white;
  font-size: 36px;
  font-weight: bold;
}


.material-img,
.profile-img {
  height: auto;
  overflow: hidden;
  display: block;
  object-fit: cover;
}

.material-details,
.profile-details {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: center;
}

.material-detail,
.profile-detail {
  background-color: #000000;
  color: #ffffff;
  padding: 10px 15px;
  margin: 10;
  margin-top: 10px;
  border: 1px solid #ccc;
  border-radius: 0px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  max-width: 300px;
  width: calc(100% - 40px); /* Adjust width to fit within the container */
}

.grades {
  font-family: Arial, sans-serif;
  font-size: 16px;
  color: #ffffff;
}

.grades ul {
  list-style-type: none;
  padding: 0;
  margin: 10px 0;
}

.material-grade {
  background-color: #141414;
  padding: 10px 15px;
  margin: 5px 0;
  border: 1px solid #ccc;
  border-radius: 0px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.material-grade:hover {
  background-color: #e0e0e0;
  color: #000000;
  transform: scale(1.02);
}

.material-max-thickness {
  font-weight: bold;
}

.profile-instantly-quotable-container {
  align-items: center;
  margin-top: 0px;
  width: 100%;
  background-color: #000000;
  margin-top: -41px;
}

.profile-instantly-quotable {
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  margin-top: 10px;
  margin-bottom: 10px;
}

.profile-detail {
  font-size: 16px;
}

@media (max-width: 1000px) {
  .materials-list,
  .profiles-list {
    flex-direction: column; /* Stack items vertically */
  }
  .material-item,
  .profile-item {
    flex-direction: row;
    width: 100%; /* Full width for smaller screens */
    margin: 10px 0; /* Adjust margin for better spacing */
  }
  .material-img,
  .profile-img {
    max-width: 500px;
    max-height: 600px;
    width: 50%;
    height: auto;
    overflow: hidden;
    display: block;
    position: relative;
    object-fit: cover;

  }
  .coming-soon-container {
    width: 50%;
  }
  .material-coming-soon-img {
    height: 100%;
    width: 100%;
    overflow: hidden;
    display: block;
    position: relative;
    object-fit: cover;
  }
}

@media (max-width: 600px) {
  .profile-item {
    width: 100%;
  }
}

@media (max-width: 650px) {
  .material-item,
  .profile-item {
    flex-direction: column;
    width: 100%; /* Full width for smaller screens */
    margin: 10px 0; /* Adjust margin for better spacing */
  }
  .material-img,
  .profile-img {
    max-width: 500px;
    max-height: 600px;
    width: 100%;
    height: auto;
    overflow: hidden;
    display: block;
    position: relative;
    object-fit: cover;

  }
  .coming-soon-container {
    width: 100%;
  }
  .material-coming-soon-img {
    height: 100%;
    width: 100%;
    overflow: hidden;
    display: block;
    position: relative;
    object-fit: cover;
  }
}

@media (max-width: 600px) {
  .profile-item {
    width: 100%;
  }
}

.demo-video-container {
  display: flex;
  flex-direction: column;
  justify-self: center;
  text-align: center;
  width: 80%;
  padding: 25px;
  margin-bottom: 25px;
  margin-top: 25px;
  background-color: #f4f4f4;
  z-index: 1000;
  aspect-ratio: 16 / 9; /* Matches the aspect ratio of the video */
  height: auto; /* Ensures the height adjusts automatically based on the width */
}

.demo-video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}


.business-highlight-container {
  justify-self: center;
  text-align: center;
  width: 80%;
  padding: 25px;
  padding-top: 5px;
  margin-bottom: 25px;
  margin-top: 25px;
  background-color: #f4f4f4;
  z-index: 1000;
}

.how-it-works-list-contact {
  display: flex;
  flex-direction: row;
  justify-self: center;
  text-align: center;
  width: calc(80% + 50px);
  padding: 25px;
  padding-top: 5px;
  margin-bottom: 25px;
  margin-top: 25px;
  z-index: 1000;
  gap: 25px;
}

@media (max-width: 1300px) {
  .how-it-works-list-contact {
    flex-direction: column;
    width: calc(80% + 50px); /* Adjust width for smaller screens */
    padding: 0px;
    gap: 15px; /* Adjust gap for smaller screens */
  }
}

.business-highlight-sub-container {
  justify-self: center;
  text-align: center;
  padding: 25px;
  padding-top: 5px;
  margin-bottom: 25px;
  margin-top: 0px;
  background-color: #f4f4f4;
  z-index: 1000;
}

.business-highlight-container h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.highlight-subtitle {
  font-size: 22px;
  margin-bottom: 35px;
}
.process-list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-left: 50px;
  margin-right: 50px;
}

.feather-arrow-right {
  display: block;
}

.feather-arrow-down {
  display: none; /* Hide by default, shown in media query for smaller screens */
}

@media (max-width: 1300px) {
  .process-list {
    flex-direction: column;
    align-items: center;
    margin-left: 0px;
    margin-right: 0px;
  }
  .feather-arrow-right {
    display: none;
  }
  .feather-arrow-down {
    display: block;
  }

  .process-item {
    margin: 0px !important;
  }

  .business-highlight-icon {
    height: 100px !important;
    width: 100px !important;
  }

}

.process-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin: 50px;
}

.process-item h2 {
  margin: 0;
  font-size: 1.5em;
  color: #333;
  margin-left: -100px;
  margin-right: -100px;
}

.process-item p {
  margin: 0;
  color: #666;
}
.business-highlight-icon {
  background-color: #14CC60; /* Bright color for completed steps */
  width: 50px;
  height: 50px;
  padding:5px;
  border-radius:0px;
  border: 1px solid #ffffff;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.3);
}

.arrow-icon {
  margin-left: -25px;
  margin-right: -25px;
  align-content: center;
  margin-bottom: 35px;
}

.feather-arrow-right,
.feather-arrow-down {
  width: 50px;
  height: 50px;
  color: #dadada;
}

.how-it-works-list {
  display: flex;
  flex-direction: column;
  align-content: space-between;

}

.process-step {
  margin: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  background-color:#ffffff;
  border: 1px solid #c9c9c9;
  padding: 7px; 
}

.contact-info,
.contact-form {
    flex: 2;
    margin-right: 0;
    text-align: left;
    color: #000;
}

.contact-item {
    width: 500px;
    padding: 15px;
    margin: 20px;
    text-align: left;
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    color: #000;
}

.form-group {
    margin-right: 10px;
}

input {
    padding-block: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    resize: none; /* Added this line */
}

textarea {
    width: 100%;
    padding-block: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    resize: none; /* Added this line */
    font-family: Arial, sans-serif;
}

.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.video-popup {
  position: relative;
  width: 80%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}

.video-popup iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  background: #ffffffcc;
  border: none;
  font-size: 18px;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 50%;
}

.modal {
    display: none; 
    position: fixed; 
    z-index: 1000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: hidden; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.4); 
  }
  
  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
  }
  
  
  .modal-content {
    margin: 15% auto;
    padding: 30px;
    text-align: center;
    font-family: Arial, sans-serif;
    width: 400px;
    background-color: #ffffff;
    border: 1px solid #ccc;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  }

.section_headline {
  font-size: 40px;
  margin-bottom: 0px;
}

  .video_carousel_container,
  .photo_gallery_container {
    text-align: center;
    padding: 2rem 0;
}

.carousel_wrapper,
.gallery_wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    overflow: hidden;
}

.video_carousel,
.photo_gallery {
    display: flex;
    gap: 1rem;
    width: 640px; /* adjust as needed */
}

.carousel_video,
.gallery_image {
    min-width: 640px;
    height: 360px;
    border: none;
    opacity: 0.4;
}

.gallery_image {
  object-fit: cover;
  object-position: center;
}

@media (max-width: 850px) {
  .carousel_btn  {
      margin-left: -50px;
      margin-right: -50px;
  }
  .photo_gallery,
  .video_carousel {
      width: 80vw
  }
  .carousel_video,
  .gallery_image {
      min-width: 80vw;
  }
}

.carousel_btn {
    width: 50px;
    background-color: #333;
    color: #fff;
    border: none;
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    z-index: 2;
}

.carousel_video.active_video,
.gallery_image.active_image {
  transform: scale(1.03);
  opacity: 1;
  transition: transform 0.3s ease, border 0.3s ease;
}

.feature_block {
  display: flex;
  flex-direction: row;
  background-color: #f9f9f9;
  border: 2px solid #ccc;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  margin-top: 25px;
}

.feature_image {
  width: 50%;
  height: 300px;
  object-fit: cover;
}

.feature_text {
  margin-left: 15px;
  margin-right: 15px;
}

.dfm_rule_block {
  display: flex;
  flex-direction: row;
  background-color: #f9f9f9;
  border: 2px solid #ccc;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  margin-top: 25px;
}

@media (max-width: 1000px) {
  .dfm_rule_block {
    flex-direction: column !important;
  }
}
@media (max-width: 690px) {
  .cope-comparison {
    flex-direction: column !important;
  }
}

.cope-comparison {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-right: 2px solid #ccc;
  gap: 20px;
}

.cope-comparison-item {
  flex: 1;
  text-align: center;
  padding-bottom: 0;
  margin-bottom: -4px;
}

.cope-comparison-item h3 {
  font-size: 22px;
  color: #333;
  margin-bottom: 10px;
}

.cope_image,
.dfm_image {
  width: 300px;
  height: 300px;
  object-fit: cover;
  margin: 0px
}

.dfm_text {
  padding: 15px;
}

.tolerances {
  display: flex;
  flex-direction: row;
}

@media (max-width: 1000px) {
  .tolerances {
    flex-direction: column;
  }
}

.tolerance_text_content {
  display: flex;
  flex-direction: column;
}

.tolerance_layout {
  display: flex;
  flex-direction: row;
}
.tolerance_image {
  width: 500px;
  height: 300px;
  object-fit: cover;
}

@media (max-width: 600px) {
  .tolerance_image {
    width: 100%;
    height: auto;
  }
}

.lead_time_container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-left: 25px;
  padding-right: 25px;
}

@media (max-width: 1000px) {
  .lead_time_container {
    flex-direction: column;
    align-items: center;
  }
}

.lead_time_text {
  display: flex;
  flex-direction: column;
}