/*!
 * Home page
 * Version - 1.0.1
 *
 * Copyright (c) 2023
 */

/*
 * ======================================
 * ============= * HEADER * =============
 */

.video-container {
    position: absolute;
    z-index: -1;
    inset: 0px;
    overflow: hidden;
    background-size: contain;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-image: none;
}

.video-container video {
    /* margin: 0px !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    visibility: visible;
    opacity: 1;
    width: 1585px;
    height: auto; */
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto !important;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.overlay:before {
    content: ' ';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #000000;
    opacity: .4;
    pointer-events: none;
    transition: ease opacity 300ms 100ms;
}

@media only screen and (min-width: 1200px) {
    #home h1 {
        font-size: 65px !important;

    }
}

@media only screen and (max-width: 600px) {
    #home p {
        font-size: 1em !important;
    }
}


#home p {
    font-weight: 400;
    color: #ffffff !important;
}

/*
 * ======================================
 * ============= * Realisation * =============
 */
.post-date {
    float: left;
    margin-right: 10px;
    text-align: center;
}

.post-date .day {
    background: #ffffff;
    border-radius: 2px 2px 0 0;
    color: #01131d;
    display: block;
    font-size: 18px;
    font-weight: 900;
    padding: 10px;
}

.event-rounded {
    border-radius: 1em;
}

.event-rounded img {
    border-top-left-radius: 1em !important;
    border-top-right-radius: 1em !important;
}

.post-date .month {
    display: block;
    background: #f8f5f5;
    border-radius: 0 0 2px 2px;
    color: #0088CC;
    font-weight: bold;
    font-size: .8em;
    line-height: 1.8;
    padding: 1px 10px;
    text-transform: uppercase;
}

.bg-yellow {
    background-color: #f4b103 !important;
    color: var(--primary-color);
}

.bg-blue {
    color: #f4b103 !important;
    background-color: var(--blue);
}

/*
 * ======================================
 * ============= * Carousel * =============
 */
.carousel-item {
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 90vh;
    background-position: center center;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #000000;
    opacity: .4;
    pointer-events: none;
    transition: ease opacity 300ms 100ms;
}