/* === Palette principale ===
   Bleu : #2F57A3
   Hover : #264785
*/

/* --- Wrapper et contenu --- */
.pixelio-hero-wrapper2 {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 500px;
    height: 430px;
    background: #fff;
    border-radius: 10px 0 0 10px;
}

.pixelio-hero-content2 {
    position: relative;
    padding: 25px 50px;
    min-height: 100%;
}

.transparent-click {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* --- CTA bouton --- */
.pixelio-hero2-cta-btn {
    position: absolute;
    bottom: 25px;
    z-index: 9999;
    left: 0;
    right: 0;
    margin: auto;
    width: calc(100% - 100px);
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #2F57A3;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    -webkit-transition: background-color 0.3s ease, color 0.3s ease;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.pixelio-hero2-cta-btn.hero2-fixed {
    position: fixed;
    bottom: 50px;
    right: 40px;
    z-index: 9999;
    margin-right: 0;
    width: 200px;
}
.pixelio-hero2-cta-btn:hover,
.pixelio-hero2-cta-btn:focus {
    background-color: #264785;
    color: #fff;
    text-decoration: none;
}

/* --- Responsive --- */
@media screen and (min-width: 1200px) and (max-width: 1400px) {
    .pixelio-hero-content2 {
        padding-bottom: 0;
    }
}

@media screen and (max-width: 769px) {
    .pixelio-hero-wrapper2 {
        height: auto;
    }
}