@font-face {
    font-family: "GOTHAMMEDIUM";
    src: url("./assets/GOTHAMMEDIUM.TTF");
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,body{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'GOTHAMMEDIUM';
}

main{
    width: 100vw;
    height: 100vh;
    position: relative;
    background-image: url("./assets/bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    /* background-size: 100% 100% ; */
    background-attachment:fixed;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

main div.header{
    width: 100%;
    position: relative;
    height: 30%;
    display: flex;
    justify-content: center;
}

main div.footer{
    width: 100%;
    position: relative;
    height: 10%;
    display: flex;
    justify-content: center;
}

main div.header img{
    width: 180px;
    height: 180px;
    /* position: absolute; */
    /* top: 15px; */
}
main div.footer h5{
    position: relative;
    right: 30px;
    font-weight: 500;
    text-transform: uppercase;
    color: rgba(245, 245, 245, 0.81);
    /* background-color: red; */
}
main div.content{
    height: 60%;
    position: relative;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
}
main div.content h2{
    text-transform: uppercase;
    text-align: center;
    color: #4adaef;
    font-weight: 200;
    letter-spacing: 1px;
    font-size: 26px;
    margin-top: 28px;
    line-height: 30px;
}

div.search-bar{
    width: 300px;
    /* background-color: white; */
    margin-top: 30px;
    padding: 5px;
    border-radius: 5px;
    border: 2px solid #4adaef;
}

div.search-bar input{
    outline: none;
    background-color: transparent;
    border: none;
    padding: 5px 10px;
    color: #4adaef;
    width: 235px;
    text-transform:uppercase;
}

div.search-bar input::placeholder{
    color: #4adaef;
    text-transform: capitalize;
}

div.search-bar span{
    border-left: 2px solid #4adaef;
}

div.search-bar button{
    color: #4adaef;
    border: none;
    outline: none;
    background-color: transparent;
}
div.search-bar button i{
    font-size: 22px;
    padding: 10px;
}

div.result-container{
    display: flex;
    flex-direction: column;
    align-items: center;
}
div.result-container p{
    margin-top: 20px;
    text-transform: uppercase;
    color: whitesmoke;
    font-weight: 100;
    font-size: 14px;
}
div.result-container h6{
    margin-top: 10px;
    /* background-color: whitesmoke; */
    padding: 1px;
    text-align: center;
    font-weight: 100;
    font-size: 14px;
    line-height: 2;
    z-index: 2;
}

.bg-white{
    background-color: whitesmoke;
}

.text-red{
    color: red;
}

.text-green{
    color: green;
}

#result-heading{
    display: none;
}

.social{
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
    left:80px;
    bottom:80px;
}

.social-icon{
    width:26px;
    height:26px;
    margin-right:14px;
}

