/******************************************************************


	------------------------
	-- TABLE OF CONTENTS --
	------------------------
	
	--  01. Basic
	--  02. Background Content
    --  03. Intro
    --  04. Footer
 
 
 ******************************************************************/




/** 1. Basic
*******************************************************************/

html
{
    font-size: 10px;
}

body
{
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-style: normal;

    color: #fff;
    background: #000;

    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6
@font-face{
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
	font-style: normal;
	src: local(''),
       url('../fonts/open-sans-v34-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
       url('../fonts/open-sans-v34-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
    letter-spacing: .01em;

    color: #fff;
}

h1
{
    font-size: 6rem;
}

h2
{
    font-size: 4rem;
}

h3
{
    font-size: 3.5rem;
	font-weight: 400;
}

h4
{
    font-size: 3rem;
}

h5
{
    font-size: 2.2rem;
}

h6
{
    font-size: 1.8rem;
}

p
{
    font-size: 1.5rem;
    line-height: 2em;

    letter-spacing: .02em;
}

a,
a:hover,
a:focus
{
    cursor: pointer;
    -webkit-transition: all 300ms ease;
         -o-transition: all 300ms ease;
            transition: all 300ms ease;
    text-decoration: none;

    color: #fff;
}

#container-main
{
    max-width: 1090px;
    margin: 0 auto;
    padding: 0 5rem;
}

@media (max-width:600px)
{
    html
    {
        font-size: 8px;
    }
}

@media (max-width:500px)
{
    html
    {
        font-size: 7px;
    }
}




/** 2. Background Content
*******************************************************************/

.background-content
{
    position: fixed;
    z-index: -1;
    top: 0;
    left: 50%;

    overflow: hidden;

    width: 100%;
    height: 100%;

    -webkit-transform: translate3d(-50%,0,0) !important;
            transform: translate3d(-50%,0,0) !important;
}

.background-content-inner
{
    position: absolute;
    top: 50%;
    left: 50%;

    width: 150%;
    height: 105%;

    -webkit-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
}

.background-content .background-img
{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: url(../img/background3.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}



/** 3. Intro
*******************************************************************/

#intro
{
    position: relative;

    margin-top: 10vh;

    text-align: left;
}



#intro .logo
{
    margin-top: 0px ;
    margin-bottom: 4.5rem;
}

#intro h1
{
    line-height: 1.4em;

    max-width: 740px;
    margin-top: 0;
    margin-bottom: 1em;
}




/** 04. Section --> Footer
*******************************************************************/

#footer
{
    position: relative;
    margin: 0 auto;
    padding: 0 0 8rem 0;
}

#footer p
{
    line-height: 6rem;

    margin: 0;
	
    vertical-align: middle;
}

#footer p a
{
    font-weight: 400;

    color: inherit;
}

#footer .social-icons
{
    margin: 0;
    padding: 0;

    list-style: none;

    vertical-align: middle;
}

#footer .social-icons li
{
    font-size: 2rem;
    line-height: 3em;

    position: relative;

    display: inline-block;
    overflow: hidden;

    width: 2em;
    height: 3em;
    margin: 0;
    margin-right: 1em;

    text-align: center;

    color: #fff;
    border-radius: 100%;
    background: none;
}

#footer .social-icons li:last-child
{
    margin-right: 0;
}

#footer .social-icons li a
{
    font-size: inherit;

    position: relative;
    z-index: 3;

    display: block;

    color: #fff;
    border: none;
}

@media (max-width:970px)
{
    #footer .col-md-6
    {
        text-align: center !important;
    }
}
