/*Title Banner*/
.banner {
    position:absolute;
    left: 0;
    width: 100vw;
    top:50%;
    transform: translateY(-50%);
}

.banner-content h2 {
	font-size: 22px;
	font-weight: 300;
	color: #fff;
	line-height: 2.8em;
	margin-bottom: 1.5em;
	letter-spacing: 0.04em;
}

.banner-content h2 span.before-heading {
	display: block;
	font-size: 22px;
}

.banner-content h2 span {
	display: block;
	font-size: 56px;
	font-weight: 300;
}

.banner-content p {
	color: #707070;
	font-size: 20px;
	font-weight: 300;
	margin-bottom: 1.5em;
}

.before-heading {    
	background: linear-gradient(rgb(255,255,255) 45%, rgb(170,170,170) 60%, rgb(192,192,192) 74%);
	background-clip: text;
	-webkit-text-fill-color: transparent;
    line-height: 1.0em 0;
}

.btn-primary:nth-child(1) {
	margin-left:0px;
}

.btn-primary-outerpadding {
    padding:4px;
}

/*Section*/

.section-title p {
    color: white;
    text-align: center;
}

.projectpanel {
    width: 100%;
    min-height: 500px;
    height: fit-content;
    padding: 20px 10px 20px 10px;
    border-radius: 4px;
    background-color: #202020;
    animation: projectpanel-color-anim 3s linear infinite;
    border-width: 2px;
    border-style: solid;
    margin-bottom: 60px;
}

.projectpanel:hover {
    cursor: pointer;
    animation: projectpanel-anim 0.2s forwards, projectpanel-color-anim 3s linear infinite;
    animation-play-state: running;
}

@keyframes projectpanel-anim {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

@keyframes projectpanel-color-anim {
    0% {
        border-image: linear-gradient(to right, #0545a5 0%, #117a03 100%) 0 0 100% 0;
    }

    25% {
        border-image: linear-gradient(to right, #117a03 0%, #0545a5 50%, #117a03 100%) 0 0 100% 0;
    }

    50% {
        border-image: linear-gradient(to right, #117a03 0%, #0545a5 100%) 0 0 100% 0;
    }

    75% {
        border-image: linear-gradient(to right, #0545a5 0%, #117a03 50%, #0545a5 100%) 0 0 100% 0;
    }

    100% {
        border-image: linear-gradient(to right, #0545a5 0%, #117a03 100%) 0 0 100% 0;
    }
}

.projectpanel-icon {
    display: inline-block;
    width: 100%;
    text-align: center;
    color: rgba(146, 0, 0, 0.603);
}

.projectpanel h3 {
    text-align: center;
    font-size: 20px;
    font-family: 'Rajdhani';
    color: white;
    margin-top: 15px;
}

.projectpanel p {
    font-size: 16px;
    color: rgb(100, 100, 100);
    text-align: center;
}

.projectpanel img {
    display: block;
    position: static;
    width: 100%;
}

/*Contact*/

.contact-form {
	display:none;
	padding-top:15px;
	transition: max-height 0.2s ease-out;
}

#form_container {
	padding:15px 15px;
	margin:auto;
	background: rgba(53, 53, 53, 0.75);
	color:white;
}

#form_container textarea, #form_container input, #form_container select, #form_container textarea::placeholder, #form_container input::placeholder, #form_container select::placeholder {
	background-color:rgb(128, 128, 128);
	color:white;
}

/*About*/

.aboutsection h3 {
    padding: 10px 0;
}

.aboutsection p {
    padding: 5px 0;
}

/*Background*/
/*#bgstars {
    background: url(../img/stars2.gif) no-repeat center center fixed;
    width: 100vw;
    height: 100vh;
    position: fixed;
    mix-blend-mode: color-dodge;
}*/

#bg-video {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit:fill;
    z-index: -1;
    pointer-events: none;
}