@charset "UTF-8";

.dko-cta {
    padding: 50px var(--global-block-padding);
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-start;
    background-color:var(--pmn--pink);
}
.dko-cta__title {
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 35px;
    color: white;
}
.dko-cta__title .highlight-title {
    background-color:white;
    color:var(--pmn--pink);
}

.dko-cta__primary-cta {
    color:var(--pmn--blue);
    background-color: white;
    border:unset;
    transition:all 0.4s ease-in-out ;
}

.dko-cta__primary-cta:hover,
.dko-cta__secondary-cta:hover{
    opacity:0.7;
    transition:all 0.4s ease-in-out ;
}

/*.pink .dko-cta__title {
    color:white;
}*/

.dko-cta__secondary-cta {
    color:var(--pmn--pink);
    background-color: white;
    border:unset;
    transition:all 0.4s ease-in-out ;
    margin-bottom: 20px;
}
/*.pink .dko-cta__secondary-cta:hover {
    background-color:white;
    border:white 1px solid;
    color:var(--pmn--pink);
    transition:all 0.4s ease-in-out;
}*/
@media screen and (min-width: 768px) {
    .dko-cta {
        padding: 60px var(--global-block-padding);
        flex-direction: row;
        align-items: center;
    }
    .dko-cta__title {
        font-size: 48px;
        line-height: 52px;
        width: 50%;
        margin-right: auto;
        margin-bottom: 0px;
    }
    
    .dko-cta__secondary-cta {
        margin-right: 20px;
        margin-bottom: 0px;
    }
}

/* === INTERLIGNE ENTRE TITRES === */

@media screen and (max-width: 767px) {
    .dko-cta h2 {
        line-height:1.3 ;
    }
}
@media screen and (min-width: 768px) {
    .dko-cta h2 {
        line-height:1.25 ;
    }
}