/* ------------------------------------------------------------------------------------ */
/* ---------------------------------------Banner--------------------------------------- */
/* ------------------------------------------------------------------------------------ */
.banner {
    background-color: black;
    width: 100%;
    height: 100vh;
}

.banner-gradient {
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0%;
    background: linear-gradient(0deg, var(--backgroundColor)0%, rgba(0, 0, 0, 0) 25%);
}

.banner-Image, .banner-ImagePortrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    background-color: var(--backgroundColor);
}

.banner-Image {
    display: block;
}

.banner-ImagePortrait {
    display: none;
}

.banner-Content-Container {
    position: absolute;
    top: 0%;
    height: 100vh;
    width: 100%;
    color: var(--textColor);
    font-weight: bold;
    text-align: center;
}

.banner-Content {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner-Content :nth-child(2) {
    color: var(--primaryColor);
}

.banner-Content p {
    width: 60%;
}

.banner-Content p {
    margin: 2% 0;
    font-weight: 500;
}

.banner-Content :nth-child(1),
.banner-Content h2,
.banner-Content button {
    text-transform: uppercase;
}




/* 
---------------------------------------------------------------------------------
------------------------------Mobile Responsiveness------------------------------
---------------------------------------------------------------------------------
*/
@media (max-width: 1000px) {}

@media (max-width: 950px) {
    .banner-Image {
        display: none;
    }

    .banner-ImagePortrait {
        display: block;
    }

}

@media (max-width: 700px) {}