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{border:0;font-size:100%;font:inherit;vertical-align:baseline;margin:0;padding:0}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}
body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}
blockquote:before,blockquote:after,q:before,q:after{content:none}
table{border-collapse:collapse;border-spacing:0}

html,
body {
    width: 100%;
    height: 100%;

    overflow: auto;

    background: #000;
}

body {
    position: relative;
    font-family: "Teko", sans-serif;
    font-weight: 400;
    font-size: 14px;
    background-image: url('bg/bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;

    background-blend-mode: hard-light;
}

body:before {
    content: '';

    position: absolute;

    top: 0;
    bottom: 0;
    left: 0;
    right: 0;

    background-color: rgba(0,0,0,0.6);
}

a {
    text-decoration: none;
    color: #333;
}

h1, h2, h3 {
    font-weight: 400;
    line-height: 1.2;
}

h1 {
    font-size: 40px;
    margin-bottom: 22px;
}

h2 {
    font-size: 40px;
    margin-bottom: 30px;
}

h3 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #fff;
}

h1 a,
h2 a,
h3 a {
    border-bottom: 1px solid;
    font-weight: 400;
}

p {
    line-height: 1.4;

    margin-bottom: 20px;
}

strong {
    font-weight: 700;
}

p a {
    border-bottom: 1px solid;
}

.row {
    width: 100%;
    position: relative;

    display: block;
    transform: translateY(-50%);
    top: 50%;
}

.content {
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.logo {
    margin-bottom: 30px;
    display: block;

    margin-left: auto;
    margin-right: auto;

    max-width: 270px;
}

#text {
    padding: 4vw 2vw;
    text-align: center;
}

#text a {
    color: #fff;
    font-size: 30px;
}

#text h2 {
	color: #fff;
	text-align: center;
}

#text h3 {
	color: #fff;
	text-align: center;
    font-style: italic;
}

.phone,
.email {
	margin: 20px 0 0 0;

	display: flex;
	align-items: center;
    justify-content: center;

    font-size: 16px;
}

.email a {
    color: #ffa51f !important
}

.phone a {
    color: #0cc0df !important
}

img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 800px) {
    .content {
        width: auto;
        margin-left: 10%;
        margin-right: 10%;
    }

    #text h2 {
       font-size: 20px;
    }
}

@media (max-width: 550px) {
    .content {
        margin-left: 0;
        margin-right: 0;
    }

    h1 {
        font-size: 20px;
    }

    .email {
        font-size: 14px;
    }
}