html{
    scroll-behavior: smooth;
}

body{
    padding: 0;
    margin: 0;
    display: block;
    width: 100%;
    font-family: 'Prompt', sans-serif;
}

.navbar{
    background: white !important;
    color: black !important;
    border-bottom-style: solid;
    border-bottom-width: 2px;
    border-bottom-color: #368200;
    font-size: 14px !important;
}

.navbar-inverse ul li a{
    color: black !important;
}

.navbar-inverse ul li a:hover{
    background: #368200 !important;
    color: white !important;
    transition: .3s ease;
}


.navbar-brand{
    color: #368200 !important;
}

.navbar-toggle{
    background: black !important;
    
}

.welcome{
    margin-top: 100px;
    text-align: center;
    animation-name: slidein;
    animation-duration: 1s;
    animation-iteration-count: 1;
}

@keyframes slidein{
    from{padding-right: 200px; opacity: 0;}
    to{padding-right: 0; opacity: 1;}
}

.welcome h3{
    font-weight: lighter;
    font-size: 50px;
    padding-top: 45px;
}

.welcome h1{
    font-weight: bold;
    font-size: 70px;
    color: #368200;
}

.welcome i{
    color: black;
    margin-right: 10px;
}

.welcome h4{
    font-size: 20px;
    font-weight: lighter;
}

.welcome img{
    display: block;
    height: auto;
    width: 100%;
    border: 1px solid;
    box-shadow: 5px 10px 8px #888888;
    margin-top: 50px;
    animation-name: fadein;
    animation-duration: 1s;
    animation-iteration-count: 1;
}

@keyframes fadein{
    from{opacity: 0;}
    to{opacity: 1;}
}

.home-description{
    margin-top: 35px;
    text-align: center;
    font-size: 20px;
    line-height: 40px;
    font-weight: lighter;
}

.home-sec{
    margin-top: 100px;
}


.home-sec img{
    display: block;
    height: auto;
    width: 100%;
    border: 1px solid;
    box-shadow: 5px 10px 15px #888888;
}



.home-sec h3{
    font-weight: lighter;
    font-size: 45px;
    padding-top: 45px;
}

.home-sec h1{
    font-weight: bold;
    font-size: 50px;
    color: #368200;
}

.home-sec i{
    color: black;
    margin-right: 10px;
    margin-bottom: 20px;
}

.home-sec p{
    font-size: 20px;
}

.home-sec a{
    font-size: 20px;
    margin-bottom: 25px;
}

#right{
    text-align: right;
}

.page-header{
    color: #368200;
    font-weight: bold;
}

.propety-header{
    bottom: 0;
}



/* table styles */
table{
    border-collapse: collapse;
    width: 100%;
    font-size: 17px;
    
}

th{
    color: #368200;
}

td, th{
    border: 2px solid #dddddd;
    padding: 5px;
}

td a, th a{
    float: right;
    margin-right: 10px;
}



tr{
    height: 65px;
}

tr:nth-child(even){
    background-color: #dddddd;
}



/* footer */
#copyright {
    text-align: center;
    margin-top: 100px;
}

footer {
    margin-top:20px;
    min-height: 100px;
}

/* buttons */
.btn-primary{
    background-color: black !important;
    border-color: black !important;
    color: white !important;
}

.btn-primary:hover{
    background-color: #368200 !important;
    border-color: #368200 !important;
    transition: .3s ease;
}


.btn-secondary{
    background-color: #368200 !important;
    border-color: #368200 !important;
    color: white !important;
}

.btn-secondary:hover{
    background-color: black !important;
    border-color: black !important;
    transition: .3s ease;
}

/* media queries */
@media screen and (max-width: 700px){
    .welcome{
        text-align: center;
        margin-top: 45px;
    }
    
    .home-sec{
        margin-top: 75px;
    }
    
    .home-sec, #right{
        text-align: center;
    }
    
    .home-sec h1{
        font-size: 40px;
    }
    
    .welcome h1{
        font-size: 50px;
    }
    
    .welcome h3{
        font-size: 35px;
        padding-top: 0;
    }
    
    .home-description{
        font-size: 17px;
        line-height: 30px;
    }
    
    .page-header, .property-header{
        text-align: center;
    }
    
    table{
        font-size: 13px;
    }
}