/* ==========================================================================
   Globals
   ========================================================================== */

body {
	font-family: 'Nunito', sans-serif;
}

.btn-primary{
	background-color: #2ECC71 !important;
	color: #fff !important;
	text-decoration: none;
	width: 200px;
	height:60px;
	line-height: 50px;
	border:0;
	background-image: none;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-transition: box-shadow 0.2s ease-in-out;
    -moz-transition: box-shadow 0.2s ease-in-out;
    -o-transition: box-shadow 0.2s ease-in-out;
    transition: box-shadow 0.2s ease-in-out;
    -webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	font-size: 18px;
	border:0;
	text-shadow:none;
}

.btn-primary:hover{
	-webkit-box-shadow: 0px 2px 8px 0px rgba(46,204,113,1);
	-moz-box-shadow: 0px 2px 8px 0px rgba(46,204,113,1);
	box-shadow: 0px 2px 8px 0px rgba(46,204,113,1);
}

.delay-1 {
	animation-delay: .25s;
}
.delay-2 {
	animation-delay: .5s;
}
.delay-3 {
	animation-delay: .75s;
}
.delay-4 {
	animation-delay: 1s;
}


/* ==========================================================================
   Loader
   ========================================================================== */
.loading {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  position: absolute;
  top:50%;
bottom: 0;
left: 0;
right: 0;
margin: 0 auto;

  border: 0.25rem solid rgba(255, 255, 255, 0.2);
  border-top-color: white;
  -webkit-animation: spin 1s infinite linear;
          animation: spin 1s infinite linear;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}


/* ==========================================================================
   Left Container
   ========================================================================== */
.left-container{
	width: 50%;
	height: 100%;
	position: fixed;
	display: block;
	background: #fff;
}

.left-container .about-container{
	width: 50%;
	height: 80%;
	margin: auto;
	position: absolute;
	top:0;
	left: 0;
	right: 0;
	bottom: 0;
	display: block;
	text-align: center;
}

.left-container .about-container h2{
	margin-top: 40px;
	font-weight: bold;
	margin-bottom: 25px;
	font-size: 30px;
	color: #4A4A4A;
}

.left-container .about-container h5{
	font-weight: lighter;
	line-height: 22px;
	margin-bottom: 30px;
}

.left-container .about-container h5 a, .left-container .about-container h5 a:hover{
	color:#000;
	font-weight: bold;
}

.left-container .about-container p{
	margin-bottom: 60px;
	color: #4A4A4A;
}



/* ==========================================================================
   Right Container
   ========================================================================== */

.right-container{
	position: absolute;
	width: 50%;
	height: 100%;
	top: 0;
	right: 0;
}


.right-container .portfolio-item{
	min-height: 70%;
    overflow: hidden;
    display: block;
    width: 100%;
    position: relative;
    display: block;
}


.right-container .portfolio-item img{
    margin: auto;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 560px;
}

.right-container .portfolio-item .portfolio-link{
	position: absolute;
	bottom: 20px;
	right: 20px;
	width: 40px;
	height: 40px;
	display: none;
	cursor: pointer;
}

.right-container .portfolio-item .portfolio-link img{
	opacity: 1 !important;
}


/* Social Media */
.socialmedia-section{
	margin-top: 60px;
}

.socialmedia-section a{
	width: 40px;
	height: 40px;
	cursor: pointer;
	display: inline-block;
	margin-right: 5px;
	-webkit-transition: background-image 0.2s ease-in-out;
    -moz-transition: background-image 0.2s ease-in-out;
    -o-transition: background-image 0.2s ease-in-out;
    transition: background-image 0.2s ease-in-out;
}


.linkedin{
	background-image: url('../img/linkedin.svg');
}

.linkedin:hover{
	background-image: url('../img/linkedin_hover.svg');
}

.twitter{
	background-image: url('../img/twitter.svg');
}

.twitter:hover{
	background-image: url('../img/twitter_hover.svg');
}

.instagram{
	background-image: url('../img/instagram.svg');
}

.instagram:hover{
	background-image: url('../img/instagram_hover.svg');
}

.dribbble{
	background-image: url('../img/dribbble.svg');
}

.dribbble:hover{
	background-image: url('../img/dribbble_hover.svg');
}

.notfound{
	position: absolute;
	top:15%;
	right:0;
	bottom:0;
	left:0;
	margin: auto;
	display: block;
	overflow: hidden;
	text-align: center;
}

.notfound img{
	width: 300px;
}