body {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	display: flex;
    min-height: 100vh;
    flex-direction: column;
}

#wrapper {
	flex: 1 0 auto;
	position: relative;
   	float: none;
   	background-color: #271f65;
   	background-image: url('../images/bg-virus.png');
}

#header {
	width: 100%;
    min-height: auto;
    position: relative;
    color: #FFFFFF;
    background-color: transparent;
}

#header .container-fluid {
	background-image: url('../images/bg-header.png');
	background-repeat: no-repeat;
	background-size: cover;
    background-position: 50% 20%;
}

#header .row {
	align-items: center;
    justify-content: center;
}

#content {
   position: relative;
   overflow: hidden;
}

.content-wrap {
   position: relative;
   padding: 30px 0;
}

h1, h2, h3, h4, h5, h6, strong {
    font-weight: 700;
}

#triangle-down {
	bottom: -5px;
    position: absolute;
    z-index: 1;
    left: 50%;
    right: 50%;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #32d6fe;
}

.background {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

.background:before {
    border-top: 1px solid #00aff4;
    content: "";
    margin: 0 auto;
    position: absolute;
    top: 80%;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: -1;
}

.background span {
    background: transparent;
    padding: 0 15px;
}

@media (min-width: 1280px) {
	/*.background:before {
	    width: 130%;
	    left: -65px;
	}*/
}

@media (max-width: 991px) {
	video {
		max-width: 100%;
		height: auto;
	}
}

@media (max-width: 575px) {
	.title-header {
	    font-size: 1rem;
	}
	#triangle-down {
	    position: relative;
	    text-align: center;
	    margin: 0 auto;
	    left: 0;
	}
}