@charset "UTF-8";
/*
Theme Name: PlusTheme
Theme URI: https://moiseshp.com
Author: Moises HP ┬® 2016 by Plus Comunicaciones
Author URI: https://moiseshp.com/
Description: Theme by Mois├®s HP
Version: 1.0
License: GNU General Public License v2 or later
*/
/*+ ++++++++++++++++++++++++++++++++++++++++++++++++
  + ++++++++++++++++++++ GRID ++++++++++++++++++++++
  + ++++++++++++++++++++++++++++++++++++++++++++++++
  */
.gutter-0.container-fluid,
.gutter-0.container {
  padding-right: -0px;
  padding-left: -0px;
}

.gutter-0.row {
  margin-right: -0px;
  margin-left: -0px;
}

.gutter-0 > [class^="col-"],
.gutter-0 > [class^=" col-"] {
  padding-right: 0px;
  padding-left: 0px;
}

.m-b-m {
  margin-bottom: 70px !important
}

/*+ ++++++++++++++++++++++++++++++++++++++++++++++++
  + ++++++++++++++++++ NAVBAR ++++++++++++++++++++++
  + ++++++++++++++++++++++++++++++++++++++++++++++++
  */
.btn-menu {
  background-color: #000;
  color: #FFF;
  display: inline-block;
  cursor: pointer;
  font-size: 1.5em;
  line-height: 50px;
  padding: 0;
  position: fixed;
  right: 5px;
  text-align: center;
  top: 5px;
  z-index: 1031;
  width: 50px;
  height: 50px;
}
.btn-menu:hover, .btn-menu:focus, .btn-menu.focus {
  color: #FFF;
  background-color: #ED1C24;
}

/*+ ++++++++++++++++++++++++++++++++++++++++++++++++
  + +++++++++++++++ ITEMS NAVBAR +++++++++++++++++++
  + ++++++++++++++++++++++++++++++++++++++++++++++++
  */
.nav-aside > li > a {
  color: #FFF;
  font-size: 1.1em;
  padding-left: 21px;
}
.nav-aside > li > a:hover, .nav-aside > li > a:focus {
  background-color: #000 !important;
  color: #B7D433;
}
.nav-aside > li > a.active {
  background-color: #333333 !important;
  color: #FFF;
}

/*+ ++++++++++++++++++++++++++++++++++++++++++++++++
  + +++++++++++++++ MODAL NAVBAR +++++++++++++++++++
  + ++++++++++++++++++++++++++++++++++++++++++++++++
  */
.modal-open {
  overflow: hidden;
}

.modal-navbar {
  background-color: rgba(0, 0, 0, 0.95);
  color: #777777;
  position: fixed;
  top: 0;
  right: -75%;
  bottom: 0;
  z-index: 1030;
  overflow: hidden;
  outline: 0;
  -webkit-overflow-scrolling: touch;
  width: 75%;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 480px) {
  .modal-navbar {
    right: -300px;
    width: 300px;
  }
}
.modal-navbar.toggled {
  right: 0 !important;
}

.modal-open .modal-navbar {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-navbar-content {
  color: #FFF;
  height: 100vh;
  padding-top: 5px;
}
.modal-navbar-content .title {
  color: #ED1C24;
  height: 50px;
  line-height: 50px;
  padding-left: 21px;
}
.modal-navbar-content footer {
  bottom: 21px;
  left: 21px;
  line-height: 0;
  position: absolute;
}

/*+ ++++++++++++++++++++++++++++++++++++++++++++++++
  + ++++++++++++++++++ HEADER ++++++++++++++++++++++
  + ++++++++++++++++++++++++++++++++++++++++++++++++
  */
.header-main {
  background-color: #ED1C24;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  height: 100%;
  position: relative;
  text-align: center;
  width: 100%;
}

.header-main .wrapper-logo {
  display: inline-block;
  height: auto;
  position: absolute;
  left: 50%;
  text-align: center;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.header-main .wrapper-logo .custom-logo-link {
  margin: 0 auto;
  width: 250px;
}
.header-main .wrapper-logo .custom-logo-link > img {
  max-width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .header-main .wrapper-logo .custom-logo-link {
    width: 320px;
  }
}
@media (min-width: 1200px) {
  .header-main .wrapper-logo .custom-logo-link {
    width: 350px;
  }
}
.header-main .wrapper-logo .slogan {
  color: #FFF;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.header-main .btn-scroll {
  bottom: 50px;
  color: #000;
  cursor: pointer;
  display: block;
  left: 50%;
  line-height: 50px;
  font-size: 1.5em;
  margin-left: -25px;
  padding: 0;
  position: absolute;
  width: 50px;
  height: 50px;
  animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  -moz-animation: bounce 2s infinite;
  -o-animation: bounce 2s infinite;
}

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
  }
}
@-moz-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
  }
}
@-o-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -o-transform: translateY(0);
  }
  40% {
    -o-transform: translateY(-30px);
  }
  60% {
    -o-transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
/*+ ++++++++++++++++++++++++++++++++++++++++++++++++
  + +++++++++++++++++ GENERALS +++++++++++++++++++++
  + ++++++++++++++++++++++++++++++++++++++++++++++++
  */
html,
body {
  width: 100%;
  height: 100%;
  -webkit-font-smoothing: antialiased;
}

.double-bounce1, .double-bounce2 {
  background-color: #ED1C24;
}

/*+ ++++++++++++++++++++++++++++++++++++++++++++++++
  + ++++++++++++++++++ CONTENT +++++++++++++++++++++
  + ++++++++++++++++++++++++++++++++++++++++++++++++
  */
.wrapper-content-page p {
  line-height: 1.6;
  margin-bottom: 42px;
}
.wrapper-content-page p:last-child {
  margin-bottom: 0;
}
.wrapper-content-page .title {
  font-size: 2.1rem;
  margin: 0;
  margin-bottom: 42px;
  text-align: center;
}
.wrapper-content-page .title > img {
  display: inline-block;
  height: auto;
  width: 80px;
}
.wrapper-content-page .title[class*="bg-"] {
  font-size: 1.6em;
  letter-spacing: 2px;
  margin: 0;
  padding: 36px 0;
  text-align: center;
  text-transform: uppercase;
}

.type-page.format-standard .wrapper-content-page .title {
  color: #ED1C24;
  font-size: 1.7em;
  padding-top: 105px;
  margin-bottom: 21px;
}
.type-page.format-standard .wrapper-content-page .title:after {
  background-color: #333333;
  content: "";
  display: block;
  height: 3px;
  margin: 0 auto;
  margin-top: 20px;
  text-align: center;
  width: 30px;
}
.type-page.format-standard .wrapper-content-page .content {
  margin-bottom: 84px;
}

.type-page.format-status #map,
.type-page.format-status .wrapper-content-page {
  height: 480px;
}
@media (min-width: 768px) {
  .type-page.format-status #map,
  .type-page.format-status .wrapper-content-page {
    height: 550px;
  }
}
@media (min-width: 1200px) {
  .type-page.format-status #map,
  .type-page.format-status .wrapper-content-page {
    height: 600px;
  }
}
.type-page.format-status .wrapper-content-page {
  background-color: #333333;
  background-position: center center;
  background-size: cover;
  color: #FFF;
  padding: 42px;
}
.type-page.format-status .wrapper-content-page .title {
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 21px;
}
.type-page.format-status .wrapper-content-page .content {
  font-size: 1.7rem;
  line-height: 3rem;
}
.type-page.format-status .wrapper-content-page .content a {
  color: #FFF;
}
.type-page.format-status .wrapper-content-page .lsi-social-icons li a {
  background-color: inherit !important;
  padding: 0;
  margin: 0;
  text-align: left !important;
}
.type-page.format-status .wrapper-content-page .icon-set-lsi_widget-2 a:hover i {
  color: #B7D433;
}
.type-page.format-status .wrapper-content-page [class^="lsicon-"]:before, .type-page.format-status .wrapper-content-page [class*=" lsicon-"]:before {
  width: auto !important;
}

.type-page.format-aside .wrapper-content-page .header-section {
  background-position: center center;
  background-size: cover;
  background-color: #eeeeee;
  height: 400px;
}

.type-page.format-image .wrapper-section {
  background-position: -300px center;
  background-repeat: no-repeat;
  background-size: auto 90%;
  padding: 0;
}
@media (min-width: 992px) {
  .type-page.format-image .wrapper-section {
    background-position: -20% center;
  }
}
@media (min-width: 1200px) {
  .type-page.format-image .wrapper-section {
    background-position: 20% center;
  }
}
.type-page.format-image .wrapper-section .title {
  font-size: 1.6em;
  letter-spacing: 2px;
  margin: 0;
  padding: 36px 0;
  text-align: center;
  text-transform: uppercase;
}
.type-page.format-image .wrapper-content-page {
  background-color: rgba(255, 255, 255, 0.95);
  color: #555555;
  padding: 63px 21px;
}
@media (min-width: 480px) {
  .type-page.format-image .wrapper-content-page {
    padding-left: 42px;
    padding-right: 42px;
  }
}
@media (min-width: 768px) {
  .type-page.format-image .wrapper-content-page {
    float: right;
    overflow: hidden;
    padding: 84px 74px;
    width: 70%;
  }
}
@media (min-width: 992px) {
  .type-page.format-image .wrapper-content-page {
    width: 60%;
  }
}
@media (min-width: 1200px) {
  .type-page.format-image .wrapper-content-page {
    width: 50%;
  }
}
.type-page.format-image .wrapper-content-page .title {
  color: #B7D433;
}
.type-page.format-image .wrapper-content-page .content:first-letter {
  font-size: 60px;
  margin: 5px 1px 0 0;
  line-height: 0.8;
  color: #ED1C24;
  font-family: 'Nunito', sans-serif;
}
.type-page.format-image .wrapper-content-page p {
  margin-bottom: 21px;
}
.type-page.format-image .wrapper-content-page ul {
  margin-left: 0;
}
.type-page.format-image .wrapper-content-page .signature {
  height: auto;
  width: 100px;
}

/*+ ++++++++++++++++++++++++++++++++++++++++++++++++
  + ++++++++++++++++++ PLUGINS +++++++++++++++++++++
  + ++++++++++++++++++++++++++++++++++++++++++++++++
  */
.owl-carousel .logo-container img {
  max-width: 100%;
  height: auto;
}

.tlp-team .layout1 [class^="tlp-col-"],
.tlp-team .layout1 [class^=" tlp-col-"] {
  padding: 0 !important;
}
.tlp-team .layout1 .single-team-area {
  background-color: #F0F;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 0;
  height: 600px;
}
@media (min-width: 768px) {
  .tlp-team .layout1 .single-team-area {
    height: 500px;
  }
}
.tlp-team .layout1 .single-team-area .tlp-wrapper {
  background-color: rgba(0, 0, 0, 0.4);
  height: auto;
  padding: 21px;
  padding-top: 21px;
  position: absolute;
  bottom: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 100%;
}
@media (min-width: 768px) {
  .tlp-team .layout1 .single-team-area .tlp-wrapper {
    height: 320px;
  }
}
@media (min-width: 992px) {
  .tlp-team .layout1 .single-team-area .tlp-wrapper {
    background-color: rgba(0, 0, 0, 0.2);
    height: 90px;
  }
  .tlp-team .layout1 .single-team-area .tlp-wrapper .short-bio {
    display: none;
  }
}
@media (min-width: 1200px) {
  .tlp-team .layout1 .single-team-area .tlp-wrapper {
    padding: 21px;
  }
}
@media (min-width: 992px) {
  .tlp-team .layout1 .single-team-area .tlp-wrapper.teamEffect {
    background-color: rgba(0, 0, 0, 0.65);
    height: 100%;
  }
  .tlp-team .layout1 .single-team-area .tlp-wrapper.teamEffect .tlp-content {
    padding-top: 105px;
  }
  .tlp-team .layout1 .single-team-area .tlp-wrapper.teamEffect .short-bio {
    display: block;
  }
}
.tlp-team .layout1 .tlp-content {
  background-color: transparent !important;
  padding: 0;
}
.tlp-team .layout1 .tlp-content .name,
.tlp-team .layout1 .tlp-content .designation {
  text-transform: uppercase;
}
.tlp-team .layout1 .tlp-content .name {
  padding-bottom: 0;
  margin-bottom: 0;
}
.tlp-team .layout1 .tlp-content .designation {
  color: #B7D433;
  font-size: .8em;
  font-weight: bold;
}
.tlp-team .layout1 .short-bio p {
  color: #FFF !important;
  font-size: .9em;
  margin: 0;
}
.tlp-team .layout1 .tlp-equal-height {
  margin-bottom: 0 !important;
}

.widgetkit-servicios {
  padding: 63px 0;
}
.widgetkit-servicios .uk-row-first {
  margin-bottom: 21px;
}
.widgetkit-servicios .uk-grid {
  padding: 0 21px;
}
.widgetkit-servicios .uk-panel {
  margin: 0;
}
.widgetkit-servicios .uk-panel .uk-h4 {
  font-size: 1.2em;
  font-weight: bold;
}
.widgetkit-servicios .uk-panel .uk-text-center > img {
  border: 4px solid #ddd;
  border-radius: 50%;
  padding: 10px;
}
.widgetkit-servicios .uk-row-first > img {
  max-width: 50%;
  height: auto;
}
@media (min-width: 768px) {
  .widgetkit-servicios .uk-row-first > img {
    display: block;
    max-width: 100%;
    height: auto;
  }
}
.widgetkit-servicios .uk-row-first > img.uk-border-circle {
  border: 5px solid #eeeeee !important;
}
@media (max-width: 767px) {
  .widgetkit-servicios {
    text-align: center !important;
  }
  .widgetkit-servicios .uk-row-first > img {
    margin: 0 auto;
  }
}

.services-image {
  border-radius: 50%;
  border:4px solid #CCC;
  margin-bottom: 5px
}
.services-title {
  font-size:18px;
  font-weight: bold;
  margin-bottom: 10px
}
