#banner {
    height: 100vh;
    overflow: hidden;
    position: relative;
}
.banner_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner_caption {
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.24) -118.37%, rgb(0 0 0 / 29%) 100%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: end;
    padding-bottom: 100px;
}
.banner_caption h1 {
    color: #FFFFFF;
    font-size: 58px;
    font-family: "helvetica-neue-medium";
    text-align: center;
    width: 627px;
    margin: auto;
}
.banner_caption button {
    margin-top: 70px;
}
.banner_caption .container {
    position: relative;
}
.scroll_down {
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    gap: 10px;
    font-family: "helvetica-neue-light";
}
.scroll_down:hover{
    color: #fff;
}
.scroll_down img{
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}
@keyframes floating {
    from { transform: translate(0,  0px); }
    65%  { transform: translate(0, 10px); }
    to   { transform: translate(0, -0px); }    
}
.common_banner_title {
    color: #FFFFFF;
    font-size: 48px;
    font-family: "helvetica-neue-medium";
}
.blog_detils p {
    width: 540px;
    margin: 30px auto 40px;
}
.brand_detils h1 {
    width: 830px;
    margin: auto;
}

#package_banner {
    height: 300px;
    position: relative;
    overflow: hidden;
}
#package_banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.package_caption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(2, 2, 2, 0.6);
}
.package_caption h1 {
    width: 970px;
    margin: auto;
}