@charset "UTF-8";
/* CSS Document */
/*Imports
===============*/
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700');

body {
    font-family: 'Roboto', sans-serif;
    margin:0;
    padding:0;
}

header {
    background-color:#DD8B8D;
    border-bottom: 1px solid #000;
}

.logo {
    width: 140px;
}

/*
ul {
    list-style: none;
    display: inline;
}
*/

li {
/*    background-color: cyan;*/
    display: inline-block;
}

a {
    font-weight:400;
    padding: 14px 20px;
    text-decoration: none;
    font-size: 18px;
    border: 1px solid ;
    border-color: transparent;
    transition: 0.5s ease-out;
}

a:hover {
    border: 1px solid #000;
    background-color:mediumpurple;
    color: #fff;
}



/*backgrounds*/

.hero-image-home-page {
    background-image: url("../images/backgrounds/home-bg.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    width: 100%;
    background-repeat: no-repeat;
    height: 461px;

}












