/* General */
body {
    margin: 0;
    padding: 0;
}
h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display';
    margin: 0;
}

h1 {
    font-size: 40px;
    text-transform: uppercase;
}

h2 {
    font-size: 32px;
    text-transform: uppercase;
}

h3 {
    font-size: 22px;
    text-transform: uppercase;
}

h4 {
    font-size: 25px;
    text-transform: uppercase;
}

h5 {
    font-size: 20px;
    text-transform: uppercase;
}

h3, h5, p {
    font-family: 'Roboto Condensed';
    margin: 0;
}

img {
    width: 100%;
    height: auto;
    box-sizing: border-box;
    display: block;
}

a, a:visited, a:focus, a:active {
    color: inherit;
    text-decoration: none;
}

.font-weight-100 {
    font-weight: 100;
}

.font-weight-200 {
    font-weight: 200;
}

.font-weight-300 {
    font-weight: 300;
}

.font-weight-400 {
    font-weight: 400;
}

.font-weight-500 {
    font-weight: 500;
}

.font-weight-600 {
    font-weight: 600;
}

.font-weight-700 {
    font-weight: 700;
}

.font-weight-800 {
    font-weight: 800;
}

.font-weight-900 {
    font-weight: 900;
}

.margin-bottom-10 {
    margin-bottom: 10px !important;
}

.margin-bottom-20 {
    margin-bottom: 20px !important;
}

.margin-bottom-30 {
    margin-bottom: 30px !important;
}

.margin-bottom-40 {
    margin-bottom: 40px !important;
}

.margin-bottom-50 {
    margin-bottom: 50px !important;
}

.container { position: relative; width: 1200px; margin: 0 auto; padding: 0; overflow: hidden; }

@media only screen and (min-width: 960px) and (max-width: 1389px) {
    .container { position: relative; width: 960px; margin: 0 auto; padding: 0; }
}

@media only screen and (min-width: 768px) and (max-width: 990px) {
    .container { width: 768px; }
}

@media only screen and (max-width: 767px) {
    .container { width: 300px; }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
    .container { width: 420px; }
}

.box-1, .box-2, .box-3, .box-4, .box-5,
.box-3-1, .box-3-2, .box-3-3 {
    float: left;
    box-sizing: border-box;
    padding-left: 5px;
    padding-right: 5px;
    position: relative;
}

.box-1 { width: 100%; }
.box-2 {  width: 50%; }
.box-3 { width: 33.333333%; }
.box-3-1 { width: 45%; }
.box-3-2 { width: 25%; }
.box-3-3 { width: 30%; }
.box-4 { width: 25%; }
.box-5 {width: 20%; }

@media only screen and (max-width: 767px) {
    .box-1 { width: 100%; }
    .box-2 {  width: 100%; }
    .box-3 { width: 100%; }
    .box-3-1 { width: 100%; }
    .box-3-2 { width: 50%; }
    .box-3-3 { width: 50%; }
    .box-4 { width: 100%; }
    .box-5 {width: 100%; }
}

@media only screen and (max-width: 479px) {
    .box-3-2 { width: 100%; }
    .box-3-3 { width: 100%; }
}

.headline {
    position: relative;
    margin: 0 0 20px;
    font-size: 30px;
    font-family: 'Playfair Display';
}

.headline:after {
    content: '';
    position: absolute;
    display: block;
    width: 20px;
    height: 3px;
    box-sizing: border-box;
    background: #fff;
    bottom: -10px;
    left: 0;
}

.top-border {
    position: relative;
}

.top-border:before {
    content: '';
    display: block;
    width: 100%;
    height: 20px;
    background: #26263f;
    position: absolute;
    top: 0;
    left: 0;
}

.text-center {
    text-align: center;
}
/* end General */

/* Header */
#header {
    text-align: center;
    padding: 50px 0;
}
/* end Header */

/* Mask */
.masked {
    overflow: hidden;
    cursor: pointer;
}

.hover-mask {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(38, 38, 63, 0.8);
    top: 0;
    left: 0;
    box-sizing: border-box;
    border-left: 5px solid #fff;
    border-right: 5px solid #fff;
    padding: 50px;
    color: #fff;
    transition: all ease-in 0.25s;
    transform: translateX(-100%);
}

.masked:hover .hover-mask {
    transform: translateX(0%);
}

.hover-mask .content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    height: 150px;
}
/* end Mask */

/* Footer */
#footer {
    color: #26263f;
    background-color: #e5e3e4;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    padding: 50px 0;
}

#footer p {
    margin-top: 8px;
}
/* end Footer */

/* Responsive */
@media only screen and (max-width: 767px) {
    h1 { font-size: 30px; }
    
    h2 { font-size: 25px; }
    
    h3 { font-size: 20px; }
    
    h4 { font-size: 18px; }
    
    h5 { font-size: 15px; }
    
    .masked {
        height: 300px;
        margin-bottom: 20px;
    }
    
    .masked > img {
        transform: translateY(-25%);
        -o-transform: translateY(-25%);
        -moz-transform: translateY(-25%);
        -webkit-transform: translateY(-25%);
    }
}
/* end Responsive */