#our-applications-slide {
    display: none;
    justify-content: space-between;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    box-sizing: border-box;
    position: absolute;
}

#multicolored-powder {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
    left: -50vw;
    height: 74vw;
    opacity: 0;
}

#our-applications-left-side {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    max-width: 870px;
    flex-wrap: wrap;
    margin: auto 0 auto 120px;
    height: fit-content;
    opacity: 0;
}

.application {
    display: flex;
    flex-direction: column;
    background-color: white;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    width: 230px;
    margin: 10px;
    box-shadow: 0 5px 12px -2px rgba(0, 20, 40, 0.25), 0 4px 3px rgba(0, 20, 40, 0.15);
    flex-shrink: 0;
    height: 210px;
    text-decoration: none;
    color: rgb(50, 60, 70);
    font-size: 16px;
    cursor: pointer;
    transition: 0.15s ease;
    position: relative;
    top: 0;
}

.application:hover {
    top: -6px;
}

.application img {
    height: 120px;
    width: 120px;
    margin: 0 auto 10px auto;
    object-fit: contain;
}

.application > div:last-child {
    margin-top: 12px;
    font-weight: bold;
}

#last-application {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    font-weight: bold;
}

#last-application > span > span {
    color: #0091EA;
}

#last-application-line {
    width: 70px;
    height: 3px;
    border-radius: 10px;
    margin: 15px auto 0 auto;
    background-color: #0091EA;
}

#our-applications-right-side {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-right: 120px;
}

#our-applications-right-side > a {
    text-decoration: none;
    color: #215A86;
    font-size: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 80px;
    text-align: center;
    opacity: 0;
}

#our-applications-right-side > a > img {
    width: 350px;
    height: auto;
    margin-bottom: 25px;
}

#our-applications-right-side > div:last-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 40px;
    font-size: 20px;
    color: rgb(50, 60, 70);
    opacity: 0;
}

#our-applications-right-side > div:last-child > span:not(:last-child) {
    margin-bottom: 8px;
}

#our-applications-slide-contact-us-btn {
    background-color: rgb(0, 5, 10);
    color: white !important;
    font-family: Qualy, sans-serif;
    border: none;
    cursor: pointer;
    transition: 0.15s ease;
    padding: 12px 20px 8px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    font-size: 22px;
    margin: 0;
    position: relative;
    z-index: 6;
    opacity: 0;
    text-decoration: none;
}

#our-applications-slide-contact-us-btn:hover {
    opacity: 0.9 !important;
}

footer {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(50, 60, 70);
    opacity: 0;
}

footer a {
    color: rgb(50, 60, 70);
    text-decoration: none;
}

footer span {
    margin-right: 30px;
}

#mentions-legales {
    cursor: pointer;
}

#our-applications-chevron-up-button {
    border-radius: 50%;
    border: none;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    margin: 20px auto 0 auto;
    background-color: transparent;
    cursor: pointer;
    transition: 0.15s ease;
    animation: ourApplicationsChevronAnimation 0.6s ease infinite alternate;
    z-index: 6;
    left: 0;
    right: 0;
    opacity: 0;
}

@keyframes ourApplicationsChevronAnimation {
    from {
        top: 0px;
    }
    to {
        top: 10px;
    }
}

#our-applications-chevron-up-button:hover {
    background-color: #0091EA;
}

#our-applications-chevron-up-button svg {
    fill: #0091EA;
    width: 38px;
    height: 38px;
    transition: 0.15s ease;
}

#our-applications-chevron-up-button:hover svg {
    fill: white;
}

#our-applications-slide a[href^=tel] {
    color: rgb(50, 60, 70);
    text-decoration:none;
}