* {
    box-sizing: border-box;
}
h1,p {
    text-align: center;
}
p {
    width: 100%;
    max-width: 500px;
    margin: auto;
}
a:link, a:hover, a:active, a:visited {
    transition: color 150ms;
    color: #95a5a6;
    text-decoration: none;
}
a:hover {
    color: #7f8c8d;
    text-decoration: underline;
}
.row {
    width: 100%;
    position: relative;
}
.fa{
    color: white;
}
.fa:before{
    font-size: 40px;
}
.left_arrow,.next_arrow{
    position: absolute;
    background-color: rgba(0,0,0,0.5);
    width: 30px;
    display: flex;
    bottom: calc(19% - 20px);
    height: 65%!important;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}
.left_arrow{
    left: 0px;
}
.next_arrow{
    right: 0px;
}
.row__inner {
    transition: 450ms transform;
    font-size: 0;
    white-space: nowrap;
    padding: 5% 30px;
    overflow: hidden;
}
.category_title{
    display: flex;
    align-items: center;
    padding: 2%;
    font-weight: bolder;
    color: white;
    margin-bottom: -5%;
    
}
.tile {
    position: relative;
    display: inline-block;
    margin-right: 10px;
    font-size: 20px;
    cursor: pointer;
    transition: 450ms all;
    transform-origin: center;
}
.tile:last-child{
    transform-origin: center right;
}
.tile:first-child{
    transform-origin: center left;
}
* {
    border-radius: 10px;
}
.tile__media{
    width: 100%;
    height: 100%;
}
.tile__img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.tile__details {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    font-size: 10px;
    opacity: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
    transition: 450ms opacity;
}
.tile__details:after, .tile__details:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    display: #000;
}
.tile__details:after {
    margin-top: -25px;
    margin-left: -21px;
    width: 50px;
    height: 50px;
    border: 3px solid #ecf0f1;
    line-height: 50px;
    text-align: center;
    border-radius: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}
.tile__details:before {
    content: '▶';
    left: 0;
    width: 100%;
    font-size: 30px;
    margin-left: 7px;
    margin-top: -20px;
    text-align: center;
    z-index: 2;
    color: white;
}
.tile:hover .tile__details {
    opacity: 1;
}
.tile:hover{
    z-index: 10;
}
.tile__title {
    position: absolute;
    bottom: 10px;
    font-weight: bolder;
    color: white;
    padding: 10px;
    white-space: break-spaces;
}

.row__inner:hover .tile {
    opacity: 0.7;
}
.row__inner:hover .tile:hover{
    transform: scale(1.4);
    opacity: 1;
}
