.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #c9eaff;
  background: rgba(1,21,34, 0.9);
}
/* Overlay closing cross */
.overlay .overlay-close {
  width: 80px;
  height: 80px;
  position: absolute;
  right: 20px;
  top: 20px;
  overflow: hidden;
  border: none;
  background: url(../img/cross.png) no-repeat center center;
  text-indent: 200%;
  color: transparent;
  outline: none;
  z-index: 100;
}


.btn-block {
  width: 100%;
  display: block;
}
.login-part {
  position: absolute;
  top: -80px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 260px;
  height: 260px;
  padding: 0;
}
.termoteste {
  position: absolute;
  top: -80px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 350px;
  height: 350px;
  padding: 0;
  font-family: "Open Sans",Helvetica,Arial,sans-serif;
  font-size: 1em;
  color:#c6c5c5;
}
.login-part input {
  width: 100%;
  margin-bottom: 10px;
  background: white;
  border: none;
  outline: none;
  font-size: 1em;
  color: #4c4c4c;
  border: 2px solid white;
  border-radius: 4px;
  height:40px;
}
.login-part input:focus {
  border-color: #ff9000;
}
.login-part button[type='submit'] {
	width:100%; padding: 4px 8px; height:40px; background:#555; color:#FFF;
	-moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none; text-shadow: none;
	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;
	-webkit-transition:all .3s ease-in-out;
	}
.login-part button[type='submit']:hover {
    background:#ff9238; color:#FFF;
}
.login-part a.forgot-pw {
  display: block;
  text-align: center;
  margin-top: 2.5em;
  color: white;
  opacity: 0.5;
  font-size: 0.95em;
}
.login-part p {
  color: white;
  text-align: center;
  font-size: 0.95em;
  margin-top: 2.5em;
}
.login-part p.disclaimer {
  opacity: 0.5;
  padding: 0 1.5em;
}
.login-part p.disclaimer a {
  color: #ffb400;
}
#signup .login-part {
  height: 362px;
}
#signup .termoteste {
  height: 420px;
}
.overlay-content {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s, visibility 0s 0.5s;
  transition: opacity 0.5s, visibility 0s 0.5s;
  z-index: 9999;
}
.overlay-content.open {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
section .login-overlay {
  color: #fff;
  font-size: 1.2em;
  text-transform: ;
  text-align: center;
  margin: 0 0 0.5em;
  padding: 0;
}
section .login-campos {
  color: #fff;
  font-size: 1.0em;
  text-transform:  ;
  text-align: center;
  margin: 0 0 0 0;
  padding: 0;
}

/* Keyframes */
/*empty*/
@-webkit-keyframes empty {
  0% {
    opacity: 1;
  }
}
@-moz-keyframes empty {
  0% {
    opacity: 1;
  }
}
@keyframes empty {
  0% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes backSlideOut {
  25% {
    opacity: .5;
    -webkit-transform: translateZ(-500px);
  }
  75% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(-200%);
  }
  100% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(-200%);
  }
}
@-moz-keyframes backSlideOut {
  25% {
    opacity: .5;
    -moz-transform: translateZ(-500px);
  }
  75% {
    opacity: .5;
    -moz-transform: translateZ(-500px) translateX(-200%);
  }
  100% {
    opacity: .5;
    -moz-transform: translateZ(-500px) translateX(-200%);
  }
}
@keyframes backSlideOut {
  25% {
    opacity: .5;
    transform: translateZ(-500px);
  }
  75% {
    opacity: .5;
    transform: translateZ(-500px) translateX(-200%);
  }
  100% {
    opacity: .5;
    transform: translateZ(-500px) translateX(-200%);
  }
}
@-webkit-keyframes backSlideIn {
  0%,
  25% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(200%);
  }
  75% {
    opacity: .5;
    -webkit-transform: translateZ(-500px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0) translateX(0);
  }
}
@-moz-keyframes backSlideIn {
  0%,
  25% {
    opacity: .5;
    -moz-transform: translateZ(-500px) translateX(200%);
  }
  75% {
    opacity: .5;
    -moz-transform: translateZ(-500px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateZ(0) translateX(0);
  }
}
@keyframes backSlideIn {
  0%,
  25% {
    opacity: .5;
    transform: translateZ(-500px) translateX(200%);
  }
  75% {
    opacity: .5;
    transform: translateZ(-500px);
  }
  100% {
    opacity: 1;
    transform: translateZ(0) translateX(0);
  }
}
@-webkit-keyframes scaleToFade {
  to {
    opacity: 0;
    -webkit-transform: scale(0.8);
  }
}
@-moz-keyframes scaleToFade {
  to {
    opacity: 0;
    -moz-transform: scale(0.8);
  }
}
@keyframes scaleToFade {
  to {
    opacity: 0;
    transform: scale(0.8);
  }
}
@-webkit-keyframes goDown {
  from {
    -webkit-transform: translateY(-100%);
  }
}
@-moz-keyframes goDown {
  from {
    -moz-transform: translateY(-100%);
  }
}
@keyframes goDown {
  from {
    transform: translateY(-100%);
  }
}
@-webkit-keyframes scaleUpFrom {
  from {
    opacity: 0;
    -webkit-transform: scale(1.5);
  }
}
@-moz-keyframes scaleUpFrom {
  from {
    opacity: 0;
    -moz-transform: scale(1.5);
  }
}
@keyframes scaleUpFrom {
  from {
    opacity: 0;
    transform: scale(1.5);
  }
}
@-webkit-keyframes scaleUpTo {
  to {
    opacity: 0;
    -webkit-transform: scale(1.5);
  }
}
@-moz-keyframes scaleUpTo {
  to {
    opacity: 0;
    -moz-transform: scale(1.5);
  }
}
@keyframes scaleUpTo {
  to {
    opacity: 0;
    transform: scale(1.5);
  }
}

.overlay-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
  background: rgba(0, 0, 0, 0.5);
  background: -webkit-radial-gradient(50% 55%, ellipse closest-corner, rgba(0, 0, 0, 0.57) 1%, rgba(0, 0, 0, 0.8) 100%);
  background: -moz-radial-gradient(50% 55%, ellipse closest-corner, rgba(0, 0, 0, 0.57) 1%, rgba(0, 0, 0, 0.8) 100%);
  background: -ms-radial-gradient(50% 55%, ellipse closest-corner, rgba(0, 0, 0, 0.57) 1%, rgba(0, 0, 0, 0.8) 100%);
  background: radial-gradient(50% 55%, ellipse closest-corner, rgba(0, 0, 0, 0.57) 1%, rgba(0, 0, 0, 0.8) 100%);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 0;
}
.overlay-bg.black {
  opacity: 0.5;
}
.overlay-bg.light {
  background-image: -webkit-linear-gradient(top, rgba(243, 243, 243, 0.95) 80%, rgba(243, 243, 243, 0.85) 100%);
  background-image: linear-gradient(to bottom, rgba(243, 243, 243, 0.95) 80%, rgba(243, 243, 243, 0.85) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f3f3f3', endColorstr='#d9f3f3f3', GradientType=0);
}
.ie9 .overlay-bg,
.ie8 .overlay-bg {
  background: url('../img/ie-overlay.png');
}

.icon {
  border-radius: 50%;
  width: 31px;
  height: 31px;
  line-height: 30px;
  display: inline-block;
  text-align: center;
  color: #d8d8d8;
  font-size: 1em;
}
.icon:hover {
  color: #88b7b3;
}
.icons .icon-wrapper {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background-color: rgba(137, 184, 180, 0.4);
  text-align: center;
  margin: 2em auto 0;
  padding: 3em 0;
}
.icons .icon-wrapper .icon-large {
  color: white;
  font-size: 4em;
  display: block;
}
.icons .icon-wrapper span {
  text-transform: uppercase;
  font-weight: 600;
  color: #528783;
}
.icons p {
  margin: 0 2em 2em;
}
.behance {
  background: #053eff !important;
  color: white !important;
}
.behance:hover {
  background: #0030d1 !important;
}
.dribbble {
  background: #ea4c89 !important;
  color: white !important;
}
.dribbble:hover {
  background: #e51e6b !important;
}
.facebook {
  background: #3b5998 !important;
  color: white !important;
}
.facebook:hover {
  background: #2d4373 !important;
}
.foursquare {
  background: #25a0ca !important;
  color: white !important;
}
.foursquare:hover {
  background: #1d7e9f !important;
}
.google {
  background: #db4a39 !important;
  color: white !important;
}
.google:hover {
  background: #be3323 !important;
}
.instagram {
  background: #634d40 !important;
  color: white !important;
}
.instagram:hover {
  background: #44352c !important;
}
.linkedin {
  background: #0e76a8 !important;
  color: white !important;
}
.linkedin:hover {
  background: #0a5579 !important;
}
.pinterest {
  background: #c8232c !important;
  color: white !important;
}
.pinterest:hover {
  background: #9d1b22 !important;
}
.skype {
  background: #00aff0 !important;
  color: white !important;
}
.skype:hover {
  background: #008abd !important;
}
.tumblr {
  background: #34526f !important;
  color: white !important;
}
.tumblr:hover {
  background: #24384c !important;
}
.twitter {
  background: #00acee !important;
  color: white !important;
}
.twitter:hover {
  background: #0087bb !important;
}
.vimeo {
  background: #86c9ef !important;
  color: white !important;
}
.vimeo:hover {
  background: #59b5e9 !important;
}
.youtube {
  background: #c4302b !important;
  color: white !important;
}
.youtube:hover {
  background: #9a2622 !important;
}
.modal-form {
  width: 300px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1000;
  margin: -184px 0px 0px -150px;
  background: #FFFFFF;
  box-shadow: 0px 0px 0px 9999px rgba(0, 0, 0, 0.6);
  border-radius: 3px;
}
.modal-form#signup .user {
  border-top: 0;
}
.modal-form#signup .fullname {
  border-top: 1px solid #e9e9e9;
}
.modal-form h2 {
  text-align: center;
  font-size: 1.7em;
  margin: 1em 0;
}
.modal-form .user {
  border-top: 1px solid #e9e9e9;
}
.modal-form .fullname input:focus,
.modal-form .user input:focus,
.modal-form .pw input:focus {
  background: #f3f3f3;
  transition: all 0.1s ease-out;
}
.modal-form input[type="text"],
.modal-form input[type="password"] {
  width: 300px;
  padding: 20px 0px;
  background: transparent;
  border: 0;
  outline: none;
  color: #222;
  margin: 0 auto;
  text-indent: 20px;
  font-weight: 300;
  border-bottom: 1px solid #e9e9e9;
}
.modal-form input[type=checkbox] {
  display: none;
}
.modal-form label {
  display: block;
  position: absolute;
  margin-top: 2px;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  content: "";
  transition: all 0.5s ease-in-out;
  cursor: pointer;
  border: 3px solid white;
  box-shadow: 0px 0px 0px 2px #ccc;
}
.modal-form #remember:checked ~ label[for=remember] {
  background: #b5cd60;
  border: 3px solid white;
  box-shadow: 0px 0px 0px 2px #b5cd60;
}
.modal-form input[type="submit"] {
  background: #88b7b3;
  border: 0;
  color: white;
  font-weight: bold;
  padding: 18px 25px;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
  width: 100%;
}
.modal-form input[type="submit"]:hover {
  background: #528783;
}
.modal-form .forgot {
  margin: 1.5em 0;
  padding: 0 1em;
  display: block;
  font-size: 13px;
  text-align: center;
  color: #b5b5b5;
}
.modal-form ::-webkit-input-placeholder {
  color: #777;
  font-weight: 300;
}
.modal-form .submit {
  text-align: center;
}
.modal-form .remember {
  padding: 30px 0px;
  font-size: 12px;
  text-indent: 20px;
  line-height: 15px;
  margin-left: 25px;
  display: inline-block;
}
.modal-form .forgot h3 {
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 15px;
}
.modal-form .forgot a {
  color: #777;
}
.modal-form .close {
  width: 32px;
  height: 32px;
  display: block;
  border: 0;
  border-radius: 0px 3px 0px 0px;
  position: absolute;
  right: 0px;
  padding: 0px;
  background: #fff;
  cursor: pointer;
  border-left: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.modal-form .close:after {
  content: '';
  display: block;
  position: absolute;
  width: 3px;
  height: 16px;
  transform: rotate(45deg);
  background: #ccc;
  margin: -8px 0px 0px 14px;
}
.modal-form .close:before {
  content: '';
  display: block;
  position: absolute;
  width: 3px;
  height: 16px;
  transform: rotate(-45deg);
  background: #ccc;
  margin: -8px 0px 0px 14px;
}
.modal-form .close:hover:before,
.modal-form .close:hover:after {
  background: #777;
  transition: all 0.2s linear;
}
@media (max-width: 992px) {
  .cbp-af-header h1,
  .cbp-af-header .nav a {
    line-height: 72px;
  }
  .cbp-af-header.cbp-af-header-shrink h1 {
    font-size: 1em;
  }
  .cbp-af-header h1 {
    margin: 0 auto;
  }
  .cbp-af-header h1 a {
    margin: 0.9em 0;
  }
  .cbp-af-header.cbp-af-header-shrink h1 a {
    margin: 0.1em 0;
  }
  section.content h2 {
    font-size: 2.5em;
    padding: 0 1em;
  }
  section.content p {
    font-size: 1.15em;
    line-height: 1.8;
    padding: 0 4em;
  }
  section h2 {
    font-size: 2.3em;
  }
  section p {
    font-size: 1.15em;
    line-height: 1.8;
  }
  section .vertical-align {
    margin: 20px 0;
  }
}
@media (max-width: 1199px) {
  #intro .carousel-caption-center,
  #intro-video .carousel-caption-center {
    max-height: 258px;
  }
  #intro .carousel-caption-center p,
  #intro-video .carousel-caption-center p {
    margin: 1em 2em;
  }
  #intro .player,
  #intro-video .player,
  #intro .mbYTP_wrapper,
  #intro-video .mbYTP_wrapper {
    display: none;
  }
  section.content h2 {
    font-size: 2.5em;
    padding: 0 1em;
  }
  section.content p {
    font-size: 1.15em;
    line-height: 1.8;
    padding: 0;
    margin: auto 0;
  }
  section h2 {
    font-size: 2.2em;
  }
  .owl-theme-main .owl-item .item {
    padding: 2em 1em;
  }
  .owl-theme-main .owl-item .item p {
    padding: 0;
  }
  footer.footer h2 {
    font-size: 1.7em;
    margin-bottom: 0.7em;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  #pricing .plan {
    max-width: 400px;
    margin: 0 auto 2em;
  }
  #pricing .plan.featured {
    padding: 0;
    margin-top: 0;
  }
  #pricing .plan.featured .plan-title {
    margin: 0;
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .img-overlap {
    margin-bottom: -110px;
  }
  section {
    text-align: center;
  }
  .navbar-collapse {
    background-color: rgba(44, 46, 53, 0.9);
  }
  .navbar-collapse ul {
    width: 100%;
  }
  .navbar-collapse .open .dropdown-menu > li > a {
    color: white;
  }
  .cbp-af-header .nav a {
    line-height: 2;
  }
  .navbar-collapse {
    background-color: rgba(44, 46, 53, 0.9);
  }
  .navbar-collapse ul {
    width: 100%;
  }
  .navbar-collapse .open .dropdown-menu > li > a {
    color: white;
  }
  .cbp-af-header {
    position: absolute;
  }
  .cbp-af-header h1 a {
    margin: 0.4em 0;
  }
  .cbp-af-header .nav a {
    line-height: 2;
  }
  .cbp-af-header .nav a.login:before {
    background: transparent;
  }
  .cbp-af-header .nav a.btn {
    display: inline-block;
  }
  #intro .carousel-caption-center,
  #intro-video .carousel-caption-center {
    max-height: 192px;
  }
  #intro .carousel-caption-center h1,
  #intro-video .carousel-caption-center h1 {
    font-size: 1.7em;
    line-height: 1.4;
    margin-right: 0;
  }
  #intro .carousel-caption-center h2,
  #intro-video .carousel-caption-center h2 {
    font-size: 1.3em;
  }
  #intro .carousel-caption-center p,
  #intro-video .carousel-caption-center p {
    font-size: 1em;
    padding-right: 0;
    margin: 1em 0;
  }
  #intro .carousel-caption-center .btn,
  #intro-video .carousel-caption-center .btn {
    padding: 0.8em 1.5em;
  }
  #intro .player,
  #intro-video .player,
  #intro .mbYTP_wrapper,
  #intro-video .mbYTP_wrapper {
    display: none;
  }
  #featured1,
  #featured2 {
    text-align: center;
  }
  #featured1 img,
  #featured2 img {
    margin: auto;
  }
  #pricing .plan {
    max-width: 400px;
    margin: 0 auto 2em;
  }
  #pricing .plan.featured {
    padding: 0;
    margin-top: 0;
  }
  #pricing .plan.featured .plan-title {
    margin: 0;
    padding-top: 0;
  }
  footer.footer h2 {
    font-size: 1.7em;
    margin-bottom: 0.7em;
  }
  section h2,
  section.content h2 {
    font-size: 2.5em;
    padding: 0 1em;
  }
  section p,
  section.content p {
    font-size: 1.15em;
    line-height: 1.8;
    padding: 0;
  }
  section.separator::before,
  section.content.separator::before {
    bottom: -9px;
  }
  section.separator::after,
  section.content.separator::after {
    bottom: -4px;
  }
  .vertical-align {
    margin: 20px 0;
  }
  .icons {
    margin-bottom: 4.5em;
  }
  #testimonials .carousel .carousel-indicators {
    bottom: -30px;
  }
  #testimonials .carousel blockquote p {
    font-size: 1em;
  }
  #testimonials .carousel blockquote small {
    font-size: 0.8em;
  }
  section.cta h2 {
    padding: 0;
  }
  section.cta .btn {
    margin-top: 1em;
    width: 200px;
  }
  .contact-form {
    width: 100%;
  }
  footer.footer .row {
    text-align: center;
  }
  footer.footer .row .col-md-3 {
    margin-bottom: 5em;
  }
}
@media (max-width: 480px) {
  .cbp-af-header h1 {
    font-size: 1.5em;
  }
  .cbp-af-header .nav a.btn {
    display: block;
  }
  #intro .carousel-caption-center h1,
  #intro-video .carousel-caption-center h1 {
    font-size: 1.8em;
    line-height: 1.4;
    margin-right: 0;
  }
  #intro .carousel-caption-center h2,
  #intro-video .carousel-caption-center h2 {
    font-size: 1.4em;
  }
  #intro .carousel-caption-center p,
  #intro-video .carousel-caption-center p {
    font-size: 1em;
    padding-right: 0;
  }
  section h2,
  section.content h2 {
    font-size: 1.5em;
    padding: 0 0.4em;
  }
  section p,
  section.content p {
    padding: 0;
  }
  section.separator::before,
  section.content.separator::before {
    bottom: -9px;
  }
  section.separator::after,
  section.content.separator::after {
    bottom: -4px;
  }
  #testimonials ul {
    padding-left: 0;
  }
  #testimonials ul li img {
    margin: 0 2.3em 9em 0;
  }
  #testimonials .carousel blockquote p {
    font-size: 1em;
  }
  #testimonials .carousel blockquote small {
    font-size: 0.8em;
  }
  section.cta h2 {
    padding: 0;
  }
  section.cta p {
    padding: 0 0 1em;
  }
  section.cta .btn {
    width: 80%;
  }
  .overlay .overlay-close {
    width: 29px;
    height: 29px;
  }
  .overlay #contactForm {
    padding: 0 1em;
  }
  .overlay #contactForm > span {
    font-size: 2em;
    margin-top: 1.5em;
  }
  .overlay #contactForm input {
    padding: 1.5em 1em;
  }
}
