html{
    scroll-behavior: smooth;
}


body{
    display: block;
    margin: auto;
    width: 100%;
    height: auto;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Libre Franklin';
    top: 0;
    position: relative;
}

img{
    height: auto;
    width: 100%;
    margin-top: 25px;
    margin-bottom: 25px;
}
header nav{
    background: #131f1f !important;
    min-height: 100px !important;
    padding-top: 25px !important;
}

.navbar-brand{
    font-family: 'Open Sans Condensed';
    font-weight: bold;
    text-transform: uppercase;
    color: white !important;
    font-size: 25px;
}

.navbar-toggle{
    border: none !important;
    color: white !important;
    background: none !important;
    font-size: 20px;
    margin-top: -1px !important;
}

.navbar-toggle i:hover{
    color: #20ab9d !important;
    transition: .3s ease;
}
nav li a{
    color: white !important;
    padding-bottom: 15px;
    border-bottom: solid 2px #131f1f;
    font-size: 12px;
}

nav li a:hover{
    border-bottom-color: #1b85a6 !important;
    transition: .3s ease;
}

.hero-bg{
    display: block;
    width: 100%;
    margin: auto;
    min-height: 450px;
    background-image: url('../img/img1.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay{
    display: block;
    width: 100%;
    height: 150px;
    margin: auto;
    position: absolute;
    bottom: 0;
    background: rgba(32, 171, 157, 0.9);
    color: white;
    animation-name: fadeup;
    animation-duration: .8s;
    animation-iteration-count: 1;
}


.hero-overlay h1{
    text-shadow: 2px 2px 4px black;
    font-family: 'Open Sans Condensed';
    font-weight: bold;
    text-transform: uppercase;
    font-size: 65px;
}


.hero-overlay p{
    font-size: 17px;
}

@media screen and (max-width: 768px){
    .hero-overlay h1{
        font-size: 35px;
    }
    
    .hero-overlay p{
        font-size: 14px;
    }
}


@keyframes fadeup{
    from{
        height: 0; opacity: 0;
    }
    
    to{
        height: 150px;
        opacity: 1;
    }
}

.page-links{
    margin-top: 0px;
    animation-name: fadein1;
    animation-duration: .8s;
    animation-iteration-count: 1;
}

.page-links p{
    font-size: 17px; 
    line-height: 37px; 
    padding-top: 25px;
}

@keyframes fadein1{
    from{
        margin-top: -100px;
        opacity: 0;
    }
    
    to{
        margin-top: 0px;
        opacity: 1;
    }
}


.home-row{
    display: block;
    width: 100%;
    min-height: 250px;
    background: #131f1f;
    margin: 5px;
    box-shadow: 2px 2px 5px black;
    padding: 20px;
    margin-top: 45px;
    border: solid 5px rgba(0,0,0,0);
}

.home-row:hover{
    border-color: #1b85a6;
    transition: .3s ease;
}

.home-row h2{
    color: white;
    padding-bottom: 15px;
    border-bottom: solid 2px #20ab9d;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'Open Sans Condensed';
}

.home-row h2 i{
    color: #20ab9d;
}

.home-row p{
    font-size: 17px;
    color: white;
}

.home-row a{
    background: #1b85a6;
    border-color: #1b85a6;
    color: white;
    float: right;
    font-size: 17px;
}

.home-row a:hover{
    border-color: #1b85a6;
    background: #1b85a6;
    transition: .3s ease;
}

.board-member{
    text-align: center;
    margin-top: 25px;
}

.board-member h2{
    border-top: solid 2px grey;
    padding-top: 15px;
}
.board-member h3{
    color: #1b85a6;
}

.document{
    display: block;
    min-height: 150px;
    background: #4d4d4d;
    padding: 10px;
    color: white;
    border: solid 3px rgba(0,0,0,0);
    margin: 10px;
    margin-top: 25px;
}

.document:hover{
    border-color: #1b85a6;
    transition: .3s ease;
}
.document h2{
    color: white;
    padding-bottom: 15px;
    border-bottom: solid 2px #20ab9d;
    font-weight: bold;
}

.document a{
    border-color: #1b85a6;
    background: #1b85a6;
    color: white;
    width: 100%;
    font-size: 17px;
    margin-top: 25px;
}

.document a:hover{
    background: #944a01;
    border-color: #944a01;
    transition: .3s ease;
}

#amtech-logo{
    height: auto;
    width: 100%;
}

.text-primary{
    color: #4d4d4d;
}

form button{
    background: #4d4d4d;
    border-color: #4d4d4d;
    color: white !important;
}

form button:hover{
    background: #1b85a6;
    border-color: #1b85a6;
    transition: .3s ease;
    color: white;
}

.buttons-row{
    margin-top: 45px;
}

.buttons-row a{
    display: block;
    width: 100% !important;
    height: 45px !important;
    padding-top: 10px !important;
    margin: auto;
    text-align: center;
    margin-bottom: 25px;
}
.btn-primary{
    background: #1b85a6 !important;
    border-color: #1b85a6 !important;
    border-radius: 0px !important;
    font-size: 17px !important;
}

.btn-secondary{
    background: #20ab9d !important;
    border-color: #20ab9d !important;
    font-size: 17px !important;
    border-radius: 0px !important;
    color: white !important;
}


#dronevid{
    height: 500px;
    width: 700px;
}

@media screen and (max-width: 768px){
    #dronevid{
        height: 220px;
        width: 305px;
    }
    
    #amtech-logo{
        width: 50%;
        display: block;
        margin: auto;
    }
}


/* Footer */
footer{
    background: #131f1f;
    text-align: center;
    min-height: 250px;
    padding-top: 100px;
    color: white;
    border-top: solid 2px #1b85a6;
    bottom: 0px;
    margin-bottom: 0px !important;
}

footer a{
    text-decoration: none;
    color: #1b85a6;
}

footer a:hover{
    text-decoration: none;
    color: white;
}

footer span{
    color: #20ab9d;
    text-transform: uppercase;
    font-size: 20px;
    margin-left: 10px;
    margin-right: 10px;
    font-weight: bold;
    font-family: 'Open Sans Condensed';
}
