.landing_header_container {
    padding: 0 0 20px 0;
    /*height: 90vh;*/
}

#landing_header {
    margin: auto;
    animation: ls-fadein-up 400ms ease-out;
    animation-fill-mode: forwards;
    padding: 20px 150px 0;

}

#landing_header h1 {
    margin: 10px 0 40px;
    color: var(--blue-dark);
    font-weight: bold;
    font-size: xxx-large;
}

#landing_header h2 {
    /*color: gray;*/
    margin: 10px 0 60px;
}

#landing_header p {
    font-size: small;
    color: darkgray;
}

#ul_doctors_preview {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px auto 0;
}

#ul_doctors_preview li {
    list-style: none;
    margin: 0 -7px;
    cursor: pointer;
    transition: all 0.3s;
}

#ul_doctors_preview li:hover {
    transform: translateY(-10px) scale(1.2);
}

#ul_doctors_preview li img {
    background-size: 20px;
    background: white;
    width: 40px !important;
    height: 40px;
    border-radius: 50%;
    box-shadow: var(--box-shadow-dark);
    object-fit: cover;
}


#landing_slider {
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, var(--blue) 0%, rgba(128, 208, 199, 1) 100%);
    border-radius: 0 0 90px 20px;
    padding: 0 0 100px;
    height: 100%;
    box-shadow: var(--box-shadow-dark);
}

#landing_slider .landing_slider_player {
    display: none;
    text-align: center;
    height: 100%;
}

#landing_slider .landing_slider_player.active {
    display: block;
}

#landing_slider .landing_slider_player .ls-1 {
    height: 80%;
    animation: ls-fadein 200ms ease-out;
    animation-fill-mode: forwards;
}

#landing_slider .landing_slider_player .ls-2 {
    opacity: 0;
    height: 10%;
    animation: ls-fadein-up 500ms ease-out;
    animation-fill-mode: forwards;
    padding: 0 10px;
}

#landing_slider .landing_slider_player .ls-3 {
    opacity: 0;
    height: 10%;
    animation: ls-fadein-up 300ms ease-out;
    animation-delay: 500ms;
    animation-fill-mode: forwards;
    font-size: smaller;
    color: darkgray;
    padding: 0 10px;

}

#landing_slider .landing_slider_player p {
    color: whitesmoke;
}

#landing_slider .ls_pagination {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

#landing_slider .ls_pagination div {
    width: 8px;
    height: 8px;
    background-color: #cccccc;
    border-radius: 50%;
    margin: 0 2px;
    transition: all 200ms;
}

#landing_slider .ls_pagination div.active {
    border-radius: 5px;
    animation: ls-pg 2s ease-in-out;
    animation-fill-mode: forwards;
}

.landing_container {
    position: relative;
    padding: var(--nav-height) 6vw var(--footer-height);
    /*background-color: var(--bgc-pattern-color);*/
    width: 100%;
    overflow-x: hidden;
    margin: auto;
}

@media (max-width: 768px) {

    .landing_header_container {
        /*height: 43vh;*/
    }

    #landing_slider {
        margin-top: 50px;
    }

    .landing_container {
        padding: var(--nav-height) 2vw var(--footer-height);
    }

    #landing_header {
        margin: auto;
        padding: 20px 10px 0;

    }
}

@keyframes background_rotate {
    0% {
        transform: rotate(45deg);
    }
    100% {
        transform: rotate(195deg);
    }
}

@keyframes ls-fadein-up {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes ls-fadein {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes ls-pg {
    0% {
        width: 8px;
        background-color: #cccccc;
    }
    100% {
        width: 20px;
        background-color: #868686;
    }
}