/* Text reveal texts */

.text-reveal {
    font-size: max(32px, 3.5vw);
    color: #FFFDD0;
    width: 72vw;
    text-align: center;
}

.text-reveal-smaller {
    font-size: max(25px, 2.8vw);
}

.uk-navbar-container.uk-navbar-sticky {
    background: #1c1c5cc5 !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.uk-nav-primary {
    font-size: 23px !important;
}

.polaroid, .slider-polaroids li .el-item {
    border: 15px solid white;
    border-radius: 0px;
    border-bottom-width: 75px;
    position: relative;
}

.slider-polaroids .uk-slider-container {
    overflow-y: visible !important;
}

.slider-polaroids li .el-item {
    border-width: 15px;
    background: white;
    transform: rotate(-4deg);
    margin: 0 20px;
}

.slider-polaroids .uk-slider-items li:nth-child(even) .el-item {
    transform: rotate(4deg);
}

.slider-polaroids .el-nav {
    margin-top: 50px !important;
}

.slider-polaroids li .el-item h3 {
    color: black;
    font-size: 28px;
}

.polaroid::after {
    content: attr(data-polaroid);
    position: absolute;
    bottom: -75px;
    height: 75px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    font-family: "Shadows into light";
    font-weight: 600;
    font-size: 28px;
}

.rotate-left {
    transform: rotate(4deg);
}

.rotate-right {
    transform: rotate(-4deg);
}

#call-fixed-btn {
    position: fixed;
    z-index: 100;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #1DA8DD;
    color: white;
    border-radius: 100px;
    display: none;
    opacity: 1;
    justify-content: center;
    align-items: center;
    /* border: 1px solid #11114E; */
    cursor: pointer;
}

#duo-boutons .el-item:first-of-type a {
    background: #1DA8DD;
    color: white;
}

.underlined-menu-item {
    text-decoration: underline !important;
    text-underline-offset: 5px !important;
}

.uk-button {
    transition-property: color, background-color, background-position, background-size, border-color, box-shadow, transform;
}

.uk-button:hover {
    transform: scale(1.075);
}

@media screen and (max-width: 1300px) {
    .text-reveal {
        font-size: 3rem;
        color: white;
    }

    .text-reveal-smaller {
        font-size: 2.5vw;
    }
}

@media screen and (max-width: 800px) {
    .uk-nav-primary {
        font-size: 19px !important;
    }

    #first-cta .uk-text-right {
        text-align: left !important;
    }

    h2 {
        font-size: 35px;
    }

    .text-reveal {
        font-size: 35px;
        /* max-width: 80vw; */
    }

    .text-reveal-smaller {
        font-size: 30px;
    }

    .hidden-mobile-pic {
        display: none;
    }

    .shown-from-800 {
        display: none;
    }

    .slider-polaroids li .el-item {
        border-width: 15px;
        background: white;
        transform: rotate(-4deg);
        margin: 0 20px;
    }
}

@media screen and (min-width: 800px) {
    .hidden-line {
        display: none;
    }
}

.top-wind, .small-wind, .middle-wind, .bottom-wind {
    transform-origin: center;
    animation: wind-animation 1400ms linear infinite;
}

.top-wind {
    animation-delay: 1100ms;
}

.small-wind {
    animation-delay: 950ms;
}

.middle-wind {
    animation-delay: 550ms;
}

@keyframes wind-animation {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.8);
    }
    100% {
        transform: scale(1);
    }
}