/* Banner */

.heading-content { 
    position: relative;
    width: 100%;
    height: calc(100vh - 2px);
    padding-top: 85px;
}
.sub-page .heading-content { 
    position: relative;
    width: 100%;
    height: 50vh;
    padding-top: 85px;
}

.heading-content:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 50px;
    bottom: -1px;
    left: 0;
    background: var(--color-white);
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    pointer-events: none;
    z-index: 1;
}
.heading-content:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100px;
    bottom: -1px;
    left: 0;
    background: var(--color-white);
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    pointer-events: none;
    opacity: .5;
    z-index: 0;
}
.heading-content .banner { 
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}
.heading-content .banner::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 150px;
    bottom: -1px;
    left: 0;
    background: var(--color-white);
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    pointer-events: none;
    z-index: 5;
    opacity: .2;
}
.heading-content .banner::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(0deg,rgba(3, 60, 86, 1) 0%, rgba(20, 107, 145, 1) 100%);
    opacity: .7;
}
.sub-page .heading-content .banner img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}

.component-fullwidth {
    width: 100%;
    height: 100%;
    background: #000;
    position: relative;
    top: 0;
    left: 0;
    z-index: 0;
}

.component > ul {
    position: absolute;
    top: 0;
}

.component-fullwidth li .filter {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9;
}

.component-fullwidth li .filter:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgb(5,4,32,1);
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0) 100%);
    opacity: .6;
}

.component-fullwidth nav {
    display: none;
}

.component-fullwidth li img {
    top: 0;
}

.component-fullwidth li .inner {
    position: relative;
    top: 100px;
    opacity: 0;
    transition: .3s;
}

.component-fullwidth li.current .inner {
    top: 0;
    opacity: 1;
    transition: .3s;
}

.component-fullwidth li .inner h2 {
    font-size: 50px;
    color: #fff;
} 

.component-fullwidth li .background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center !important;
    background-size: cover !important;
    filter: brightness(0.8);
}


.form-booking .form-content {
    background: rgba(255, 255, 255, .4);
    border-radius: 45px;
}
.form-booking .form-content form {
    background: var(--color-white);
    border-radius: 35px;
    position: relative;
}
.form-booking .form-content form::before {
    position: absolute;
    content: "";
    width: calc(100% - 2rem);
    height: 2px;
    top: 22px;
    background: var(--color-primary);
    z-index: 0;
}
.form-booking .form-content form .col-12:nth-child(-n+2) {
    padding-right: 0;
}
.form-booking .form-content form label {
    line-height: 1;
    margin-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
    color: var(--color-primary);
    background: var(--color-white);
    position: relative;
    z-index: 2;
    display: inline;
    width: max-content;
}