 @import url('https://fonts.googleapis.com/css?family=Poppins:400,500&display=swap&subset=latin-ext');


body {
    background: #fff;
    font-family: 'Poppins', sans-serif;
}




#particles-js {
    background: #0095DA;
    margin-bottom: 40px;
    position: relative;
    width: 100%; 
    height: 600px;
    overflow: hidden;
}
.cover-box {
    position: absolute;
    width: 100%;
    text-align: center;
    margin-top: 150px;
    overflow: hidden;
}

.cover-box h1 {
    font-size: 70px;
    font-weight: bold;
    
    -vendor-animation-duration: 3s;
    -vendor-animation-delay: 1s;
    -webkit-animation-delay: 1s; /* Safari 4.0 - 8.0 */
    animation-delay: 1s;
}
.cover-box h1 img {
    width: 520px;
    height: auto;
}


.cover-box p {
    color: #fff;
    font-size: 23px;
    font-weight: 500;
    padding: 0 20px;
    line-height: 1.2;
    
    -vendor-animation-duration: 3s;
    -vendor-animation-delay: 2.5s;
    -webkit-animation-delay: 2.5s; /* Safari 4.0 - 8.0 */
    animation-delay: 2.5s;
}
.cover-box .btn-info {
	background: #ed1651;
	border: 0;
	font-size: 15px;
	font-weight: 500;
	-vendor-animation-duration: 3s;
	-vendor-animation-delay: 4s;
	-webkit-animation-delay: 4s;
	animation-delay: 4s;
	text-transform: uppercase;
    
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    
    padding: 7px 20px;
}
.cover-box .btn-info:hover {
    background: #d0073e;
}

.header-shape {
	position: absolute;
	bottom: -120px;
	top: auto;
	left: 0;
	right: 0;
	width: 100%;
	height: 250px;
	z-index: 3;
}





.content {
    margin-bottom: 90px;
    position: relative;
    z-index: 9999;
}

.project-box {
    margin-bottom: 30px;
    position: relative;
	overflow: hidden;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
}




.project-title {
	position: absolute;
	bottom: 10px;
	left: 0;
	right: 0;
	text-align: center;
	font-weight: 500;
	font-size: 20px;
	color: #410049;
	line-height: 1.1;
}






.project-img {
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	background: #fff;
	overflow: hidden;
}
/* Shine */
.project-box .project-img {
	position: relative;
}
.project-box .project-img::before {
	position: absolute;
	top: 0;
	left: -75%;
	z-index: 2;
	display: block;
	content: '';
	width: 50%;
	height: 100%;
	background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	-webkit-transform: skewX(-25deg);
	transform: skewX(-25deg);
}
.project-box .project-img:hover::before {
	-webkit-animation: shine .75s;
	animation: shine .75s;
}
@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}
@keyframes shine {
	100% {
		left: 125%;
	}
}










/**************************************
	           RESPONSIVE
**************************************/

@media (max-width: 1320px) {
    .header-shape {
        width: 150%;
        left: -25%;
    }
}
@media (max-width: 991px) {
    .header-shape {
        width: 180%;
        left: -40%;
        bottom: -160px;
    }
}

@media (max-width: 591px) {
    #particles-js {
        height: 500px;
    }
    
    .cover-box h1 {
        margin: 0 20px;
    }    
    .cover-box h1 img {
        width: 100%;
    }
    .cover-box p {
        font-size: 18px;
        margin-top: 20px;
    }    
    
    .header-shape {
        width: 200%;
        left: -50%;
        bottom: -190px;
    }
}

@media (max-width: 420px) {
    .cover-box p {
        font-size: 16px;
    }  
}
@media (max-width: 370px) {
    .header-shape {
        bottom: -200px;
    }
}










