/* planes */
div#planes section.cover{
	max-width: 100vw;
	max-height: 400px;
	overflow: hidden;
}
div#planes section.cover .overlay{
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: -moz-linear-gradient(45deg, rgba(41,28,56,0.65) 0%, rgba(79,43,86,0.65) 100%); 
	background: -webkit-linear-gradient(45deg, rgba(41,28,56,0.65) 0%,rgba(79,43,86,0.65) 100%); 
	background: linear-gradient(45deg, rgba(41,28,56,0.65) 0%,rgba(79,43,86,0.65) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6291c38', endColorstr='#a64f2b56',GradientType=1 ); 
}
div#planes section.cover video{
	position: relative;
	right: 0;
	top:0;
	max-width: 100%; 
	max-height: 100%;
	z-index: -1;
}
div#planes section.cover .text-overlay{
	position: absolute;
	top: 120px;
	width: 100%;
	max-width: unset!important;
}
div#planes section.cover img{
	width: 300px;
}
div#planes section.cover .text-overlay h4{
	text-shadow: 0px 0px 10px rgba(0, 0, 0, 1), 0px 0px 10px rgba(0, 0, 0, 1), 0px 0px 15px rgba(0, 0, 0, 1) ;
}
div#planes section.cover .text-overlay .icon{
	margin-top: 32px;
	width: 100%;
}
div#planes section.cover .text-overlay .icon .icon-wrapper{
	width: 48px;
	height: 48px;
	cursor: pointer;
	border: 2px solid white;
	border-radius: 50%;
	text-align: center;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 1), 0px 0px 10px rgba(0, 0, 0, 1), 0px 0px 15px rgba(0, 0, 0, 1) ;
	margin:auto;
	transition: all .3s ease;
}
div#planes section.cover .text-overlay .icon .icon-wrapper:hover{
	background-color: white
}
div#planes section.cover .text-overlay .icon .icon-wrapper i.material-icons{
	font-size: 46px;
	text-shadow: 0px 0px 10px rgba(0, 0, 0, 1), 0px 0px 10px rgba(0, 0, 0, 1), 0px 0px 15px rgba(0, 0, 0, 1) ;
	transition: all .3s ease;
}
div#planes section.cover .text-overlay .icon .icon-wrapper:hover i.material-icons{
	color: #291C38;
	text-shadow: 0px 0px 0px transparent;	
}

div#planes section.more-features{
	background: rgb(41,28,56); /* Old browsers */
	background: -moz-linear-gradient(-45deg, rgba(41,28,56,1) 0%, rgba(66,35,109,1) 100%); 
	background: -webkit-linear-gradient(-45deg, rgba(41,28,56,1) 0%,rgba(66,35,109,1) 100%); 
	background: linear-gradient(135deg, rgba(41,28,56,1) 0%,rgba(66,35,109,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#291c38', endColorstr='#42236d',GradientType=1 ); 
}
div#planes section.more-features .overlay{
	padding: 96px 0px;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background-image:url('../img/planes/background.svg');
	background-size: cover;
	background-repeat: no-repeat;
}
div#planes section.more-features h5{
	margin-bottom: 3rem;
}
div#planes section.pricing{
	padding: 96px 0px 48px 0px;
	color: rgba(41,28,56,.6);
}
div#planes section.pricing h5{
	margin-top: 0px;
}
div#planes section.pricing ul.pricing-features, div#planes section.pricing span.font-header {
	background-color: #eee;
}

ul.pricing-features {
    display: inline-block;
    border: 2px solid #5B348A;
    border-radius: 5px;
    padding: 12px 24px;
    background-color: white;
    max-width: 90%;
}

ul.pricing-features .font-header {
    display: block;
    text-align: center;
    width: 90px;
    position: relative;
    top: -32px;
    left: calc(50% - 45px);
    background-color: #fff;
}

.font-header i {
    border: 2px solid #ff2f4b;
    border-radius: 50%;
    font-size: 24px;
    padding: 6px;
    color: #ff2f4b;
}

ul.pricing-features .content {
    margin-top: -24px;
}

ul.pricing-features h5 {
    margin: 24px 0px;
}

ul.pricing-features li {
    margin: 12px 0px;
    text-align: center;
}

ul.pricing-features li span {
    border-radius: 50%;
    border: 2px solid;
    height: 20px;
    width: 18px;
    min-width: 30px;
    line-height: 14px;
    margin-right: 10px;
}

ul.pricing-features li span i.material-icons {
    font-size: 14px!important;
    line-height: 14px!important;
    height: 20px!important;
    width: 18px!important;
    font-weight: 800;
    position: relative;
    top: 1px;
    left: -0.5px
}

ul.pricing-features li span.success {
    border-color: #66bb6a;
}

ul.pricing-features li span.success i.material-icons {
    color: #66bb6a;
}

ul.pricing-features li span.wrong {
    border-color: #ef5350;
}

ul.pricing-features li span.wrong i.material-icons {
    color: #ef5350;
}
@media only screen and (max-width: 600px){
	div#planes section.cover .text-overlay {
		top:100px;
	}
	div#planes section.cover .text-overlay h4{
		font-size: 1.4rem;
	}
	div#planes section.cover .text-overlay .icon {
		display: none;
	}
}
/* fin planes */