/*** home ***/

svg {
	min-height: 10px;
	min-width: 10px;
}

.home h2 {
	font-size: 2.5rem;
	font-weight: 700;
}

.home .features h3{
/*	font-size: 1.8rem; */
	font-weight: 700;
	margin: .75em 0;
}

.home .features .row{
	display: flex;
	min-height: 380px;
	align-items: center;
}

/** callout **/

.home .callout {
	background: #3c6cde;
	background: -moz-linear-gradient(left,  #3c6cde 0%, #6d99ff 100%);
	background: -webkit-linear-gradient(left,  #3c6cde 0%, #6d99ff 100%);
	background: linear-gradient(to right,  #3c6cde 0%, #6d99ff 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3c6cde', endColorstr='#6d99ff',GradientType=1 );
	color: #fff;
}

.home .callout a, .home .callout a:hover {
  text-decoration: none;
}

.home .callout p {
	color: #fff;
	font-size: 1.25em;
	font-weight: 600;
}
.home .callout p strong {
	font-weight: 700;
}

/** END callout **/

/** benefits **/
.benefits {
	padding-bottom: 3.5rem;
}

.benefits h4 {
	margin-bottom: .75rem;
}

.benfits .icon {
	position: relative;
}

.benefits .icon:before {
	position: absolute;
	content: ' ';
	height: 60px;
	width: 60px;
	background-color: #eef1f6;
	background-size: 25px;
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 5px;
	left: -80px;
	top: 5px;
}

.benefits .fast-speeds:before {
    background-image: url('../img/icons/icon-lightning.svg');
}

.benefits .calendar:before {
	background-image: url('../img/icons/icon-calendar.svg');
}

.benefits .bank:before {
	background-image: url('../img/icons/icon-bank.svg');
}

.benefits .support:before {
	background-image: url('../img/icons/icon-headset.svg');
}

/** end benefits **/

/** plans **/

.plans{
	background: #eef1f6;
}

.plans a, .plans a:hover{
	color: inherit;
	text-decoration: none;
}

.plans .plan {
	background: var(--light);
	border-radius: 20px;
	color: #a1abbb;
	margin-top: 5em;
}
.plans .plan.active {
	background: #fff;
	box-shadow: 1px 2px 20px 0px #0000001f;
	position: relative;
	margin-top: 0;
}

.plans .plan .ribbon {
	height: 128px;
	overflow: hidden;
	position: absolute;
	right: -5px;
	top: -6px;
	width: 170px;
	z-index: 2;
}

.plans .plan .ribbon span {
	background: #1ed794;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	padding: 5px;
	position: absolute;
	right: -52px;
	text-align: center;
	top: 27px;
	transform: rotate(45deg);
	width: 200px;
}

.plans .plan .ribbon:after {
	border-left: 6px solid #446917;
	border-right: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-top: 6px solid transparent;
	bottom: 4px;
	content: '';
	height: 0;
	position: absolute;
	right: -6px;
	z-index: 2;
}
.plans .plan .ribbon:before {
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-bottom: 6px solid #446917;
	border-top: 6px solid transparent;
	content: '';
	height: 0;
	left: 45px;
	position: absolute;
	top: -6px;
	z-index: 2;
}

.plans .plan .heading {
	background: #a1abbb;
	color: #fff;
	font-size: 1.25em;
	font-weight: 600;
	padding: .75em .5em;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	
}
.plans .plan.active .heading {
	background: #3c6cde;
	background: -moz-linear-gradient(left, #3c6cde 0%, #6d99ff 100%);
	background: -webkit-linear-gradient(left, #3c6cde 0%,#6d99ff 100%);
	background: linear-gradient(to right, #3c6cde 0%,#6d99ff 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3c6cde', endColorstr='#6d99ff',GradientType=1 );
}

.plans .plan .price-container {
	padding: 1.5rem;
}
.plans .plan.active .price-container {
	background: var(--light);
	color: #b1bcd7;
	font-size: 1.125em;
	font-weight: 600;
}

.plans .plan .price-container .price.current {
	align-items: flex-end;
	justify-content: center;
	display: flex;
	font-size: 2rem;
	font-weight: 700;
	padding-bottom: .5rem;
}

.plans .plan .price-container .price.current .currency{
	align-self: flex-start;
	font-size: 2.25rem;
}
.plans .plan .price-container .price.current .price{
	font-size: 4.25rem;
	line-height: 1.1;
	padding: 0 .25rem;
}

.plans .plan.active .price-container .price.original {
	text-decoration: line-through;
}

.plans .plan.active .price-container .price.current .currency{
	font-size: 2.5rem;
}
.plans .plan.active .price-container .price.current {
	color: var(--en-blue);
}

.plans .plan.active .price-container .price.current .price{
	font-size: 4.75rem;
}

.plans .plan.active .price-container .special-duration {
	text-transform: uppercase;
}

.plans .plan .plan-features{
	list-style: none;
	margin: 0;
	padding: 0 1.5em 1.5em;
}
.plans .plan.active .plan-features{
	padding: 1.5em;
}

.plans .plan .plan-features li {
	color: #9ea9b8;
	padding: .5em 0;
	border-bottom: 1px solid #eef1f6;
	font-size: 1.125em;
	font-weight: 600;
}
.plans .plan .plan-features li:first-child {
	padding-top: 0;
}
.plans .plan .plan-features li:last-child {
	border: none;
	padding-bottom: 0;
}
.plans .plan.active .plan-features li {
	color: #6d6d6d;
}

.plans .plan.active .plan-features svg.fa-info-circle {
	color: var(--en-blue);
}

.plans .plan .cta {
	margin: 0 2em 2em;
}
.plans .plan .cta.inactive {
	background: #a1abbb;
}

.plans .plan-cta{
	color: var(--en-blue);
	font-size: 1.2rem;
	font-weight: 700;
}

.plans .plan-cta:hover{
	opacity: .9;
}

.popover {
	border: 0;
	border-radius: 20px;
	box-shadow: 1px 2px 20px 0px #0000001f;
	padding: 1rem;
}
/*
.popover .arrow{
	border: 0 !important;
	border-color: #fff !important;
}
*/
.popover.bs-popover-top .arrow:before {
    border-top-color: white;
    background: transparent;
}

.popover.bs-popover-bottom .arrow:before {
    border-bottom-color: white;
    background: transparent;
}

.popover.bs-popover-right .arrow:before {
    border-right-color: white;
    background: transparent;
}

.popover.bs-popover-left .arrow:before {
    border-left-color: white;
    background: transparent;
}

.popover .popover-header {
	border: 0;
	background-color: #fff;
	color: #6d6d6d;
	font-weight: 600;
	padding: 0;
}
.popover .popover-body {
	color: #6d6d6d;
	font-size: .9rem;
	margin: 0 !important;
	padding: 0 !important;
}

/** media queries **/

@media only screen and (max-width: 1199px){
	.benefits .icon:before {
		left: -65px;
	}
}

@media only screen and (max-width: 767px){
	.benefits .icon {
		margin-bottom: 35px;
		margin-top: 90px;
		text-align: center;
	}
	.benefits .icon:before {
		left: calc(50% - 30px);
	}
}

/*** END home ***/
