/*=====
Component
=====*/
.nav {
    list-style: none;
}
.navbar .list-item{
    list-style: none;
    display: inline;
}

#navTop {
    background-color: #f5f5f5;
}
#navTopLogo {
    margin-left: 3em;
}
#navTopMenu {
    margin-right: 5em;
}

#title h2 {
    font-size: 40px;
}

#photoPortfolio {
    max-width: 960px;
}

#footer {
    margin-top: 25px;
    padding: 25px;
    background-color: #f5f5f5;
}
#footer p{
    margin: 0;
}

#socialMedia img {
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
    transition: .1s;
    -webkit-transition: .1s;
}
#socialMedia a:hover img {
    filter: grayscale(0) !important;
    -webkit-filter: grayscale(0) !important;
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
}

/* card */
.portfolio-card {
    width: 300px;
    height: 300px;
    overflow: hidden;
    margin: 10px;
}
.portfolio-card:hover .img-card{
    transform: scale(1.10);
    -webkit-transform: scale(1.10);
    transition: .2s transform;
    -webkit-transition: .2s transform;
}
.portfolio-card .img-card {
    width: 300px;
    height: 300px;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #cccccc;
    background-size: cover;
}

/* list */
.list-group {
    list-style: none;
}
.list-group.list-group-horizontal .list-group-item{
    list-style: none;
    display: inline;
    margin-right: .5em;
}

/*=====
Utility
=====*/

/* Display */
.d-flex {
    display: flex;
}
.flex-row {
    flex-direction: row;
}
.flex-wrap {
    flex-wrap: wrap;
}
.flex-grow-0 {
    flex-grow: 0;
}
.flex-grow-1 {
    flex-grow: 1;
}
.justify-content-center {
    justify-content: center;
}
.align-items-center {
    align-items: center;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* Space */
.container-fluid {
    width: 100%;
    padding: 0;
    margin: 0;
}
.container {
    margin: 1em;
    padding: 1em;
}

.m-0 {
    margin: 0em;
}
.m-1 {
    margin: .25em;
}
.m-2 {
    margin: .5em;
}
.m-auto {
    margin: auto;
}
.my-2 {
    margin-top: 0.5em !important;
    margin-bottom: 0.5em !important;
}
.my-3 {
    margin-top: 1.5em !important;
    margin-bottom: 1.5em !important;
}
.my-5 {
    margin-top: 3em !important;
    margin-bottom: 3em !important;
}

.p-0 {
    padding: 0em;
}
.p-1 {
    padding: .25em;
}
.p-2 {
    padding: .5em;
}
.px-2 {
    padding: .5em;
}

/* Text */
h1, h2, h3, h4, h5, p, span, a {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.text-center {
    text-align: center
}
.text-right {
    text-align: right;
}
.fw-normal {
    font-weight: normal;
}
.fw-bold {
    font-weight: bold;
}
.fst-italic {
    font-style: italic;
}
a {
    text-decoration: none;
}
a:link {
    color: #58524b;
}
a:visited {
    color: #403630;
}
a:hover, a:focus {
    color: #4d4541;
}