﻿/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
	font-family: "Roboto", sans-serif;
	color: #FFFFFF;
}

a {
  color: #1bac91;
}

a:hover {
  color: #22d8b6;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto", sans-serif;
  color: #FFFFFF;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 3px;
  right: 15px;
  bottom: 15px;
  background: #1bac91;
  color: #fff;
  transition: display 0.5s ease-in-out;
  z-index: 99999;
}

.back-to-top i {
  font-size: 24px;
  position: absolute;
  top: 8px;
  left: 8px;
}

.back-to-top:hover {
  color: #fff;
  background: #ff6633;
  transition: background 0.2s ease-in-out;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 72px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 15px 0;
  background: #26252D;
}

#header .logo h1 {
  font-size: 30px;
  margin: 0;
  padding: 6px 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo h1 a, #header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

@media (max-width: 992px) {
  #header {
    height: 60px;
    padding: 8px 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.nav-menu a {
  display: block;
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 0 12px 0;
  transition: 0.3s;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
}

.nav-menu > ul > li + li {
  margin-left: 30px;
}

.nav-menu > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 3px;
  left: 0;
  background-color: #1bac91;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu .active > a:before {
  visibility: visible;
  width: 100%;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #fff;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #062822;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #1bac91;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #fff;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #21413c;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #1bac91;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(16, 31, 29, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*-- # Hero Section --*/

#hero {
  width: 100%;
  height: calc(100vh - 72px);
  background: url("../img/cover-bg.jpg") center center;
  background-size: cover;
  position: relative;
  margin-top: 72px;
  padding: 0;
}
@media (max-width: 991.98px) {
#hero {
  background: url("../img/cover-bg-2.jpg") center center; }
}

#hero h1 {
  color: #fff;
}
#hero h5 {
  font-weight: 300;
  color: #fff;
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  z-index: 2;
}

#hero .btn-get-started {

  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 4px;
  transition: 0.5s;
  border: 2px solid #fff;
  color: #fff;
}

#hero .btn-get-started:hover {
  border-color: #f8751d;
  background: #ff6633;
}

@media (min-width: 1024px) {
#hero {
  background-attachment: fixed; }
}

@media (max-width: 992px) {
#hero {
  margin-top: 60px;
  height: calc(100vh - 60px); }
}

@media (max-width: 768px) {
#hero h1 {
  font-size: 28px;
  line-height: 36px; }
#hero h2 {
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 30px; }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #26252D;
}

.section-title {
  color: #FFFFFF;
  font-weight: 900; 
  text-align: center; }
  @media (max-width: 991.98px) {
  .section-title {
  font-size: 30px; } 
}

.section-title h2 {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #21413c;
}

.section-sub-title {
  color: #3399ff;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 700; 
}

.bg-light {
  background: #ccc; }
  
.alin {
  text-align: justify; }
  
/*-- # About --*/

.about h3 {
  font-weight: 400;
  font-size: 34px;
  color: #FFFFFF;
}

.about .icon-box {
  margin-top: 44px;
}

.about .icon-box i {
  font-size: 48px;
  float: left;
  color: #1bac91;
}

.about .icon-box h4 {
  font-size: 22px;
  font-weight: 500;
  margin-left: 60px;
  color: #FFFFFF;
}

.about .icon-box p {
  font-size: 15px;
  color: #FFFFFF;
  margin-left: 60px;
}

/*-- # Campaings --*/

.product-item {
  text-align: center; }
  .product-item figure {
    overflow: hidden;
    position: relative;
    margin-bottom: 30px; }
    .product-item figure:before {
      z-index: 2;
      -webkit-transition: .4s all ease;
      -o-transition: .4s all ease;
      transition: .4s all ease;
      -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
      transform: scale(1.05);
      position: absolute;
      content: "";
      border: 4px solid #f16821;
      left: 20px;
      right: 20px;
      top: 20px;
      bottom: 20px;
      opacity: 0;
      visibility: hidden; }
    .product-item figure img {
      -webkit-transition: .3s all ease;
      -o-transition: .3s all ease;
      transition: .3s all ease;
      -webkit-transform: scale(1);
      -ms-transform: scale(1);
      transform: scale(1); }
  .product-item h3 {
    font-size: 18px; }
    .product-item h3 a {
      color: #FFFFFF; }
      .product-item h3 a:hover {
        color: #FFFFFF; }
  .product-item p {
    line-height: 1.4;
    font-size: 13px; }
  .product-item .meta-icons {
    margin-left: 5px;
    margin-bottom: 5px;
    margin-right: 5px;
    font-size: 13px; }
    .product-item .meta-icons a {
      font-size: 16px;
      position: relative;
      top: 2px; }
  .product-item:hover figure:before {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); }
  .product-item:hover figure img {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2); }

.product-item-2 .price del {
  color: #adb5bd; }

.product-item-2 .number {
  font-size: 8rem;
  font-weight: 900;
  color: #e9ecef;
  position: absolute;
  line-height: 0;
  top: 40px;
  z-index: -1; }
  @media (max-width: 991.98px) {
    .product-item-2 .number {
      left: 0px; } }

.product-item-2 .product-title-wrap {
  position: relative;
  z-index: 2; }
  .product-item-2 .product-title-wrap h2 {
    font-size: 2rem;
    font-weight: 900;
    color: #000;
    position: relative;
    z-index: 2;
    line-height: 1.2; }
    @media (max-width: 991.98px) {
      .product-item-2 .product-title-wrap h2 {
        font-size: 2rem; } }
    .product-item-2 .product-title-wrap h2 a {
      color: #000; }
.site-section {
  padding: 2.5em 0; }
  @media (min-width: 768px) {
    .site-section {
      padding: 5em 0; } }
  .site-section.site-section-sm {
    padding: 4em 0; }

.site-section-heading {
  padding-bottom: 20px;
  margin-bottom: 0px;
  position: relative;
  font-size: 2.5rem; }
  @media (min-width: 768px) {
    .site-section-heading {
      font-size: 3rem; } }

.border-top {
  border-top: 1px solid #edf0f5 !important; }

.site-footer {
  padding: 4em 0;
  background: #333333; }
  @media (min-width: 768px) {
    .site-footer {
      padding: 8em 0; } }
  .site-footer .border-top {
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important; }
  .site-footer p {
    color: #737373; }
  .site-footer h2, .site-footer h3, .site-footer h4, .site-footer h5 {
    color: #000; }
  .site-footer a {
    color: #999999; }
    .site-footer a:hover {
      color: black; }
  .site-footer ul li {
    margin-bottom: 10px; }
  .site-footer .footer-heading {
    font-size: 16px;
    color: #000;
    text-transform: uppercase;
    font-weight: 900; }
    
/*-- # Campaings --*/

.services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #fff;
  transition: all 0.3s ease-in-out;
  border-radius: 15px;
  text-align: center;
  border-bottom: 3px solid #fff;
}

.services .icon-box:hover {
  box-shadow: 0 2px 29px 0 rgba(37, 37, 37, 0.1);
}

.services .icon i {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 15px;
}

.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: #111;
}

.services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.services .icon-box-pink .icon i {
  color: #ff689b;
}

.services .icon-box-cyan .icon i {
  color: #3fcdc7;
}

.services .icon-box-green .icon i {
  color: #41cf2e;
}

.services .icon-box-blue .icon i {
  color: #2282ff;
}

.line-height-1 {
  line-height: 1 !important; }

.bg-black {
  background: #000; }

.form-control {
  height: 43px;
  font-family: "Muli", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; }
  .form-control:active, .form-control:focus {
    border-color: #f16821; }
  .form-control:hover, .form-control:active, .form-control:focus {
    -webkit-box-shadow: none !important;
    box-shadow: none !important; }

.site-section {
  padding: 2.5em 0; }
  @media (min-width: 768px) {
    .site-section {
      padding: 5em 0; } }
  .site-section.site-section-sm {
    padding: 4em 0; }

.site-section-heading {
  padding-bottom: 20px;
  margin-bottom: 0px;
  position: relative;
  font-size: 2.5rem; }
  @media (min-width: 768px) {
    .site-section-heading {
      font-size: 3rem; } }

.border-top {
  border-top: 1px solid #edf0f5 !important; }

.site-footer {
  padding: 4em 0;
  background: #333333; }
  @media (min-width: 768px) {
    .site-footer {
      padding: 8em 0; } }
  .site-footer .border-top {
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important; }
  .site-footer p {
    color: #737373; }
  .site-footer h2, .site-footer h3, .site-footer h4, .site-footer h5 {
    color: #000; }
  .site-footer a {
    color: #999999; }
    .site-footer a:hover {
      color: black; }
  .site-footer ul li {
    margin-bottom: 10px; }
  .site-footer .footer-heading {
    font-size: 16px;
    color: #000;
    text-transform: uppercase;
    font-weight: 900; }

.bg-text-line {
  display: inline;
  background: #000;
  -webkit-box-shadow: 20px 0 0 #000, -20px 0 0 #000;
  box-shadow: 20px 0 0 #000, -20px 0 0 #000; }

.text-white-opacity-05 {
  color: rgba(255, 255, 255, 0.5); }

.text-black-opacity-05 {
  color: rgba(0, 0, 0, 0.5); }

.hover-bg-enlarge {
  overflow: hidden;
  position: relative; }
  @media (max-width: 991.98px) {
    .hover-bg-enlarge {
      height: auto !important; } }
  .hover-bg-enlarge > div {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .8s all ease-in-out;
    -o-transition: .8s all ease-in-out;
    transition: .8s all ease-in-out; }
  .hover-bg-enlarge:hover > div, .hover-bg-enlarge:focus > div, .hover-bg-enlarge:active > div {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2); }
  @media (max-width: 991.98px) {
    .hover-bg-enlarge .bg-image-md-height {
      height: 300px !important; } }

.bg-image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed; }
  .bg-image.overlay {
    position: relative; }
    .bg-image.overlay:after {
      position: absolute;
      content: "";
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 0;
      width: 100%;
      background: rgba(0, 0, 0, 0.7); }
  .bg-image > .container {
    position: relative;
    z-index: 1; }

@media (max-width: 991.98px) {
  .img-md-fluid {
    max-width: 100%; } }

@media (max-width: 991.98px) {
  .display-1, .display-3 {
    font-size: 3rem; } }

.play-single-big {
  width: 90px;
  height: 90px;
  display: inline-block;
  border: 2px solid #fff;
  color: #fff !important;
  border-radius: 50%;
  position: relative;
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out; }
  .play-single-big > span {
    font-size: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-40%, -50%);
    -ms-transform: translate(-40%, -50%);
    transform: translate(-40%, -50%); }
  .play-single-big:hover {
    width: 120px;
    height: 120px; }

.overlap-to-top {
  margin-top: -150px; }

.ul-check {
  margin-bottom: 50px; }
  .ul-check li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    line-height: 1.5; }
    .ul-check li:before {
      left: 0;
      font-size: 20px;
      top: -.3rem;
      font-family: "icomoon";
      content: "\e5ca";
      position: absolute; }
  .ul-check.white li:before {
    color: #fff; }
  .ul-check.success li:before {
    color: #8bc34a; }
  .ul-check.primary li:before {
    color: #f16821; }

.select-wrap, .wrap-icon {
  position: relative; }
  .select-wrap .icon, .wrap-icon .icon {
    position: absolute;
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 22px; }
  .select-wrap select, .wrap-icon select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%; }
.how-it-work-item .number {
  width: 50px;
  height: 50px;
  background: #f16821;
  color: #fff;
  line-height: 55px;
  font-weight: 300;
  display: inline-block;
  text-align: center;
  font-size: 30px;
  border-radius: 50%;
  margin-bottom: 40px; }

.how-it-work-item h2 {
  font-size: 18px;
  margin-bottom: 30px;
  color: #fff; }

.how-it-work-item p {
  color: white; }

/*-- form --*/

#content {padding: 5% 7.5%;display: block;background: #ffffff;}
.wrapper {background: #212121; color: #FFF; opacity: .8;}
.wrapper p {font-family: 'Rubik', sans-serif;margin:0;}
.wrap {width: 665px;margin: auto;text-align: center;padding: 5px;line-height: 1.25em;}
.wrap a:hover {color:#FFF;}
#form {width: 100%;}
/*Error/Success*/
#error,#success {display:none;color:#FFF;padding: 5%;margin-bottom: 25px;}
#error {background: #e74c3c;}
#success{background: #2ecc71;}
/*Form*/
#easyform {float:left;max-width: 675px;margin: auto;}
#easyform label {font-size:14px;text-transform:uppercase;letter-spacing:1px;}
#easyform .input {width: 47.5%;float: left;margin: 0 0 20px 0;}
#easyform .textarea {width: 100%;}
#easyform .last {float: right;}
#easyform input.text, #easyform textarea {font-family: 'Source Sans Pro', sans-serif;font-size: 16px;padding: 11px;border-radius: 5px;border: 1px solid #999999;-webkit-box-sizing: border-box;box-sizing: border-box;width: 100%;float: left;outline: none;}
#easyform input[type=text]:focus, #easyform input[type=tel]:focus, #easyform textarea:focus {margin-right: 0px;box-shadow: 0 0 3px #512da8;border: 1px solid #5133a1;}
#easyform input:hover, #easyform textarea:hover {border: 1px solid #7E57C2;-webkit-transition: all 0.2s ease;transition: all 0.2s ease;}
#easyform textarea {height: 200px;}
#easyform span {color:red;}
#easyform .verification {width: 100%;float: left;}
#easyform #verify_image {width: 100px;height: 44px;float: left;border-radius: 5px;}
#easyform .refresh {width: 42px;height: 42px;display: block;float: left;margin: 0 7px;border:0;}
#easyform #verify {width: 145px;float: left;}
#easyform button {float: right;display: block;width: 150px;border-radius: 5px;text-transform: uppercase;letter-spacing: 1px;background: #512DA8;padding: 15px 20px;color: #fff;text-align: center;margin:0;border:0;-webkit-transition: all 0.2s ease;transition: all 0.2s ease;cursor:pointer;}
#easyform button:hover {background: #ff6633;}

/*OPTIONAL RESPONSIVE STYLES BELOW*/
@media only screen and (max-width: 1000px) {
.wrap {width: auto;padding: 5px;line-height: 1.25em;}
.izq { width: 96%; }
.der { display:none; }
.h1 {font-size: 2.5em;line-height: 1em;margin-bottom: 20px;}
.h2 {font-size: 1.45em;}
.titulo{ font-size:24px; line-height:28px;}
#container {width: 95%;min-width: 0;}
#header {height: auto;}
#easyform .verification {height: auto;}
#easyform #verify_image {width: 99px;height: 42px;float: left;}
#easyform .refresh {float: right;margin: 0;}
#easyform #verify {width: 100%;margin: 25px 0;}
}

@media only screen and (max-width: 800px) {
.wrap {width: auto;padding: 5px;line-height: 1.25em;}
.izq { width: 96%; }
.der { display:none; }   
.h1 {font-size: 2.25em;line-height: 1em;margin-bottom: 15px;}
.h2 {font-size: 1.4em;}
#container {width: 93%;min-width: 0;}
#header {height: auto;}
#easyform .verification {height: auto;}
#easyform #verify_image {width: 99px;height: 42px;float: left;}
#easyform .refresh {float: right;margin: 0;}
#easyform #verify {width: 100%;margin: 25px 0;}
}

@media only screen and (max-width: 600px) {
.wrap {width: auto;padding: 5px;line-height: 1.25em;}
.izq { width: 96%; }
.der { display:none; }
.h1 {font-size: 2em;line-height: 1em;margin-bottom: 10px;}
.h2 {font-size: 1.35em;}
#container {width: 91%;min-width: 0;}
#header {height: 155px;}
#easyform .input {width: 100%;}
#easyform .textarea {max-width: 100%;}
#easyform .verification {height: auto;}
#easyform #verify_image {width: 99px;height: 42px;float: left;}
#easyform .refresh {float: right;margin: 0;}
#easyform #verify {width: 100%;margin: 25px 0;}
}

@media only screen and (max-width: 500px) {
.wrap {width: auto;padding: 5px;line-height: 1.25em;}
.izq { width: 96%; }
.der { display:none; }
.h1 {font-size: 1.75em;line-height: 1em;}
.h2 {font-size: 1.3em;}
#container {width: 89%;min-width: 0;}
#header {height: auto;}
#easyform .textarea {max-width: 100%;}
#easyform .verification {height: auto;}
#easyform #verify_image {width: 99px;height: 42px;float: left;}
}

@media only screen and (max-width: 400px) {
.wrap {width: auto;padding: 5px;line-height: 1.25em;}
.izq { width: 96%; }
.der { display:none; }
.h1 {font-size: 2.65em;line-height: 1em;padding: 0 0 15px 0;margin: 0 0 15px 0;}
.h2 {font-size: 1.25em;}
#container {width: 90%;min-width: 0;}
#header {height: auto;padding: 15px 30px;}
#content {padding: 15px 30px 22px 30px;}
#error {padding: 20px;}
#success{padding: 20px;}
#easyform .input {max-width: 48%;}
#easyform .textarea {max-width: 100%;}
}


/*-- # Footer --*/
#footer {
	color: white;
	background-color: #26252D;
}

#footer h4 {
  color: #fff;
}

.footer_back {
  background: #152F4F;
  padding-top: 10px;
  padding-bottom: 0px;	
}
.borde {
  border-left:solid 1px rgba(255,255,255,0.10);
}
.borde_r {
  border-right:solid 1px rgba(255,255,255,0.10);
}

.footer .links ul {
  list-style-type: none;
}
.footer .links li a {
  color: white;
  -webkit-transition: color .2s;
  transition: color .2s;
}
.footer .links li a:hover {
  text-decoration: none;
  color: #4180CB;
}
.footer .about-company i {
  font-size: 25px;
}
.footer .about-company a {
  color: white;
  -webkit-transition: color .2s;
  transition: color .2s;
}
.footer .about-company a:hover {
  color: #4180CB;
}
.footer .location i {
  font-size: 18px;
}
.footer .copyright p {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
