/* -------------------------------------------------------------------------- */


/* Global Section */


/* -------------------------------------------------------------------------- */

@import url('https://fonts.googleapis.com/css?family=Raleway:100,200,300,400,500,600,700,800,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Playfair+Display:400,500,600,700,800&display=swap');

* {
    font-family: 'Raleway', sans-serif;
}
body{
    background-image: url("img/background_square.jpg");
}
.container{
    background-color: rgba(255, 255, 255, 0.95);
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Playfair Display", serif;
    font-weight: bolder;
}

.SectionMargin{
    margin: 30px 0;
}
.bolder{
    font-weight: bolder;
}
/* -------------------------------------------------------------------------- */


/* Header Section */


/* -------------------------------------------------------------------------- */

.LogoInfimeInfini {
    width: 150px;
    min-width: 50px;
}
.Titre{
    font-size: 3em;
    font-weight: 800;
}
/* -------------------------------------------------------------------------- */


/* Main Section */


/* -------------------------------------------------------------------------- */
.SpacingSection{
    padding: 10px 0px;
}
.text{
    font-family: 'Raleway', sans-serif;
    font-size: 1.4em;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
}
.empty{
    box-shadow: 0px 0px 3px red;
}
.NoUderline:hover{
    text-decoration: none;
}
.desc{
    width: 10%;
    font-weight: bolder;
}
.inputclass{
    width: 85%;
    height: 2.1em;
}
.GenImg{
    display: block;
    max-height: 300px;
    min-height: 300px;
}
.list-group-item {
    padding: 1.8em 1em;
}
#apply-form li label{
    width: 100%;
}
.progress{
    margin-bottom: 1rem;
    height: 40px;
}
.progress-bar{
    background-color: #de9bf0;
}
#apply-form, #GenImage{
    margin-bottom: 20px;
}
.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background-color: #c400fa;
}
.btn-primary {
    color: #fff;
    background-color: #c400fa;
    border-color: #c400fa;
}
.btn-primary:hover {
    background-color: #b400e5;
    border-color: #a000cc;
}
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
    background-color: #b400e5;
    border-color: #a000cc;
}
.btn-primary.focus,
.btn-primary:focus {
    background-color: #b400e5;
    border-color: #a000cc;
    box-shadow: 0 0 0 .2rem rgba(170, 0, 217, .5);
}
#NewMail:hover{
    cursor: pointer;
}


/* -------------------------------------------------------------------------- */


/* Wishes Section */


/* -------------------------------------------------------------------------- */
blockquote{
    font-size: 1em !important;
}
blockquote>p{
    color: grey;
}
blockquote>p::before{
    content: '"';
}
blockquote>p::after{
    content: '"';
}

/* -------------------------------------------------------------------------- */


/* Modal Section */


/* -------------------------------------------------------------------------- */

.modal-header .close {
    padding: 1rem 1rem;
    margin: -1rem -1rem -1rem 0;
}
.spacing{
    margin: 7px 10px 0 0;
    width: 22%;
}
/* Progress bar

https: //codepen.io/Sensiblemnd/details/VbjwyX

*/


.progress-container {
    padding-top: 30px;
}

/*Progress steps styles*/
.progression-bar {
    list-style: none;
    margin: 0 0 38px 0;
    padding: 0;
    display: flex;
    width: 100%;
    z-index: 1;
    position: relative;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    /*this classes are added to animate the progress bar*/
    /*this classes are added to animate the progress bar*/
}

.progression-bar:before {
    transition-delay: 2s;
    transition: width 0.5s linear;
    content: "";
    width: 20px;
    background-color: #77b800;
    height: 8px;
    left: 20px;
    position: absolute;
    top: 47%;
    transform: translateY(-47%);
    z-index: 2;
}

.progression-bar:after {
    transition: width 0.9s ease-in-out;
    content: "";
    width: 95%;
    background-color: #e5e5e5;
    height: 8px;
    left: 9px;
    position: absolute;
    top: 47%;
    will-change: transform;
    transform: translateY(-47%);
    z-index: 1;
}

.progression-bar.step-2:before,
.progression-bar.pre-pending:before {
    width: 70%;
}

.progression-bar.step-3:before,
.progression-bar.interview-complete:before {
    width: 50%;
}

.progression-bar.step-4:before {
    width: 74.5%;
}

.progression-bar.step-5:before,
.progression-bar.post-sent:before {
    width: 98%;
}

.progression-bar li {
    display: flex;
    position: relative;
    height: 50px;
    cursor: pointer;
    flex-basis: 38px;
}

.progression-bar li:before {
    content: "";
    z-index: 6;
    background-color: white;
    position: absolute;
    top: 50%;
    left: 0;
    will-change: transform;
    transform: translateY(-50%);
    text-align: center;
    display: block;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 5px solid #e5e5e5;
    font-size: 18px;
    line-height: 28px;
    transition: all 0.5s linear;
}

.progression-bar li:after {
    will-change: opacity;
    transition: opacity 0.5s linear;
    opacity: 0;
    content: "";
    display: block;
}

.progression-bar li.is-pending:before {
    border-color: #e8f22e;
}

.progression-bar li:last-child {
    margin: 0;
    background-color: white;
}

.progression-bar li.is-active,
.progression-bar li:hover {
    color: #77b800;
    position: relative;
}

.progression-bar li.is-active:before,
.progression-bar li:hover:before {
    box-shadow: 0 0 6px 1px #ccc;
    border-color: #77b800;
    content: "";
    text-align: center;
}

.progression-bar li.is-active:after,
.progression-bar li:hover:after {
    content: "";
    opacity: 1;
    display: block;
    width: 9px;
    height: 18px;
    border: solid #77b800;
    border-width: 0 4px 4px 0;
    transform: rotate(45deg);
    z-index: 6;
    position: absolute;
    top: 14px;
    left: 14px;
}

.progression-bar li.is-active:before {
    box-shadow: none;
}

.progression-bar li .progression-title,
.progression-bar li .progression-date {
    color: #656565;
    position: absolute;
    white-space: nowrap;
}

.progression-bar li .progression-title {
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
}

.progression-bar li .progression-date {
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
}

/* -------------------------------------------------------------------------- */


/* Footer Section */


/* -------------------------------------------------------------------------- */
.site-footer {
    position: relative;
    padding: 40px 0 30px;
    background-color: rgba(255, 255, 255, 0.95);
    font-size: 14px;
    text-align: center;
}

.site-footer a {
    color: #4c4c4c;
}
.NavLogo{
    width:100px;
}
.TextDesc{
    vertical-align: -4px;
}
.InstaLink{
    color: #c400fa !important;
}
.InstaLink:hover{
    color: #b400e5;
    text-decoration: none;
}
.InstaLink span:hover{
    text-decoration: underline;
}
.InstaText{
        vertical-align: -11px;
        display: inline-block;
}
.BHLink:hover{
    fill: #4c4c4c;
}
@media (max-width:500px){
    .break {
        display: block;
    }
    .TextDesc{
        display:block !important;
        margin-bottom: 0;
    }
    .BHLink{
        margin-top: -15px;
    }
    .NavLogo{
        margin-top: -15px;
    }
}