
.head_wrap{
	background-size: cover;
	background-position: center;
	height: 100vh;
	position: relative;
}

#hero-img{
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

.alert-band{
	background: #D7AA21;
	color: #f5f5f5;
	position: relative;
}

.alert-band p{
	font-family: 'Open sans';
	font-weight: 700;
	text-align: center;
	font-size: 12px;
	padding: 8px 0;
	letter-spacing: 1.2px;
	margin: 0;
}

.alert-band i{
	position: absolute;
	color: #f5f5f5;
	right: 10px;
	font-size: 20px;
	cursor: pointer;
	top: 4px;
}


/*Competitors wrap*/

.competitors_wrap{
	background: #91c1cf;
	padding-bottom: 100px;
}

.competitors_wrap h2{
	text-align: center;
	color: #fff;
}

.competitors_wrap span{
	background: white;
}

.competitors_table{

	display: flex;
	flex-basis:1;
	border-radius: 10px;	
	justify-content: space-around;
}

.flex_column{
	display: flex;
	flex-direction: column;
	width: 18%;
	box-shadow: 0 0 5px 0 #296273;
	border-radius: 5px !important;
	overflow: hidden;

}



.flex_cell{
	padding: 5px 10px;
	background: #fff;
	color: #777;
	height: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
	font-size: 14px;
	flex: 1;
	margin: 0;
}

.flex_cell span .fa{font-size: 18px; color: #F4C926;}


.flex_column:first-of-type .flex_cell{
	font-weight: 700;
	color: #91c1cf;
}

.flex_cell:first-child{
	text-align: center;
	text-transform: uppercase;
	padding: 30px;
	background: #D3E5E6;
}

.flex_cell:not(:first-child){
	border-top: 1px solid #91c1cf;
}


.flex_cell img{
	height: 100px;
}



iframe{
	width: 826px;
	height: 466px;
}



@media only screen and (max-width: 1023px){
	iframe{
		width: 90%;
		margin-left: 5%;
	}

	.flex_cell{
		font-size: 12px;
	}

	.flex_cell:not(:first-child){
		height: 80px;
	}

	.flex_column{
		width: 23%;
	}

	.flex_column:last-child{
		display: none;
	}

}


@media only screen and (max-width: 785px){

	.flex_column{
		width: 31%;
	}

	.flex_column:nth-child(4){
		display: none;
	}
	
	.flex_cell:first-child{
		padding: 15px;
	}

	.flex_cell img{
		height: 70px;
	}

}


@media only screen and (max-width: 650px){

	.flex_cell{
		font-size: 10px;
		padding: 0 5px;
	}
}



/*Animations*/


.animated {
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30%{
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  } 

  65% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30%{
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  } 

  65% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}
