body {
    background-color: #131B1E;
    font-family: "brandon-grotesque", sans-serif;
    padding-top: 20px;
    font-size: 16px;
    color: whitesmoke;
}

a {
    color: inherit;
}

a:hover {
    color: #909090;
    text-decoration: none;
}

footer {
    font-size: 12px;
    color: whitesmoke;
}

.info {
    font-size: 18px;
    display: inline-block;
    float: right;
}

.corporate {
    display: inline-block;
    float: right;
}

.navbar {
    margin-bottom: 30px;
}

.col-md-6 {
    padding-bottom: 15px;
    padding-top: 15px;
}

.zoom-anim-dialog p {

    max-width: 470px;
}

/* ==========================================================================
   OVERLAY
   ========================================================================== */
.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: rgba(0, 0, 0, 0);
    text-transform: uppercase;
}

.col-md-6:hover .overlay {
    opacity: 1;
}

.text {
    font-size: 80px;
    position: absolute;
    font-weight: bolder;
    line-height: 60px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    color: whitesmoke;
}

@media (max-width:992px) {
    .text {
        font-size: 60px;
        line-height: 48px;

    }
}

/* Couleurs des texts thumbs */

.textgrey {
    color: #515151;
}

/* ==========================================================================
   GARRONDE
   ========================================================================== */
::selection {
    background: #909090; /* WebKit/Blink Browsers */
}
::-moz-selection {
    background: #909090; /* Gecko Browsers */
}


/* ==========================================================================
   MFP
   ========================================================================== */
.zoom-anim-dialog h1{
    text-transform: uppercase;
    font-weight: bold;
    font-size: 52px;
    line-height: 44px;
    margin-left: -4px;
    max-width: 620px;
}


/* Styles for dialog window */
#PopUp-Info, #PopUp-CourteAccalmie, #PopUp-HotlineLondon, #PopUp-ThePhoenixCinema, #PopUp-EuropRaid2017, #PopUp-ZooZero, #PopUp-PassingBy, #PopUp-HappyPlace, #PopUp-AnOrdinaryMidnightStroll, #small-dialog9, #small-dialog10, #small-dialog11, #small-dialog12 {
    background: rgba(0, 0, 0, 0);
    padding: 20px 30px;
    text-align: left;
    max-width: 70%;
    margin: 40px auto;
    position: relative;
    color: whitesmoke;
}

@media (max-width:992px) {
    #PopUp-Info, #PopUp-CourteAccalmie, #PopUp-HotlineLondon, #PopUp-ThePhoenixCinema, #PopUp-EuropRaid2017, #PopUp-ZooZero, #PopUp-PassingBy, #PopUp-HappyPlace, #PopUp-AnOrdinaryMidnightStroll, #small-dialog9, #small-dialog10, #small-dialog11, #small-dialog12 {
        max-width: 96%;
    }
}



/**
 * Fade-zoom animation for first dialog
 */

/* start state */
.my-mfp-zoom-in .zoom-anim-dialog {
    opacity: 0;

    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;

    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
}

/* animate in */
.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
    opacity: 1;

    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

/* animate out */
.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);

    opacity: 0;
}

/* Dark overlay, start state */
.my-mfp-zoom-in.mfp-bg {
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-out;
    -moz-transition: opacity 0.3s ease-out;
    -o-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
}

/* animate in */
.my-mfp-zoom-in.mfp-ready.mfp-bg {
    opacity: 0.8;
}

/* animate out */
.my-mfp-zoom-in.mfp-removing.mfp-bg {
    opacity: 0;
}

/**
 * Fade-move animation for second dialog
 */

/* at start */
.my-mfp-slide-bottom .zoom-anim-dialog {
    opacity: 0;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;

    -webkit-transform: translateY(-20px) perspective(600px) rotateX(10deg);
    -moz-transform: translateY(-20px) perspective(600px) rotateX(10deg);
    -ms-transform: translateY(-20px) perspective(600px) rotateX(10deg);
    -o-transform: translateY(-20px) perspective(600px) rotateX(10deg);
    transform: translateY(-20px) perspective(600px) rotateX(10deg);

}

/* animate in */
.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
    opacity: 1;
    -webkit-transform: translateY(0) perspective(600px) rotateX(0);
    -moz-transform: translateY(0) perspective(600px) rotateX(0);
    -ms-transform: translateY(0) perspective(600px) rotateX(0);
    -o-transform: translateY(0) perspective(600px) rotateX(0);
    transform: translateY(0) perspective(600px) rotateX(0);
}

/* animate out */
.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
    opacity: 0;

    -webkit-transform: translateY(-10px) perspective(600px) rotateX(10deg);
    -moz-transform: translateY(-10px) perspective(600px) rotateX(10deg);
    -ms-transform: translateY(-10px) perspective(600px) rotateX(10deg);
    -o-transform: translateY(-10px) perspective(600px) rotateX(10deg);
    transform: translateY(-10px) perspective(600px) rotateX(10deg);
}

/* Dark overlay, start state */
.my-mfp-slide-bottom.mfp-bg {
    opacity: 0;

    -webkit-transition: opacity 0.3s ease-out;
    -moz-transition: opacity 0.3s ease-out;
    -o-transition: opacity 0.3s ease-out;
    transition: opacity 0.3s ease-out;
}

/* animate in */
.my-mfp-slide-bottom.mfp-ready.mfp-bg {
    opacity: 0.8;
}

/* animate out */
.my-mfp-slide-bottom.mfp-removing.mfp-bg {
    opacity: 0;
}















