*{
    margin:0;
	padding:0;
    box-sizing: border-box;
    font-family: 'Open Sans';
}

h1{
    font-family: 'Montserrat Alternates', sans-serif;
    color: #330055;
    font-weight: 100;
    font-size: 50px;
    margin-bottom: 50px;
}

.content{
    padding: 50px 0;
    width:100%;
    margin:0 auto;
    text-align: center;
    overflow: hidden;
    background-color: #f1f1f1;
}

.content:nth-child(odd){
    background-color:#f8f1e3;
}

.article{
    width: 400px;
    text-align: center;
    margin: 0 auto;
}

.background{
    position: relative;
    height:700px;
    background-image: url(../images/background.jpg); 
    background-repeat: no-repeat;
    background-size:cover;
    background-position: 50% 50%;
    background-attachment: fixed;
    overflow: hidden;

}

.logo{
    height: 300px;
    width: 100%;
    background-image: url(../images/Logo.svg);
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 5%;
}

.fore{
    height:700px;
    width:100%;
    background-image: url(../images/foreground.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    position: absolute;
    bottom: -5px;
}

.scope{
    margin: 10px auto;
    width: 300px;
    height: 300px;
    background-image: url(../images/hartej-background.jpg);
    background-color: #b46f60;
    background-position: center;
    background-size: 400px;
    background-repeat: no-repeat;
    background-attachment: fixed;
    border-radius: 100%;
}
/*Intro Page */
h2{
    padding-bottom :20px;
}
.intro-p{
    font-size: 18px;
    line-height: 30px;
    color:#666;
    font-weight: 300;
}
strong{
    color:#c99065;
}
.skills{
    color:#b46f60;
    max-width: 700px;
    margin: 100px auto;
}
.skill-unit{
    width:350px;
    float: left;
}
.skill-icon{
    padding-top: 10px;
    font-size: 0;
    margin-bottom: 30px;
}

.skill-icon span{
    width:20px;
    height: 20px;
    display:inline-block;
    background-color:#330055; 
    margin-right:5px;
    border-radius:50%;
    z-index: -1;
}

.skill-icon span:after{
    content:'';
    display:block;
    width:17px;
    height: 17px;
    background:#330055;
    margin:1px;
    border-radius:50%;
}
.skill-8 span:nth-child(n+9):after{
    background:#f1f1f1;
} 

.skill-6 span:nth-child(n+7):after{
    background:#f1f1f1;
} 

.skill-7 span:nth-child(n+8):after{
    background:#f1f1f1;
} 

.skill-9 span:nth-child(n+10):after{
    background:#f1f1f1;
} 
/* Project Grid */
figcaption{
    font-family: 'Open Sans';
    color:#b46f60;
    font-weight: 400;
    font-size: 18px;
}
a{
    text-decoration: none;
    color: #fff;
    font-family: 'Montserrat Alternates', sans-serif;
    font-weight: 100;
}

.project figure{
    margin: 20px;
    position: relative;
    opacity: 0;
    transform: translateX(-30px);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    overflow: hidden;

}

.project .show-class{
    opacity: 1;
    transform: translateX(0px);
}

img{
    width: 500px;
    border-radius: 10px;
}
.row-image{
    display: flex;
    flex-direction: row;
    justify-content: center;
}
/* Contacts */
.social-link{
    position:absolute;  
    max-width: 700px;
    margin:0px auto 50px;
    display: flex;
    justify-content: space-around;
}
.big-text{
    text-decoration: none;
    color: #b46f60;
    font-family: 'Montserrat Alternates', sans-serif;
    font-size: 68px;
    font-weight: 100;
}
.big-text:hover{
    color: #c99065;
}
.bar{
    width: 250px;
    height: 0px;
    border-top: 4px solid #b46f60;
    margin: 50px auto 50px;
}
ul{
    display: flex;
    flex-direction: row;
    justify-content: center;
}
ul li{
    position: relative;
    list-style: none;
    float: right;
    margin: 10px;
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    background:#c99065;
    border-radius: 50%;   
    color:#f8f1e3; 
    overflow: hidden;
    z-index: 1;
    transition: .5s ease-in-out;
    font-size: 50px;
}
ul li:after{
    content:'';
    position: absolute;
    width:50%;
    height: 100%;
    background:rgba(255, 255, 255, .3);
    right:-100%;
    top:0;
    -webkit-transition: .3s ease-in-out ;
    -moz-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    transition-delay: .2s;
}

ul li:before{
    content:'';
    position: absolute;
    width: 100%;
    height: 100%;
    background:#ccc;
    z-index: -1;
    border-radius: 50%;
    left:-100%;
     transform:scale(0);
    -webkit-transition: .3s ease-in-out ;
    -moz-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

ul li:hover:before{
    left: 0;
    transform:scale(1);
}

ul li:hover:after{
    right: 0%;
    transform:scale(1);
}

.one:before{
    background: #007bb5;
}

.two:before{
    background: #000000;
}
.three:before{
    background: #00BFFF;
}

ul li .fa{
    -webkit-transition: .3s ease-in-out ;
    -moz-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
ul li:hover .fa{
    color: #fff;
}

/* Form */

form{
    max-width: 500px;
    margin:0 auto 50px;
    display:flex;
    flex-direction: column;
    justify-content: space-between;
}
.contact-info{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 10px;

}

.contact-info label{
    width: 48%;
    margin-right:2%;
    float: left;
}
.text-info{
     width:235px;
}
label{
    display: block;
    text-align: left;
}

input{
    height: 40px;
    width:100%;
    border: 3px solid #c99065;
    box-sizing: border-box;
    font-size: 20px;
    padding:8px;
    border-radius:10px;
}

input[type="submit"]{
    background-color: #c99065;
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    height: 50px;
    width:30%;
}
.button-wrap{
    text-align: right;
}
input:focus{
    outline:none;
    border-color: #e1c184;
}
textarea:focus{
    outline:none;
    border-color: #e1c184;
}
textarea{
    margin-bottom: 20px;
    width:100%;
    height: 200px;
    border: 3px solid #c99065;
    border-radius:22px;
    box-sizing: border-box;
    padding:8px;
    font-size: 18px;
}
.message{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
/* footer */
 footer p{
     margin:50px 0;
     color:#330055;
     font-size:20px;
     text-align: center;
 }
.background-footer{
    position: relative;
    height:300px;
    background-image: url(../images/background.jpg); 
    background-repeat: no-repeat;
    background-size:cover;
    background-position: 50% 50%;
    background-attachment: fixed;
    overflow: hidden;
}
    


@media only screen and (max-width: 1070px) and (min-width: 800px) {
    img{
        width: 380px;
        border-radius: 10px;
   } 
}

@media only screen and (max-width: 801px) {
    .article{
        width: 350px;
        text-align: center;
        margin: 0 auto;
    }
  
    .big-text{
        text-decoration: none;
        color: #b46f60;
        font-family: 'Montserrat Alternates', sans-serif;
        font-size: 32px;
        font-weight: 100;
    }
    .scope{
        margin: 40px auto;
        background-size: 300px;
        background-position:center;
        background-attachment: scroll;
        background-position-y: 5px;
    }
    .row-image{
        display: flex;
        flex-direction: column;
        justify-content: center; 
    }

   img{
     width: 350px;
     border-radius: 10px;
   } 
}