@font-face {
  font-family: 'din';
  src: url('../font/CondensedLight.woff2') format('woff'),
        url('../font/CondensedLight.woff2') format('woff2');
       font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'din';
  src: url('../font/DIN-Light.woff2') format('woff'),
        url('../font/DIN-Light.woff2') format('woff2');
       font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'din';
  src: url('../font/FFDINProCond-Bold.woff') format('woff'),
        url('../font/FFDINProCond-Bold.woff2') format('woff2');
       font-weight: 700;
  font-style: normal;
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul, li {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a,
a:hover {
    text-decoration: none;
}

* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.clear:before,
.clear:after {
    content: '';
    display: table;
}

.clear:after {
    clear: both;
}
/**************
END RESETT CSS
****************/
html, body, .wrapper{
    height: 100%;
}
body{
    font-family: 'din', sans-serif;
    font-weight: 300;
    background-color:#000;
}
header{
    background-color: #1b1c1d;
    border-top: 5px solid #ccff00;
}
.bg{
    background:#000 url('../img/bg.jpg') center center no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    padding-top: 5%;
}
.content{
    max-width: 1285px;
    margin: 0 auto 75px;
    background: rgba(0, 0, 0, 0.5);
    padding: 40px;
}
.title{
    font-size: 45px;
    text-transform: uppercase;
    color: #ccff00;
    margin-bottom: 40px;
    text-align: center;
}
.content:before,
.content:after{
    content: '';
    display: table;
    clear: both;
}

.content_photo{
    float: left;
    width: 50%;
}
.content_photo img{
    width: 100%;
}
.content_text{
    float: right;
    width: 50%;
    padding-left: 15px;
}
.content_text p{
    color: #f5f6f6;
    font-weight: 500;
    font-size: 18px;
    line-height: 23px;
    margin-bottom: 25px;
}
.enter{
    background-color: #ccfb01;
    display: table;
    margin: auto;
    width: 295px;
    height: 65px;
    line-height: 65px;
    font-size: 40px;
    text-transform: uppercase;
    color: #0b0b0b;
    text-align: center;
    border-radius: 5px;
    position: relative;
}
.enter:before{
    content: '';
    width: 24px;
    height: 35px;
    background: url('../img/arrow.png') 0 0 no-repeat;
    position: absolute;
    top: 15px;
    left: 32px;
}
.link{
    display: table;
    margin: 0 auto;
    font-size: 18px;
    text-decoration: underline;
    color: #f5f6f6;
    font-weight: 500;
    margin-top: 80px;
}
.link:hover{
    text-decoration: none;
}
footer{
    padding: 20px;
    text-align: center;
    color: #eeeeee;
    font-size: 11px;
    line-height: 1.5;
    font-weight: 500;
    background: rgba(0, 0, 0, .8);
}
footer a{
    color: #eeeeee;
}
@media screen and (max-width: 1170px){
    .content_photo, .content_text{
        float: none;
        width: 100%;
    }
    .content_photo img{
        max-width: 100%;
        width: auto;
        display: block;
        margin: 0 auto 30px;
    }
}
@media screen and (max-width: 767px){
    .title{
        font-size: 35px;
    }
    .bg{
        padding-top: 0;
    }
    .content{
        padding: 30px 20px;
    }
    .logo{
        display: block;
        text-align: center;
    }
    .logo img{
        width: 250px;
    }
    .enter{
        width: 100%;
    }
}