.roofing-main {
    width: 100%;
    height: fit-content;
}

.roofing-main > .purple-line {
    width: 50%;
    margin: 50px 25% 0px 25%;
}
.roofing-hero {
    width: 100%;
    min-height: 300px;
    background-image: url("/imageserver/UserMedia/tmcexteriors/Slide3.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.roofing-hero-content-wrapper {
    width: 100%;
    height: 300px;
    backdrop-filter: brightness(30%);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.roofing-works-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 100px 0px;
    gap: 100px;
}

.roofing-works-item {
    display: flex;
    flex-direction: column;
    padding: 20px;
    max-width: 90vw;
    width: 400px;
    box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.75);
    transition: box-shadow 0.5s ease-in-out;
}

.roofing-works-item:hover {
    box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.75);
}

.roofing-works-item img {
    object-fit: cover;
    height: 200px;
}

.roofing-works-button{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f9f9f9;
    padding: 100px 0px;
}

.roofing-works-button > h2 {
    text-align: center;
    font-weight: 400;
    margin-bottom: 30px;
}

.roofing-works-button > .button{
    font-size: 2rem;
}

.roofing-gaf {
    width: 100%;
    height: 600px;
    min-height: fit-content;
    background-color: white;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.roofing-gaf-content {
    height: 400px;
    min-height: fit-content;
    padding: 100px 0px 200px 0px;
    width: 100%;
    color: white;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 100px;
    row-gap: 50px;
}

.roofing-gaf-content-card {
    padding: 20px;
    background-color: #f9f9f9;
    color: black;
    width: 700px;
    height: 280px;
    min-height: fit-content;
    max-width: 90vw;
    border-radius: 5px;
}
.roofing-gaf-content-card h1 {
    margin: 10px;
}

.roofing-gaf-content-card .purple-line{
    margin: 10px;
}

.roofing-gaf-content-card p{
    margin: 20px 10px 10px 10px;
    font-size: 2rem;
}

.roofing-gaf-card-img-wrap {
    height: 300px;
    width: 500px;
    max-width: 90vw;
    position: relative;
}

.roofing-gaf-card-img-wrap::before {
    width: 60%;
    height: 40%;
    position: absolute;
    content: "";
    display: block;
    top: -10px;
    left: -10px;
    background-color: transparent;
    border-top: double 8px var(--accent-color);
    border-left: double 8px var(--accent-color);
    border-radius: 10px;
}

.roofing-gaf-card-img-wrap::after {
    width: 60%;
    height: 40%;
    position: absolute;
    content: "";
    display: block;
    bottom: -10px;
    right: -10px;
    background-color: transparent;
    border-bottom: double 8px var(--main-color);
    border-right: double 8px var(--main-color);
    border-radius: 10px;
}

.roofing-gaf-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    border-radius: 5px 40px 5px 40px;
}