/*
 * Custom CSS
 */
html {
	position: relative;
	min-height: 100%;
}
body {
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	color: #777f80;
	margin-bottom: 157px;
	background: #fff;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0 0 15px;
	color: #243031;
}
h1 {
	font-size: 4em;
	line-height: 1.179;
	font-weight: 300;
}
h2 {
	font-size: 2.857em;
	line-height: 0.80;
	font-weight: 300;
}
h3 {
	font-size: 2.143em;
	line-height: 1.2;
	font-weight: 600;
}
h4 {
	font-size: 1.714em;
	line-height: 1.333;
	font-weight: 600;
}
p {
	font-size: 1.286em;
	line-height: 1.556;
	color: #777f80;
	margin: 0 0 15px;
}
a {
	color: #00b0ae;
	text-decoration: none;
}
a:hover {
	color: #00b0ae;
	text-decoration: underline;
}
a:focus {
	text-decoration: none;
}
a, .btn {
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
em {
	font-style: italic;
}
strong {
	font-weight: 600;
}
button:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
/*
 * Wrapper
 */
#wrapper {
	width: 100%;
	padding-top: 81px;
	position: relative;
	min-height: 100%;
	left: 0;
	top: 0;
}
#wrapper, .navbar-fixed-top, footer {
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.left-open, .right-open {
	overflow: hidden;
}
.left-open #wrapper, .left-open .navbar-fixed-top, .left-open footer {
	left: 79%;
	right: -79%;
	overflow: hidden;
}
.right-open #wrapper, .right-open .navbar-fixed-top, .right-open footer {
	right: 79%;
	left: -79%;
	overflow: hidden;
}
.left-open nav.invisible,.right-open nav.invisible {
	-webkit-transform: translate(0, 0);
	-moz-transform: translate(0, 0);
	-o-transform: translate(0, 0);
	transform: translate(0, 0);
	opacity: 1;
	visibility: visible;
}
/* Small Devices, Tablets */
@media(max-width:767px) {
#wrapper {
	padding-top: 105px;
}
}
/*
 * Container
 */
.container {
}
/*
 * Buttons
 */
.btn {
	font-size: 14px;
	padding: 8px 42px 10px;
	text-shadow: none;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	-webkit-box-shadow: none;
	box-shadow: none;
}
.btn:hover, .btn:focus {
	background: transparent;
}
.btn-lg {
	font-size: 1.286em;
	padding: 11px 34px 13px;
	-webkit-border-radius: 24px;
	border-radius: 24px;
}
.btn-link {
	-webkit-border-radius: 0;
	border-radius: 0;
}
.btn-default {
	background: transparent;
	border: 1px solid #414c4c;
	color: #414c4c;
}
.btn-default:hover, .btn-default:focus {
	background: #414c4c;
	border: 1px solid #414c4c;
	color: #fff;
}
.btn-primary {
	background: transparent;
	border: 1px solid #00b0ae;
	color: #00b0ae;
}
.btn-primary:hover, .btn-primary:focus {
	background: #00b0ae;
	border: 1px solid #00b0ae;
	color: #fff;
}
.btn-primary.disabled, .btn-primary:disabled, .btn-primary[disabled] {
	background: #00ccc9;
	border: 1px solid #00ccc9;
}
.btn-solid {
	background: #00b0ae;
	border: 1px solid #00b0ae;
	color: #fff;
}
.btn-solid:hover, .btn-solid:focus {
	background: #009996;
	border: 1px solid #009996;
	color: #fff;
}
.btn-white {
	background: transparent;
	border: 1px solid #fff;
	color: #fff;
}
.btn-white:hover, .btn-white:focus {
	background: #fff;
	border: 1px solid #fff;
	color: #00b0ae;
}
.btn-more {
	background: transparent;
	border: 1px solid #dfdfdf;
	color: #00b0ae;
	padding: 11px 50px 13px;
}
.btn-more:hover, .btn-more:focus {
	background: #dfdfdf;
	border: 1px solid #dfdfdf;
	color: #00b0ae;
}
/*
 * Main Nav
 */
.navbar {
	background: #fff;
	border-bottom: 1px solid #eee;
	-webkit-transform: translate(0, 0);
	-moz-transform: translate(0, 0);
	-o-transform: translate(0, 0);
	transform: translate(0, 0);
	-webkit-animation: firstFadeInAndDrop .5s;
	-moz-animation: firstFadeInAndDrop .5s;
	animation: firstFadeInAndDrop .5s;
}
.navbar .navbar-nav {
	padding: 19px 0 0;
}
.navbar .navbar-nav > li > a {
	background: transparent;
	font-size: 13px;
	color: #777f80;
	padding: 9px 14px;
}
.navbar .navbar-nav > li > a:hover {
	background: transparent;
	color: #00b0ae;
}
.navbar-nav > li.active > a, .navbar-nav > li.active > a:hover {
	background: transparent;
	color: #243031;
}

/* when hidden it goes up */
nav.invisible {
	-webkit-transform: translate(0, -64px);
	-moz-transform: translate(0, -64px);
	-o-transform: translate(0, -64px);
	transform: translate(0, -64px);
	opacity: 0;
}

/* on intial load fade in the menu */
@-webkit-keyframes firstFadeInAndDrop {
 0% {
-webkit-transform: translate(0, -54px);
}
 100% {
-webkit-transform: translate(0, 0);
}
}
 @-moz-keyframes firstFadeInAndDrop {
 0% {
-moz-transform: translate(0, -54px);
}
 100% {
-moz-transform: translate(0, 0);
}
}
 @keyframes firstFadeInAndDrop {
 0% {
transform: translate(0, -54px);
}
 100% {
transform: translate(0, 0);
}
}
/*
 * Navbar Brand (Logo)
 */
.navbar-brand {
	padding: 20px 0 21px;
	height: auto;
}
/*
 * Nav user
 */
.navbar .nav-user {
	padding: 19px 0 0 37px;
}
.navbar .nav-user li {
	display: inline-block;
	padding-left: 7px;
}
/*
 * Nav Support
 */
.navbar .nav-support {
	padding: 18px 0 0 37px;
	margin-right: -12px;
}
.navbar .nav-support li {
	display: inline-block;
	padding-left: 7px;
}
.navbar .nav-support li a {
	padding: 0.714em 0 0.714em 3.214em;
	color: #243031;
	background: transparent;
}
.navbar .nav-support li a:hover {
	color: #00b0ae;
	background: transparent;
	text-decoration: underline;
}
.navbar .nav-support li a.tel {
	font-size: 0.929em;
}
.navbar .nav-support li a i {
	font-size: 20px;
	vertical-align: text-top;
	margin-right: 16px;
}
/* Large Devices, Wide Screens */
@media(max-width: 1290px) {
.navbar > .container {
	width: 100%;
}
}
/* Small Devices, Tablets */
@media(max-width:800px) {
.navbar .nav-user {
	padding-left: 8px;
}
}
/* Small Devices, Tablets */
 @media(max-width:767px) {
.navbar-toggle {
	float: left;
	border: none;
	background: transparent;
	margin-top: 42px;
	padding: 0;
	position: relative;
	-webkit-border-radius: 0;
	border-radius: 0;
}
.navbar-brand {
	float: none;
	display: block;
	width: 96px;
	margin: 0 auto;
	padding: 35px 0 30px;
}
.navbar-toggle .icon-bar {
	height: 4px;
	width: 37px;
	background: #7b858b;
}
.navbar-toggle .icon-bar + .icon-bar {
	margin-top: 6px;
}
.navbar-header .nav-settings {
	padding: 0;
	float: right;
	margin: 37px 0 0;
	border: none;
	background: transparent;
	cursor: pointer;
	outline: none;
	position: relative;
}
.navbar-header .nav-settings i {
	color: #7b858b;
	font-size: 34px;
	text-decoration: none;
	width: 29px;
	height: 32px;
	background: url(../../../media/client/images/icons/icon-user.png) no-repeat 50% 100%;
	-webkit-background-size: contain;
	background-size: contain;
}
.navbar-header .nav-settings i::before {
	content: '';
}
}
/*
 * OffCanvas Menu
 */
.navbar-offcanvas {
	background: #2a838a;
	width: 79%;
	position: fixed;
	top: 0;
	bottom: 0;
	padding: 93px 35px 20px 73px;
	overflow-y: auto;
	z-index: 1050;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.navbar-offcanvas .nav-access {
	list-style: none;
	padding: 0;
	margin: 0 0 69px;
}
.navbar-offcanvas .nav-access li a {
	font-size: 2.143em;
	line-height: 1.2;
	font-weight: 600;
	color: #fff;
	background: transparent;
	display: block;
	padding: 12px 0;
}
.navbar-offcanvas .nav-access li i {
	font-size: 20px;
	vertical-align: bottom;
}
.navbar-offcanvas .nav-access li a:hover {
	color: #fff;
}
.navbar-offcanvas .user-info, .sidebar .user-info {
	padding: 0.98em 0 0;
	margin: 0 0 5.4em;
}
.navbar-offcanvas .user-info h2 {
	color: #fff;
}
.navbar-offcanvas .user-info h2, .sidebar .user-info h2 {
	font-size: 2.143em;
	line-height: 1.2;
	font-weight: 600;
	margin: 0 0 16px;
}
.navbar-offcanvas .nav-user, .sidebar .nav-user {
	list-style: none;
	margin: 0;
	padding: 0;
}
.navbar-offcanvas .nav-user li a, .sidebar .nav-user li a {
	font-size: 1em;
	color: #abc7ca;
	background: transparent;
	padding: 0;
}
.navbar-offcanvas .nav-user li i, .sidebar .nav-user li i {
	font-size: 20px;
	vertical-align: bottom;
}
.navbar-offcanvas .nav-user li a:hover, .sidebar .nav-user li a:hover {
	color: #fff;
	text-decoration: none;
}
.navbar-offcanvas .navbar-nav, .sidebar .navbar-nav {
	float: none;
	margin: 0 0 5.4em;
}
.navbar-offcanvas .navbar-nav li, .sidebar .navbar-nav li {
	float: none;
	display: block;
}
.navbar-offcanvas.off-right .navbar-nav li, .sidebar .navbar-nav li {
	margin-bottom: 15px;
}
.navbar-offcanvas .navbar-nav li a, .sidebar .navbar-nav li a {
	background: transparent;
	font-size: 1.143em;
	color: #d9ebec;
	padding: 1.1em 0;
	display: block;
	position: relative;
}
.navbar-offcanvas .navbar-nav li a:hover, .navbar-offcanvas .navbar-nav li.active a, .sidebar .navbar-nav li.active a {
	color: #d9ebec;
	font-weight: 600;
}
.navbar-offcanvas .navbar-nav li i, .sidebar .navbar-nav li i {
	font-size: 1.375em;
	width: 24px;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -.5em;
}
.navbar-offcanvas.off-right .navbar-nav li a, .sidebar .navbar-nav li a {
	padding-left: 3em;
}
.off-left {
	left: -79%;
}
.left-open .off-left {
	left: 0;
}
.off-right {
	right: -79%;
}
.right-open .off-right {
	right: 0;
}
#supportForm textarea {
	padding-top: 16px;
}
/* Small Devices, Tablets */
@media(min-width: 768px) {
.navbar-offcanvas {
	display: none;
}
.left-open #wrapper, .left-open .navbar-fixed-top, .left-open footer {
	left: 0;
	right: 0;
}
.right-open #wrapper, .right-open .navbar-fixed-top, .right-open footer {
	right: 0;
	left: 0;
}
.off-left {
	left: -79%;
}
.off-right {
	right: -79%;
}
}

/* Custom, iPhone Retina */
@media(max-width: 360px) {
.navbar-offcanvas {
	padding-left: 35px;
	padding-right: 10px;
}
}
/*
 * Hero Section
 */
.hero {
}
.hero > div[class*="container"] {
	padding: 0;
}
.hero .hero-left {
	background: url(../../../media/client/images/bgs/hero-left-bg.jpg) no-repeat 0 0;
	-webkit-background-size: cover;
	background-size: cover;
}
.hero .hero-right {
	background: url(../../../media/client/images/bgs/hero-right-bg.jpg) no-repeat 0 0;
	-webkit-background-size: cover;
	background-size: cover;
}
.hero-text {
	padding: 13% 9%;
}
.hero-text h2 {
	font-size: 4em;
	line-height: 1.179;
	color: #fff;
	margin: 0 0 34px;
	padding: 0 0 49px;
	position: relative;
}
.hero-text h2:after {
	content: '';
	border-bottom: 4px solid #00b0ae;
	width: 50px;
	position: absolute;
	left: 0;
	bottom: 0;
}
.hero-text p {
	font-size: 20px;
	line-height: 32px;
	color: #fff;
	margin: 0 0 85px;
}
.hero-text .btn .fa {
	margin-right: 9px;
}
/* Medium Devices, Desktops */
@media(min-width: 992px) {
.hero > div[class*="container"] > .row {
	margin: 0;
	display: table;
	width: 100%;
	height: 100%;
}
.hero > div[class*="container"] > .row > div[class*="col-"] {
	float: none;
	display: table-cell;
	vertical-align: middle;
}
}
@media(max-width: 1550px) {
	.section-offers .options-check {
	    font-size: 1.2em!important;
	    line-height: 2.2!important;
	}
}
@media(max-width: 1200px) {
.hero-left img {
	width: 80%;
}
	.section-offers .options-check {
	    font-size: 1.714em!important;
	    line-height: 1.556!important;
	}
}
/* Medium Devices, Desktops */
@media(max-width: 991px) {
.hero .hero-left {
	display: none;
}
.hero > div[class*="container"] {
	padding-left: 15px;
	padding-right: 15px;
}
.hero .hero-right {
	background: url(../../../media/client/images/bgs/hero-left-bg.jpg) no-repeat 0 0;
	-webkit-background-size: cover;
	background-size: cover;
	text-align: center;
}
.hero-text {
	padding: 12% 6%;
}
.hero .hero-right img {
	margin-bottom: 20px;
}
.hero-text h2::after {
	left: 50%;
	margin-left: -25px;
}
.hero-text p {
	margin-bottom: 40px;
}
}
/*
 * Section Features
 */
.section-features {
	padding-left: 0!important;
	padding-right: 0!important;
}
.section-features div[class*="col-"] {
	padding-top: 29px;
	padding-bottom: 35px;
	border-right: 1px solid #d1d3d4;
	border-bottom: 1px solid #d1d3d4;
}
.section-features div[class*="col-"]:last-child {
	border-right: none;
}
.section-features .fa {
	font-size: 29px;
	color: #00b0ae;
	margin-right: 11px;
}
.section-features .feature-text {
	font-size: 1.714em;
	font-weight: 600;
	color: #243031;
}
/* Medium Devices, Desktops */
@media(max-width: 991px) {
.section-features div[class*="col-"] {
	border-right: none;
	text-align: left;
	padding-left: 13%;
	padding-right: 13%;
}
.section-features .fa {
	float: left;
}
.section-features .feature-text {
	padding-left: 48px;
	display: block;
}
}
/* Extra Small Devices, Phones */
@media(max-width: 480px) {
.section-features div[class*="col-"] {
	padding-left: 10%;
	padding-right: 10%;
}
}
/*
 * Section Offers
 */
.section-offers {
	background: #00b0ae;
	padding-left: 0!important;
	padding-right: 0!important;
}
.section-offers > div[class*="container"] > .row {
	margin: 0;
}
.section-offers > div[class*="container"], .section-offers > div[class*="container"] > .row > div[class*="col-"] {
	padding: 0;
}
.section-offers div[class*="col-"] + div[class*="col-"] {
	background: #10bab8;
}
.section-offers .detail {
	padding: 9% 13%;
}
.section-offers .detail .text {
	background: url(../../../media/client/images/opt-arw.png) no-repeat 100% 100%;
}
.section-offers h2 {
	font-size: 4em;
	line-height: 1.179;
	color: #fff;
	padding: 0 0 47px;
	margin: 0 0 42px;
	position: relative;
}
.section-offers h2:after {
	content: '';
	border-bottom: 4px solid #fff;
	width: 50px;
	position: absolute;
	left: 0;
	bottom: 0;
}
.section-offers p {
	font-size: 20px;
	line-height: 32px;
	color: #fff;
	margin: 0 0 21px;
}
.section-offers .options-check {
	display: block;
	font-size: 1.714em;
	line-height: 1.556;
	color: #fff;
	font-weight: 600;
	padding: 4px 0 10px;
}
.opt {
	display: table;
	width: 100%;
	height: 169px;
	padding: 0 9%;
	border-left: 1px solid #40c4c2;
	border-bottom: 1px solid #4ccbca;
	overflow: hidden;
}
.opt:hover, .opt.hover {
	background: #17c5c3;
	border-color: #51d4d2;
}
.opt-icon, .opt-detail {
	display: table-cell;
	vertical-align: middle;
	text-align: left;
}
.opt-icon {
	width: 55px;
}
.opt-icon i {
	background: #fff;
	color: #00b0ae;
	font-size: 26px;
	text-align: center;
	width: 55px;
	height: 55px;
	line-height: 55px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}
.opt-icon .fa-phone {
	line-height: 60px;
}
.opt-detail {
	padding: 5px 0 5px 35px;
}
.opt .text {
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	display: none;
}
.opt:hover .text {
}
.opt h4 {
	color: #fff;
	text-transform: uppercase;
	margin: 0;
}
.opt:hover h4 {
}
.opt p {
	font-size: 1.286em;
	line-height: 1.556;
	color: #fff;
	margin: 0 0 30px;
}
.opt a {
	font-size: 1.286em;
	line-height: 1.556;
	font-weight: 600;
	color: #fff;
	text-decoration: underline;
}
.opt a:hover {
	text-decoration: none;
}
.opt .btn-clean {
    background-color: transparent;
    font-size: 1.286em;
    line-height: 1.556;
    font-weight: 600;
    color: #fff;
    text-decoration: underline;
    padding: 0;
    margin: 0;
}
/* Large Devices, Wide Screens */
@media(min-width:1200px) {
.section-offers > div[class*="container"] > div.row {
	display: table;
	width: 100%;
	margin: 0;
}
.section-offers > div[class*="container"] > div.row > div[class*="col-"] {
	display: table-cell;
	float: none;
	padding: 0;
	vertical-align: top;
}
}
@media(max-width:1200px) {
.section-offers .detail {
	padding: 6%;
}
.section-offers .detail .text {
	background: url(../../../media/client/images/opt-arw-down.png) no-repeat 100% 50%;
	padding-right: 95px;
}
.opt {
	padding: 0 6%;
}
}
/* Small Devices, Tablets */
@media(max-width: 767px) {
.section-offers .detail {
	text-align: center;
}
.section-offers h2 {
	margin-bottom: 0;
}
.section-offers h2::after {
	display: none;
}
.section-offers .detail .text {
	background: none;
	padding-right: 0;
}
}
/* Extra Small Devices, Phones */
@media(max-width: 480px) {
.opt {
	height: 225px;
}
}

/* Custom, iPhone Retina */
@media(max-width: 320px) {
}
/*
 * Section Partners
 */
.section-partners {
	background: #e0e0e0;
	padding: 18px 0 10px;
}
.section-partners h3, .section-partners ul {
	display: inline-block;
}
.section-partners h3 {
	font-size: 1.714em;
	line-height: 1;
	margin: 0;
	vertical-align: sub;
}
.section-partners ul {
	padding: 0 0 0 16px;
	vertical-align: middle;
}
.section-partners ul li {
	display: inline-block;
	padding: 0 14px;
}
/* Extra Small Devices, Phones */
@media(max-width: 480px) {
.section-partners h3 {
	margin-bottom: 15px;
}
}
/*
 * Section How
 */
.section-how {
	padding-top: 65px;
	padding-left: 0!important;
	padding-right: 0!important;
}
.section-how h2 {
	font-size: 4em;
	line-height: 1.179;
	margin: 0 0 78px;
}
.section-how h3 {
	margin-bottom: 12px;
}
.section-how div[class*="col-"] {
	border-top: 1px solid #e5ebe4;
	border-right: 1px solid #e5ebe4;
}
.section-how div[class*="col-"]:last-child {
	border-right: none;
}
.section-how .step {
	padding-top: 62px;
	padding-bottom: 45px;
	padding-left: 8%;
	padding-right: 8%;
}
.section-how .step .icon {
	margin-left: 90px;
}
.section-how .step .detail {
	padding: 72px 0 0;
}
.section-how .step .detail .step-count {
	background: #00b0ae;
	font-size: 1.429em;
	font-weight: 700;
	color: #fff;
	text-align: center;
	float: left;
	width: 2.62em;
	height: 2.62em;
	line-height: 2.62em;
	margin: 12px 0 0;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	-moz-background-clip: padding;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	background-color: #00afad;
}
.section-how .step .detail .text {
	padding-left: 5.5em;
}
/* Large Devices, Wide Screens */
@media(min-width:1200px) {
.section-how .row {
	display: table;
}
.section-how div[class*="col-"] {
	float: none;
	display: table-cell;
	vertical-align: top;
}
}
/* Medium Devices, Desktops */
@media (min-width:992px) and (max-width:1200px) {
.section-how div[class*="col-"] {
	margin-bottom: -99999px;
	padding-bottom: 99999px;
}
}
@media(max-width:1200px) {
.section-how .row {
	overflow: hidden;
}
.section-how .heading {
	padding: 180px 26% 0;
}
.section-how .step .detail {
	padding: 72px 0 100px;
}
}
/* Medium Devices, Desktops */
@media(max-width:991px) {
.section-how {
	padding-top: 0;
}
.section-how div[class*="col-"] {
	border-right: none;
}
.section-how .heading {
	padding: 30px;
	text-align: center;
}
.section-how h2 {
	margin: 0 0 5px;
}
.section-how .step {
	padding: 62px 15px 45px;
}
.section-how .step .detail {
	padding: 72px 0 0;
}
}
/*
 * Section About
 */
.section-about {
	padding: 92px 0 87px;
}
.section-about h3 {
	font-size: 16px;
	font-weight: 700;
	line-height: 32px;
	margin: 0 0 28px;
}
.section-about p.lead {
	font-size: 32px;
	font-weight: 300;
	line-height: 50px;
	color: #777f80;
	margin: 0 0 50px;
}
/*
 * Section Growth
 */
.section-growth {
	background: url(../../../media/client/images/bgs/growing-fast-bg-lg.jpg) no-repeat fixed 0 0;
	-webkit-background-size: cover;
	background-size: cover;
	overflow: hidden;
	padding-top: 180px;
	padding-bottom: 142px;
}
.section-growth h2 {
	font-size: 4em;
	line-height: 1.179;
	color: #fff;
	margin: 0 0 72px 55px;
}
.section-growth .col-wrap {
	padding: 0 0 0 35px;
}
.section-growth .col {
	display: inline-block;
	width: 240px;
	height: 240px;
	margin: 0 -12px;
	padding: 67px 30px 0;
	text-align: center;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	-moz-background-clip: padding;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	background-color: rgba(255,255,255,.9);
}
.section-growth .col .number {
	font-size: 36px;
	line-height: 1;
	color: #00b0ae;
	font-weight: 600;
	display: block;
	margin: 0 0 16px;
}
.section-growth .col p {
	font-size: 1.286em;
	line-height: 1.556;
	color: #777f80;
	margin: 0;
}
.content.custom.eq-column {
	padding-left: 15px;
	padding-right: 15px;
}
.custom #proxyValue.attr-validate {
	padding-left: 61px;
}
/* Large Devices */
@media(max-width:1200px) {
.section-growth {
	text-align: center;
}
.section-growth h2 {
	margin-left: 0;
}
.section-growth .col-wrap {
	padding: 0;
}
}
/* Medium Devices, Desktops */
@media(max-width:991px) {
.section-growth {
	padding-top: 55px;
	padding-bottom: 55px;
	padding-left: 10px!important;
	padding-right: 10px!important;
}
.section-growth h2 {
}
.section-growth .col-wrap {
	padding: 0 0 28px;
}
.section-growth .col {
	width: 240px;
	height: 240px;
	margin-bottom: -28px;
}
}

/* Small Devices, Tablets */
@media(max-width: 767px) {
.section-growth {
	background: url(../../../media/client/images/bgs/growing-fast-bg-lg.jpg) no-repeat fixed 50% 50%!important;
	-webkit-background-size: cover!important;
	background-size: cover!important;
}
.content.custom.eq-column h1,
.custom #proxyValue.attr-validate {
	padding-left: 0;
}
}
/*
 * Section Ready
 */
.section-ready {
	background: #00b0ae;
	padding-top: 97px;
	padding-bottom: 90px;
}
.section-ready h2 {
	font-size: 4em;
	line-height: 1.179;
	color: #fff;
	margin: 0 0 47px;
}
/*
 * Helper Classes
 */
.no-pad {
	padding: 0!important;
}
/*
 * Account Pages
 */

.section-accounts {
	font-size: 13px;
	color: #243031;
	padding: 50px 0;
}
.page-title {
	font-weight: 300;
	color: #243031;
	margin: 0 0 .89em;
	padding: 0 .5em;
}
.page-title i {
	font-style: normal;
	text-transform: lowercase;
}
.page-title .h1child {
	font-size: 32px;
	display: block;
	margin-top: 20px;
}
.section-accounts a {
	text-decoration: underline;
}
.section-accounts a:hover {
	text-decoration: none;
}
.section-accounts .btn-wrap .btn {
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}
/*
 * Form Elements
 */

.form-group {
	margin-bottom: 20px;
}
label {
	font-size: 13px;
	color: #243031;
}
.form-control {
	font-family: 'Open Sans', sans-serif;
	font-size: 18px;
	color: #777f80;
	height: 60px;
	padding-left: 20px;
	padding-right: 20px;
	border-color: #dfdfdf;
	-webkit-appearance: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}
.form-control:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
	border-color: #00b0ae;
}
textarea.form-control {
	height: 155px;
	resize: none;
}
/* Checkbox */
.checkbox {
	padding-left: 20px;
	margin: 0;
}
.checkbox label {
	display: inline-block;
	position: relative;
	padding-left: 21px;
	line-height: 30px;
}
.checkbox label::before {
	content: "";
	display: inline-block;
	position: absolute;
	width: 30px;
	height: 30px;
	left: 0;
	margin-left: -20px;
	border: 1px solid #dfdfdf;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	background-color: #fff;
	-webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
	-o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
	transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
}
.checkbox label::after {
	display: inline-block;
	position: absolute;
	width: 16px;
	height: 16px;
	left: 0;
	top: 0;
	margin-left: -16px;
	padding-left: 3px;
	padding-top: 0;
	font-size: 16px;
	color: #00b0ae;
}
.checkbox input[type="checkbox"] {
	opacity: 0;
	z-index: 1;
}
.checkbox input[type="checkbox"]:focus + label::before {
	outline: thin dotted;
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px;
}
.checkbox input[type="checkbox"]:checked + label::after {
	font-family: 'FontAwesome';
	content: "\f00c";
}
.checkbox input[type="checkbox"]:disabled + label {
	opacity: 0.65;
}
.checkbox input[type="checkbox"]:disabled + label::before {
	background-color: #eeeeee;
	cursor: not-allowed;
}
.checkbox.checkbox-circle label::before {
	border-radius: 50%;
}
.checkbox.checkbox-inline {
	margin-top: 0;
}
.checkbox.checkbox-single label {
	height: 17px;
}
.checkbox-primary input[type="checkbox"]:checked + label::before {
	background-color: #428bca;
	border-color: #428bca;
}
.checkbox-primary input[type="checkbox"]:checked + label::after {
	color: #fff;
}
.checkbox-danger input[type="checkbox"]:checked + label::before {
	background-color: #d9534f;
	border-color: #d9534f;
}
.checkbox-danger input[type="checkbox"]:checked + label::after {
	color: #fff;
}
.checkbox-info input[type="checkbox"]:checked + label::before {
	background-color: #5bc0de;
	border-color: #5bc0de;
}
.checkbox-info input[type="checkbox"]:checked + label::after {
	color: #fff;
}
.checkbox-warning input[type="checkbox"]:checked + label::before {
	background-color: #f0ad4e;
	border-color: #f0ad4e;
}
.checkbox-warning input[type="checkbox"]:checked + label::after {
	color: #fff;
}
.checkbox-success input[type="checkbox"]:checked + label::before {
	background-color: #5cb85c;
	border-color: #5cb85c;
}
.checkbox-success input[type="checkbox"]:checked + label::after {
	color: #fff;
}
/* Radio */
.radio {
	padding-left: 20px;
	margin: 0;
}
.radio label {
	display: inline-block;
	position: relative;
	padding-left: 27px;
	line-height: 30px;
}
.radio label::before {
	content: "";
	display: inline-block;
	position: absolute;
	width: 30px;
	height: 30px;
	left: 0;
	margin-left: -20px;
	border: 1px solid #00b0ae;
	border-radius: 50%;
	background-color: #fff;
	-webkit-transition: border 0.15s ease-in-out;
	-o-transition: border 0.15s ease-in-out;
	transition: border 0.15s ease-in-out;
}
.radio label::after {
	display: inline-block;
	position: absolute;
	content: " ";
	width: 10px;
	height: 10px;
	left: 10px;
	top: 10px;
	margin-left: -20px;
	border-radius: 50%;
	background-color: #00b0ae;
	-webkit-transform: scale(0, 0);
	-ms-transform: scale(0, 0);
	-o-transform: scale(0, 0);
	transform: scale(0, 0);
	-webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
	-moz-transition: -moz-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
	-o-transition: -o-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
	transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
}
.radio input[type="radio"] {
	opacity: 0;
	z-index: 1;
}
.radio input[type="radio"]:focus + label::before {
	outline: thin dotted;
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px;
}
.radio input[type="radio"]:checked + label::after {
	-webkit-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	-o-transform: scale(1, 1);
	transform: scale(1, 1);
}
.radio input[type="radio"]:disabled + label {
	opacity: 0.65;
}
.radio input[type="radio"]:disabled + label::before {
	cursor: not-allowed;
}
.radio.radio-inline {
	margin-top: 0;
}
.radio.radio-single label {
	height: 17px;
}
.radio-primary input[type="radio"] + label::after {
	background-color: #428bca;
}
.radio-primary input[type="radio"]:checked + label::before {
	border-color: #428bca;
}
.radio-primary input[type="radio"]:checked + label::after {
	background-color: #428bca;
}
.radio-danger input[type="radio"] + label::after {
	background-color: #d9534f;
}
.radio-danger input[type="radio"]:checked + label::before {
	border-color: #d9534f;
}
.radio-danger input[type="radio"]:checked + label::after {
	background-color: #d9534f;
}
.radio-info input[type="radio"] + label::after {
	background-color: #5bc0de;
}
.radio-info input[type="radio"]:checked + label::before {
	border-color: #5bc0de;
}
.radio-info input[type="radio"]:checked + label::after {
	background-color: #5bc0de;
}
.radio-warning input[type="radio"] + label::after {
	background-color: #f0ad4e;
}
.radio-warning input[type="radio"]:checked + label::before {
	border-color: #f0ad4e;
}
.radio-warning input[type="radio"]:checked + label::after {
	background-color: #f0ad4e;
}
.radio-success input[type="radio"] + label::after {
	background-color: #5cb85c;
}
.radio-success input[type="radio"]:checked + label::before {
	border-color: #5cb85c;
}
.radio-success input[type="radio"]:checked + label::after {
	background-color: #5cb85c;
}
/* Bootstrap custom select */
.bootstrap-select.form-control {
	padding: 0!important;
}
.bootstrap-select > .btn {
	border-color: #dfdfdf;
	color: #777f80;
	font-size: 18px;
	height: 60px;
	padding: 6px 20px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}
.bootstrap-select.btn-group .btn .caret {
	border: none;
	margin-right: 23px;
	margin-top: -15px;
}
.bootstrap-select.btn-group .btn .caret:before {
	font-family: 'FontAwesome';
	content: "\f078";
	font-size: 15px;
	height: 9px;
	left: 0;
	top: 0;
	width: 15px;
	color: #919798;
}
.bootstrap-select .btn-default.active, .bootstrap-select .btn-default.focus, .bootstrap-select .btn-default:active, .bootstrap-select .btn-default:focus, .bootstrap-select .btn-default:hover, .bootstrap-select.open > .dropdown-toggle.btn-default {
	color: #777f80;
	background-color: #fff;
	border-color: #dfdfdf;
}
.bootstrap-select.open .dropdown-toggle {
	-webkit-box-shadow: none;
	box-shadow: none;
}
.bootstrap-select .dropdown-menu > li > a {
	font-size: 16px;
	color: #777f80;
	padding: 8px 20px;
}
.error .bootstrap-select .dropdown-toggle, .has-error .bootstrap-select .dropdown-toggle, .error .bootstrap-select .dropdown-toggle:focus, .has-error .bootstrap-select .dropdown-toggle:focus, .error .bootstrap-select .dropdown-toggle:active, .has-error .bootstrap-select .dropdown-toggle:active, .error .bootstrap-select.open > .dropdown-toggle.btn-default, .has-error .bootstrap-select.open > .dropdown-toggle.btn-default {
	border-color: #ec6464;
	-webkit-box-shadow: none;
	box-shadow: none;
}
.error .bootstrap-select.btn-group .btn .caret:before, .has-error .bootstrap-select.btn-group .btn .caret:before {
	color: #ec6464;
}
/* Buttons */
.btn-wrap {
	padding: 21px 0 0;
	margin-bottom: 33px;
}
.btn-wrap .btn-lg {
	font-size: 18px;
	padding-top: 15px;
	padding-bottom: 19px;
}
/* Validation */
.has-feedback .form-control {
	padding-right: 20px;
}
.has-error .form-control, .has-error .form-control:focus {
	border-color: #ec6464;
	-webkit-box-shadow: none;
	box-shadow: none;
}
.has-success .form-control, .has-success .form-control:focus {
	border-color: #00b0ae;
	-webkit-box-shadow: none;
	box-shadow: none;
}
.help-block {
	margin-top: 1px;
}
.has-error .checkbox, .has-error .checkbox-inline, .has-error .control-label, .has-error .help-block, .has-error .radio, .has-error .radio-inline, .has-error.checkbox label, .has-error.checkbox-inline label, .has-error.radio label, .has-error.radio-inline label {
	color: #ec6464;
}
.error i.form-control-feedback, .has-error i.form-control-feedback, .success i.form-control-feedback, .has-success i.form-control-feedback {
	display: none!important;
}
/*
 * Sign in
 */
.section-signin {
	padding: 0;
}
.section-signin {
}
.forgot-password {
	line-height: 30px;
}
.member-register a {
	margin-left: 15px;
}
/*
 * Registration Process
 */
.registration-process {
	padding: 0;
}
.registration-process .step {
	min-height: 2.9em;
	font-size: 1.286em;
	font-weight: 600;
	text-align: center;
	color: #fff;
	display: block;
	padding: 0.7em 0 0;
	border-right: 2px solid #fafcfc;
	background: #243031;
}
.registration-process .step:hover {
	text-decoration: none;
}
.registration-process .step:last-child {
	border-right: none;
}
.registration-process .step i {
	display: none;
	color: #7c8383;
	margin-left: .72em;
	font-size: 1.222em;
	vertical-align: middle;
}
.registration-process .active {
	background: #00b0ae;
}
.registration-process .step .text:before {
	content: '.';
	left: -4px;
	position: relative;
}
.registration-process .completed i {
	display: inline-block;
}

/* Small Devices, Tablets */
@media(max-width: 767px) {
.registration-process .step {
	border-right-width: 1px;
}
.registration-process .step .text {
	display: none;
}
}
/*
 * Registration Process
 */
.sidebar {
	padding: 5em 2.5em 5em 3.5em;
	background: #fff;
}
.sidebar h3 {
	margin: 0 0 .7em;
}
.sidebar p {
	font-size: 1.143em;
	line-height: 1.875;
	color: #243031;
}
/* Medium Devices, Desktops */
@media(max-width: 991px) {
.sidebar {
	padding: 4.5em 3em;
}
}
.content {
	padding: 0;
	background: #fafcfc;
}
.content .page-title {
	padding: 1.1em;
	margin: 0;
}
.account-types div[class*="col-"] {
	border-top: 1px solid #dfdfdf;
	border-left: 1px solid #dfdfdf;
}
.account-types div[class*="col-"]:first-child {
	border-left: none;
}
.account-types {
	padding: 0 15px;
}
.account-types > .row {
	overflow: hidden;
}
.account-types .type h2 {
	margin: 0 0 19px;
	position: relative;
	padding-left: 1.7em;
}
.account-types .type h2 i {
	color: #00b0ae;
	position: absolute;
	left: 0;
	top: 5px;
}
.account-types .type {
	padding: 4em 2em 4em 4.5em;
}
.account-types .type p {
	color: #777f80;
	margin: 0 0 29px;
}
.account-types .type h3 {
	font-size: 1.429em;
	margin: 0 0 36px;
}
.account-types .type .btn {
	padding: 9px 49px;
	margin-bottom: 4em;
}
/* Medium Devices, Desktops */
@media(min-width: 992px) {
.account-types div[class*="col-"] {
	margin-bottom: -99999px;
	padding-bottom: 99999px;
}
}
/* Medium Devices, Desktops */
@media(max-width: 991px) {
.account-types {
	padding-bottom: 20px;
}
.account-types div[class*="col-"] {
	border-left: none;
}
.account-types .type .btn {
	margin-bottom: 0;
}
}
/* Small Devices, Tablets */
@media(max-width: 767px) {
.content .page-title {
	padding: .9em .8em;
}
.account-types .type {
	padding: 3em 4em;
}
}
.physical-address {
	padding: 0 4em 5em;
}
.physical-address label {
	font-size: 1.286em;
	color: #243031;
	margin-bottom: 13px;
}
.physical-address .btn-wrap {
	padding-top: 11px;
}
.physical-address .btn {
	padding: 8px 54px 10px;
}
/* Small Devices, Tablets */
@media(max-width: 767px) {
.physical-address {
	padding: 0 3em 4em;
}
}
.payment-details {
	padding: 0 4em 5em;
}
.payment-details label {
	font-size: 1.286em;
	font-weight: normal;
	color: #243031;
	margin-top: 15px;
}
.cvv-code-input {
	text-align: center;
}
.payment-details .btn-wrap {
	padding-top: 11px;
}
.signature-pad {
	float: right;
	position: relative;
}
canvas.pad {
	border: 1px solid #dfdfdf;
	background: #fff;
	display: inline-block;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}
.signature-pad input[type=reset] {
	border: none;
	background: url(../../../media/client/images/icons/icon-reset.png) no-repeat 0 0;
	-webkit-background-size: contain;
	background-size: contain;
	height: 23px;
	width: 33px;
	position: absolute;
	right: 18px;
	bottom: 20px;
	font-size: 0;
	text-indent: -99px;
	overflow: hidden;
	cursor: pointer;
}
/* Small Devices, Tablets */
@media(max-width: 767px) {
.payment-details {
	padding: 0 3em 4em;
}
.payment-details textarea.form-control {
	margin-top: 9px;
}
}
/*
 * Section Settings
 */
.section-settings {
	padding: 0;
}
.sidebar .user-info h2 {
}
.sidebar .nav-user li a {
	color: #777f80;
}
.sidebar .nav-user li a:hover {
	color: #243031;
}
.sidebar .navbar-nav li a {
	font-size: 1.143em;
	background: transparent;
	color: #243031;
}
.sidebar .navbar-nav li a:hover, .sidebar .navbar-nav li.active a {
	background: transparent;
	color: #243031;
	font-weight: 600;
}
.sidebar .navbar-nav li i {
	color: #00b0ae;
}
.setting {
	margin: 0;
	padding: 1.5em 15px;
}
.setting > .row > div[class*="col-"] {
	padding: 0;
}
.setting .btn-group {
	padding-top: 20px;
}
.setting .btn-group .btn {
	padding-left: 54px;
	padding-right: 54px;
}
.panel {
	background: transparent;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	-webkit-border-radius: 0;
	border-radius: 0;
}
.panel-heading {
	background: #f7f9f9;
	border: none;
	padding: 2em 4em;
}
.panel-title {
	font-size: 1.714em;
	color: #243031;
}
.panel-body {
	padding: 4em;
}
/* Large Devices */
@media(min-width:1201px) {
.setting > .row {
	overflow: hidden;
}
.setting > .row > div[class*="col-"] {
	border-right: 1px solid #f3f3f3;
	margin-bottom: -99999px;
	padding-bottom: 99999px;
}
.setting > .row > div[class*="col-"]:last-child {
	border-right: none;
}
}
/* Small Devices, Tablets */
@media(max-width: 767px) {
.panel-body {
	padding: 3.5em;
}
}
/*
 * Support Section
 */
.section-support {
	padding: 3em 0 0;
}
.support {
	background: #fafcfc;
	padding: 0 15px;
}
.support > .row > div[class*="col-"] {
	padding: 4.5em 5em;
	border-top: 1px solid #dfdfdf;
}
.support > .row > div[class*="col-"]:last-child {
	border-right: none;
}
.support .heading-info {
	padding-bottom: 2em;
}
.support .btn-wrap {
	margin-bottom: 70px;
}
.support .btn-wrap .btn {
	-webkit-border-radius: 5px;
	border-radius: 5px;
}
.nav-helpdesk {
	list-style: none;
	margin: 0 0 90px;
	padding: 0;
}
.nav-helpdesk li {
	font-size: 1.714em;
	line-height: 1;
	color: #243031;
	margin: 0 0 2.57em;
	position: relative;
	padding-left: 2.85em;
}
.nav-helpdesk li a {
	color: #243031;
	display: block;
}
.nav-helpdesk li i {
	color: #00b0ae;
	font-size: 1.167em;
	position: absolute;
	left: 0;
	top: 0;
}
/* Medium Devices, Desktops */
@media(min-width: 992px) {
.support {
	overflow: hidden;
}
.support > .row > div[class*="col-"] {
	border-right: 1px solid #dfdfdf;
	margin-bottom: -99999px;
	padding-bottom: 99999px;
}
}
/* Medium Devices, Desktops */
@media(max-width: 991px) {
.support > .row > div[class*="col-"]:last-child {
	border-top: none;
	padding-top: 0;
}
.heading-info {
	text-align: center;
}
}
/*
 * Content Wrap
 */
.content-wrap {
	background: #fafcfc;
}
/*
 * Payment Methods
 */
.payment-methods .payment-details {
	padding: 0 4.7em 5em;
}
/* Small Devices, Tablets */
@media(max-width: 767px) {
.payment-methods .payment-details {
	padding: 0 3em 4em;
}
}
/*
 * My Proxies
 */
.proxies {
	overflow: hidden;
	padding: .5em 4.6em;
}
.my-proxies {
	margin-bottom: 5em;
}
.my-proxies .list {
	list-style-position: outside;
	margin: 0 0 3.2em 1.5em;
	padding: 0;
}
.my-proxies .list li {
	font-size: 1.286em;
	margin-bottom: 1.4em;
	color: #777f80;
}
.my-proxies .list li span {
	display: block;
	padding: 0 5px;
	font-weight: 300;
}
.my-proxies .list li.active span {
	color: #00b0ae;
	font-weight: 600;
}
/*
 * My Invoices
 */
.my-invoices table th {
	text-align: left;
	padding: 2.2em 0 2.2em 5.2em;
	background: #f7f9f9;
	vertical-align: top;
	white-space: nowrap;
}
.my-invoices table th:last-child, .my-invoices table td:last-child {
	padding-right: 5.2em;
}
.my-invoices table th .heading {
	font-size: 13px;
	font-weight: 300;
	color: #777f80;
}
.my-invoices table th i {
	font-size: 18px;
	color: #00b0ae;
	margin-right: 14px;
}
.my-invoices table td {
	text-align: left;
	padding: 2em 0 2em 5.2em;
	vertical-align: top;
}
.my-invoices table td .date {
	white-space: nowrap;
	line-height: 2.1;
}
.my-invoices table td .date span {
	font-size: 14px;
	font-weight: 300;
	color: #243031;
}
.title {
	font-size: 18px;
	font-weight: 600;
	color: #00b0ae;
}
.my-invoices table td p, #accordion p {
	font-size: 16px;
	line-height: 28px;
	color: #777f80;
}
.amount {
	font-size: 18px;
	font-weight: 600;
	color: #243031;
}
/* Accordition */
#accordion .panel-heading {
	padding: 1em;
	background: #f7f9f9;
	border-bottom: 2px solid #fafcfc;
	cursor: pointer;
}
#accordion .panel-heading .fa {
	float: right;
	font-size: 16px;
	color: #00b0ae;
	width: 16px;
	height: 16px;
	cursor: pointer;
}
#accordion .collapsed .fa-chevron-down:before {
	content: "\f054"
}
#accordion table td:first-child {
	vertical-align: middle;
	font-size: 18px;
}
#accordion table td:first-child, #accordion table td:last-child {
	vertical-align: middle;
}
#accordion table td .title {
	margin-bottom: 10px;
}
#accordion .panel-body {
	border-top: none;
	background: #fafcfc;
	padding: 3.5em 2em 3.5em 7.5em;
}
/* Medium Devices, Desktops */
@media(max-width:991px) {
.section-invoices .page-title {
	padding-left: 0.55em;
	padding-right: 0.55em;
}
.my-invoices table th, .my-invoices table td {
	padding-left: 2em;
}
.my-invoices table th:last-child, .my-invoices table td:last-child {
	padding-right: 2em;
}
.my-invoices table th:last-child, .my-invoices table td:last-child {
	padding-right: 2em;
}
}
/* Small Devices, Tablets */
@media(max-width:767px) {
.my-invoices table th, .my-invoices table td {
	padding-left: 1em;
}
.my-invoices .title {
	display: block;
}
}
/* Custom, iPhone Retina */
@media(max-width: 360px) {
#accordion .panel-body {
	padding: 3em;
}
}
/*
 * Nav Tabs
 */
.tabs-left, .tabs-right {
	border-bottom: none;
	padding-top: 2px;
}
.tabs-left {
	border-right: 1px solid #ddd;
}
.tabs-right {
	border-left: 1px solid #ddd;
}
.tabs-left>li {
	float: none;
	margin-bottom: 2px;
}
.tabs-left>li {
	margin-right: -1px;
}
.tabs-left>li.active>a, .tabs-left>li.active>a:hover, .tabs-left>li.active>a:focus {
	border-bottom-color: #ddd;
	border-right-color: transparent;
}
.tabs-left>li>a {
	border-radius: 4px 0 0 4px;
	margin-right: 0;
	display: block;
}
/*
 * FAQ Section
 */
.section-faq {
	padding: 3em 0 0;
}
.faqs > div[class*="container"] > .row > div[class*="col-"] {
	padding: 0;
	border-top: 1px solid #dfdfdf;
}
.faqs > div[class*="container"] > .row > div[class*="col-"]:last-child {
	border-right: none;
	background: #fafcfc;
}
.faqs .nav-tabs {
	border: none;
	padding: 0;
	margin-bottom: 3em;
}
.faqs .nav-tabs li {
	margin: 0;
}
.faqs .nav-tabs a {
	font-size: 16px;
	font-weight: 300;
	color: #243031;
	border: none;
	outline: none;
	padding: 2.5em 5em;
	display: block;
	-webkit-border-radius: 0;
	border-radius: 0;
}
.faqs .nav-tabs a i {
	position: absolute;
	right: 1.6em;
	top: 50%;
	display: none;
	margin-top: -7px;
}
.faqs .nav-tabs a:hover {
	color: #00b0ae;
	text-decoration: underline;
	background: transparent;
}
.faqs .nav-tabs a:hover i {
	color: #dfdfdf;
	display: inline-block;
}
.faqs .nav-tabs .active {
	border-bottom: 1px solid #dfdfdf;
	border-top: 1px solid #dfdfdf;
}
.faqs .nav-tabs li:first-child {
	border-top: none!important;
}
.faqs .nav-tabs .active a {
	font-size: 16px;
	font-weight: 600;
	color: #243031;
}
.faqs .nav-tabs > li.active > a, .faqs .nav-tabs > li.active > a:hover, .faqs .nav-tabs > li.active > a:focus {
	background: #fafcfc;
	border: none;
}
.faqs .nav-tabs .active a i {
	color: #00b0ae;
	display: inline-block;
}
.faqs .tab-content {
	padding: 3em 4em;
	margin-right: 15px;
	background: #fafcfc;
}
.faqs .tab-content h4 {
	margin-bottom: 29px;
}
.faqs .tab-content p {
	margin-bottom: 32px;
	line-height: 1.778;
}
.tab-pager {
	text-align: right;
	padding: 2em 4em;
	margin-right: 15px;
}
.tab-pager a {
	background: #00b0ae;
	width: 54px;
	height: 54px;
	margin-left: 11px;
	text-align: center;
	display: inline-block;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}
.tab-pager a.prev-question {
	padding-right: 3px;
}
.tab-pager a.next-question {
	padding-left: 3px;
}
.tab-pager a:hover {
	background: #009996;
}
.tab-pager a.disabled {
	background: #00ccc9;
	cursor: default;
}
.tab-pager a i {
	color: #fff;
	font-size: 17px;
	line-height: 55px;
}
/* FAQ Accordion */
.faqs #accordion .panel-heading {
	background: #fafcfc;
	border-top: 1px solid #dfdfdf;
	padding: 3.5em 5.5em 3.5em 3em;
	position: relative;
}
.faqs #accordion .panel-heading h4 {
	font-size: 16px;
	margin: 0;
}
.faqs #accordion .panel-heading i {
	position: absolute;
	right: 1.6em;
	top: 50%;
	margin-top: -7px;
}
.faqs .panel-group .panel + .panel {
	margin-top: 0;
}
.faqs #accordion .panel-body {
	border-top: 1px solid #dfdfdf;
	padding: 3.5em 3em .5em;
	background: #fff;
}
.faqs #accordion .panel-body p {
	margin-bottom: 32px;
	line-height: 1.778;
}
/* Small Devices, Tablets */
@media(min-width: 768px) {
.faqs > div[class*="container"] > .row {
	overflow: hidden;
}
.faqs > div[class*="container"] > .row > div[class*="col-"] {
	border-right: 1px solid #dfdfdf;
	margin-bottom: -99999px;
	padding-bottom: 99999px;
}
}
/*
 * Address Options
 */


/* Banner */
.banner {
	background: #00b0ae;
	padding: 0 15px;
}
.banner-text {
	padding: 8em 0;
}
.banner-text h1 {
	color: #fff;
	position: relative;
	padding: 0 0 36px;
	margin: 0 0 34px;
}
.banner-text h1:after {
	border-bottom: 4px solid #fff;
	bottom: 0;
	content: "";
	left: 50%;
	position: absolute;
	width: 50px;
	margin-left: -25px;
}
.banner-text p {
	color: #fff;
	font-size: 20px;
	line-height: 32px;
	margin: 0 0 1em;
}
.address-options .type {
}
.address-options .account-types .type {
	border: none;
	background: #fff;
	padding-left: 7.4em;
	padding-right: 7.4em;
	padding-top: 5.3em;
}
.address-options .row .type:nth-child(2n) {
	background: #fafcfc;
}
.address-options .row:nth-child(2n) .type:nth-child(n) {
	background: #fafcfc;
}
.address-options .row:nth-child(2n) .type:nth-child(2n) {
	background: #fff;
}
.account-types .type h2 {
	margin: 0 0 30px;
	line-height:1.25;
}
.account-types .type p {
	margin: 0 0 46px;
}
.address-options .account-types .type h3 {
	margin-bottom: 18px;
}
.address-options .account-types .type .btn {
	margin-top: 7.5em;
	margin-bottom: 5.7em;
}
/* Large Devices */
@media(max-width:1200px) {
.address-options .account-types .type {
	padding-left: 4em;
	padding-right: 4em;
	padding-top: 4em;
}
.address-options .account-types .type .btn {
	margin-top: 5em;
	margin-bottom: 3em;
}
}
/*
 * Acc
 */
.section-acc .content {
	padding: 6.5em 6em;
}
.fa-border-circle {
	background: transparent;
	border: 1px solid #00b0ae;
	color: #00b0ae;
	font-size: 36px;
	text-align: center;
	width: 106px;
	height: 106px;
	margin: 0 0 1.15em;
	line-height: 106px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}
.section-acc h1 {
	margin-bottom: .55em;
}
.message {
	margin-top: 8.4em;
}
.message h3 {
	font-weight: 300;
	margin: 0 0 26px;
}
.message h4 {
	font-size: 1.143em;
}
/* Large Devices */
@media(max-width:1200px) {
.section-acc .content {
	padding: 5em 4em;
}
.section-acc h1 {
	margin-bottom: .35em;
}
.message {
	margin-top: 6em;
}
}
/* Small Devices, Tablets */
@media(max-width:767px) {
.section-acc .content {
	padding: 3em;
}
.section-acc h1 {
	margin-bottom: .25em;
}
.message {
	margin-top: 4.5em;
}
}
/*
 * Footer
 */
footer {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 157px;
	background: #14191a;
	padding-top: 42px;
	padding-bottom: 35px;
}
.footer-brand {
	display: block;
	clear: both;
	margin: 0 0 21px;
}
/*
 * Copyright
 */
.copyright {
	font-size: 13px;
	line-height: 1;
	color: #919293;
	display: inline-block;
	margin: 0;
}
/*
 * Nav Footer
 */
.nav-footer {
	display: inline-block;
	line-height: 1;
	margin-left: 12px;
}
.nav-footer > li {
	display: inline-block;
	padding: 0 12px;
	border-left: 1px solid #6a6c6c;
}
.nav-footer > li > a {
	backgroun: transparent;
	font-size: 13px;
	color: #919293;
	padding: 0;
}
.nav-footer > li > a:hover, .nav-footer > li > a:focus {
	background: transparent;
	text-decoration: underline;
}
/* Large Devices */
@media(max-width:1200px) {
.nav-footer {
	display: none;
}
}

/* ***************
 * Media Queries *
 *****************/

/*
 * Sections
 */

/* Large Devices, Wide Screens */
@media(min-width:1200px) {
.section, .navbar, footer {
	padding-left: 60px;
	padding-right: 60px;
}
}
/* Large Devices */
@media(max-width:1200px) {
body {
	font-size: 12px;
}
.section, .navbar, footer {
	padding-left: 40px;
	padding-right: 40px;
}
}
/* Small Devices, Tablets */
@media(max-width:767px) {
body {
	font-size: 12px;
}
.section, .navbar, footer {
	padding-left: 30px;
	padding-right: 30px;
}
}
/* Extra Small Devices, Phones */
@media(max-width: 480px) {
body {
	font-size: 11px;
}
}
