#home-slide {
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
}

#home-left-side {
    display: flex;
    opacity: 0;
    position: relative;
    width: 850px;
    flex-shrink: 0;
}

#home-right-side {
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    box-sizing: border-box;
    margin-left: -260px;
}

#home-bottom-side {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
}

#home-slide .brochure-download-button {
    text-decoration: none;
    padding: 14px 16px;
    border-radius: 20px;
    transition: 0.15s ease;
    background-color: rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 6px 8px rgba(0, 10, 20, 0.1), 0 0 2px rgba(0, 10, 20, 0.12);
    margin-left: auto;
    color: rgb(50, 60, 70);
    width: -moz-fit-content;
    width: fit-content;
    position: absolute;
    right: 30px;
    bottom: 30px;
    opacity: 0;
    font-family: Quicksand, sans-serif;
}

#home-slide .brochure-download-button:hover {
    bottom: 35px
}

#home-slide .brochure-download-button svg {
    margin-right: 4px;
    transition: 0.15s ease;
    fill: #e71d42;
    width: 32px;
    height: 32px;
}

#home-slide .brochure-download-button div {
    margin-top: 6px;
    font-size: 16px;
    width: 200px;
    text-align: center;
}

#home-slide-contact {
    display: flex;
    justify-content: flex-end;
    align-self: flex-end;
    margin-right: 30px;
    margin-top: 30px;
    color: rgb(50, 60, 70);
    z-index: 2;
    font-size: 16px;
    opacity: 0;
    white-space: nowrap;
}

#home-slide-contact-info {
    display: flex;
    align-items: center;
}

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

.contact-vertical-bar {
    position: relative;
    margin: 0 18px;
    height: 25px;
    width: 1px;
    background-color: rgba(50, 60, 70, 0.3);
}

#social-networks-btn {
    display: flex;
    align-items: center;
}

#social-networks-btn a {
    cursor: pointer;
    text-decoration: none;
}

#social-networks-btn a:first-child svg {
    fill: #1278F3;
}

#social-networks-btn a:last-child svg {
    fill: #1DA1F2;
}

#social-networks-btn a svg {
    transition: 0.15s ease;
    height: 22px;
    width: 22px;
}

#social-networks-btn a:hover svg {
    opacity: 0.88;
}

#social-networks-btn a:not(:last-child) {
    margin-right: 14px;
}

@keyframes pinkAnimation {
    from {
        transform: translateY(-36%) rotate(0deg);
    }
    to {
        transform: translateY(-36%) rotate(360deg);
    }
}

#home-waigeo-logo {
    width: 160px;
    height: auto;
}

#home-bottom-side > a {
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    color: rgb(50, 60, 70);
    font-family: Quicksand, sans-serif;
    font-size: 16px;
}

#home-bottom-side > a > div {
    padding: 0 20px 22px 0;
}

#home-chevron-down-button {
    border-radius: 50%;
    border: none;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 10px 0 30px 0;
    background-color: white;
    cursor: pointer;
    transition: 0.15s ease;
    animation: homeChevronAnimation 0.6s ease infinite alternate;
}

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

#home-chevron-down-button:hover {
    background-color: #0053A6;
}

#home-chevron-down-button svg {
    fill: #0053A6;
    width: 34px;
    height: 34px;
    transition: 0.15s ease;
}

#home-chevron-down-button:hover svg {
    fill: white;
}

#home-slide-contact-us-btn {
    background-color: #0053A6;
    color: white;
    font-family: Quicksand, Qualy, sans-serif;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: 0.15s ease;
    padding: 8px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    font-size: 18px;
    margin-top: -3px;
    flex-shrink: 0;
    text-decoration: none;
}

#home-slide-contact-us-btn:hover {
    background-color: #0067ce;
}

#background {
    width: calc(100% - 130px);
    height: 100%;
    object-fit: cover;
    object-position: 66% 50%;
    opacity: 0;
    transform-origin: 40% 50%;
}

#blue-wave-1-container {
    height: 0vh;
    width: 100%;
    position: absolute;
    bottom: 0;
    right: -5px;
    overflow: hidden;
}

#blue-wave-1 {
    width: auto;
    height: 100vh;
    position: absolute;
    bottom: 0;
    right: -5px;
}

#blue-wave-2-container {
    height: 0vh;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

#blue-wave-2 {
    width: auto;
    height: 40vh;
    position: absolute;
    top: 60vh;
}

#home-scolariz-logo {
    width: 520px;
    height: auto;
    position: relative;
    margin-top: 9vh;
}

#home-scolariz-logo img {
    position: relative;
    width: 100%;
    height: auto;
}

@keyframes starsAnimation {
    from {
        transform: translateY(2%);
    }
    to {
        transform: translateY(-1%);
    }
}

#home-scolariz-logo svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    animation: starsAnimation infinite alternate 1.5s ease-in-out;
}

@keyframes starAnimation1 {
    0% {
        transform: translateY(0%) rotate(0deg);
    }
    50% {
        transform: translateY(30%) rotate(180deg);
    }
    100% {
        transform: translateY(0%) rotate(360deg);
    }
}

@keyframes starAnimation2 {
    0% {
        transform: translateY(0%) rotate(0deg);
    }
    50% {
        transform: translateY(40%) rotate(180deg);
    }
    100% {
        transform: translateY(0%) rotate(360deg);
    }
}

@keyframes starAnimation3 {
    0% {
        transform: translateY(0%) rotate(0deg);
    }
    50% {
        transform: translateY(50%) rotate(180deg);
    }
    100% {
        transform: translateY(0%) rotate(360deg);
    }
}

@keyframes starAnimation4 {
    0% {
        transform: translateY(0%) rotate(0deg);
    }
    50% {
        transform: translateY(60%) rotate(180deg);
    }
    100% {
        transform: translateY(0%) rotate(360deg);
    }
}

#scolariz-star-1 {
    transform-box: fill-box;
    transform-origin: center;
    animation: starAnimation1 linear infinite 6s;
}

#scolariz-star-2 {
    transform-box: fill-box;
    transform-origin: center;
    animation: starAnimation2 linear infinite 5.5s;
}

#scolariz-star-3 {
    transform-box: fill-box;
    transform-origin: center;
    animation: starAnimation3 linear infinite 5s;
}

#scolariz-star-4 {
    transform-box: fill-box;
    transform-origin: center;
    animation: starAnimation4 linear infinite 4.5s;
}

#notre-solution-de-gestion-des {
    font-family: Qualy, Quicksand, sans-serif;
    font-size: 34px;
    margin-top: 8vh;
    color: #0053A6;
    margin-bottom: 15px;
}

#inscriptions-scolaires {
    width: 640px;
    height: auto;
}