.template-page .brochure-section {
 margin: 180px  0 140px;
}
.brochure-wrapper {
    display: flex;
    .brochure-images {
        width: 60%;
    }
    .brochure-contact {
        width: 40%;
        margin-right: 6.5%;
    }
    .brochure-images {
        position: relative;
        img {
            max-width: 100%;
            height: auto;
            position: absolute;
            max-width: 600px;
            transform: translate(-3%, -29%) rotate(2deg);
            left: 20%;
            transition: all 1s;
            transform-origin: bottom left;
        }
        img:nth-child(1) {
            transform: translate(17%, -27%) rotate(-15deg);
            left: 7%;
        }
        img:nth-child(2) {
            transform: translate(7%, -28%) rotate(-6deg);
            left: 13%;
        }
    }
    .brochure-contact {
        text-align: center;
        img {
            margin-right: 23px;
        }
        h3 {
            color: var(--White, #FFF);
            text-align: center;
            font-family: "Manuscript Condensed";
            font-size: 88px;
            font-style: normal;
            font-weight: 500;
            line-height: 100%;
            margin: 4px 0 24px 0;
        }
        .text-brochure {
            p {
                margin: 0;
                text-align: center;
                color: var(--White, #FFF);
                text-align: center;
                font-family: "BDO Grotesk";
                font-size: 16px;
                line-height: 24px;
                letter-spacing: 0.32px;
            }
        }
        .brochure-adress {
            display: flex;
            align-items: center;
            width: 240px;
            margin: 20px auto;
            p {
                color: var(--White, #FFF);
                font-family: "BDO Grotesk";
                font-size: 14px;
                font-style: normal;
                font-weight: 400;
                line-height: 24px;
                letter-spacing: 0.28px;
                text-decoration-line: underline;
                margin: 0;
            }
        }
        .b-content--link {
            a {
                display: inline-flex;
                padding: 13px 65px;
                justify-content: center;
                align-items: center;
                gap: 10px;
                border-radius: 6px;
                background: var(--White, #FFF);
                margin-top: 20px;
                margin-bottom: 5px;
                color: var(--Juniors-Orange, #D93400);
                text-align: center;
                font-family: "OC Highway VAR2";
                font-size: 14px;
                font-style: normal;
                font-weight: 700;
                line-height: normal;
                letter-spacing: 0.64px;
                text-transform: uppercase;
                text-decoration: none;
            }
        }
    }
}

@media screen and (min-width: 991px) {
    .brochure-section:hover {
        .brochure-images {
            img {
                transform: translate(-5%, -33%) rotate(10deg);
                transform-origin: bottom left;
            }
            img:nth-child(1) {
                transform: translate(21%, -25%) rotate(-22deg);
                transform-origin: bottom left;
            }
            img:nth-child(2) {
                transform: translate(7%, -28%) rotate(-6deg);
                transform-origin: bottom left;
            }
        }
    }  
}

@media screen and (max-width:1150px) {
    .brochure-wrapper {
        & .brochure-images {
            img {
                max-width: 400px;
            }
        }
    }
    
}

@media screen and (max-width:990px) {
    .brochure-wrapper {
        flex-direction: column;
        > div {
            width: 100%!important;
        }
        & .brochure-images {
            img {
                max-width: 290px;
                bottom: -300px;
                left: 38%;
                transform: translate(-25%, -25%) rotate(2deg);
            }
            img:nth-child(1) {
                transform: translate(-4%, -21%) rotate(-19deg);
                left: 24%;
            }
            img:nth-child(2) {
                transform: translate(-16%, -22%) rotate(-10deg);
                left: 32%;
            }
        }
        .brochure-contact {
            margin-top: 200px;
            h3 {
                font-size: 54px;
                font-style: normal;
                font-weight: 500;
                line-height: 90%;
            }
            & .text-brochure {
                p {
                    font-size: 16px;
                    font-style: normal;
                    font-weight: 400;
                    line-height: 24px;
                    letter-spacing: 0.32px;
                }
            }
            .brochure-adress {
                flex-direction: column;
                img {
                    margin-right: 0!important;
                }
            }
        }
    }
    .template-page .brochure-section {
        margin-bottom: 0px;
    }
}