#maxout {
    max-width: 100%;
    max-height: 100%;
}




 /* #clipped {
  -webkit-clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
  clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
  max-height: 20%;
  
  } */


  #clipped {
    position: relative;
    width: 200px;  /* set your desired size */
    height: 200px;
    background: url('path_to_your_image.jpg') center/cover no-repeat;
    padding: 0px 0;  /* top and bottom padding */
    margin: 10px 0;   /* top and bottom margin */
    box-shadow: 0 0 50px 15px rgba(0, 0, 0, 0.7); /* Large and black shadow */
    transition: box-shadow 0.3s; /* Optional: Smooth shadow transition on hover or other interactions */
    border-radius: 15px;  /* Rounded corners */
}

/* Optional: Enhance shadow on hover for interactivity */
#clipped:hover {
    box-shadow: 0 0 70px 20px rgba(0, 0, 0, 0.8);
}

#custom-banner {
    width: 100%; /* Full width */
    max-width: 2724px; /* Maximum width the banner can go up to */
    height: auto; /* Auto height based on the aspect ratio */
    max-height: 336px; /* Maximum height the banner can go up to */
    background: url(images/banner/banner_2.png) center/contain no-repeat; /* Using 'contain' ensures the entire image is always visible */
    background-color: #ffffff; /* This is to ensure there's a default background color in case the image doesn't cover the entire area, you can adjust it */
    overflow: hidden; /* Hide anything that goes outside this container */
    margin: 0 auto; /* Centering the banner if the screen width is greater than 2724px */
  }
  
  
/* Styles for Mobile Screens */
@media (max-width: 768px) {
    .top-bar {
        padding: 5px 0;
    }
    .top-info, .top-social {
        margin: 0;
        padding: 0 5px;
    }
    .top-info p.info-text {
        font-size: 12px; 
    }
    .top-social {
        font-size: 20px; 
    }
    .container {
        padding-left: 5px;
        padding-right: 5px;
    }
}

/* Revised styles */
.flex-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%; 
    width: 100% !important; /* Ensure it takes full width */
    background-color: #5DA557; 
}

.IG-float-right {
    align-self: center; 
}

.info-text {
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    color: white;
    font-size: 16px; 
}

.fas, .fab {
    color: white;
}

#logomax {
    width: auto;
    max-width: 100%;
    height: auto;
}

@media (max-width: 767px) {
    #logomax {
        width: auto;
        height: 80px !important;
    }
}

#top-bar > * {
    width: 100%;
    height: auto; 
}

/* Add this to your CSS: */
.custom-col {
    flex: 0 0 66.66667%; /* This replicates col-md-8 and col-lg-8 */
    max-width: 66.66667%;
}

@media (max-width: 991px) and (min-width: 768px) { /* Bootstrap's md breakpoint */
    .custom-col {
        flex: 0 0 100%; /* Make sure it takes the full width on tablets */
        max-width: 100%;
    }
}

.top-bar {
    background-color: #5DA557;
}

/* Adjust the alignment of the content within the column */
.col-md-4 {
    display: flex;
    align-items: center; /* Vertically align the content */
  }
  
  /* Style for the Procore badge container */
  .procore-container {
    margin-top: 10px; /* Add space between the buttons */
  }
  
  /* Style for the Procore badge */
  .procore-badge {
    width: 145px; /* Adjust the width as needed */
  }
  
  /* Style for the "Invite us to Bid" button */
  .call-to-action-btn {
    flex-grow: 1; /* Allow the button to take up remaining space */
    text-align: left; /* Align the button text to the left */
  }
  .ts-description {
    font-size: 11px; /* or 6px, depending on your preference */
    line-height: 1.2; /* Adjust line height for readability */
    color: #eee; /* Optional: Customize text color */
    font-family: Arial, sans-serif; /* Optional: Set a specific font family */
}
