* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial;
}

body {
    /*min-height: 1000px;*/
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding: 0 100px;
    background: #000;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    transition: 1s;
}

header .banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
    opacity: 0.35;
}

header .logo {
    position: absolute;
    top: 42%;
    left: 57%;
    transform: translate(-50%, -50%);
    transition: 1s;
    z-index: 1;
} 

header .logo img {
    width: 65%;
}


p {
    position: absolute;
    top: 61%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3vw;
    color: rgb(202, 55, 55);
    font-weight: bold;
    transition: 1s;
    text-decoration: none;
    z-index: 1;
}

span {
    margin: 0 20px;
    font-weight: bold;
    color: rgb(202, 55, 55);
}

a {
    font-weight: bold;
    text-decoration: none;
    color: rgb(202, 55, 55);
}






@media (max-width: 991px) {
    
header .banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
    opacity: 0.35;
}

header.sticky .banner {
    opacity: 0.6;
}

header .logo {
    position: absolute;
    top: 45%;
    left: 53%;
    transform: translate(-50%, -50%);
    transition: 1s;
    z-index: 1;
}

header.sticky .logo {
    position: absolute;
    left: 100px;
    transform: translate(0, -50%);
}


header .logo img {
    width: 90%;
}

p {
    position: absolute;
    top: 53.5%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 6vw;
    color: rgb(202, 55, 55);
    font-weight: bold;
    transition: 1s;
    text-decoration: none;
    z-index: 1;
}

span {
    margin: 0 20px;
    font-weight: bold;
    color: rgb(202, 55, 55);
}

a {
    font-weight: bold;
    text-decoration: none;
    color: rgb(202, 55, 55);
}


} 