/* Font import */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

@font-face {
    font-family: newspirit-light;
    src: url(../fonts/newspirit-light.otf);
}
@font-face {
    font-family: ppeiko-medium;
    src: url(../fonts/ppeiko-medium.otf);
}

/* Global */

/* scroll bar style*/
::-webkit-scrollbar {
    background: rgba(0,0,0,0.8);
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-thumb:horizontal{
    background: rgba(256,256,256,0.2);
}
::-webkit-scrollbar-thumb:vertical{
    background: rgba(256,256,256,0.2);
}

::selection {
    color: #FE461E;
    background: black;
}

body {
    font-family: 'Quicksand', sans-serif;
    min-height: 100vh; /* make minmun height is 100% of viewport hight(vh) */
    display: flex; /* make page flex */
    flex-direction: column; /* main flow is vertical */
    background-color: black;
}

main{
    font-family: Helvetica;
    flex-grow: 1; /* make sure main part stay full of screen */
}

a{
    color: white!important;
    text-decoration: none!important;
}

a:hover{
    cursor: pointer;
    color: #FE461E!important;
    text-decoration: none!important;
}

section {
    min-height: 50vh;
}

video{
    max-width: 90%;
}

.ff-quicksand{
    font-family: 'Quicksand', sans-serif;
}

.ff-newspirit{
    font-family: newspirit;
}

.ff-helvetica{
    font-family: Helvetica;
}

.ff-anton{
    font-family: 'Anton', sans-serif;
}

.bg-white{
    background-color: rgba(256,256,256,1);
}


/* Header */
.bg-header, .bg-footer{
    color: white;
    background-color: rgba(0,0,0,0.9);
    font-weight: 100;
    letter-spacing:1px;
    text-transform: uppercase;
}

.bg-header[data-transparent="true"]{
    background-color: rgba(0,0,0,0.4);
}


.dropdown-item:active{
    background-color:  rgba(0,0,0,0.5);
}

.navbar-nav , .dropdown-item{
    font-weight: 600;
}

/* Hero */
.home{
    background-size:cover; 
    background-position: center center; 
    background-repeat:no-repeat; 
    background-color:rgba(0, 0, 0, 0.5); 
    background-blend-mode: multiply;
    transition: background-image 1s ease-in-out;
}

.hero{
    height: 80vh;
}

.hero-secondary{
    margin-top: -9vh;
    min-height: 90vh;
    background-size:cover;
    background-position: center center; 
    background-repeat:no-repeat; 
    background-color: rgba(0,0,0,0.2);
    background-blend-mode: multiply;
}

/* Footer */

footer{
    background-color: rgba(0,0,0,0.5);
}

.form-control{
    border: 1px solid black;
    background-color: rgba(256,256,256,0.2);
}

.form-control::placeholder{
    font-size: 14px;
    color: rgba(256,256,256,0.5);
}

.form-control:focus{
    background-color: rgba(256,256,256,0.2)!important;
    color: white !important;
    box-shadow: none;
    border-color: #FE461E;
}

.btn-custom-1{
    font-size: 14px;
    border: 1px solid #EA4825;
    color: white!important;
    background-color: #EA4825;
    cursor: pointer;
}

.btn-custom-1:hover{
    opacity: 0.9;
    font-size: 14px;
    border: 1px solid #EA4825;
    color: white!important;
    background-color: #EA4825;
    cursor: pointer;
}

.btn-custom-2 , .btn-custom-2:active{
    font-size: 14px;
    border: 1px solid #E41A44!important;
    color: white!important;
    background-color: #E41A44!important;
    cursor: pointer;
}

.btn-custom-2:hover{
    opacity: 0.9;
    font-size: 14px;
    border: 1px solid #E41A44!important;
    color: white!important;
    background-color: #E41A44!important;
    cursor: pointer;
}

.btn-custom-3 , .btn-custom-3:active{
    font-size: 14px;
    border: 1px solid #FE461E!important;
    color: white!important;
    background-color: #FE461E!important;
    cursor: pointer;
}

.btn-custom-3:hover{
    opacity: 0.9;
    font-size: 14px;
    border: 1px solid #FE461E!important;
    color: white!important;
    background-color: #FE461E!important;
    cursor: pointer;
}


.social-icon{
    color: white;
    font-size: 20px;
}

.social-icon-dark-lg{
    color: black;
    font-size: 35px;
}

.fb , .ig{
    transition: color ease-in-out 0.2s;
}

.fb:hover{
    color: #4267B2 ;
}

.ig:hover{
    color:#DD2A7B;
}

.py-10{
    padding-bottom: 6rem;
    padding-top: 6rem;
}

.pt-10{
    padding-top: 6rem;
}

.pb-10{
    padding-bottom: 6rem;
}

.border-round{
    border-radius: 8px;
}

/* Vieilles */
.content-text{
    letter-spacing :0.08em; 
    line-height:1.8em; 
    font-size:0.95rem;
}

.content-title{
    letter-spacing :0.08em; 
    line-height:1.8em; 
}

.content-marked{
    max-width:100%; 
    padding:10px 15px 10px 15px; 
    border: 1px solid rgba(256,256,256,0.3); 
    border-radius:8px;
}

/* Parallax */
.parallax {
    min-height: 85vh;
    background-attachment: fixed;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
}

@media only screen and (max-device-width: 1366px) {
    .parallax {
        min-height: 50vh;
        background-attachment: scroll;
    }
}

.rellax{
    position: relative;
}

.page-title{
    font-size: clamp(3.4rem, 4.5vw, 5.5rem)!important; 
    letter-spacing :0.1em!important;
    text-transform: uppercase!important;
}

.staff-img{
    max-width: 350px;
    max-height: 350px;
    cursor: pointer;
    overflow: hidden;
    border-radius: 10px;
    filter: grayscale(100%);
    background-color: rgba(0, 0, 0, 1);
}

.staff-img img {
    width: 100%;
    transition: all 0.3s ease-out;
}

.staff-img img:hover {
    transform:scale(1.1);
}

.staff-img > div > img {
    width: 100%;
    transition: all 0.3s ease-out;
}

.staff-img > div > img:hover {
    transform:scale(1.1);
    opacity: 0.6;
}

.hover-container {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    margin-top: -100px; 
    position:relative; 
    color: white;
    cursor: pointer;
}

.hover-text:hover + .hover-container,
.hover-container:hover {
    opacity: 1;
}

.hover-container > h5{
    text-transform: uppercase;
}

.hover-container > p{
    color: #FF4720;
}

@media (min-width: 500px){
    .w-sm-90{
        max-width: 90%;
    }
}

@media (min-width: 768px){
    .w-md-75{
        max-width: 75%;
    }
    .w-md-60{
        max-width: 60%;
    }
    .w-md-50{
        max-width: 50%;
    }
}
@media (min-width:1290px) {
    .w-lg-90{
        max-width: 90%;
    }
    .w-lg-85{
        max-width: 85%;
    }
    .w-lg-75{
        max-width: 75%;
    }
    .w-lg-50{
        max-width: 50%;
    }
    .w-lg-40{
        max-width: 40%;
    }
}
@media (min-width:1550px) {
    .w-xl-75{
        max-width: 75%;
    }
    .w-xl-50{
        max-width: 50%;
    }
    .w-xl-40{
        max-width: 40%;
    }
}

/* Gallery */
.pswp-gallery > div > a{
    cursor: pointer;
}

/*
.pswp-gallery > div > a img{
    height: 400px;
}

@media (max-width: 875px){
    .pswp-gallery > div > a img{
        height: 250px;
    }
}

@media (max-width: 575px){
    .pswp-gallery > div > a img{
        height: 100%;
    }
}
*/