/* BREAKPOINT */
.double-contact {
    position: relative;
    color: var(--white);
    margin-top: 64px;
}

@media screen and (min-width: 768px) {
    .double-contact {
        display: flex;
        margin-top: 120px;
    }
}

.double-contact::before {
    content: "";
    width: 40px;
    height: 32px;
    border-style: solid;
    border-width: 32px 20px 0 20px;
    border-color: #ffffff transparent transparent transparent;
    position: absolute;
    left: calc(50% - 20px);
    z-index: 1;
}

@media screen and (min-width: 768px) {
    .double-contact::before {
        width: 100px;
        height: 80px;
        border-style: solid;
        border-width: 80px 50px 0 50px;
        border-color: #ffffff transparent transparent transparent;
        position: absolute;
        left: calc(50% - 50px);
    }
}

.double-contact .first-block {
    position: relative;
    background: var(--orange);
    padding: 48px 16px;
}

@media screen and (min-width: 768px) {
    .double-contact .first-block {
        flex: 1;
        padding: 80px;
    }
}

.double-contact .first-block::before {
    content: "";
    background: url("../images/logo/logo-without-baseline-white.svg") no-repeat;
    background-size: contain;
    background-position: bottom center;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.double-contact .first-block .cta {
    position: relative;
    margin-top: 32px;
    z-index: 2;
}

.double-contact .second-block {
    position: relative;
    padding: 48px 16px;
}

@media screen and (min-width: 768px) {
    .double-contact .second-block {
        flex: 1;
        padding: 80px;
    }
}

.double-contact .second-block::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.double-contact .second-block h2,
.double-contact .second-block p,
.double-contact .second-block a {
    position: relative;
}

.double-contact .second-block p {
    margin: 32px 0;
}