#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: 20px;
    width: 230px;
    margin: 10px;
    box-shadow: 0 6px 14px -2px rgba(0, 20, 40, 0.22), 0 0 2px rgba(0, 20, 40, 0.1);
    flex-shrink: 0;
    height: 210px;
    text-decoration: none;
    color: rgb(50, 60, 70);
    cursor: pointer;
    transition: 0.15s ease;
    position: relative;
    top: 0;
    font-family: Poppins, Quicksand, sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
}

.application:hover {
    transform: translateY(-6px);
}

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

.application > div:last-child {
    margin-top: auto;
    font-weight: 600;
}

#last-application {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
    line-height: 26px;
}

#last-application > span > span {
    color: #E0559A;
}

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

#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: 60px;
    text-align: center;
    opacity: 0;
    max-width: 600px;
    font-family: Poppins, Quicksand, sans-serif;
}

#our-applications-right-side > a > img {
    width: 320px;
    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;
    font-family: Poppins, Quicksand, sans-serif;
}

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

#our-applications-slide-contact-us-btn {
    background-color: #0079D6;
    color: white !important;
    font-family: Poppins, Quicksand, Qualy, sans-serif;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: 0.15s ease;
    padding: 10px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    font-size: 22px;
    margin: 0;
    position: relative;
    z-index: 6;
    opacity: 0;
    text-decoration: none;
}

#our-applications-slide-contact-us-btn:hover {
    background-color: #0083e8;
}

footer {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(50, 60, 70);
    opacity: 0;
    font-family: Poppins, Quicksand, sans-serif;
    font-weight: 300;
    font-size: 13px;
}

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: #0079D6;
}

#our-applications-chevron-up-button svg {
    fill: #0079D6;
    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;
}