.navbar {
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: #000 !important;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 20px;
}

.card {
    display: flex;
    flex-direction: column;
}

.card-body {
    flex: 1;
}
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('images/Sky.jpg');
    background-size: cover;
    background-position: center;
    color: rgb(195, 195, 195);
    display: flex;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
}

.info{
    background-color: #ebebeb;
    color: #383838;
    padding-bottom: 100px;
}

.fade-in {
    display: none;
}

.slide-left {
    opacity: 0;
    transform: translateX(-120px);
    transition: all 0.8s ease;
}

.slide-left.show{
    opacity: 1;
    transform: translateX(0);
}

.footer{
    background-color: black;
}

.slide-up {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}
.footer.slide-up {
    transition-delay: 0.2s;
}
.slide-up.show {
    opacity: 1;
    transform: translateY(0);
}

.section {
    padding: 80px 0;
}

