/* GOLD COLOR
rgb(115, 87, 59)
#73573b

DARK PURPLE
rgb(38, 35, 50)
#262332 */
body {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: #fff;
    background-color: #2f2b3f;
    font-size: 16px;
    transition: linear;
    background-image: url(../img/bg-pattern.png);
    background-position: 100%;
    background-repeat: repeat;
    background-blend-mode: multiply;
    margin: 0!important;
}

main {
    height: 100%;
    width: 100%;
    overflow: hidden;
    text-align: center;
    font-family: inherit;
}
header {
    width: 100%;
    padding: 10px 20px;
    background-color: #2f2b3f; /* rgb(47,43,63) */
    text-align: left;
    color: #fff;
    position: fixed;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 5;

}
header ul {
    margin: 0;
    padding: 0;
    /* position: absolute; */
}
header ul li{
    display: inline!important;   
    /* padding: 0 10px; */
}
a {
    text-decoration: none;
    font-size: medium;
    color: #fff;
    padding: 10px 20px;
    text-align: center;
    cursor: pointer;
}
header ul a:hover {
    background: rgba(0, 0, 0, .5);
}
h1, h2, h3, h4, h5, h6 {
    margin: 0px!important;
}
section {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    overflow-y: hidden;
}
form {
    width: 30vw;
    margin: 5px auto;
    background-color: rgba(255, 255, 255, .6);
    border-radius: 5px;
    padding: 20px;
}
input, button, textarea {
    margin: 10px 0px auto;
    padding: 20px 0;
    display: block;
    width: 100%;
    border-radius: 5px;
    border: none;
    font-size: 15px;
    text-align: center;
    color: #222;
    transition: 0.2s linear;
}
input:focus, textarea:focus-within {
    background-color: rgba(0,0,0,0.2);
    color: #fff;
}
input:focus-within, textarea:focus-within {
    outline: none;
}
button {
    background-color: #2f2b3f;
    color: #fff;
}

.panel {
    border-radius: 5px;
}
.shdw {
    box-shadow: 0 4px 20px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}




/* MAKING THE WEBSITE MORE RESPONSIVE */
@media screen and (max-width: 980px) { 
    /* TAB VIEW AND SMALL LAPTOP SCREEN  */
    form {
        width: 60vw;
    }
    textarea {
        height: 100px;
    }
    div.tab {
        width: 45%!important;
    }
}

@media screen and (max-width: 480px) {
    /* MOBILE VIEW  */
    form {
        width: 90vw;
        padding: 10px;
        margin-top: 20px;
    }
    section {
        display: flex;
        flex-direction: column;
        /* flex-wrap: wrap; */
        overflow-y: hidden;
    }
    header ul {
        display: none;
    }
    div.tab {
        width: 90%!important;
        height: 150px;
        /* display: flex;
        flex-direction: row; */
    }
    .tab img {
        width: 100px;
        height: 100px;
        float: left;
    }
    .steps {
        /* margin: 5px; */
        width: 80vw;
    }
    #search:focus-within {
        width: 90%;
    }
}