body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

#header-nav {
    width: calc(100% - 10px);
    display: flex;
    justify-content: space-between;
    margin: 15px 5px;
}
#header-nav img {
    width: 240px;
}

#nav-links {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 25px;
}

@media(max-width: 1024px) {
    #nav-links {
        display: none;
    }
}

.nav-link {
    color: black;
    font-size: 14px;
    font-weight: 500;
}
.nav-link:hover {
    color: #1882C5;
}

.nav-button {
    background-color: #f78d1f;
    min-height: 40px !important;
    max-height: 40px !important;
    width: 105px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    font-weight: 600;
    color: white;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: 0.3s background-color ease;
}

.nav-button:hover {
    background-color: #db7d19;
    color: white;
}

.flex-row{
   
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    max-width: 1024px;
    margin: 150px auto 100px auto;
}

.row {
    width: calc(100% - 50px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 45px 25px;
    text-align: center;
}

.row.c-2 {
    flex-direction: row;
}



.row.c-2 div {
    max-width: 50%;
    flex-grow: 1;
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

@media (max-width: 1024px) {
    .row.c-2 {
        flex-direction: column;
    }
    .row.c-2 div {
        max-width: 100%;
    }

    .row.c-2 div img {
        width: 100%;
    }
}

.text-center {
    text-align: center;
}


#hero-banner {
    width: calc(100% - 200px);
    /* height: 600px; */
    min-height: fit-content;
    padding: 100px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-image: url('assets/Group-20.jpg');
    background-size: cover;
    background-position: center;
}

#hero-left-column {
    width: 35%;
    max-width: 600px;
    min-width:360px;
    height: 100%;
    gap: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

@media (max-width: 1024px) {
    
    #hero-left-column {
        width: 100%;
    }
}

h1 {
    font-size: 56px;
    font-family: 'Poppins', sans-serif;
    font-weight: bolder;
    line-height: 1.2em;
}
h2 {
    font-size: 42px;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    padding: 0;
    margin: 0;
}
.blue {
    color: #1882C5;
}

.subheading {
    font-size: 21px;
    font-family: "Fjord One";
    color:rgb(82, 81, 81);
    margin-bottom:0px;
    
}

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    font-family: "Fjord One";
    max-width: 1024px;
}

.learn-more-button {
    margin-top: 45px;
    background-color: #f78d1f;
    min-height: 55px !important;
    max-height: 55px !important;
    width: 205px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    font-weight: 600;
    color: white;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: 0.3s background-color ease;
}

.learn-more-button:hover {
    background-color: #db7d19;
}

.grid {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    padding: 25px;
}

#industries-we-serve {
    margin-bottom: 200px;
}

.grid.industries {
    grid-template-columns: repeat(4, 1fr);
}

.grid.industries .grid-item {
    width: 100%;
    height: calc(width * 0.75);
    overflow: hidden;
    position: relative;
}

.grid.industries .grid-item::after {
    content: '';
    position: absolute;
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  background-color: #0076C0 !important;
  mix-blend-mode: multiply;
  opacity: 1 !important;
  z-index: 10;
}

.grid.industries .grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.grid.industries .grid-item p {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 24px;
    font-family: "Poppins";
    z-index: 11;
}

.grid-item {
    width: 100%;
    height: 150px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 42, 255, 0.342); /* Blue tint with 50% opacity */
  }
.grid-item p {
    font-family: "Poppins";
    font-weight: bold;
}

@media (max-width: 768px) {
    .grid,
    .grid.industries {
        grid-template-columns: repeat(1, 1fr);
    }
}

.column-padding {
    height: 100%;
    width: 30%;
    min-width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.column-center {
    text-align: center;
}

.column-padding img {
    width: 26px;
    height: 16px;
}

#get-a-quote-img {
    height: 100%; min-height: fit-content; 
    background: url('assets/2023/09/Rectangle-198.png');
    background-size: cover; /* Ensures the full image is visible */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    background-position: center; /* Centers the image within the div */
    width: 100%; /* Set a flexible width or specific width */
    height: auto; /* Let the height adjust according to the content */
    aspect-ratio: 16/9; /* Optional: Set aspect ratio if you want a fixed proportion */
    padding: 0;
    position: relative;
    padding: 20px;
}
#get-a-quote-img .overlay {
    width: 100%;
    height: 100%;
    max-width: unset;
    position: relative;
    margin: 0;
    padding: 0;
    background-color:#0076c0ad;
}

#get-a-quote-img::after {
    content: '';
    position: absolute;
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  background-color: #0076C0 !important;
  mix-blend-mode: multiply;
  opacity: 1 !important;
  z-index: 10;
}

#get-a-quote-img h2 {
    color: white !important;
    z-index: 11;
}
#get-a-quote-img p {
    color: white;
    z-index: 11;
}

#get-a-quote-img span {
    z-index: 11;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10%;
}

@media (max-width: 768px) {
    #get-a-quote-img span {
        flex-direction: column;
    }
}

#get-a-quote-img span a {
    color: #db7d19;
    z-index: 11;
}
a {
    text-decoration: none;
}