/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background: #fff;
  color: #666666;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 200;
    font-size: 18px;	
    font-style: normal;
    line-height: 1.257;	
	text-align: justify;
}

a {
  color: #62b00b;
}

a:hover, a:active, a:focus {
  color: #aad73c;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
  color: #23b7f5 !important;
}

/* Prelaoder */
#preloader {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  overflow: visible;
  background: #fff url("../img/preloader.svg") no-repeat center center;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  display: none;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  padding: 6px 12px 9px 12px;
  font-size: 16px;
  border-radius: 2px;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}

.back-to-top:focus {
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  outline: none;
}

.back-to-top:hover {
  background: #002e5b;
  color: #fff;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    padding: 5px 0;
    height: 100px;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    transition: all 0.5s;
    z-index: 997;
	border: 6px solid #002e5b;
	background: #fff;
	color: #529900;
}

#header #logo {
  float: left;
}

#header #logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 6px 0;
  line-height: 1;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header #logo h1 a, #header #logo h1 a:hover {
  color: #fff;
}

#header #logo img {
  padding: 0;
  margin: 0;
}

@media (max-width: 768px) {
  #header #logo h1 {
    font-size: 26px;
  }
}

#header.header-fixed {
	padding: 5px 0;
    height: 100px;
	border: 6px solid #002e5b;
	background: #fff;
	color: #529900;	
    transition: all 0.5s;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
	height: 100vh;
    /*height: calc(100vh - 100px);*/
    background: #fff;
    position: relative;
	/*
	background-size: cover;
    border-style: solid;
    border-width: 3px 6px 6px 6px;
    border-color: #002e5b;	
	*/
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}


#hero:before {
    content: "";
    background: none;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero .hero-container {
    position: relative;
    bottom: 0;
    top: 100px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: inherit;
	height: calc(100vh - 100px);
}

#hero h1 {
  margin: 30px 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #fff;
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
}

#hero h2 {
  color: #eee;
  margin-bottom: 50px;
  font-size: 2rem;
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

/* samsung tab */
@media screen and (min-width: 1024px) 
  and (max-device-width: 1024px) {
	#hero h2 {
		font-size: 1.5rem;
	}	
	.nav-txt, .nav-txt3 {
		font-size: 1.15rem;
		line-height: 1.25rem;
	}	
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Nav Menu Essentials */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

.nav-menu li {
  position: relative;
  white-space: nowrap;
}

.nav-menu > li {
  float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
  display: block;
}

.nav-menu ul ul {
  top: 0;
  left: 100%;
}

.nav-menu ul li {
  min-width: 180px;
}

/* Nav Menu Arrows */
.sf-arrows .sf-with-ul {
  padding-right: 30px;
}

.sf-arrows .sf-with-ul:after {
  content: "\f107";
  position: absolute;
  right: 15px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
  content: "\f105";
}

/* Nav Meu Container */
#nav-menu-container {
    float: right;
    margin: 0 60px 0 0;
    padding-top: 23px;
}

@media (max-width: 768px) {
  #nav-menu-container {
    display: none;
  }
}

/* Nav Menu Styling */

.nav-menu a {
    padding: 0 8px 10px 8px;
    text-decoration: none;
    display: inline-block;
    color: #002e5b;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
    text-transform: none;
    font-size: 28px;
    outline: none;
}

.nav-menu > li {
  margin-left: 10px;
}

.nav-menu > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #none;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu .menu-active > a:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.nav-menu ul {
  margin: 4px 0 0 0;
  border: 1px solid #e7e7e7;
}

.nav-menu ul li {
  background: #fff;
}

.nav-menu ul li:first-child {
  border-top: 0;
}

.nav-menu ul li a {
  padding: 10px;
  color: #333;
  transition: 0.3s;
  display: block;
  font-size: 13px;
  text-transform: none;
}

.nav-menu ul li a:hover {
  background: #2dc997;
  color: #fff;
}

.nav-menu ul ul {
  margin: 0;
}

/* Mobile Nav Toggle */
#mobile-nav-toggle {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999;
    margin: 30px 30px 0 0;
    border: 0;
    background: #5fcff9;
    font-size: 24px;
    display: inline;
    transition: all 0.4s;
    outline: none;
    cursor: pointer;
}
#mobile-nav-toggle i {
    color: #fff;
}


@media (max-width: 768px) {
  #mobile-nav-toggle {
    display: inline;
  }
}

/* start: mobile nav */
body.mobile-nav-active #mobile-nav {
    left: 0;
}
#mobile-nav {
    position: fixed;
    top: 0;
    padding-top: 18px;
    bottom: 0;
    z-index: 998;
    background: #002e5b;
    left: -400px;
    width: 400px;
    overflow-y: auto;
    transition: 0.4s;
}

/* end: mobile nav */

/* Mobile Nav Styling */


#mobile-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#mobile-nav ul li {
  position: relative;
}

#mobile-nav ul li a {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 400;
    overflow: hidden;
    padding: 10px 22px 10px 15px;
    position: relative;
    text-decoration: none;
    width: 100%;
    display: block;
    outline: none;
}

#mobile-nav ul li a:hover {
  color: #5fcff9;
}

#mobile-nav ul li li {
  padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
  position: absolute;
  right: 0;
  z-index: 99;
  padding: 15px;
  cursor: pointer;
  color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
  color: #2dc997;
}

#mobile-nav ul .menu-item-active {
  color: #2dc997;
}

#mobile-body-overly {
    width: 100%;
    height: 100%;
    z-index: 997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgb(3, 25, 46, 0.9);
    display: none;
}


/* Mobile Nav body classes */
body.mobile-nav-active {
  overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
  left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
  color: #fff;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
/* Sections Header
--------------------------------*/
.section-header .section-title {
  font-size: 32px;
  color: #111;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  margin-bottom: 5px;
}

.section-header .section-description {
  text-align: center;
  padding-bottom: 40px;
  color: #999;
}


/* Contact Section
--------------------------------*/
#contact {
  background: #f7f7f7;
  padding: 80px 0 40px 0;
}

#contact #google-map {
  height: 300px;
  margin-bottom: 20px;
}

#contact .info {
  color: #333333;
}

#contact .info i {
  font-size: 32px;
  color: #2dc997;
  float: left;
}

#contact .info p {
  padding: 0 0 10px 50px;
  margin-bottom: 20px;
  line-height: 22px;
  font-size: 14px;
}

#contact .info .email p {
  padding-top: 5px;
}

#contact .social-links {
  padding-bottom: 20px;
}

#contact .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#contact .social-links a:hover {
  background: #2dc997;
  color: #fff;
}

#contact .form #sendmessage {
  color: #2dc997;
  border: 1px solid #2dc997;
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #errormessage {
  color: red;
  display: none;
  border: 1px solid red;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #sendmessage.show, #contact .form #errormessage.show, #contact .form .show {
  display: block;
}

#contact .form .validation {
  color: red;
  display: none;
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 13px;
}

#contact .form input, #contact .form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

#contact .form button[type="submit"] {
  background: #2dc997;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
}

#contact .form button[type="submit"]:hover {
  background: #51d8ad;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
    padding: 5px 0;
    height: 100px;
	/*border: 6px solid #002e5b;*/
    border-style: solid;
    border-width: 6px 6px 6px 6px;
    border-color: #002e5b;
	background: #002e5b;
	color: #fff;
	font-family: 'Source Sans Pro', sans-serif;
	font-size: 1.2rem;
	font-weight: 400;
	
	background-image: url(../images/bg-lines.png);
    background-position: 50%;
    background-size: cover;
    background-repeat: no-repeat;	
}
#footer .copyright {
    text-align: left;
	padding-top: 25px;
}
#footer a {
    color: #fff;
	padding-left: 1.5rem;
}
#footer a:hover {
    color: #23b7f5;
}

/*--------------------------------------------------------------
# Overwrite
--------------------------------------------------------------*/

h1 {
    font-size: 2rem;
    font-weight: 600 !important;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    max-width: 100% !important;
}

.nav-menu a:hover, .nav-menu a:active {
	color: #13b7f5;
}

section {
    display: block;
    border-style: none solid;
    border-width: 0px 6px;
    border-color: #002e5b;
}

#nav-mobile-menu-container {
	display: none;
}


#mobile-only {
	display: none;
}
.full-row {width:100%; height:66.6666%;}
.full-row2 {width:100%; height:33.3334%;}
.hero-pix { 
	height:100%; 
    border-style: solid;
    border-width: 0px 6px 6px 0px;
    border-color: #002e5b;
	background: url(../images/home-pix.jpg) top right;
    background-size: cover;
    position: relative;	
}
.hero-nav-1 {
	background: rgba(130,21,192,0.03); 
	height:50%; 
    border-style: solid;
    border-width: 0px 0px 6px;
    border-color: #002e5b;
	padding: 1rem 1rem 0 0;
}
.hero-nav-2 {
	background: rgba(82,123,0,0.03); 
	height:50%; 
    border-style: solid;
    border-width: 0px 0px 6px;
    border-color: #002e5b;
	padding: 1rem 1rem 0 0;
}
.hero-nav-3 {
	background: rgba(19,70,201,0.03); 
	height:100%; 
    border-style: solid;
    border-width: 0px 0px 0px;
    border-color: #002e5b;
	padding: 1rem;
}
.hero-nav-1:hover {
	background: rgba(130,21,192,.9); 
	color: #fff; 
	cursor: pointer;
}
.hero-nav-2:hover {
	background: rgba(82,123,0,.9); 
	color: #fff;
	cursor: pointer;
}
.hero-nav-3:hover {
	background: rgba(19,70,201,.9); 
	color: #fff;
	cursor: pointer;
}
.hero-nav-1:hover h2, .hero-nav-2:hover h2, .hero-nav-3:hover h2 {
	color: #fff !important;
}
.hero-nav-1:hover a.learn-more, .hero-nav-2:hover a.learn-more, .hero-nav-3:hover a.learn-more {
	background: #002e5b;
}
/* begin: 3 column mobile only */
.hero-nav-1b {
	background: rgba(130,21,192,0.03); 
	min-height: 300px; 
    border-style: solid;
    border-width: 0px 6px 0px 0px;
    border-color: #002e5b;
	padding: 1rem;
}
.hero-nav-2b {
	background: rgba(82,123,0,0.03); 
	min-height: 300px; 
    border-style: solid;
    border-width: 0px 6px 0px 0;
    border-color: #002e5b;
	padding: 1rem;
}
.hero-nav-3b {
	background: rgba(19,70,201,0.03); 
	min-height: 300px; 
    border-style: solid;
    border-width: 0px 0px 0px;
    border-color: #002e5b;
	padding: 1rem;
}
.hero-nav-1b:hover {
	background: rgba(130,21,192,.9); 
	color: #fff; 
	cursor: pointer;
}
.hero-nav-2b:hover {
	background: rgba(82,123,0,.9); 
	color: #fff;
	cursor: pointer;
}
.hero-nav-3b:hover {
	background: rgba(19,70,201,.9); 
	color: #fff;
	cursor: pointer;
}
/* end: 3 column mobile only */
.hero-info {
	background: #fff; 
	height:100%; 
    border-style: solid;
    border-width: 0px 6px 0px 0px;
    border-color: #002e5b;
}
.hero-info p {
	text-align: justify;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
	padding: 1rem 2rem 1rem 1rem;
}
.vertical-center {
  margin: 0;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#hero h2, h2 {
    color: inherit;
    font-family: 'Source Sans Pro', sans-serif;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: initial;
    line-height: 28px;
}
.nav-txt-col {
	position: relative;
}
.nav-txt {
    color: inherit;
    font-size: 1.25rem;
    line-height: 1.4rem;
    font-weight: 400;
}
.nav-txt3 {
    color: inherit;
    font-size: 1.25rem;
    line-height: 1.4rem;
    font-weight: 400;
	padding: 0 1rem 0 0;
}
a.learn-more {
    color: #fff;
    font-size: 1rem;
    padding: 3px 6px;
    background: #13b7f5;
	display: block;
    position: absolute;
    bottom: 5px;
    right: 5px;
}
.hero-nav-1 a.learn-more, .hero-nav-2 a.learn-more {
	right: -10px;
}
a.learn-more:hover {
	background: #002e5b;
}
.disclaimer {
	font-size: 1rem;
}
.title {margin-top:2rem;}

@media screen and (max-width: 991px) {
	.non-mobile {
		display: none;
	}
	#mobile-only {
		display: block;
	}		
}

@media (max-width: 960px) {
	#nav-menu-container {
		display: none;
	}
	.hero-pix, .hero-info {
		border-style: solid;
		border-width: 0px 0px 6px 0px;
		border-color: #002e5b;
	}
}
  
/* iphone x only */
@media only screen 
  and (min-device-width: 375px) 
  and (max-device-width: 812px) 
  and (-webkit-min-device-pixel-ratio: 3) { 
	.hero-info p {
		font-size: 1.1rem;
	}
	#header #logo img {
		max-height: 40px !important;
	}
	#header {
	    height: 60px;
	}
	#header.header-fixed {
		height: 60px;
	}	
	#hero .hero-container {
		position: relative;
		bottom: 0;
		top: 60px;
		left: 0;
		right: 0;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		text-align: inherit;
		height: calc(100vh - 60px);
	}	
	#mobile-nav-toggle {
		margin: 15px 30px 0 0;
	}	
	#mobile-nav {
		width: 100%;
		max-width:400px;
	}		
	.mobile-only-row .nav-txt-col {
		min-height: 250px;
	}			
}

/* 800px width Samsung Tab */
@media (min-width: 800px) {
	.mobile-only-row .nav-txt-col {
		min-height: 350px;
	}	
}	

/* mobile styles */
@media (max-width: 767px) {
	#mobile-nav-toggle {
		margin: 20px 20px 0 0;
	}	

	#header #logo img {
		max-height: 40px;
	}
	#header {
	    height: 70px;
	}
	#header.header-fixed {
		height: 70px;
	}	
	#hero .hero-container {
		position: relative;
		bottom: 0;
		top: 70px;
		left: 0;
		right: 0;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		text-align: inherit;
		height: calc(100vh - 70px);
	}	
	.hero-pix {
		border-width: 0px 0px 6px 0px;
	}
	.hero-info {
	    border-width: 0px 0px 6px 0px;
	}
	.hero-info p {
		font-size: 1.1rem;
		padding: 0 1rem 0 0;
	}
	/* start: mobile-only */
	.hero-nav-1b {
		background: rgba(130,21,192,0.03); 
		min-height: 200px; 
		border-style: solid;
		border-width: 0px 0px 6px;
		border-color: #002e5b;
		padding: 1rem;
	}
	.hero-nav-2b {
		background: rgba(82,123,0,0.03); 
		min-height: 200px; 
		border-style: solid;
		border-width: 0px 0px 6px;
		border-color: #002e5b;
		padding: 1rem;
	}
	.hero-nav-3b {
		background: rgba(19,70,201,0.03); 
		min-height: 200px; 
		border-style: solid;
		border-width: 0px 0px 0px;
		border-color: #002e5b;
		padding: 1rem;
	}	
	/* end: mobile-only */
	#footer {
		height: auto;
		font-size: 1rem;
		padding: 0;
	}
	#footer .copyright {
		text-align: center;
		padding: 20px 0 20px 0;
	}
	#footer .copyright span {
		display: block;
	}	
}
@media screen and (max-width:479px) {
	.hero-pix {
		height: 100%;
		border-style: solid;
		border-width: 0px 0px 6px 0px;
		border-color: #002e5b;
		background: url(../images/home-pix.jpg) top right;
		background-size: cover;
		position: relative;
	}	
}


/* iphone 5 */
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 568px) {
	.hero-info p {
		font-size: .8rem;
	}
	.nav-txt, .nav-txt3 {
		font-size: 1rem;
		line-height: 1.1rem;
	}	
	#mobile-only h2 {
		font-size: 1.25rem;
		line-height: 1.2rem;
	}	
}
@media screen and (max-width:360px) {
  #header #logo img {
    max-height: 35px;
  }
}

/*--------------------------------------------------------------
# Subpages
--------------------------------------------------------------*/

#sub-pages li {
  padding: 0;
  margin: 0 0 1.25rem 0.25rem;
  font-weight: 400;
}

#sub-pages {
    position: static;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    overflow: visible;
}
.sub-page-info {
    height: 100%;
    border-style: solid;
    border-width: 0px 0px 0px 0px;
    border-color: #002e5b;
    -ms-overflow-style: none;
    scrollbar-width: none;
	padding-top: 100px;
	
}

.sub-page-pix-free-class {
    height: auto;
    max-height: 100vh;
	min-height: 100vh;
    border-style: solid;
    border-width: 0px 6px 0px 0px;
    border-color: #002e5b;
    background: url(../images/sub-pix-free-class.jpg) 50% 50%;
    background-size: cover;
    position: sticky;
	top: 100px;
    overflow: visible;
}

.sub-page-pix-members {
    height: auto;
    max-height: 100vh;
	min-height: 100vh;
    border-style: solid;
    border-width: 0px 6px 0px 0px;
    border-color: #002e5b;
    background: url(../images/sub-pix-members.jpg) 50% 50%;
    background-size: cover;
    position: sticky;
	top: 100px;
    overflow: visible;
}

.sub-page-pix-contact {
    height: auto;
    max-height: 100vh;
	min-height: 100vh;
    border-style: solid;
    border-width: 0px 6px 0px 0px;
    border-color: #002e5b;
	background: url(../images/sub-pix-contact.jpg) 50% 50%;
    background-size: cover;
    position: sticky;
	top: 100px;
    overflow: visible;
}

.sub-page-pix-certified-counselor {
    height: auto;
    max-height: 100vh;
	min-height: 100vh;
    border-style: solid;
    border-width: 0px 6px 0px 0px;
    border-color: #002e5b;
	background: url(../images/sub-pix-certified-counselor.jpg) 50% 50%;
    background-size: cover;
    position: sticky;
	top: 100px;
    overflow: visible;
}

.text-only-content {
	min-height: 100vh;
}

@media screen and (max-width: 991px) {
	#sub-pages {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		
		/*position: relative;*/
	}	
	.sub-page-info {
		position: relative;
		width: 100%;
	}	
		
	.text-only-content {
	    flex-direction: unset !important;
	}
	
	.title {
		margin-top: 0;
	}
}


/*** sub pictures **/

@media screen and (max-width: 991px) {
	.sub-page-pix-free-class, .sub-page-pix-members, .sub-page-pix-contact, .sub-page-pix-certified-counselor {
		position: relative;
		width: 100%;
		height: calc(100vh - 70px);
		top: 70px;
		border-width: 0px 0px 6px 0px;
		background-position: 50% 25%;
	}	
}

@media (max-width: 767px) {
	.sub-pix-free-class, .sub-page-pix-members, .sub-page-pix-contact, .sub-page-pix-certified-counselor {
		border-width: 0px 0px 6px 0px;
		background-size: cover;
		background-position: 50% 25%;
		background-repeat: no-repeat;
	}
}
@media screen and (max-width:479px) {
	.sub-pix-free-class, .sub-page-pix-members, .sub-page-pix-contact, .sub-page-pix-certified-counselor {
		border-width: 0px 0px 6px 0px;
	}	
}
/* iphone x only */
@media only screen 
  and (min-device-width: 375px) 
  and (max-device-width: 812px) 
  and (-webkit-min-device-pixel-ratio: 3) { 
  
	.sub-page-pix-free-class, .sub-page-pix-members, .sub-page-pix-contact, .sub-page-pix-certified-counselor {
		height: calc(100vh - 60px);
		top: 60px;
	}

}

/***** table *****/

.table-container {
	overflow-x:auto;
	margin-bottom: 1rem;
}
.table-container li {
    padding: 0;
    margin: 0 0 .5rem 0 !important;
}
table td {padding:.5rem;}
table tr:nth-child(odd) td{
    background: #efefef;
}
table tr:nth-child(even) td{
    background: #dedede;
}
table td:nth-child(even), table th:nth-child(even) {
    border: 1px solid #fff;
}
table th {
    text-align: center;
    background: #ccc;
    font-size: 1.25rem;
    font-weight: 600;
	padding: .5rem;
}
table ul {
    margin-left: -1rem;
}

/** ccc **/
ul.bulbs {
	list-style-type: none;
	padding: 0;
	margin: 0 0 0 1rem;
}

ul.bulbs li::before {
    content: '';
    display: inline-block;
    height: 27px;
    width: 20px;
    background: url(../images/icon-bulb.png) no-repeat 0 5px;
    background-size: 15px;
    margin-top: -10px;
}

.center {text-align:center;}
.abutton {
    font-weight: bold;
    background: #2ab9f9;
    padding: 10px 20px;
    border-radius: 4px;
    color: #fff !important;
    display: inline-block;
    margin: 1rem;
    text-align: center;
}
.abutton:hover {
	color: #2ab9f9 !important;
	background: #002e5b;
}