@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600&display=swap');
*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
}

body {
    font-family: "Manrope", sans-serif;
    color: #000;
    margin: 0;
}


/** BANNER STARTS **/

section#banner {
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), url(/images/meraki_bg.jpg);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

#banner .content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: auto;
    width: 100%;
    position: relative;
}

.content .comingsoon {
    text-align: center;
}

.comingsoon h4 {
    font-size: 18px;
    margin: 50px 0 5px 0;
    font-weight: 100;
}

.comingsoon h1 {
    font-size: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 300;
}

.verticalbar {
    background-color: #000;
    height: 15vh;
    width: 1px;
    margin: 15px 0;
}

.contactus {
    width: 40%;
    text-align: center;
}

.contactus h4 {
    font-weight: 100;
    letter-spacing: 0.4px;
    margin: 0 0 50px 0;
    font-size: 19px;
}

.button-2 {
    background-color: #486149;
    border-radius: 4px;
    border-width: 0;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 50px;
    text-align: center;
    transition: all 200ms;
    vertical-align: baseline;
    white-space: nowrap;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}


/** BANNER ENDS **/


/** NAVIGATION BAR STARTS **/

.navbar-logo {
    display: flex;
    justify-content: center;
    width: 85%;
    margin: auto;
    padding-top: 40px;
}

.logo {
    width: 80px;
}

.navbar {
    width: 100%;
    display: flex;
    justify-content: center;
}


/** NAVIGATION BAR ENDS **/

@media screen and (max-width: 750px) {
    .navbar-logo {
        padding: 5rem 0;
    }
    .comingsoon h1 {
        font-size: 40px;
    }
    .contactus {
        width: 70%;
    }
}