/*
*
*/

body {
    font-family: Lato !important;
}

/************* HEADER ************/
.header {
    position: relative;
    margin-bottom: 40px;
}

/* Menu langue */
#fixed-menu-language {
    position: absolute;
    right: 70px;
    top: 70px;
}

.active > a {
    background-color: transparent;
    color: #c49f35 !important;

    font-weight: bold;
    font-size: 10pt;
    text-transform: uppercase;
    padding-right: 0;
}

.active > a:hover {
    background-color: transparent !important;
}

.inactive > a {
    background-color: transparent;
    color: black !important;
    font-weight: bold;
    font-size: 10pt;
    text-transform: uppercase;
}

.inactive > a:hover {
    background-color: transparent !important;
}

#fixed-menu-language ul li {
    display: inline-block;
}

@media (max-width: 768px) {
    #fixed-menu-language {
        right: 15px;
        top: 10px;
    }

}

/*******************************************************************/


/************* MENU PRINCIPAL ************/
.navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent !important;
    border-color: transparent !important;
}

.navbar-default .navbar-nav > li > a {
    font-weight: 900;
    font-size: 10pt;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: black;
}

.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
    color: #c49f35;
    -webkit-transition: color ease-in-out 0.3s;
    -moz-transition: color ease-in-out 0.3s;
    -ms-transition: color ease-in-out 0.3s;
    -o-transition: color ease-in-out 0.3s;
    transition: color ease-in-out 0.3s;
}

.navbar-spacer-gold {
    color: #c49f35 !important;
}

.nav > li:not(:last-child) > a:after {
    content: " | ";
    color: #c49f35 !important;
    padding-left: 20px;
    font-weight: 900;
}

/*******************************************************************/

/************* GENERAL  ************/
.no-padding {
    padding-left: 0;
    padding-right: 0;
}

.logo {
    padding-top: 40px;
    margin: 0 auto;
    width: 350px;
}

.content {
    margin: 0 0 100px 0;
}

/************* FONT  ************/
.special-font {
    font-size: 12pt;
    font-weight: bold;
    text-transform: uppercase;
}

.special-font-gold {
    color: #c49f35;
    font-weight: bold;
    font-size: 12pt;
    text-transform: uppercase;
}

.special-font-large {
    font-weight: 300;
    font-size: 20pt;
    text-transform: uppercase;
    letter-spacing: 8px;
}

.special-font-light {
    color: white;
    font-size: 10pt;
    text-transform: uppercase;
}

.special-font-contact {
    font-size: 11pt;
}


/*       Séparateur de ligne      */
.special-line-gold {
    padding-top: 20px;
    border-bottom: 1.5pt solid #c49f35;
    width: 7%;
}

#return-to-top {
    color: #c49f35;
}


/************* MINI GALERIE ************/


.gallery-box {
    position: relative;
    margin: 10px;
}


.caption {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    left: 0;
    right: 0;
    bottom: 0;
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    padding: 15px 0;
    text-align: center;
}

.gallery-box .img-plus {
    width: 25px;
    position: absolute;
    right: 0;
}

a:hover {
    color: transparent;
    text-decoration: none;
}

/************* FORMULAIRE ************/
.input-special {
    border: 0;
    box-shadow: none !important;
    outline: 0;
    background: transparent;
    border-bottom: 1px solid darkgrey;
    line-height: 20px;
    padding-bottom: 5px;
    border-radius: 0 !important;
}

#message {
    border: 0;
    box-shadow: none !important;
    outline: 0;
    background: transparent;
    border-bottom: 1px solid darkgrey;
    line-height: 20px;
    padding-bottom: 5px;
    resize: vertical;
    height: 46px;
    min-height: 46px;
    max-height: 180px;
    border-radius: 0 !important;
}

.btn-special {
    border-radius: 0px !important;
    border-color: black !important;
    width: 200px;
    margin: 10px 0;
}

.btn-special:hover {
    color: #c49f35;
    background-color: #e6e6e6;
    -webkit-transition: color ease-in-out 0.3s;
    -moz-transition: color ease-in-out 0.3s;
    -ms-transition: color ease-in-out 0.3s;
    -o-transition: color ease-in-out 0.3s;
    transition: color ease-in-out 0.3s;
}

.center_form {
    margin: 0 auto;
    width: 80%
}

/************* FOOTER ************/
#special-footer {
    background-color: black;
    padding: 50px 0;
    bottom: 0;
    width: 100%;

}

#special-footer-contact {
    position: absolute;
    background-color: black;
    padding: 50px 0;
    bottom: 0;
    width: 100%;

}

#special-footer img {
    width: 250px;

}

/* Special center --> pour un nombre impair de colonne*/
.row.text-center > div {
    display: inline-block;
    float: none;
}

/*Texte sur image */

.parallax {
    /* The image used */
    background-image: url("../img/monaco-view.jpg");
    /* Set a specific height */
    height: 800px;
    /* Create the parallax scrolling effect */
    /*    background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;*/
    background-size: cover;
    position: relative;

}

#overlay-text {
    color: white;
    text-align: center;
    -webkit-transition: opacity 0.6s;
    -moz-transition: opacity 0.6s;
    transition: opacity 0.6s;
    font-size: 20pt;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 25px 0;
}

#overlay-text p {
    margin: 0 auto;
}

/************* Animation RETOUR HAUT DE PAGE ************/
#return-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.7);
    width: 50px;
    height: 50px;
    display: block;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#return-to-top i {
    color: #fff;
    margin: 0;
    position: relative;
    left: 16px;
    top: 13px;
    font-size: 19px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#return-to-top:hover {
    background: rgba(0, 0, 0, 0.9);
}

#return-to-top:hover i {
    color: #fff;
    top: 5px;
}


/************* GALERIE ************/
.gallery {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-width: 33%;
    -moz-column-width: 33%;
    column-width: 33%;
}

.gallery .pics {
    -webkit-transition: all 350ms ease;
    transition: all 350ms ease;
    max-width: 90%;
    margin-bottom: 40px;
}

.gallery .pics:hover {
    cursor: zoom-in;
    position: relative;
    /*transform: scale(1.1);*/ /* (110% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}


.gallery .animation {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}


@media (max-width: 450px) {
    .gallery {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
        -webkit-column-width: 100%;
        -moz-column-width: 100%;
        column-width: 100%;
    }
}

@media (max-width: 400px) {
    .btn.filter {
        padding-left: 1.1rem;
        padding-right: 1.1rem;
    }
}

@media (min-width: 992px) {
    .modal-lg {
        width: 800px;
    }
}

@media (min-width: 768px) {
    .modal-dialog {
        width: 700px;
        margin: 30px auto;
    }
}

/************* MODAL ************/
#imgOnModal {
    width: 100%;
}

#whoWeAre {
    margin: 50px 0;
}

#whoWeAre p {
    margin-bottom: 15px;
}

.realisation {
    margin-bottom: 50px;
}


/************* CONTACT ************/
#success_message {
    padding: 50px 0;
    font-size: 22px;
    font-weight: bold;
    color: darkgreen;
}

/* one */
.menu-option {
    margin-bottom: 20px;
}

@media (max-width: 1200px) {
    .caption {
        font-size: 12px;
    }

    .img-plus {
        display: none;
    }

}

@media (max-width: 990px) {

    .img-plus {
        display: none;
    }
}

/**************************************** RESPONSIVE **********************************************/

/* Large desktops and laptops LG */
@media (min-width: 1200px) {

}

/* Landscape tablets and medium desktops MD */
@media (min-width: 992px) and (max-width: 1199px) {
    .header {
        margin: 0;
    }

    .logo {
        width: 250px;
        padding: 10px;
    }

    .sectionMenu > a {
        display: none !important;
    }

    .navbar {
        display: flex;
        margin: 0;
    }

    .navbar-header {
        border-top: 1px solid #f1f1f1;
    }

    .parallax {
        height: 350px;
    }

    #overlay-text {
        font-size: 16px;
    }
}

/* Portrait tablets and small desktops SM */
@media (min-width: 768px) and (max-width: 991px) {
    .header {
        margin: 0;
    }

    .logo {
        width: 250px;
        padding: 10px;
    }

    .sectionMenu > a {
        display: none !important;
    }

    .navbar {
        display: flex;
        margin: 0;
    }

    .navbar-header {
        border-top: 1px solid #f1f1f1;
    }

    .parallax {
        height: 300px;
    }

    #overlay-text {
        font-size: 16px;
    }

    .caption {
        font-size: 10px;
    }
}

/* Landscape phones and portrait tablets XS */
@media (max-width: 767px) {
    .header {
        margin: 0;
    }

    .logo {
        width: 190px;
        padding: 10px;
    }

    .sectionMenu > a {
        display: none !important;
    }

    .navbar {
        display: block;
        margin: 0;
    }

    .navbar-header {
        border-top: 1px solid #f1f1f1;
    }

    .parallax {
        height: 200px;
    }

    #overlay-text {
        font-size: 16px;
    }

    .caption {
        font-size: 16px;
    }

    .gallery .pics {
        max-width: 100%;
    }

    .nav > li:not(:last-child) > a:after {
        display: none;
    }

}

/* Special Media pour ajustement galerie*/
@media (max-width: 450px) {

}

/* Charity */
.charity-background {
    width: 100%;
    object-fit: cover;
    height: fit-content;
    background-image: url('../img/charity-partner.jpg');
    background-size: cover;
    position: relative;
}

.charity-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
    padding-bottom: 2rem;
}

.charity-background::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.charity-title {
    color: white;
    text-align: center;
    font-size: 20pt;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 3rem 3rem 0 3rem;

    @media (max-width: 500px) {
        font-size: 17pt;
    }
}

.charity-line-gold {
    width: 90% !important;
    margin: auto;
}

.charity-intro {
    font-size: 15pt;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    margin-top: 1rem;
}

.charity-intro-gold {
    color: #c49f35;
}

.charity-image {
    width: 100%;

    @media (max-width: 763px) {
        margin: 1.25rem;
    }
}

.charity-sponsor-video {
    @media (max-width: 763px) {
        display: none;
    }
}

#videoModalSponsor.in, #videoModalFamily.in {
    display: flex !important;
    align-items: center !important;
}
