/**
 * Copyright © Makewebo
 */
/*------------------------------
    Fonts CSS
-------------------------------*/
/*-- font-weight: 400 (Barlow Regular) --*/
/*-- font-weight: 500 (Barlow Medium) --*/
/*-- font-weight: 600 (Barlow Bold) --*/
@font-face {
    font-family: 'Barlow-Semi-Condensed-Regular';
    src: url('../fonts/Barlow/BarlowSemiCondensed-Regular.eot');
    src: url('../fonts/Barlow/BarlowSemiCondensed-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Barlow/BarlowSemiCondensed-Regular.woff2') format('woff2'),
        url('../fonts/Barlow/BarlowSemiCondensed-Regular.woff') format('woff'),
        url('../fonts/Barlow/BarlowSemiCondensed-Regular.ttf') format('truetype'),
        url('../fonts/Barlow/BarlowSemiCondensed-Regular.svg#BarlowSemiCondensed-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Barlow-Semi-Condensed-Medium';
    src: url('../fonts/Barlow/BarlowSemiCondensed-Medium.eot');
    src: url('../fonts/Barlow/BarlowSemiCondensed-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Barlow/BarlowSemiCondensed-Medium.woff2') format('woff2'),
        url('../fonts/Barlow/BarlowSemiCondensed-Medium.woff') format('woff'),
        url('../fonts/Barlow/BarlowSemiCondensed-Medium.ttf') format('truetype'),
        url('../fonts/Barlow/BarlowSemiCondensed-Medium.svg#BarlowSemiCondensed-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Barlow-Semi-Condensed-Bold';
    src: url('../fonts/Barlow/BarlowSemiCondensed-Bold.eot');
    src: url('../fonts/Barlow/BarlowSemiCondensed-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Barlow/BarlowSemiCondensed-Bold.woff2') format('woff2'),
        url('../fonts/Barlow/BarlowSemiCondensed-Bold.woff') format('woff'),
        url('../fonts/Barlow/BarlowSemiCondensed-Bold.ttf') format('truetype'),
        url('../fonts/Barlow/BarlowSemiCondensed-Bold.svg#BarlowSemiCondensed-Bold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/*-------------------------
    Common
-------------------------*/
 body, html {
    padding: 0;
    background-color: #D13B3B;
    font-family:'Barlow-Semi-Condensed-Bold';
    margin: 0;
    min-height: 100%;
    height: 100%;
    letter-spacing: 0.3px;
}
*{
    box-sizing: border-box
}
.page-main{
    min-height: 100%;
    height: 100%;
    padding: 70px 30px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.header-left{
    position: absolute;
    left: 0;
    top: 0;
    height: 40px;
    width: 100%;
    padding: 40px 30px;
}
.header-logo{
    width: 225px;
}
article {
    width: 615px;
    max-width: 100%;
    margin: 0 auto;
    color: #fff;
    font-size: 22px;
    font-family:'Barlow-Semi-Condensed-Medium';
    padding: 20px 0;
}
article h1 { 
    font-size: 50px; 
    line-height: 1.2;
    margin: 0 0 25px;
    text-transform: uppercase;
    font-family:'Barlow-Semi-Condensed-Bold';
}
article p{
    margin: 0 0 20px
}
a{
    color: #601919; 
    text-decoration: none; 
}
a:hover { 
    color: #601919; 
    text-decoration: underline; 
}
@media screen and (max-width: 991px) {
    .header-logo{
        width: 155px;
    }
    article h1 { 
        font-size: 30px; 
    }
    article {
        font-size: 16px;
    }
}