/* Banner */

section.banner-section {
    position: relative;
    width: 100%;
    height: calc(var(--initial-vh, 1vh) * 100);
}

.banner-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-content {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-bottom: 80px;
}

.banner-content h1 {
    margin: 0;
}

section.banner-section:before {
    content: '';
    background: linear-gradient(210deg, rgba(255, 255, 255, 0.00) 53.5%, rgba(26, 26, 26, 0.50) 62.21%, #1A1A1A 72.45%);
    opacity: 0.75;
    mix-blend-mode: multiply;
    width: 100%;
    height: 100%;
    z-index: 1;
    position: absolute;
    left: 0;
    top: 0;
}

section.banner-section .button {
    text-align: center;
    display: flex;
    justify-content: center;
    background: rgba(0, 0, 0, 0.40);
    backdrop-filter: blur(7.5px);
    padding-left: 20px;
    width: fit-content;
    border-left: 1px var(--white) solid;
    font-family: 'poppins';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
    align-items: center;
    gap: 40px;
    border-radius: 0 20px 20px 0;
    margin-top: 20px;
}

section.banner-section .button svg {
    padding: 15px;
    border: solid 1px;
    border-radius: 50%;
}

section.banner-section .button:hover svg path {
    stroke: var(--black);
}
section.banner-section .button:hover svg {
    background: var(--white);
}
section.banner-section .button svg {
    padding: 15px;
    border: solid 1px;
    border-radius: 50%;
    transition: ease 0.6s;
}

section.banner-section .button:hover {
    box-shadow: 0px 3px 15px rgba(0,0,0,0.2);
}

section.banner-section .wrap {
    margin-top: auto;
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: end;
    position: relative;
    z-index: 1;
}

.banner-content p {
    color: var(--white);
}