/* Fonts */
@font-face {
    font-family: 'Futura Demi';
    src: url('../fonts/futurademic-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Futura Book';
    src: url('../fonts/futurabookc-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'PT Serif';
    src: url('../fonts/ptserifregular-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

/* Main wrap */
.b-specproject {
    width: 1020px;
    margin: 0 auto;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
}

/* Reset */
.b-specproject * {
    margin: 0;
    padding: 0;
    font: inherit;
    box-sizing: border-box;
}

/* Tiles */
.b-specproject__tiles {
    margin: 0 0 40px;
}

.b-specproject__tiles-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 20px;
    overflow: hidden; /* Clearfix */
}

.b-specproject__tile {
    position: relative;
    float: left;
    background-repeat: no-repeat;
}

.b-specproject__tile + .b-specproject__tile {
    margin-left: 20px;
}

.b-specproject__tile--1020x600 {
    width: 1020px;
    height: 600px;
}

.b-specproject__tile--700x600 {
    width: 700px;
    height: 600px;
}

.b-specproject__tile--300x600 {
    width: 300px;
    height: 600px;
}

.b-specproject__tile--1020x400 {
    width: 1020px;
    height: 400px;
}

.b-specproject__tile--500x400 {
    width: 500px;
    height: 400px;
}

.b-specproject__tile-wrap-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: inherit;
}

.b-specproject__tile-wrap-link:hover {
    color: inherit;
}

.b-specproject__tile-content {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    padding: 25px;
    color: #fff;
    background: linear-gradient(rgba(0, 0, 0, 0) 11.25%, rgba(0, 0, 0, 0.9) 100%);
}

.b-specproject__tile-content > *:last-child {
    margin-bottom: 0;
}

.b-specproject__tile-title {
    margin: 0 0 10px;
    font: normal 400 24px/26px 'Futura Demi', Arial, sans-serif;
}

.b-specproject__tile-text {
    margin: 0 0 15px;
    font: normal 400 18px/22px 'Futura Book', Arial, sans-serif;
}

.b-specproject__tile-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 160px;
    height: 50px;
    font: normal 400 13px/1 'Futura Demi', Arial, sans-serif;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    background: #850d3a;
    transition: background-color 0.3s;
}

.b-specproject__tile-wrap-link:hover .b-specproject__tile-link,
.b-specproject__tile-link:hover {
    background: #6a0b2f;
}

/* Video */
.b-specproject__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.b-specproject__video-poster {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}

.b-specproject__video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    border: none;
}

.b-specproject__video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 118px;
    height: 118px;
    color: #850d3a;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid #850d3a;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: background-color 0.3s;
}

.b-specproject__video-play-btn:hover {
    background-color: rgba(0, 0, 0, 1);
}

.b-specproject__video-play-btn:after {
    content: " ";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 22px 0 22px 49px;
    border-color: transparent transparent transparent currentColor;
    transform: translate(-40%, -50%);
}

/* Slideshow */
.b-specproject__slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.b-specproject__slideshow-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.6s;
    overflow: hidden;
}

.b-specproject__slideshow-slide {
    flex: 0 0 auto;
    width: 100%;
    height: 100%;
}

.b-specproject__slideshow-pagination {
    position: absolute;
    left: 50%;
    bottom: 30px;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translate(-50%, 0);
}

.b-specproject__slideshow-page-btn {
    display: block;
    width: 56px;
    height: 4px;
    margin: 0 5px;
    background: #fff;
    border: none;
    outline: none;
    transition: background-color 0.3s;
}

.b-specproject__slideshow-page-btn:hover,
.b-specproject__slideshow-page-btn--active {
    background: #850d3a;
}

/* Slide */
.b-specproject__slide {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}

.b-specproject__slide-title {
    margin: 0 0 55px;
    font: normal 400 24px/1 'Futura Demi', sans-serif;
}

.b-specproject__slide-event-date {
    font: normal 400 18px/26px 'Futura Book', sans-serif;
}

.b-specproject__slide-event-title {
    margin: 0 0 38px;
    font: normal 400 42px/44px 'PT Serif', serif;
}

.b-specproject__slide-event-place {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin: 0 0 40px;
    font: normal 400 18px/30px 'Futura Book', sans-serif;
}

.b-specproject__slide-event-place:before {
    content: " ";
    display: flex;
    width: 14px;
    height: 20px;
    margin: 0 10px 0 0;
    background: url(../img/pin.gif) no-repeat 50% 50% / contain;
}

/* Looks */
.b-specproject__looks-title {
    margin: 0 0 25px;
    font: normal 400 24px/1 'Futura Demi', sans-serif;
    text-align: center;
    color: #850d3a;
}

.b-specproject__looks-items {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    margin: -25px 0 0 -25px;
}

.b-specproject__looks-item {
    margin: 25px 0 0 25px;
}

/* Share */
.b-specproject__share {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 60px 0 20px;
}

.b-specproject__share-title {
    font: normal 400 14px/18px 'Futura Book', sans-serif;
}

.b-specproject__share-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 0 15px;
}

.b-specproject__share-btn {
    position: relative;
    display: block;
    width: 30px;
    height: 30px;
    font-size: 1px;
    color: #fff;
    background: #850d3a;
    border: none;
    border-radius: 50%;
    transition: background-color 0.3s;
    overflow: hidden;
}

.b-specproject__share-btn + .b-specproject__share-btn {
    margin-left: 5px;
}

.b-specproject__share-btn:focus:active {
    outline: none;
}

.b-specproject__share-btn:hover {
    background-color: #6a0b2f;
}

.b-specproject__share-btn svg {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 1em;
    fill: currentColor;
    transform: translate(-50%, -50%);
}