@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

body {
    font-family: 'Outfit', sans-serif;
    background-color: #f7f7f7;
}

a, .text-primary {
    text-decoration: none;
}
a:not(.btn) {
    color: #000000;
}
.text-primary, .link-primary {
    color: #2CA8D8 !important;
}
a:hover:not(.btn) {
    text-decoration: underline;
}

p, li, small, span, label {
    font-weight: 200;
}

.bg-primary {
    background-color: #2CA8D8 !important;
}

.btn {
    border-radius: 8px;
    padding: 7px 25px;
}
.btn.btn-primary, .btn.btn-danger, .btn.btn-secondary, .btn.btn-dark, .btn.btn-success, .btn.btn-light {
    border: none;
}
.btn.btn-primary {
    background-color: #2CA8D8;
    filter: drop-shadow(0px 3px 0px #2280a5);
}
.btn.btn-primary:hover {
    background-color: #0093c9;
}
.btn.btn-danger {
    filter: drop-shadow(0px 3px 0px #a52222);
}
.btn.btn-secondary {
    filter: drop-shadow(0px 3px 0px #323232);
}
.btn.btn-dark {
    filter: drop-shadow(0px 3px 0px #424242);
}
.btn.btn-success {
    filter: drop-shadow(0px 3px 0px #154900);
}
.btn.btn-light {
    background-color: #f7f7f7;
    filter: drop-shadow(0px 3px 0px #e2e2e2);
}

.CLO__Header {
    background-color: #fff;
    position: fixed;
    top: 0;
    width: 100svw;
    z-index: 100;
    transition: transform 0.3s;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
}
.CLO__Header a {
    color: #2a2a2a !important;
    transition: 0.3s;
}
.CLO__Header a:hover {
    color: #2CA8D8 !important;
    cursor: pointer;
    text-decoration: none;
}
.CLO__Header.hidden {
    transform: translateY(-100%);
}

.CLO__Footer {
    margin-top: 8rem;
    background-color: #fff;
    color: #757575;
}

@keyframes Slide {
    0% {
        opacity: 0%;
        transform: translateY(15px);
    }
    100% {
        opacity: 100%;
        transform: translateY(0px);
    }
}
.Animation__SlideIn {
    opacity: 0%;
    transform: translateY(15px);
    animation: Slide 1s ease forwards;
    will-change: opacity, transform;
}

.CLO__Appointment {
    background-color: #fff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
}

.CLO_Banner {
    overflow: hidden;
    position: relative;
    height: 40svh;
}
.CLO_Banner img {
    object-fit: cover;
    filter: brightness(0.8);
    width: 100svw;
    height: 100%;
    z-index: 0
}
.CLO_Banner h1, .CLO_Banner p {
    text-shadow: 0 0 16px rgba(0, 0, 0, 0.653);
}
.CLO_Banner .Banner__Content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100svw;
    height: 100%;
    z-index: 10
}