body {
   overflow-y: scroll;
   font-family: 'swis721_btroman';
   color: #555;
}

h1, h2, h3, h4, h5, h6
{
   font-family: 'Raleway', sans-serif;
   color: #333;
}

p {
   line-height: inherit;
}

img {
   height: auto!important;
}

.top-header {
   padding: 10px 30px;
   color: #666;
   font-size: .8em;
   border-bottom: 1px solid rgba(0,0,0,.05);
   background: #f9f9f9;
   display: flex;
   align-items: stretch;
   justify-content: space-between;
}

.top-header span {
   display: inline-block;
   padding: 0 12px;
   position: relative;
}

.top-header span:after {
   content: "";
   position: absolute;
   right: 0;
   height: 10px;
   top: 4px;
   width: 1px;
   background: #444;
}

.top-header span:last-child:after {
   display: none;
}

.top-header > div:last-child {
   display: flex;
   align-items: stretch;
}

.main-header {
   background: #fff;
   position: static;
   width: 100%;
   top: 0;
   left: 0;
   z-index: 999;
   transition: all .3s;
   color: #333;
   font-family: 'swis721_btroman';
}

.main-header .logo {
   width: 220px;
   display: inline-block;
}

.main-header .content {
   padding: 10px 30px;
   display: flex;
   align-items: stretch;
   justify-content: space-between;
}

.main-header .content .menu-menu-header-container,
.main-header .content ul
{
   display: inline-block;
   height: 100%;
   margin: 0;
   padding: 0;
   vertical-align: middle;
}

.main-header .content li {
   display: inline-block;
   height: 100%;
   padding: 0 15px;
   position: relative;
}

.main-header .content li.current-menu-item:before {
   content: "";
   width: 30%;
   position: absolute;
   bottom: 20px;
   left: 35%;
   height: 3px;
   background: #ffca05;
}

.main-header .content li:after {
   content: "";
   height: 100%;
   display: inline-block;
   vertical-align: middle;
}

.main-header .content .sub-menu {
   position: absolute;
   width: 220px;
   left: 0;
   top: 100%;
   z-index: 999;
   height: auto;
   opacity: 0;
   padding-top: 10px;
   visibility: hidden;
   transform: translateY(-10px);
   transition: all .3s;
}

.main-header .content li:hover .sub-menu {
   opacity: 1;
   visibility: visible;
   transform: translateY(0);
}

.main-header .sub-menu li {
   height: auto;
   display: block;
   padding: 8px 20px;
   background: #f4f4f4;
   border-right: 1px solid rgba(0,0,0,.1);
   border-left: 1px solid rgba(0,0,0,.1);
}

.main-header .sub-menu li:first-child {
   border-top: 1px solid rgba(0,0,0,.1);
}

.main-header .sub-menu li:last-child {
   border-bottom: 1px solid rgba(0,0,0,.1);
}


.main-header .content .sub-menu li.current-menu-item:before {
   width: 3px;
   left: -1px;
   height: 100%;
   top: 0;
}

.menu-item-has-children > a {
   display: inline-block;
   padding-right: 15px;
   position: relative;
}

.menu-item-has-children > a:after {
   content: "\f078";
   position: absolute;
   right: 0;
   top: 3px;
   font-size: .8em;
   font-family: "Font Awesome 5 Free";
   font-weight: 900;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea
{
   padding: 12px;
   display: block;
   margin: 5px 0 10px;
   width: 100%;
   border: 1px solid rgba(0,0,0,.2);
   background-color: rgba(255,255,255,.6);
}

.landing-form input[type="checkbox"] {
   display: inline-block;
   vertical-align: middle;
}

.master-slider p {
   margin: 0;
}

#map {
   height: 400px;
}

.contact-form textarea {
   height: 100px;
}

.contact-form .col {
   padding: 0 10px;
}

.contact-form button
{
   background: none;
   width: auto;
   border: 1px solid #FFCA05;
   color: #333;
   text-align: center;
   padding: 12px;
   font-size: 1.2em;
}

.contact-form .check {
   margin-bottom: 10px;
}

.contact-form button {
   padding: 12px 30px;
   margin-top: 10px;
}

.contact-form .g-recaptcha {
   text-align: left;
}

.contact-form .g-recaptcha > div {
   margin: 0;
}

.main-title {
   margin: 60px 0;
   text-align: center;
}

.main-title.narrow {
   margin: 0;
}

.main-title h2 {
   margin: 0;
   font-weight: 400;
   font-size: 2.2em;
}

.main-title p {
   max-width: 600px;
   margin: 30px auto 0;
   line-height: 1.8;
}

.lineas-home .main-title {
   margin-bottom: 30px;
}

.linea > div {
   border: 1px solid rgba(0,0,0,.1);
   padding: 25px;
   transition: all .3s;
}

.linea > div:hover {
   background-color: #f9f9f9;
}

.linea h3 {
   /* margin-top: 0; */
   min-height: 44px;
}

.linea .more {
   color: #ffca05;
}

.lineas-row .col {
   padding: 15px;
}

.lineas-row {
   padding: 0 5px;
}

.ham {
   cursor: pointer;
   display: none;
   margin-top: 20px;
   font-size: 2em;
}

.showMenu .main-header .content ul {
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   position: fixed;
   top: 0;
   width: 100%;
   left: 0;
   z-index: 999;
   background: #FFCA05;
   height: 100%;
   padding: 10px 0;
   color: #fff;
}

.showMenu .main-header .content li.current-menu-item:before {
   display: none;
}

.showMenu .main-header .content li {
   display: block;
   text-align: center;
   height: auto;
   padding: 5px 0;
   font-size: 1em;
}

.close {
   position: fixed;
   font-size: 2em;
   top: 15px;
   right: 15px;
   color: #fff;
   display: none;
   cursor: pointer;
   z-index: 9999;
}

.showMenu .close {
   display: inline-block;
}

.owl-dots {
   text-align: center;
   margin-top: 20px;
}

.owl-carousel button.owl-dot {
   width: 15px;
   height: 15px;
   border: 2px solid rgba(0,0,0,.6);
   border-radius: 50%;
   margin: 0 3px;
}

.owl-carousel button.owl-dot.active {
   background: #273256;
}

.owl-carousel .owl-nav button.owl-next {
   position: absolute;
   right: -50px;
   font-size: 3em;
   color: #666;
   top: 40%;
}

.owl-carousel .owl-nav button.owl-prev {
   position: absolute;
   left: -50px;
   font-size: 3em;
   color: #666;
   top: 40%;
}

.logos-carousel .owl-stage {
   display: flex;
   align-items: center;
}

.aliados {
   margin-top: 50px;
}

.aliados-row {
   background: #f5f5f5;
   padding: 30px 0;
}

.main-footer {
   background: #181818;
   color: #afafaf;
   padding: 20px 0 0;
}

.main-footer h3 {
   font-size: 1.5em;
   color: #fff;
   position: relative;
   padding-bottom: 20px;
   font-weight: 400;
}

.main-footer h3:after {
   position: absolute;
   content: "";
   height: 3px;
   width: 30px;
   background: #FFCA05;
   bottom: 0;
   left: 0;
}

.bot-footer {
   margin-top: 20px;
   padding: 15px 0;
   background: #222;
   border-top: 1px solid #2e2e2e;
}

.main-footer ul {
   list-style-type: none;
   padding: 0;
   margin-top: 30px;
}

.contact-footer {
   font-size: .9em;
}

.contact-footer li {
   margin-bottom: 10px;
   position: relative;
   padding-left: 25px;
}

.contact-footer li i {
   position: absolute;
   font-size: 1em;
   color: #FFCA05;
   left: 0;
}

.beneficios-footer {
   font-size: .9em;
}

.beneficios-footer ul {
   max-width: 350px;
}

.servicios-footer li {
   margin-bottom: 10px;
   position: relative;
   padding-left: 15px;
}

.beneficios-footer li {
   margin-bottom: 10px;
   position: relative;
   padding-bottom: 10px;
   border-bottom: 1px solid rgba(255,255,255,.1);
}

.beneficios-footer li:last-child {
   border: 0;
}

.servicios-footer li:before {
   position: absolute;
   font-size: .6em;
   color: #666;
   left: 0;
   top: 5px;
   content: "\f061";
   font-family: Font Awesome\ 5 Free;
   font-weight: 900;
}

.main-footer a {
   transition: all .3s;
}

.main-footer a:hover {
   color: #fff;
}

.g-recaptcha {
   text-align: center;
}

.g-recaptcha > div {
   margin: 0 auto;
}

.footer-logo {
   display: inline-block;
   margin-top: 30px;
}

.numeros {
   background: #FFCA05;
   color: #fff;
   text-align: center;
   padding: 100px 0;
}

.numeros h3 {
   font-size: 3em;
   margin: 10px 0 20px;
   font-family: 'swis721_btroman';
   position: relative;
   padding-bottom: 15px;
}

.numeros h3:after {
   position: absolute;
   content: "";
   height: 3px;
   width: 30px;
   background: #fff;
   bottom: 0;
   left: 50%;
   margin-left: -15px;
}

.numeros h4 {
   margin: 0;
   text-transform: uppercase;
   font-weight: 400;
}

.single-title {
   padding: 60px 0;
   background-image: url(../img/single-title-bg.jpg);
   background-position: center -50px;
   background-size: auto;
   margin-bottom: 50px;
   text-align: center;
}

.single-title.has-thumbnail {
   background-position: center center;
}

.elementor-widget-heading .elementor-heading-title,
.elementor-widget-icon-box .elementor-icon-box-content .elementor-icon-box-title
{
   font-family: 'Raleway', sans-serif!important;
   color: #333!important;
}

.elementor-widget-icon-box .elementor-icon-box-content .elementor-icon-box-title {
   margin-top: 0;
}

.elementor-widget-text-editor,
.elementor-widget-icon-box .elementor-icon-box-content .elementor-icon-box-description,
.elementor-widget-icon-list .elementor-icon-list-item
{
   font-family: 'swis721_btroman'!important;
   color: #666!important;
}

#elementor .elementor-element-3ef3 .elementor-icon-box-content .elementor-icon-box-title,
#elementor .elementor-element-1dae .elementor-icon-box-content .elementor-icon-box-title
{
   margin-top: 0!important;
}

.title-p {
   max-width: 600px;
   margin-right: auto;
   margin-left: auto;
}

.single-title .container {
   position: relative;
}

.single-title .container:after {
   content: "";
   background: #FFCA05;
   height: 7px;
   width: 150px;
   bottom: -60px;
   margin-left: -75px;
   left: 50%;
   position: absolute;
}

.single-title h1 {
   font-size: 3em;
   color: #fff;
   line-height: 1;
}

.single-title h1 small {
   font-size: .4em;
   font-weight: normal;
   line-height: 1;
   display: block;
}

.decor-title {
   position: relative;
   padding-bottom: 20px;
}

.decor-title:after {
   content: "";
   position: absolute;
   bottom: 0;
   left: 0;
   height: 3px;
   width: 50px;
   background: #FFCA05;
}

.lineas-list > div {
   clear: both;
   padding: 10px;
   background: #f5f5f5;
   border: 1px solid rgba(0,0,0,.2);
   border-bottom: 0;
   border-right: 0;
   position: relative;
   transition: all .3s;
}

.lineas-list > div:before {
   position: absolute;
   left: -1px;
   width: 3px;
   content: "";
   top: 0;
   height: 100%;
   background: #FFCA05;
   transition: all .3s;
   opacity: 0;
}

.lineas-list > div:hover:before {
   opacity: 1;
}

.lineas-list > div:last-child {
   border-bottom: 1px solid rgba(0,0,0,.2);
}

.lineas-list > div:hover {
   background: #fcfcfc;
}

.lineas-list > div.active {
   background: #fff;
   border-left: 3px solid #FFCA05;
}

.lineas-list img {
   vertical-align: middle;
   width: 40px;
   margin-right: 10px;
}

.lineas-list h3 {
   display: inline-block;
   margin: 0;
   font-weight: normal;
   vertical-align: middle;
   font-size: 1.1em;
   color: #000;
}

.inner-row .col {
   padding: 0;
}

.inner-row .linea-content {
   padding: 20px 30px;
   border: 1px solid rgba(0,0,0,.2);
   min-height: 483.63px;
}

.linea-content {
   line-height: 1.5;
}

.sticky {
   position: sticky;
   top: 0;
}

.me-interesa h2 {
   margin-top: 0;
   font-size: 1.8em;
}

.me-interesa h3 {
   margin-bottom: 0;
   font-weight: normal;
}

.me-interesa input[type="text"],
.me-interesa input[type="email"]
{
   display: block;
   margin: 5px 0 15px;
   background: #f9f9f9;
   padding: 12px;
   width: 100%;
   border: 1px solid rgba(0,0,0,.1);
   border-radius: 3px;
}

.me-interesa input[type="checkbox"] {
   vertical-align: middle;
   margin-right: 5px;
}

.me-interesa .check {
   margin-bottom: 15px;
   font-size: .8em;
   padding-left: 5px;
}

.primary-btn {
   width: 100%;
   display: block;
   background: #FFCA05;
   color: #fff;
   border: 1px solid rgba(0,0,0,.2);
   padding: 12px;
   text-align: center;
   border-radius: 3px;
   font-weight: 600;
   font-family: 'Raleway', sans-serif;
   font-size: 1.2em;
}

.single-content {
   margin-bottom: 20px;
}

.page-content td {
   padding: 10px;
   border: 1px solid rgba(0,0,0,.2);
}

.page-content tr {
   border-color: rgba(0,0,0.1);
}

.master-slider h1,
.master-slider h3
{
   color: inherit;
   font-family: inherit;
   font-size: inherit;
   font-weight: inherit;
   margin: 0;
}

.ms-anim-layers ul {
   margin: 0;
   padding-left: 20px;
}

/*  chat whatsapp */

.chatWhat {
  position: fixed;
  bottom: 0;
  right: 30px;
  z-index: 200;
  width: 222px;
  height: 48px;
  z-index: 999999;
}
.chatWhat__btnBase {
  background-color: #67c15e;
  border-radius: 10px 10px 0 0;
  display: flex;
  padding: 14px 24px;
  text-decoration: none;
  color: #fff;
  align-items: center;
  font-size: 16px;
  transition: all .3s;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  max-width: 114px;
  margin-left: auto;
  box-sizing: border-box;
}

.chatWhat__btnBase span{
  display: none;
}


.chatWhat:hover,
.chatWhat:focus {
  text-decoration: none;
}

.chatWhat__btnBase:before {
  content: '';
  position: absolute;
  border:  6px solid #67c15e;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  border-radius: 10px 10px 0 0;
  -webkit-animation-name: hvr-ripple-out;
  animation-name: hvr-ripple-out;
  animation-iteration-count: infinite;
}


/* Ripple Out */
@-webkit-keyframes hvr-ripple-out {
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}
@keyframes hvr-ripple-out {
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}

.chatWhat p{
  margin: 0;
  margin-right: 10px;
  color: #fff;
  font-size: 15px;
}

.chatWhat svg {
  width: 20px;
  height: 20px;
}

.chatWhat__ventana {
  max-width: 350px;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 4px 23px 0 rgba(0,0,0,.09);
  transition: all .3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  transform-origin: 100% 100%;
  transform: scale(0);
  border: 1px solid #e6e6e6;
  position: absolute;
  bottom: 55px;
  z-index: 999999;
}

.chatWhat.activo {
  height: auto;
  width: 80%;
}

.chatWhat.activo .chatWhat__ventana{
  transform: scale(1);
  opacity: 1;
}

.chatWhat__header {
  background-color: #404040;
  padding: 15px 20px;
  position: relative;
}

.chatWhat__nombre {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
  margin-top: 5px;
}

.chatWhat__body{
  padding: 15px 20px;
}

.chatWhat__body textarea{
  height: 48px;
  width: 100%;
  border-color: #e6e6e6;
  padding: 10px;
  box-sizing: border-box;
  font-size: 16px;
}

.chatWhat__footer {
  padding: 0px 20px 15px 20px;
  display: flex;
  justify-content: flex-end;
}

.chatWhat__btn {
  display: inline-block;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  border-radius: 3px;
  white-space: nowrap;
  background-color: #FFCA05;
  cursor: pointer;
}

.chatWhat__alerta {
  width: 100%;
  background-color: #67c15e;
  text-align: center;
  color: #333;
  padding: 10px 15px;
  color: #fff;
  box-sizing: border-box;
  display: none;
}

.chatWhat__cerrar {
  position: absolute;
  top: 5px;
  right: 14px;
  font-size: 30px;
  color: #FFFFFF;
  cursor: pointer;
}

@media(min-width: 768px){
  .chatWhat {
    right: 50px;
  }
  .chatWhat__btnBase {
    max-width: 222px;
  }
  .chatWhat__btnBase span{
    display: inline-block;
  }
  .chatWhat.activo {
    height: auto;
    width: 350px;
  }
}





@media screen and (max-width: 1300px) {

   .owl-carousel .owl-nav {
      display: none;
   }

}

@media screen and (max-width: 1200px) {

   .main-header .content li {
      padding: 0 8px;
      font-size: .9em;
   }

   .main-header .content {
      padding: 10px;
   }

}

@media screen and (max-width: 1100px) {

   .main-services .col:first-child {
      padding-right: 0;
   }

   .me-interesa .g-recaptcha {
      text-align: center;
   }

   .me-interesa .g-recaptcha > div {
      margin-left: 0;
      margin-right: 0;
   }

   .me-interesa div.input-block {
      display: inline-block;
      width: 32%;
      padding: 0 10px 0 0;
   }

   .me-interesa .primary-btn {
      width: auto;
   }

}

@media screen and (max-width: 1000px) {

   .main-header .content {
      padding: 10px 20px;
   }

   .main-header .content ul {
      display: none;
   }

   .ham {
      display: inline-block;
   }

   .top-header {
      justify-content: center;
      flex-direction: column;
      padding: 5px;
   }

   .top-header > div {
      padding: 5px;
      text-align: center;
   }

   .top-header > div:last-child {
      display: none;
   }

   .ms-anim-layers {
      position: absolute!important;
      width: 70%!important;
      left: 15%!important;
      bottom: 50px!important;
   }

   .ms-layer {
      box-sizing: border-box!important;
      position: static!important;
      width: 100%!important;
   }

   .master-slider h1 {
      text-align: center;
   }

   .master-slider a {
      width: 100%;
      display: inline-block;
      text-align: center;
   }

}

@media screen and (max-width: 800px) {

   .master-slider h1 {
      font-size: 30px;
   }

   .contact-form {
      margin-top: 30px;
   }

   .lineas-list h3 {
      font-size: 1em;
   }

   .lineas-list img {
      display: block;
   }

}

@media screen and (max-width: 600px) {

   .menu-item-has-children > a {
      padding-right: 0;
   }

   .showMenu .main-header .content ul.sub-menu {
      display: none;
   }

   .menu-item-has-children > a:after {
      display: none;
   }

   .me-interesa div.input-block {
      display: block;
      width: 100%;
      padding: 0;
   }

   .linea > div {
      text-align: center;
   }

   .top-header {
      padding: 5px 0px;
   }

   .top-header > div:last-child {
      display: none;
   }

   .master-slider p {
      font-size: 14px;
      line-height: 16px;
   }

   .lineas-list > div {
      border-right: 1px solid rgba(0,0,0,.2);
   }

   .sticky {
      position: static;
   }

}

@media screen and (max-width: 500px) {

   .master-slider h1 {
      font-size: 20px;
      line-height: 25px;
   }

   .ms-anim-layers {
      position: absolute!important;
      width: 80%!important;
      left: 10%!important;
      bottom: 50px!important;
   }

   .bot-footer {
      padding-bottom: 50px;
   }

   .single-title h1 {
      font-size: 2em;
   }

}

@media screen and (max-width: 400px) {

   .g-recaptcha {
      transform:scale(0.75);
      -webkit-transform:scale(0.75);
      transform-origin:0 0;
      -webkit-transform-origin:0 0;
   }

}
