/*
    Author: Waldemar Gilich
*/


body{
    font-family: 'Roboto', sans-serif;
    line-height: 28px;
    font-weight: 300;
    font-size: 16px;
    color:#000000;
    background-color: #ffffff;
    -webkit-text-size-adjust: 100%;
    -webkit-overflow-scrolling: touch;
    -webkit-font-smoothing: antialiased !important;
}

body, html{
    overflow-x:hidden;
}



/* Link style
---------------------------------------------------------*/
a {
    color: #3498db;
}
a,
a > * {
    outline: none;
    cursor: pointer;
    text-decoration: none;
}
a:focus,
a:hover {
    outline: none;
    text-decoration: underline;
}



/* Typography
----------------------------------------------------- */
h1, h2, h3, h4, h5, h6{
    font-weight: 700;
    margin:0;
    text-transform: uppercase;
}

h1 {
    /*font-size: 36px;
    line-height: 36px;*/
}

h2 {
    font-size: 30px;
    line-height: 30px;
}

h3 {
    font-size: 24px;
    line-height: 24px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 14px;
}

h6 {
    font-size: 12px;
}



/* List style
----------------------------------------------------- */
ul, ol {
    margin     : 0;
    padding    : 0;
    list-style : none
}



/* Home
----------------------------------------------------- */
#home {
    background-color: #ffffff;
	padding: 0;
	position: relative;
}

.intro {
	position: relative;
	width: 100%;	
	left: 0;
	text-align: left;	
	padding: 10% 12% 0 8%;
}

.intro h1{
	/*font-size: 120px;*/
	line-height: 95%;
	margin-bottom: 16px;
    color: #000000;
}

.intro p{
	color: #000000;
	margin-bottom: 20px;
}



/* Social Icons 
----------------------------------------------------- */
.social-icons a i{
    position: relative;
    color: #000;
    font-size: 18px;
    margin: 20px 7px;
    line-height: 40px;
    text-align: center;
    width: 40px;
    height: 40px;
}

.social-icons a i::before {
    position: relative;
    z-index: 1;
}

.social-icons a i::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    border: 1px solid #000;
    border-radius: 3px;
    -webkit-transform: rotate(45deg);
       -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
         -o-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transition: all 300ms;
       -moz-transition: all 300ms;
         -o-transition: all 300ms;
            transition: all 300ms;            
}

.social-icons a i:hover::after{
    background: #000000;
    border: 1px solid transparent;
    z-index: 0;
}

.social-icons a i:hover{
    color: #ffffff;
}

