*{
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}
body{
    font-family: montserrat;
    overflow-x: visible;
}
nav{
    background: #000000;
    min-height: 85px;
    width: 100%;
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    z-index: 1000;
}
label.logo{
    color: white;
    font-size: 35px;
    line-height: 80px;
    padding: 0 100px;
    font-weight: bold;
}
nav ul{
    float: right;
    display: grid;
    height: calc(100vh - 80px);
    overflow: auto;
    position: fixed;
    width: 15%;
    background: #000000;
    top: 80px;
    left: -50%;
    text-align: center;
    transition: all .5s;
}
nav ul li{
    display: inline-block;
    line-height: 40px;
    margin: 0 5px;
}
nav ul li a{
    color: white;
    font-size: 17px;
    padding: 7px 13px;
    border-radius: 3px;
    text-transform: uppercase;
}
a.active,a:hover{
    background: #D4AF37;
    transition: .5s;
    text-decoration: none;
}
.checkbtn{
    font-size: 30px;
    color: white;
    float: right;
    line-height: 80px;
    margin-right: 40px;
    cursor: pointer;
    display: block;
}
#check{
    display: none;
}

#check:checked ~ ul{
    left: 0;
}

.banner {
    background-color: red;
    color: white;
    text-align: center;
    line-height: 40px;
}

.banner span {
    width: 100%;
    display: inline-block;
    font-size: 16px;
    text-align: center;
}

section img {
    display: block;
    width: 100%;
    vertical-align: top;
}

.cursor-pointer {
    cursor: pointer;
}

.float-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
}

@media (min-width: 953px){
    .landing-page-img {
        max-width: 90rem;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 952px){
    label.logo{
        font-size: 30px;
        padding-left: 50px;
    }
    nav ul li a{
        font-size: 16px;
    }
}
@media (max-width: 858px){
    nav ul {
        width: 35%;
    }
    .float-icon {
        width: 40px;
        height: 40px;
        bottom: 10px;
        right: 10px;
    }
}