* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
   
}

header{
    position: fixed;
    top: 0;
    left: 0;
    width:100%;
    padding: 20px 10%;
    background-color: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    
}

.logo {
    width: 200px;
    height:75px;
}
.hamIcon h1 {
    color:#00abf0;
    cursor:pointer;
}
.image1 {
    width: 200px;
    height:75px;
}
.image2 {
    width: 500px;
    height:275px;
}
.image3 {
    width: 375px;
    height:275px;
}
.image4 {
    width: 375px;
    height:275px;
}
.navBar a {
    font-size: 18px;
    color: #00abf0;
    text-decoration: none;
    font-weight: 500;
    margin-left: 35px;
}

.navBar a:hover,
.navBar a.active {
    color: #777;
}

.home {
    height: 100vh;
    color:#fff;
    display: flex;
    background: linear-gradient(-90deg, #999 65%, #fff 35%);
    position:relative;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
}
.about {
    height: 100vh;
    color:#fff;
    display: flex;
    background: linear-gradient(-90deg, #999 65%, #fff 35%);
    position:relative;
    align-items: center;
    justify-content: space-between;
    padding: 0 20%;
}
.contact {
    height: 100vh;
    color:#fff;
    display: flex;
    background: linear-gradient(-90deg, #999 65%, #fff 35%);
    position:relative;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
}
.home-image {
    width: 500px;
    height: 500px;
    background: #d7b5c8;
    border-radius: 50%;
    border: 25px solid #fff;
    outline: 25px solid #031540;
    display: flex;
    align-items: center;
}

.about-image {
   width: 500px;
   height: 500px; 
   align-items: center;
   padding: 0 10%;
}
.contact-image {
   width: 500px;
   height: 500px; 
   align-items: center;
   padding: 0 10%;
}
.home-image img {
    position:relative;
    max-width:300px;
    bottom: 15px;
    left: 75px;
}
.home-content {
    max-width: 600px;
    color:#fff;
    text-align:right;
}
.about-content {
    max-width: 600px;
    color:#fff;
    text-align:right;
}
.contact-content {
    max-width: 600px;
    color:#fff;
    text-align:right;
}

.home-content h1{
    font-size: 55px;
    line-height: 1.2;
}
.home-content a {
    text-decoration: none;
    color: #fff;
}
.contact-content a {
    text-decoration: none;
    color: #fff; 
}
.home-content h3{
    font-size: 48px;
    text-decoration: none;
    line-height: 1.2;
    color: transparent;
    -webkit-text-stroke: .5px #fff;
    background-image: linear-gradient(#00abf0, #00abf0);
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    background-position: -530px 0;
    animation: animateText 6s linear infinite;
}
.portfolio-content a {
    text-decoration: none;
    color: #fff; 
}
.portfolio-content h3{
    font-size: 48px;
    text-decoration: none;
    line-height: 1.2;
    color: transparent;
    -webkit-text-stroke: .5px #fff;
    background-image: linear-gradient(#525455, #999);
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    background-position: -530px 0;
    animation: animateText 6s linear infinite;
}
@keyframes animateText {
    0%, 95%, 100% {
        background-position: -530px 0;
    }
    65%, 85% {
        background-position: 0 0;
    }

}


.home-content p{
    font-size: 16px;
    line-height: 1.2;
    margin-top: 20px;
}

.home-sci {
    margin: 25px 0 40px;
    align-items: center;
}
.home-sci a{
   margin-top: 20px;
   align-items: center;
   text-decoration: none;
   color:#fff; 
   display: inline-flex;
   width: 40px;
   height: 40px;
   background: transparent;
   border: 2px solid #fff;
   border-radius: 50%;
   font-size: 20px;
   margin-left: 15px;
   transition: .5s;
}
.home-sci a:hover {
    background: #00abf0;
    color:#fff;
    border-color:#00abf0;
    box-shadow: 0 0 10px #00abf0;
    transform:translateY(-5px);

}
i {
    align-items: center;
    margin-left: 10px;
}


@media(max-width:768px){
	.navBar{
		display:none;
	}
	.navBar.toggleCls{
		display:block;
		align-items:right;
	}
}
@media(min-width:769px){
	.hamIcon{
		display:none;
	}
	.navBar.toggleCls{
		display:initial;
	}
}



@media(max-width:700px){
	.home-image{
		flex-direction: column;
		width: 100%;
        padding:60%;
	}
	.home-content{
		flex-direction: column;
        flex-basis:100%;
		float: right;
		width: 100%;
		background:#999;
		border-radius:20px;
		margin-bottom:5%;
		padding: 10px 10px;
		box-sizing: border-box;
		transition:0.5s;
	}
    .home {
    height: 100vh;
    color:#fff;
    display: flex;
    flex-direction: column;
	flex-basis:100%;
	float: right;
    width: 100%;
    position:relative;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
}
.about {
    height: 100vh;
    color:#000;
    display: flex;
    flex-direction: column;
	flex-basis:100%;
	float: right;
    width: 100%;
    position:relative;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
}
.about-image{
		flex-direction: column;
		width: 100%;
        margin-top:200px;
	}
.about-content{
		flex-direction: column;
        flex-basis:100%;
		float: right;
		width: 100%;
		background:#999;
		border-radius:20px;
		margin-bottom:5%;
		padding: 10px 10px;
		box-sizing: border-box;
		transition:0.5s;
	}

.contact{
    height: 100vh;
    color:#000;
    display: flex;
    flex-direction: column;
	flex-basis:100%;
	float: right;
    width: 100%;
    position:relative;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
}
.contact-image{
		flex-direction: column;
		width: 100%;
        margin-top:200px;
	}
.contact-content{
		flex-direction: column;
        flex-basis:100%;
		float: right;
		width: 100%;
		background:#999;
		border-radius:20px;
		margin-bottom:5%;
		padding: 10px 10px;
		box-sizing: border-box;
		transition:0.5s;
	}
    .portfolio-content{
		flex-direction: column;
        flex-basis:100%;
		float: right;
		width: 100%;
        color:#000;
		background:#999;
		border-radius:20px;
		margin-bottom:5%;
		padding: 10px 10px;
		box-sizing: border-box;
		transition:0.5s;
	}
}