/* doors - HERO */
.doors-hero {
    height: 600px;
    width: 100%;
    position: relative;
    user-select: none;
}

.doors-hero img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.doors-hero-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    background: linear-gradient(to right, rgba(128, 128, 128, 0.718) 40%, transparent);
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    padding: 0 10% 0 10%
}

.doors-hero-overlay-content {
    background-color: rgba(255, 255, 255, 0.909);
    width: fit-content;
    padding: 40px 20px;
    border-radius: 10px;
}

.doors-hero-overlay-content h1 {
    color: var(--main-blue-dark);
    width: fit-content;
    border-radius: 50px 0 0 50px;
    font-size: 50px;
    margin: 0 0 20px 0;
    line-height: 50px;
}

.doors-hero-overlay-content p {
    font-size: 20px;
    font-weight: 600;
    color: rgb(101, 101, 101);
    margin: 0 0 20px 0;
    max-width: 800px;
}

.doors-hero-overlay-content .site-button {
    background-color: var(--main-blue-dark);
    color: white;
}

.doors-hero-overlay-content .site-button:hover {
    background-color: transparent;
    color: var(--main-blue-dark);
}

/* doors - intro */
.doors-intro {
    padding: 60px 0;
    border-top: solid 8px var(--main-blue-dark);
    border-top: solid 8px var(--main-blue-dark);
    background-color: #f9f9f9;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 0px;
    row-gap: 40px;
    align-items: center;
}

.doors-image-wrap {
    width: 500px;
    max-width: 75vw;
    height: 350px;
    max-height: calc(0.7 * 75vw);
    position: relative;
}

.doors-image-wrap::before {
    width: 110%;
    height: 110%;
    top: -5%;
    left: -5%;
    content: '';
    position: absolute;
    background-color: var(--main-blue-dark);
    z-index: 0;
    clip-path: polygon(0 0%, 80% 0%, 100% 20%, 100% 100%, 0 100%);
}

.doors-image-wrap img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
    clip-path: polygon(0 0%, 80% 0%, 100% 20%, 100% 100%, 0 100%);
}

.doors-intro-content {
    width: 1000px;
    max-width: 90vw;
    box-sizing: border-box;
    padding: 0 20px 0 10%;
}

.doors-intro-content h2 {
    font-size: 30px;
    line-height: 30px;
    margin: 0 0 20px 0;
    color: var(--main-blue-dark);
}

.doors-intro-content p {
    font-size: 18px;
    color: rgb(60, 60, 60);
    position: relative;
}

.doors-intro-content p:first-of-type {
    margin: 0 0 40px 0;
}

.doors-intro-content p::before {
    width: 30px;
    height: 110%;
    top: -5%;
    box-sizing: border-box;
    content: '';
    position: absolute;
    border-left: double 8px var(--main-blue);
    left: -20px;
}

/* DOORS - BRANDS */
.doors-brand-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
}

.doors-brand-wrap > h2 {
    color: var(--main-blue);
    font-size: 35px;
    line-height: 35px;
    margin: 0 0 15px 0;
    font-weight: 200;
}

.doors-brand-wrap > h2 span {
    color: var(--main-blue-dark);
    font-weight: 700;
}

.doors-brand-wrap > p {
    position: relative;
    width: 700px;
    max-width: 80vw;
    text-align: center;
    font-size: 18px;
    color: rgb(56, 56, 56);
    margin: 10px 0;
}

.doors-brand-wrap > p::before {
    height: 110%;
    width: 5px;
    border-left: double 8px var(--main-blue);
    position: absolute;
    left: -12px;
    top: -5%;
    content: '';
}

.doors-brand {
    padding: 50px 0;
    display: grid;
    grid-template-columns: 40% 40%;
    max-width: 1000px;
    justify-content: center;
    min-width: 100%;
    row-gap: 30px;
    column-gap: 40px;
}

.doors-brand-card {
    width: 100%;
    grid-column: 1 / 3;
    max-width: 1000px;
    background-color: #f9f9f9;
    height: 300px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    justify-self: center;
}

.doors-brand-card-content {
    width: 60%;
    background-color: var(--main-blue-dark);
    height: 100%;
    padding: 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.doors-brand-card img {
    width: 40%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    box-sizing: border-box;
}

.doors-brand-card-content h3 {
    font-size: 25px;
    color: white;
    line-height: 25px;
    margin: 0 0 15px 0;
}

.doors-brand-card-content p {
    color: white;
    font-size: 18px;
    margin: 30px 0;
}

.doors-brand-card-content .site-button {
    background-color: white;
    color: var(--main-blue-dark);
    border-color: white;
}

.doors-brand-card-content .site-button:hover {
    background-color: transparent;
    color: white;
}

.doors-brand-card .doors-brand-card-alt-image {
    height: 100%;
    object-fit: cover;
    width: 40%;
    padding: 0;
}

@media (max-width: 750px) {
    .doors-brand {
        grid-template-columns: 80%;
    }

    .doors-brand-card {
        flex-direction: column;
        width: unset;
        height: fit-content;
        grid-column: unset;
    }

    .doors-brand-card-content {
        width: 100%;
        height: fit-content;
    }

    .doors-brand-card img {
        width: 100%;
        height: 250px;
    }

    .doors-brand-card .doors-brand-card-alt-image {
        height: 250px;
        object-fit: cover;
        width: 100%;
    }
}

/* DOORS - SERVICES */
.doors-services {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f9f9f9;
    padding: 50px 0;
}

.doors-services > h2 {
    color: var(--main-blue-dark);
    font-size: 35px;
    margin: 0 0 15px 0;
    line-height: 35px;
}

.doors-services > p {
    max-width: 80vw;
    width: 700px;
    text-align: center;
    font-size: 18px;
    color: rgb(57, 57, 57);
    position: relative;
}

.doors-services > p::before {
    height: 110%;
    top: -5%;
    position: absolute;
    content: '';
    width: 5px;
    border-left: double 8px var(--main-blue);
    left: -16px;
}

.doors-services-grid {
    padding: 50px 0;
    display: grid;
    grid-template-columns: 40% 40%;
    max-width: 1000px;
    justify-content: center;
    min-width: 100%;
    row-gap: 30px;
    column-gap: 40px;
}

@media (max-width: 750px) {
    .doors-services-grid {
        grid-template-columns: 80%;
    }
}