.port-hero {
    height: 500px;
    width: 100%;
    background-image: 
        linear-gradient(to right, rgba(42, 42, 42, 0.757)),
        url(/imageserver/UserMedia/jfroofing/jf-banner-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    padding: 0 5%;
    user-select: none;
    border-bottom: solid 8px var(--main-color-500);
    background-color: white;
}

.port-hero h2{
    margin: 0;
    font-size: 48px;
    line-height: 48px;
    background-color: white;
    color: var(--main-color-500);
    width: fit-content;
    padding: 8px 32px 8px 8px;
    clip-path: polygon(0 0, calc(100% - 32px) 0, 100% 50%, calc(100% - 32px) 100%, 0 100%);
}

.port-hero h3 {
    margin: 0 0 8px 0;
    font-size: 24px;
    line-height: 24px;
    color: var(--main-color-500);
}

.port-hero p {
    color: white;
    font-size: 24px;
    width: 800px;
    max-width: 85vw;
    margin: 16px 0;
}


.portfolio-wrapper,
.gallery-wrapper {
  max-width: 92%;
  width: 100%;
  margin-inline: auto;
padding-bottom: 40px;
  }
  
  
  .box-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 75px 0;
    width: 100%;
    position: relative;
    justify-content: center;
  }
  .box-gallery h3 {
    position: absolute;
    top: -55px;
  }
  .box-gallery .box-gallery-item {
    position: relative;
    height: 260px;
    overflow: hidden;
    flex: 0 1 18em;
    transition: all 0.2s ease-in-out;
    border-radius: 5px;
  }


  .box-gallery .box-gallery-item i {
    position: absolute;
    bottom: 40%;
    left: 50%;
    margin: 0 0 -28px -28px;
    font-size: 2em !important;
    border-radius: 50%;
    padding: 10px;
    background: var(--accent-color);
    color: #fff;
    opacity: 0;
    transition: all 0.25s;
  }
  .box-gallery .box-gallery-item:hover {
    filter: drop-shadow(4px 4px 6px gray);
    transform: scale(1.05);
  }
  .box-gallery .box-gallery-item:hover i {
    bottom: 50%;
    opacity: 1;
  }
  .box-gallery .box-gallery-item:hover figure {
    opacity: 0.6;
  }
  .box-gallery .box-gallery-item figure {
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    background-size: cover;
  }
  .box-gallery .box-gallery-item figure:hover {
    filter: drop-shadow(4px 4px 6px gray);
  }/*# sourceMappingURL=Untitled-1.css.map */