*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    scroll-behavior: smooth;
}
::-moz-selection {
    color: black;
    background: yellow;
}
      
::selection {
    color: black;
    background: yellow;
}

::-webkit-scrollbar {
    width: 12px;
  }
  ::-webkit-scrollbar-thumb {
    background:#161616; 
  }
  ::-webkit-scrollbar-thumb:hover {
    background:#090909; 
  }
  ::-webkit-scrollbar-track{
      background: #444444;
  }
.hero{
    height: 100vh;
    background-image: linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.6)), url(land-bg.jpg);
    background-position: center;
    background-size: cover;
    overflow-x: inherit;
    position: relative;
}
.nav-bar{
    display: flex;
    padding: 40px 100px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.nav-logo h2{
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}
.nav-links{
    flex: 1;
}
.nav-links ul{
    margin-left: 60px;
    display: inline;
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}
.nav-links ul a{
    color: white;
    text-decoration: none;
    font-size: 17px;
}
.nav-links ul li::after{
    content: '';
    width: 0;
    height: 2px;
    background: yellow;
    display: block;
    margin: auto;
    transition: .5s;
}
.nav-links ul li:hover::after{
    width: 100%;
}
.btn{
    padding: 10px 20px;
    border: 0;
    background: yellow;
    font-weight: bold;
    cursor: pointer;
    border-radius: 7px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.nav-links .btn{
    float: right;
}
a{
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: black;
    padding: 10px 10px;
}
.nav-links .btn:hover{
    box-shadow:0 0px 5px rgba(255, 255, 0,0.1),
    0 0px 10px rgba(255, 255, 0,0.1),
    0 0px 15px rgba(255, 255, 0,0.2),
    0 0px 20px rgba(255, 255, 0,0.2),
    0 0px 25px rgba(255, 255, 0,0.3),
    0 0px 30px rgba(255, 255, 0,0.3),
    0 0px 35px rgba(255, 255, 0,0.5),
    0 0px 40px rgba(255, 255, 0,0.6),
    0 0px 45px rgba(255, 255, 0,0.6);
    transition: ease-in-out 0.8s;
}
.banner-title{
    margin: 20vh 100px;
    color: white;
}
.banner-title h1 span{
    color: yellow;
}
.banner-title h1{
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 44px;
}
.banner-title p{
    padding: 20px 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 12px;
    color: yellow;
}
.banner-title h6{
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    word-spacing: 4px;
}
.banner-title .btn{
    margin-top: 20px;
}
#more {
    display: none;
}

@media (max-width:1120px){
    .banner-title{
        margin: 22vh 50px;
    }
    .banner-title h1{
        font-size: 35px;
    }
    .banner-title p{
        font-size: 15px;
    }
    .nav-bar{
        padding: 40px 50px;
    }
    .nav-bar .nav-logo{
        font-size: 20px;
    }
    .btn{
        padding: 8px 12px;
        font-size: 15px;
    }
    .nav-links ul{
        margin-left: 10px;
    }
}
@media (max-width:1020px){
    .banner-title{
        margin: 25vh 50px;
    }
    .banner-title h1{
        font-size: 30px;
    }
    .banner-title h6{
        font-size: 17px;
    }
    .nav-bar{
        padding: 40px 50px;
    }
    .btn{
        padding: 8px 12px;
        font-size: 12px;
    }
    .nav-links ul{
        margin-left: 8px;
    }
}
@media (max-width:990px){
    .nav-links ul{
        display: none;
    }
}
@media (max-width:700px){
    .banner-title{
        margin: 25vh 30px;
    }
    .banner-title h1{
        font-size: 20px;
    }
    .banner-title h6{
        font-size: 15px;
    }
    .nav-links ul{
        display: none;
    }
    .nav-bar{
        padding: 40px 30px;
    }
    .nav-logo h2{
        font-size: 20px;
    }
    .btn{
        padding: 4px 8px;
        font-size: 14px;
    }
}
@media (max-width:450px){
    .banner-title{
        margin: 10vh 20px;
    }
    .banner-title h1{
        font-size: 25px;
    }
    .banner-title h6{
        font-size: 15px;
    }
    .nav-links ul{
        display: none;
    }
    .nav-bar{
        padding: 40px 20px;
    }
    .nav-links ul{
        margin-left: 20;
    }
    .nav-logo h2{
        font-size: 20px;
    }
    .btn{
        padding: 5px 6px;
        font-size: 15px;
    }
}