
/*index main content styles*/
div#banner {
    padding: 80px;
    margin: 100px 0px 100px 0px;
    background-color: #dee2e6;
    text-align: center;
}
div#banner h1 {
    font-size: 100px;
    font-family: Doto;
    font-weight: bolder;
    max-width: 80%;
    margin: auto auto;
}
div#banner p {
    font-size: larger;
    margin: 60px 0 50px 0 ;
}
div#banner a#getQuoteNow {
    font-family: Doto;
    font-size: 40px;
    background-color: #111;
    color: #dee2e6;
    padding: 20px 30px;
    border-radius: 20px;
    transition: all .3s ease-in-out;
    border: 2px solid #dee2e6;
}
/*wdb (we da best) cards*/
div#wdbcards {
    display: flex;
    flex-direction: row;
    margin: 0 auto 40px auto;
    justify-content: center;
    align-items: center;
}
div#wdbcards div.wdbcard {
    background-color: #dee2e6;
    padding: 30px;
    color: #111;
    text-align: center;
    width: 300px;
    height: 660px;
    display: flex;
    flex-direction: column;
    margin: 30px 25px;
    align-items: center;
    justify-content: space-between;
    transition: all .2s;
    border-radius: 5px;
    box-shadow: 0 0 10px #003;
    border: 2px solid transparent;
}
div#wdbcards div.wdbcard:hover {
    margin: 10px 25px;
    border-radius: 15px;
    box-shadow: 0 0 30px #113;
}
div#wdbcards div.wdbcard h1 {
    font-family: Doto;
    font-weight: bolder;
    font-size: xx-large;
    text-decoration: underline;
}
div#wdbcards div.wdbcard h2 {
    font-family: Lora;
    font-weight: bold;
    font-size: large;
}
div#sidescroller {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    color: #111;
    background-color: #dee2e6;
    background-size: cover;
    border-radius: 5px;
    position: fixed;
    top: 40%;
    border: 2px solid #111;
    transition: all .3s ease-in-out;
    text-align: center;
}
div#sidescroller a#rotu {
    font-family: Doto;
    font-size: 15px;
    background-color: #111;
    color: #dee2e6;
    padding: 10px 20px;
    border-radius: 20px;
    border: 2px solid #dee2e6;
    transition: all .3s ease-in-out;
}
div#sidescroller a#rotu:hover {
    color: #111;
    background-color: #dee2e6;
    border: 2px solid #111;
}
h1#always {
    color: #111;
    text-align: center;
    background-color: #dee2e6;
    padding: 80px;
}