@font-face {
    font-family: "IowanOld Roman";
    src: url(../fonts/IowanOldStyleBT-Roman.otf) format('opentype');
}

@font-face {
    font-family: "Montserrat Medium";
    src: url(../fonts/Montserrat-Medium.ttf) format('truetype');
}

body {
    font-family: "Montserrat Medium", Arial, Helvetica, sans-serif;
    font-size: 16px;
    color: #40578b;
    margin: 0;
    padding: 0;
}

.img-bandeau {
    width: 100%;
}

.main-contain {
    background-image: url('../img/bg-main.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 700px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2em 0;
}

.main-box-content {
    width: calc(100% - 600px);
    padding-left: 10%;
    padding-right: 10%;
}

.main-box-picture {
    width: 600px;
}

.img-tarot {
    width: 100%;
}

.section-cta {
    background-image: url('../img/footer-ariana-voyance.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-box-content h1 {
    font-family: "IowanOld Roman";
    font-size: 45px;
    color: #ff90c4;
    margin-bottom: 50px;
}

.section-cta-info h2 {
    font-family: "IowanOld Roman";
    font-size: 40px;
    color: #ffe2e1;
    text-align: center;
}

.section-cta-info h2:after {
    display: block;
    content: "";
    background-color: #ffe2e1;
    width: 350px;
    height: 3px;
    margin: 0 auto;
}

.section-cta-info p{
    color: #ffe2e1;
    text-align: center;
}

.btn-cta {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #24ae77;
    color: #ffffff !important;
    font-size: 25px;
    font-weight: 700;
    display: block;
    margin: 0 auto;
    width: 250px;
    text-align: center;
    padding: 0.2em 0.5em;
    text-decoration: none !important;
    transition: all .3s ease-in-out;
    position: relative;
}

.btn-cta:before{
    display: block;
    content: "";
    background: url('../img/cliquez-ici-icone.png') right bottom no-repeat;
    width: 50px;
    height: 49px;
    position: absolute;
    right: -30px;
    bottom: -30px;

}

.btn-cta:hover {
    background-color: #c18885;
}

/*======================= MENTIONS LEGALES ================ */
.main-legales-notices {
    width: 80%;
    max-width: 1400px;
    margin: 0 auto;
}

.legacies-h1 {
    font-family: "IowanOld Roman";
    font-size: 45px;
    color: #ff90c4;
    margin-bottom: 50px;
}

.main-legales-notices h2, 
.main-legales-notices h3,
.main-legales-notices h4 {
    color: #c18885;
}

.main-legales-notices h2 {
    font-size: 24px;
}

.main-legales-notices h3 {
    font-size: 22px;
}

.main-legales-notices ul {
    list-style-type: none;
    padding-left: 0px;
}

.main-legales-notices ul li {
    font-size: 18px;
    text-align: left;
    position: relative;
    padding-left: 20px;
}

.main-legales-notices ul li:before {
    position: absolute;
    content: " ";
    display: inline-block;
    width: 7px;
    height: 7px;
    left: 0;
    top: 7px;
    background-color: #c18885;
    border-radius: 5px
}



/*======================= FOOTER ================ */

.site-footer {
    height: 70px;
    background-color: #2e2b3d;
    display: flex; 
    align-items: center;
    justify-content: center;
}

.site-footer p{
    font-size: 15px;
    color: #c18885;
    text-align: center;
    padding: 0 1em;
    margin-bottom: 0px;
}

.site-footer .footer-link {
    color: #c18885;
    text-decoration: none;
}

.site-footer .footer-link:hover {
    color: #24ae77;
}

/*======================= RESPONSIVE ================ */

@media screen and (max-width: 1400px) {
    .main-box-content h1 {
        margin-bottom: 35px;
    }

    .main-box-content {
        padding-left: 5%;
        padding-right: 5%;
    }
}

@media screen and (max-width: 1280px) {
    .main-box-picture {
        width: 500px;
    }

    .main-box-content {
        width: calc(100% - 500px);
    }
}

@media screen and (max-width: 980px) {
    .main-box-picture {
        width: 400px;
    }

    .main-box-content {
        width: calc(100% - 400px);
    }
}

@media screen and (max-width: 768px) {
    .main-contain {
        flex-direction: column;
        justify-content: flex-start;
    }

    .main-box-picture, .main-box-content {
        width: 90%;
    }

    .main-box-content {
       padding: 0 0 40px;
    }

    .main-box-content h1 {
        font-size: 40px;
    }
}

@media screen and (max-width: 468px) {
    .section-cta-info h2 {
        font-size: 30px;
    }

    .section-cta-info h2:after {
        width: 262px;
    }

    .main-box-content h1, .legacies-h1 {
        font-size: 30px;
    }

    .legacies-h1 {
        margin-bottom: 30px;
    }
}