/*
  #A3764A - Brown
  #DC2B1B - Red
  #F18005 - Gold
  #738D4C - Green
  #FEFEE3 - Yellow
*/

@import url('https://fonts.googleapis.com/css2?family=Raleway&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    transition: all 0.2s ease-out;
    /* border: 1px dashed #101010;  */
    text-decoration: none;
}

@font-face{
    font-family: ITCErasBold;
    src: url(includes/ErasBoldITC.ttf);
}

.navbar{
    width: 100vw;
    padding: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    align-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    border-radius: 0 0 32px 32px;
    box-shadow: 0 0 5px 10px rgba(0,0,0,0.15);
    /* background-color: #111; */
    position: top;
}
.logo{
    align-self: flex-start;
}
.navbar-header{
    text-decoration: none;
    text-transform: uppercase;
    width: 60vw;
    text-align: center;
    flex-grow: 2;
}

.img-logo{
    width: 150px;
}
.logo-txt {
    display: inline;
    font-size: 1.6rem;
}
.header{   
    font-family: 'ITCErasBold';
    font-size: 2.8rem;
    text-decoration: none;
    color: #003366;
    /* color: #8acf24; */
    letter-spacing: 2px;
    display: inline-block;
    height: 1.5vh;
}
.header-fb {
    color: #3b5998;
    font-size: 1.6rem;
    margin-left: 10px;
}

.header-wa {
    color: #25d366;
    font-size: 1.6rem;
    margin-left: 10px;
}
.nav-btn {
    color: #fefefe;
    background-color: #dc2b1b;
    padding: 10px;
}
.nav-btn:hover {
    text-decoration: none;
}
.search-header {
    text-align: center;
    text-decoration: underline;
}
/* .search-table {

} */
.srch-tbl {
    margin-left: auto;
    margin-right: auto;
    border: 5px solid #81985d;
    background-color: #fefee3;
    border-collapse: collapse;
}
.search-th{
    color: #738d4c;
    padding: 15px;
    border: 2px solid #81985d;
    width: 20vw;
}
.search-td{
    color: #a3764a;
    padding: 15px;
    border: 2px solid #81985d;
    background-color: #fff;
    width: 45vw;
}
.search-td-id{
    color: #DC2B1B;
    font-weight: bold;
}
.search-td-res{
    color: #F18005;
    font-weight: bold;
}
.get-res-form-div{
    display: flex;
    align-items: center;
    flex-direction: column;
}
.get-res-input{
    align-self: center;
    width: 50vw;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    background-color: #fff;
    text-transform: uppercase;
}
.get-res-input:focus {
    background-color: #f0cea9;
  }
.get-res-btn {
    transition-duration: 0.4s;
    background-color: #fff;
    padding: 10px 15px;
    border: 2px solid #81985d;
}
  
.get-res-btn:hover {
    background-color: #c59462; /* Green */
    color: white;
}
.footer{
    width: 100vw;
    /* padding: 10px; */
    display: flex;
    justify-content: space-evenly;
    /* align-content: space-around; */
    flex-direction: column;
    flex-wrap: wrap;
    border-radius: 32px 32px 0 0;
    box-shadow: 0 0 5px 10px rgba(0,0,0,0.15);
    color: #003366;
}
.footer-div{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    align-content: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    position: bottom;
}
.footer-element {
    font-family: 'Times';
}
.footer-div-copyright{
    color: #a3764a;
}
.main-content {
    height: 100vh;
}

.header-two {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    align-content: center;
    flex-wrap: wrap;
}

.header-2 {
    font-family: 'ITCErasBold';
    font-size: 1.5rem;
    text-decoration: none;
    color: #003366;
    /* color: #8acf24; */
    letter-spacing: 4px;
    display: inline-block;
    height: 1vh;
}

@media (max-width: 568px){
    .footer-div{
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        align-content: flex-start;
        flex-direction: column;
        flex-wrap: wrap;
        position: bottom;
    }
    .header-2{
        height: 5vh;
    }
    .header{
        height: 5vh;
    }
}