@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,300");

/* Base Styles
********************************************************************* */
html {
	font-size: 62.5%;
}
body {
	font-size: 1.5em;
	line-height: 1.6;
	font-weight: 400;
	font-family: 'Open Sans', Helvetica, Arial, sans-serif;
    color: #222;
    min-height: 100vh;
    max-width: 100%;
}
/* Grid
********************************************************************* */  
.container {
	position: relative;
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
	padding: 0 20px;
    box-sizing: border-box;
}


.column, .columns {
	width: 100%;
	float: left;
	box-sizing: border-box;
}



/* Header Section
********************************************************************* */


header {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
 width: 100%;
	height: 100vh;
	background: #e55d87;
	background: -moz-linear-gradient(-45deg, #e55d87 0%, #5fc3e4 100%);
	background: -webkit-linear-gradient(-45deg, #e55d87 0%, #5fc3e4 100%);
	background: linear-gradient(135deg, #e55d87 0%, #5fc3e4 100%);
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e55d87', endColorstr='#5fc3e4', GradientType=1 );
}
.title {
	align-self: center;
	padding: 2rem;
	max-width: 960px;
	text-align: center;
	position: relative;
	top: 300px;
	margin: 0 auto;
}
.title .smallsep {
	background: #fff;
	height: 2px;
	width: 70px;
	margin: auto;
	margin-top: 30px;
	margin-bottom: 30px;
}
.title h1 {
	font-size: 80px;
	font-weight: 300;
	text-transform: uppercase;
	line-height: 0.85;
	margin-bottom: 28px;
	margin: 0;
	padding: 0;
	color: #FFFFFF;
}
.title h2 {
	color: #FFFFFF;
	font-size: 16px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 5px;
	margin-top: 50px;
}

@media only screen and (max-height: 700px) {
.title h1 {
	font-size: 80px;
}
}
.title p {
	max-width: 600px;
	margin: 0 auto;
	line-height: 150%;
}

@media only screen and (max-width: 500px) {
.title h1 {
	font-size: 65px;
}
}
.title .icon {
	color: #FFFFFF;
	font-size: 50px;
}

.scroll-down {
	position: absolute;
	left: 50%;
	bottom: 5vh;
	display: block;
	text-align: center;
	font-size: 20px;
	z-index: 100;
	text-decoration: none;
	text-shadow: 0;
	width: 13px;
	height: 13px;
	border-bottom: 2px solid #fff;
	border-right: 2px solid #fff;
	z-index: 9;
	-webkit-transform: translate(-50%, 0%) rotate(45deg);
	-moz-transform: translate(-50%, 0%) rotate(45deg);
	transform: translate(-50%, 0%) rotate(45deg);
	-webkit-animation: fade_move_down 2s ease-in-out infinite;
	-moz-animation: fade_move_down 2s ease-in-out infinite;
	animation: fade_move_down 2s ease-in-out infinite;
}


/*animated scroll arrow animation*/
@-webkit-keyframes fade_move_down {
 0% {
-webkit-transform:translate(0, -10px) rotate(45deg);
opacity: 0;
}
 50% {
opacity: 1;
}
 100% {
-webkit-transform:translate(0, 10px) rotate(45deg);
opacity: 0;
}
}
@-moz-keyframes fade_move_down {
 0% {
-moz-transform:translate(0, -10px) rotate(45deg);
opacity: 0;
}
 50% {
opacity: 1;
}
 100% {
-moz-transform:translate(0, 10px) rotate(45deg);
opacity: 0;
}
}
@keyframes fade_move_down {
 0% {
transform:translate(0, -10px) rotate(45deg);
opacity: 0;
}
 50% {
opacity: 1;
}
 100% {
transform:translate(0, 10px) rotate(45deg);
opacity: 0;
}
}



.resume{
    font-size: 20px !important;
    color: blue !important;
}







.line{
    position: relative;
    top: 50%;
    width: 16em;
    margin: 0 auto;
    border-right: 2px solid rgba(255, 255, 255, 0.75);
    font-size: 180%;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    transform: translateY(-50%)
}

/*Animation */

.anim-typewriter{
    animation: typewriter 7s steps(40) 1s 1 normal both,
    blinkTextCursor 500ms steps(40) infinite normal;

}


@keyframes typewriter{
    from{
        width: 0;
    }
    to{
        width: 19em;
    }
}

@keyframes blinkTextCursor{
    from{
        border-right-color: rgba(255, 255, 255, 0.75);
    }
} to {
    border-right-color: transparent;
}




h1{
padding-bottom: 30px;
padding-top: 50px;
}







p{
	font-size: 15px;
	font-family: 'Ubuntu', sans-serif;
}


/********************About Section******************************************************/

section{
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    display:inline!important;
}

section .content{
    max-width: 100%;
}

section .content h2{
    position: relative;
    margin: 0;
    padding: 0;
    display: inline-block;
    font-size: 3em;
    transition: 0.5s;
    transform-origin: left;
    transform: scaleX(0);
}

section .content h2[data-scroll='in']{
    transform: scaleX(1);
}



section .content h2:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background: rgba(114,180,214,1);
	
    transform-origin: right;
    transform: 0.5s;
}

section .content h2[data-scroll='in']:before{
    transform: scaleX(0);
    transition-delay: 0.5s;
}


section .content h2[data-scroll='in']:before {
    transform: scaleX(0);
    transition-delay: 0.5s;

}


section .content h3{
    position: relative;
    margin: 5px 0 0;
    padding: 0;
    display: inline-block;
    font-size: 2em;
    transition: 0.5s;
    transform-origin: right;
    transform: scaleX(0);
}

section .content h3[data-scroll='in']{
    transform: scaleX(1);
    transition-delay: 1s;
}


section .content h3:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background: rgb(226,96,138);
    transform-origin: left;
	transform: 0.5s;
}

/*top only*/
section .content h3[data-scroll='in']:before{
    transform: scaleX(0);
    transition-delay: 1.5s;

}

section .content p{
    font-size: 1.2em;
    transition: 1s;
    opacity: 0;
}


section .content p[data-scroll='in']{
    opacity: 1;
    transition-delay: 1s;
}





section .content a {
    position: relative;
    background: #fff;
    color: #262626;
    padding: 15px 30px;
    font-size: 16px;
    display: inline-block;
    text-decoration: none;
    font-weight: 700;
    transition: 1s;
    transform: translateX(100px);
    opacity: 0;
}

section .content a[data-scroll='in']{
    transform: translateX(0);
    transition-delay: 1s;
    opacity: 1;
}

section .container div{
/* justify-content: center;
align-items: center; */
padding-top: 20px;
width: 100;

}

section .container h2{
	padding-bottom: 20px;

}

section .container h3{
	padding-bottom: 20px;

}




.icons{
	max-width: 100%;
	height: 80px;
	text-align: center;
}

.links{
    height: 60px;
}

/* .card-deck{
	position: relative;
	top: -800px;
} */


section .container .projects{
	font-size: 40px;
}















.section-con {
    position: relative;
    top: -140px;
   max-height: 100px;
 
}

.contact-section {

    padding: 80px 0;
    text-align: center;
}

.inner-width{
    max-width: 600px;
    margin: auto;
    padding: 0 20px;
}

.contact-section h1 {
    font-size: 20px;
    color: black;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 400;
}

.name, .email, .message {
    background: none;
    border: none;
    outline: none;
    border-bottom: 1px solid;
    color: black;
    padding: 10px 6px;
    font-size: 14px;
    margin-bottom: 40px;
}


.name{
    float: left;
    width: 270px;
}

.email {
    float: right;
    width: 270px;
}


.message{
    min-width: 100%;
    max-height: 100%;
}

.contact-section button {
    background: none;
    color: black;
    border: 1px solid #888;
    padding: 12px 40px;
    border-radius: 8px;
    text-transform: uppercase;
    font-size: 14px;
    transition: 0.4s linear;
    cursor: pointer;
}


.contact-section button:hover {
    background: #dfd3c3;
    color: black;
}


@media screen and (max-width:600px){
    .name, .email{
        width: 100px;
    }
}


.text-justify{
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    font-size: 20px !important;
}

.foot{
    position: relative;
    top: 50px;
}


