#banner {
    height: 100vh;
    position: relative;
    overflow: hidden;
}
#banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.header_caption {
    color: #FFFFFF;
    font-size: 48px;
    font-weight: 500;
    text-align: center;
    width: 100%;
    font-family: "Manrope", sans-serif; 
}
.caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    height: 50%;
    display: flex;
    align-items: end;
    padding: 40px 70px;
}
.flight {
    position: absolute;
    right: 30px;
    top: 25px;
    background: #0000009c;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    z-index: 99;
    transition: all .2s linear;
    text-decoration: none;
    color: #fff;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 20px;
    text-transform: capitalize;
}
.flight:hover{
    background: #FF7600;
    transition: all .2s linear;
}
.flight img {
    filter: brightness(0) invert(1);
    width: 15px !important;
    height: 15px !important;
    object-fit: contain !important;
}