/*mixin*/
/*mixin*/
/*end mixin*/
@font-face {
  font-family: "Gotham";
  src: url(../fonts/GOTHAM-BOOK.ttf);
}
@font-face {
  font-family: "Muli";
  src: url(../fonts/MULI.ttf);
}
@font-face {
  font-family: "Muli light";
  src: url(../fonts/MULI-LIGHT.ttf);
}
@font-face {
  font-family: "Muli semibold";
  src: url(../fonts/MULI-SEMIBOLD.ttf);
}
body {
  font-style: normal;
  font-family: 'Muli', sans-serif;
  font-size: 15px;
}
#loader-wrapper.loader-off {
  display: none !important;
}
#loader-wrapper {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #000;
  z-index: 15000;
  overflow: hidden;
}
.loader {
  width: 150px;
  height: 150px;
  border: 1px #fff solid;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
}
.loader .loading {
  font-size: 10px;
  position: absolute;
  width: 100%;
  text-align: center;
  line-height: 14px;
  /* font-family: 'Century Gothic', sans-serif; */
  font-style: italic;
  left: 0;
  top: 50%;
  margin-top: 20px;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
}
.loader-circle-1 {
  width: 138px;
  height: 138px;
  left: 5px;
  top: 5px;
  border: 1px #fff solid;
  border-radius: 50%;
  position: absolute;
  border-right-color: transparent;
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}
.loader-circle-2 {
  width: 126px;
  height: 126px;
  left: 5px;
  top: 5px;
  border: 1px transparent solid;
  border-radius: 50%;
  position: absolute;
  border-right-color: #0047d7;
  -webkit-animation: spin 5s linear infinite;
  animation: spin 5s linear infinite;
}
.loader .line {
  width: 10px;
  height: 2px;
  background: #fff;
  position: absolute;
}
.loader .line:nth-child(1) {
  left: 16px;
  top: 50%;
  margin-top: -1px;
}
.loader .line:nth-child(2) {
  transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  left: 33px;
  top: 33px;
}
.loader .line:nth-child(3) {
  top: 16px;
  left: 50%;
  width: 2px;
  height: 10px;
}
.loader .line:nth-child(4) {
  transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  right: 33px;
  top: 33px;
}
.loader .line:nth-child(5) {
  right: 16px;
  top: 50%;
  margin-top: -1px;
}
.loader .line:nth-child(6) {
  transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  right: 33px;
  bottom: 33px;
  background: #0047d7;
}
.loader .subline {
  position: absolute;
  width: 3px;
  height: 2px;
  background: #fff;
}
.loader .subline:nth-child(7) {
  transform: rotate(22.5deg);
  -moz-transform: rotate(22.5deg);
  -webkit-transform: rotate(22.5deg);
  -ms-transform: rotate(22.5deg);
  left: 21px;
  top: 50px;
}
.loader .subline:nth-child(8) {
  transform: rotate(67.5deg);
  -moz-transform: rotate(67.5deg);
  -webkit-transform: rotate(67.5deg);
  -ms-transform: rotate(67.5deg);
  left: 50px;
  top: 21px;
}
.loader .subline:nth-child(9) {
  transform: rotate(112.5deg);
  -moz-transform: rotate(112.5deg);
  -webkit-transform: rotate(112.5deg);
  -ms-transform: rotate(112.5deg);
  right: 50px;
  top: 21px;
}
.loader .subline:nth-child(10) {
  transform: rotate(157.5deg);
  -moz-transform: rotate(157.5deg);
  -webkit-transform: rotate(157.5deg);
  -ms-transform: rotate(157.5deg);
  right: 21px;
  top: 50px;
}
.loader .subline:nth-child(11) {
  transform: rotate(22.5deg);
  -moz-transform: rotate(22.5deg);
  -webkit-transform: rotate(22.5deg);
  -ms-transform: rotate(22.5deg);
  right: 20px;
  bottom: 49px;
  background: #0047d7;
}
.loader .needle {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px #fff solid;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -8px 0 0 -8px;
  z-index: 1;
  -webkit-animation: pegIt 3s infinite ease-in-out;
  animation: pegIt 3s infinite ease-in-out;
}
.loader .needle:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3.5px 50px 3.5px 0;
  border-color: transparent #0047d7 transparent transparent;
  position: absolute;
  right: 50%;
  top: 50%;
  margin: -3.5px 0 0 0;
  border-radius: 0 50% 50% 0;
}
@keyframes pegIt {
  0% {
    transform: rotate(0deg);
  }
  16% {
    transform: rotate(75deg);
  }
  25% {
    transform: rotate(55deg);
  }
  30% {
    transform: rotate(90deg);
  }
  36% {
    transform: rotate(170deg);
  }
  42% {
    transform: rotate(150deg);
  }
  50% {
    transform: rotate(227deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@-webkit-keyframes pegIt {
  0% {
    -webkit-transform: rotate(0deg);
  }
  16% {
    -webkit-transform: rotate(75deg);
  }
  25% {
    -webkit-transform: rotate(55deg);
  }
  30% {
    -webkit-transform: rotate(90deg);
  }
  36% {
    -webkit-transform: rotate(170deg);
  }
  42% {
    -webkit-transform: rotate(150deg);
  }
  50% {
    -webkit-transform: rotate(227deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.pt-10 {
  padding: 10px 0px;
}
.conten-telf {
  text-align: right;
  margin: 1.2em 0.5em 0px;
}
.box-telf {
    color: #0049db;
    position: relative;
    padding: 10px 50px;
    margin-bottom: 2px;
    font-size: 20px;
    display: inline-block;
    border: 1px solid #0049db;
    border-radius: 26px;
}
.sombra-telf {
    color: #ffffff;
    font-size: 18px;
    padding: 10px 0px;
    top: 0;
    left: 0;
    background: #0049db;
    position: absolute;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    text-align: center;
	cursor: pointer;
}
.sombra-telf img{
	width: 26px;
}
.btn-blanco {
  color: #0049db;
  border: 1px solid #0049db;
  background: #ffffff;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.btn-blanco:hover {
  background: #0049db;
  color: #ffffff;
}
.btn-grnade {
    font-size: 18px;
    border-radius: 25px;
    margin-top: -10px;
    padding: 12px 27px;
	margin-top:-4px;
}
.btn-morado {
  color: #ffffff;
  border: 1px solid #0049db;
  background: #0049db;
  font-weight: bold;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.btn-morado {
  color: #ffffff;
  border: 1px solid #0049db;
  background: #0049db;
  font-weight: bold;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.btn-morado:hover {
    background: #ffffff;
    color: #0049db;
    border: 1px solid #fff;
}
.btn-azul {
  color: #ffffff;
  border: 1px solid #0043c4;
  background: #0043c4;
  font-weight: bold;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.btn-azul:hover {
  background: #103058;
  color: #ffffff;
}
.btn-transparente{
  color: #ffffff;
  border: 1px solid #0043c4;
  background: transparent;
  font-weight: bold;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.btn-transparente:hover {
  background: #103058;
  color: #ffffff;
}
.btn-naranja {
  color: #ffffff;
  border: 1px solid #1f5faf;
  background: #1f5faf;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.btn-naranja:hover {
  background: #226ac2;
  color: #ffffff;
}
.btn-naranja2 {
  color: #00b7bf;
  font-weight: bold;
  border: 1px solid #1f5faf;
  background: #1f5faf;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  padding: 5px 30px;
}
.btn-naranja2:hover {
  background: #226ac2;
  color: #00b7bf;
}
.duo-btn .btn-grnade {
	font-size: 19px;
	padding: 11px 45px;
    border-radius: 30px;
    min-width: 200px;
}
.duo-btn .btn-azul {
    margin-right: 1em;
}
section {
  padding: 3em 0em;
}
.sin-p {
  padding: 0em;
}
.bg1 {
  background: #b1b1b1;
  color: #000;
}
.text-h{
	padding: 2em 0em;
	position: relative;
}
.triangulo{
    display: inline-block;
    position: absolute;
    bottom: -48px;
    z-index: 9;
    border-top: 25px solid rgb(0, 67, 196);
    border-right: 25px solid transparent;
    border-bottom: 25px solid transparent;
    border-left: 25px solid transparent;
    width: 50px;
    margin-left: -25px;
}
#slider-intro{
	background:url(../img/slider1.jpg)center no-repeat;
	background-size:cover;
    padding: 8em 0em;
    color: #fff;
}
#slider-intro h1 {
    font-size: 50px;
}
.text-gr p {
    font-size: 18px;
    display: block;
    margin-bottom: 1em;
}
#slider-intro.bg-2{
	background:url(../img/slider2.jpg)center no-repeat;
	background-size:cover;
}
#slider-home .box-img-slider {
	padding: 0px 0px 9%;
}
.box-img-slider > img{
	opacity:0;
}
.bgs1{
	background: url(../img/s1.jpg)center no-repeat;
	background-size: cover;
}
.bgs2{
	background: url(../img/s2.jpg)center no-repeat;
	background-size: cover;
}
#header-main{
	position: absolute;
    top: 0;
    background: none;
    z-index: 999;
    width: 100%;
}
#header-main .container{
	background: #fff;
    position: relative;
}
#header-main:before {
    content: '';
    height: 64px;
    background-color: #131313;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
#header-main.fixed-bg:before {
    position: fixed;
}
.title-frm {
  text-align: center;
  font-size: 25px;
  color: #ffffff;
  margin: 0;
  margin-bottom: .5em;
}
.title-frm span {
  color: #09274d;
  font-weight: bold;
}
.form-inline {
  text-align: center;
}
.form-inline .input-group {
    margin-right: 26px;
}
.form-group {
  position: relative;
}
.form-group::before {
  color: #1f5faf;
}
.form-control {
  border: 0px;
  /*padding: 6px 3px 6px 25px;*/
  color: #1f5faf;
  height: 42px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.form-control:focus {
  border-color: #00b7bf;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.form-control::-moz-placeholder {
  color: #000;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #000;
}
.form-control::-webkit-input-placeholder {
  color: #000;
}
.frm-nombre::before {
  position: absolute;
  top: 11px;
  left: 8px;
  content: "\e008";
  font-family: 'Glyphicons Halflings';
}
.frm-email::before {
  position: absolute;
  top: 11px;
  left: 8px;
  content: "\2709";
  font-family: 'Glyphicons Halflings';
}
.frm-celular::before {
  position: absolute;
  top: 11px;
  left: 8px;
  content: "\e182";
  font-family: 'Glyphicons Halflings';
}
.frm-mensaje::before {
    position: absolute;
    top: 0px;
    left: -1px;
    content: "\270f";
    font-family: 'Glyphicons Halflings';
    background: #0049db;
    padding: 10.7px 10px;
    border-radius: 20px 0px 0px 20px;
    color: #fff;
	z-index: 99;
}
.frm-empresa::before {
  position: absolute;
  top: 11px;
  left: 8px;
  content: "\f1ad";
  font-family: 'FontAwesome';
}
.input-group-addon {
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #fff;
    text-align: center;
    background-color: #0049db;
    border: 0px solid #ccc;
    border-radius: 20px;
	color: #fff;
}
.btn-e {
    position: relative;
}
.btn-e i {
    position: absolute;
    top: -1px;
    left: -1px;
    padding: 12px 10px;
    background: #00315c;
    border-radius: 20px 0px 0px 20px;
	color:#fff;
}
#mensaje {
    height: 42px;
    padding-top: 9px;
    border-radius: 20px;
    padding-left: 40px;
}
.form-inline .btn {
    padding: 7px 27px 8px 50px;
    font-size: 18px;
    font-weight: normal;
    border-radius: 20px;
	font-family: Muli light;
}
.nav-scrolled {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 99;
}
.frmscroll .bg1{
	padding: 1em 0px;
	background: rgba(154, 154, 154, 0.8) !important;
}
.text-medium {
    font-size: 23px;
    text-transform: uppercase;
    padding: 39px 0px;
    font-style: italic;
}
.mt59{
	margin-top: 64px;
}
.pb-100{
	margin-bottom: 100px;
}
.box-cuadro2 {
    text-align: center;
	border: 1px solid #dcdcdc;
    padding: 0px 25px 10px;
	min-height: 330px;
}
.box-cuadro2 .box-header-title .title-b{
	font-size:40px;
}
.box-cuadro2 img {
    margin-top: -69px;
	margin-bottom: 1em;
}
img.img-iconos {
    margin-top: -70px;
}
.nav-scrolled .title-frm {
  font-size: 25px;
}
.box-img-slider {
  position: relative;
}
.box-img-slider .texto-slider {
  margin: 0px auto;
  color: #ffffff;
  position: absolute;
  font-weight: bold;
  text-align: left;
  top: 34%;
  left: 0%;
  width: 100%;
}
.box-img-slider .texto-slider .col-md-8 {
  padding-right: 2em;
}
.box-img-slider .texto-slider .text-slider2 {
	font-size: 25px;
	line-height: 28px;
	margin-bottom: 1.2em;
}
.box-img-slider .texto-slider p {
  text-shadow: 0px 1px 3px #272727;
  font-family: 'Gotham', sans-serif;
  text-transform: uppercase;
  font-size: 44px;
  line-height: 57px;
  letter-spacing: 1px;
  margin-bottom: .5em;
}
.text-b {
  font-family: Anton;
  font-size: 55px;
  letter-spacing: 1px;
}
.title-m {
  font-family: Anton;
  color: #00b7bf;
  font-size: 44px;
  font-weight: bold;
  letter-spacing: 1px;
}
.box-servicio {
  font-family: "Helvetica LT Std Cond Light";
  text-align: right;
  color: #8f8f8f;
  font-size: 16px;
}
.bg2 {
  background: url(../img/bgpregunta.jpg) center;
  background-size: cover;
  padding: 4em 0 7em;
}
.carousel-control .fa {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: inline-block;
    margin-top: -10px;
}
.carousel-control .fa {
    width: 50px;
    height: 50px;
    margin-top: -15px;
    font-size: 50px;
}
.carousel-control .fa-angle-left {
    margin-left: -50px;
}
.carousel-control .fa-angle-right {
    right: 0;
}
.carousel-control:hover, .carousel-control:focus{
	color: #0049db;
}
#carousel-preguntas {
  color: #00b7bf;
}
#carousel-preguntas .pregunta {
  /*color: @colorceleste;*/

  font-weight: bold;
  font-size: 30px;
  padding: 1em 0px;
}
#carousel-preguntas .respuesta {
  font-size: 20px;
  padding: 0em 0em 2em 0em;
}
#carousel-preguntas .carousel-indicators {
  bottom: -35px !important;
  margin-bottom: 0px;
}
#carousel-preguntas .carousel-indicators li {
  display: inline-block;
  width: 25px;
  height: 25px;
  background-color: transparent;
  border: 1px solid #00b7bf;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
#carousel-preguntas .carousel-indicators .active {
  width: 25px;
  height: 25px;
  margin: 0;
  background-color: #1f5faf;
  border: 1px solid #1f5faf;
}
.title-b {
  font-family: Anton;
  color: #ffffff;
  font-size: 44px;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 1em;
}
.box-header-title .title-b {
  font-family: "Muli semibold";
  color: #ffffff;
  font-size: 44px;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 16px;
  font-weight: normal;
}
.text-italic{
	font-style:italic;
	font-size: 20px;
}
.box-header-title .title-b span {
  font-family: "Helvetica LTS Bold";
}
.box-header-title .title-b.c-n {
  color: #292929;
}
.box-header-title .title-b.c-a {
  color: #0049db;
}
.box-cuadro .box-header-title .title-b{
	margin-bottom: .5em;
	text-transform:uppercase;
}
.bg2-box {
    background: #f3f3f3;
}
.bg3-box {
    background: #2c2c2c;
    color: #fff;
}
.box-cuadro {
    text-align: center;
    padding: 25px 23px;
	min-height: 379px;
}
.box-cuadro p{
    margin: 0;
	font-family: Muli light;
}
.box-cuadro .title-b{
	font-family: Muli;
}
.font-20{
	font-size:20px;
	padding-top: 45px;
}
.bgc1 {
  background: url(../img/i1.jpg) center;
  background-size: cover;
}
.bgc2 {
  background: url(../img/i2.jpg) center;
  background-size: cover;
}
.bgc3 {
  background: url(../img/i3.jpg) center;
  background-size: cover;
}
.sin-p-b {
    padding-bottom: 0px;
}
.bg3 {
  background: url(../img/bjtrabajar.jpg) center;
  background-size: cover;
}
.box-header-title.b-min h2{
    margin-bottom: 0.5em;
}
.box-header-title.b-min p{
    color:#fff;
	font-size: 20px;
	padding-bottom: 1em;
}
.box-valores {
  color: #ffffff;
  padding-bottom: .5em;
}
.img-carta {
  padding-right: 0;
  text-align: center;
}
.img-carta img {
  max-width: 100%;
}
.img-carta p {
  margin: 0;
}
.clear {
  clear: left;
}
.bg4{
    background: #00315c;
    color: #fff;
}
.bg5{
    background: #333;
    color: #fff;
}
.hombre {
    margin-top: -79px;
}
.bg-footer {
    background: #000;
    padding: 0;
}
.container-gracias {
  background: url(../img/gracias.jpg) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-clip: 100%;
  padding: 0px;
}
.banner-top {
  background: #FFF;
  background: rgba(255, 255, 255, 0.7);
  -webkit-border-bottom-right-radius: 1.2em;
  -webkit-border-bottom-left-radius: 1.2em;
  -moz-border-radius-bottomleft: 1.2em;
  -moz-border-radius-bottomright: 1.2em;
  border-bottom-left-radius: 1.2em;
  border-bottom-right-radius: 1.2em;
  -webkit-box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.5);
}
span.logo-black {
  display: block;
  margin-bottom: 0.7em;
  background: rgba(0, 0, 0, 0.59);
  text-align: center;
  width: 100%;
  padding: 100px 0;
}
span.logo-black img {
  max-width: 300px;
}
.regresar {
    margin: 2em auto;
    max-width: 260px;
    background: #0047d7;
    color: #fff;
    font-size: 20px;
    padding: 6px 40px 12px;
}
.regresar:hover {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}
.box-gracias {
    color: #fff;
	padding-top: 6em;
    padding-bottom: 3em;
}
.logo-title-gracias {
    display: block;
    font-size: 25px;
    font-weight: 700;
    line-height: 1em;
    border-bottom: 2px solid #004ae0;
    padding-bottom: 12px;
    margin-bottom: 1em;
}
.banner-top p {
  font-size: 1.4em;
}
.banner-top {
  background: #FFF;
  background: rgba(255, 255, 255, 0.7);
  -webkit-border-bottom-right-radius: 1.2em;
  -webkit-border-bottom-left-radius: 1.2em;
  -moz-border-radius-bottomleft: 1.2em;
  -moz-border-radius-bottomright: 1.2em;
  border-bottom-left-radius: 1.2em;
  border-bottom-right-radius: 1.2em;
  -webkit-box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.5);
}
.mensaje {
  top: 15%;
}
.mensaje p {
  float: right;
  margin-right: 16%;
  background: rgba(0, 0, 0, 0.56);
  padding: 10px 40px;
  border-radius: 8px;
  z-index: 1;
  position: relative;
  font-size: 31px;
}
.pricing {
  margin: 1em 0;
  display: block;
}
.price-text,
.price-text-gracias {
  font-size: 2.4em;
  display: block;
  width: 90%;
  margin: 0 auto;
}
.price-text-gracias {
  font-size: 1.4em;
}
.spacer-4 {
  height: 5em;
}
.box-left-c {
  padding-left: 89.5px;
  padding-bottom: 12em;
  padding-top: 9em;
}
.box-left-c .owl-carousel {
  padding-left: 4em;
}
.bg-foote img {
  margin-bottom: 1em;
}
.box-telf-footer {
  display: inline-block;
  padding-right: 23px;
}
.box-telf-footer .conten-telf {
  text-align: center;
}
.box-telf-footer .btn-grnade {
  margin-left: 23px;
}
.copy {
    padding-top: 2em;
    color: #fff;
    padding-bottom: 1em;
}
.c-a {
    color: #0049db;
}
.c-c {
    color: #337ab7;
}
.border-title {
  background: url(../img/head.png) repeat-x scroll center center rgba(0, 0, 0, 0);
  bottom: 0;
  height: 5px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
}
.b-min .border-title {
  width: 20%;
  margin-bottom: 4em;
  display: inline-block;
  margin-top: 1em;
}
.s-m-t {
  margin-top: 0px;
}
.section-5 {
  padding: 5em 0px;
}
.carousel-content {
  padding: 2em 0px;
}
.gnx-dots .item {
  padding-right: 25px;
}
.gnx-dots .owl-dots {
  padding: 0;
  margin: 0;
  list-style: none;
  -ms-box-orient: horizontal;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  position: relative;
}
.gnx-dots .owl-dots {
  position: absolute;
  left: -115px;
  top: 56%;
  -webkit-transform: rotate(90deg);
  -khtml-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  filter: progid:dximagetransform.microsoft.matrix(M11=0, M12=0, M21=0, M22=0, sizingMethod='auto expand');
  zoom: 1;
  width: 271px;
}
.gnx-dots .owl-dots .owl-dot {
  display: inline-block;
}
.gnx-dots .owl-dots .owl-dot span {
  border: 2px solid #fff;
  background: #1f5faf;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  box-shadow: none;
  position: relative;
  margin: 0;
  width: 10px;
  height: 10px;
  display: block;
  border-radius: 5px;
  z-index: 1;
}
.gnx-dots .owl-dot {
  border: 2px solid transparent;
  border-radius: 50%;
}
.gnx-dots .owl-dot.active {
  border: 2px solid #fff;
  border-radius: 50%;
}
.gnx-dots .owl-dot.active span {
  -webkit-box-shadow: 0 0 0 4px rgba(50, 50, 50, 0.14);
  -moz-box-shadow: 0 0 0 4px rgba(50, 50, 50, 0.14);
  -ms-box-shadow: 0 0 0 4px rgba(50, 50, 50, 0.14);
  box-shadow: 0 0 0 4px rgba(50, 50, 50, 0.14);
}
.gnx-dots .owl-dots:after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  top: 6px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 0;
}
.igual2 {
  background: url(../img/bgnosotros.jpg) center;
  background-size: cover;
}
.sin-m {
  margin: 0px;
}
.owl-carousel2 {
  padding: 3em 0px;
}
.top-intro .logo-header {
  margin: 1em 0px;
}
.page-footer {
    position: relative;
    background: #2c2c2c;
    color: #fff;
    z-index: 0;
}
.page-footer .footer-content {
    background-color: #2b2b2b;
}


@media (min-width: 768px){
	.page-footer .footer-col-left {
		display: table-cell;
		vertical-align: top;
		width: 44%;
		padding: 0;
	}
	.page-footer .footer-col-left .inside {
		width: 90%;
		float: right;
		padding: 68px 15px 55px 0;
	}

	.page-footer .footer-content {
		display: table;
		width: 100%;
		table-layout: fixed;
		background-color: #2b2b2b;
	}
	.page-footer .footer-col-right {
		display: table-cell;
		vertical-align: top;
		width: 56%;
		position: relative;
	}
	.page-footer .footer-map {
		position: absolute !important;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
	}
}
.footer-phone {
    margin-bottom: 2em;
}
.page-footer .footer-map {
    min-height: auto;
    width: 100%;
}
.footer-phone .box-telf {
    color: #fff;
	margin-right: 1em;
}
/* .footer-phone .sombra-telf { */
    /* padding: 5px 0px; */
/* } */
.footer-phone .btn-blanco {
    background: transparent;
}
.footer-phone .btn-blanco:hover {
    background: #0049db;
}
.page-footer .contact-info .fa {
    color: #0049db;
    font-size: 36px;
}
.contact-info {
    margin: 0 0 25px;
    padding-left: 50px;
    position: relative;
    font-size: 16px;
    line-height: 22px;
    text-align: left;
}
.contact-info > .fa {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 36px;
    line-height: 1em;
    color: #0049db;
}
.conten-telf .box-telf {
    margin-right: 16px;
}
.page-footer .contact-info {
    margin: 0 0 28px;
}
.social-links ul {
    margin: 0;
    padding: 0;
}
.social-links ul li {
    display: inline-block;
    margin: 0 7px 5px 0;
    list-style: none;
    text-align: center;
}
.page-footer .social-links ul li {
    margin: 0 8px 0 0;
}
.social-links ul li a {
    color: #ffffff;
    font-size: 25px;
    background: #0049db;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    padding: 12px;
	text-decoration: none;
}
.social-links ul li a:hover {
    color: #0049db;
    background: #fff;
}
.email-p{padding-top: 6px;}
.modal-header {
    background: #0049db;
    color: #fff;
    padding: 8px 17px 3px;
}
.modal-body {
    padding: 15px 0;
}
.modal-body p {
    border-bottom: 1px solid #ddd;
    padding: 0px 15px 12px;
}
.has-feedback .form-control {
    padding-left: 42.5px;
    border: 1px solid #888;
}
.form-control-feedback {
    top: 5px;
    left: 7px;
}
.btn-contactenos {
    font-family: Muli;
    font-weight: normal;
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 16px;
}
.close {
    background: #fff !important;
    opacity: 1;
    padding: 0px 6px 5px 5px !important;
    color: #0049db;
}
.border-box{
	border: 1px solid !important;
}
.header-gracias{
    background: rgba(255, 255, 255, 0.73);
}
.bg-efec{
	padding:0px;
	overflow:hidden;
}
.bg-efec .box-cuadro{
	-webkit-transition: transform 0.4s ease-in-out 0.05s;
    -moz-transition: transform 0.4s ease-in-out 0.05s;
    -ms-transition: transform 0.4s ease-in-out 0.05s;
    -o-transition: transform 0.4s ease-in-out 0.05s;
}
.bg-efec .box-cuadro:hover{
	-webkit-transform: scale3d(1.1, 1.1, 1) rotate(0.0001deg);
    transform: scale3d(1.1, 1.1, 1) rotate(0.0001deg);
}
/*media querys*/
@media (max-width: 1024px){
	.form-inline .input-group {
		margin-right: 0px;
		margin-bottom: 9px;
	}
	.box-img-slider .texto-slider {
		top: 40%;
	}
	#slider-home .box-img-slider {
		padding: 9% 0px;
	}
	.box-img-slider > img{
		opacity:0;
	}
	.bgs1{
		background: url(../img/s1.jpg)center no-repeat;
		background-size: cover;
	}
	.bgs2{
		background: url(../img/s2.jpg)center no-repeat;
		background-size: cover;
	}
	.box-img-slider .texto-slider .text-slider2 {
		font-size: 18px;
		line-height: 18px;
	}
	.box-img-slider .texto-slider p {
		font-size: 46px;
		line-height: 49px;
	}
	img.img-iconos {
		margin-top: 0;
		max-width: 100%;
	}
	.box-header-title .title-b {
		font-size: 36px;
	}
	.box-cuadro {
		min-height: 422px;
	}
	.hombre {
		margin-top: 0px;
		max-width: 100%;
	}
	.box-cuadro2 .box-header-title .title-b {
		font-size: 30px;
	}
	.page-footer .footer-col-left .inside {
		width: 96%;
	}
	.header-gracias img{
		max-width: 100%;
	}
}
@media (max-width: 768px){
	#header-main {
		text-align: center;
	}
	.conten-telf {
		text-align: center;
	}
	#slider-home .box-img-slider {
		padding: 17% 0px;
	}
	.mt59 {
		margin-top: 170px;
	}
	.text-medium {
		padding: 39px 15px;
	}
	.box-cuadro {
		min-height: 200px;
	}
	.hombre {
		display: none;
	}
	.box-cuadro2 {
		min-height: 230px;
		margin-bottom: 6em;
	}
	.last-box{
		margin-bottom: 0em;
	}
	.footer-phone .box-telf {
		margin-right: 0em;
		margin-bottom: 18px;
	}
}
@media (max-width: 736px){
	#header-main {
		position: relative;
	}
	.mt59 {
		margin-top: 0;
	}
	.frmscroll .bg1 {
		padding-right: 15px;
		padding-left: 15px;
		margin-right: auto;
		margin-left: auto;
	}
	.frm-mensaje {
		width: 100%;
	}
	#slider-home .box-img-slider {
		padding: 0px 0px 8%;
	}
	.box-img-slider .texto-slider {
		top: 18%;
	}
	.page-footer .inside{
		padding: 15px;
	}
	.page-footer .footer-map {
		min-height: 350px;
	}
}
@media (max-width: 736px){
	#slider-home .box-img-slider {
		padding: 54px 0px 16%;
	}
}
@media (max-width: 414px){
	.conten-telf .box-telf {
		margin-right: 0px;
		margin-bottom: 16px;
	}
	.box-img-slider .texto-slider .text-slider2 {
		font-size: 16px;
		line-height: 18px;
	}
	.box-img-slider .texto-slider p {
		font-size: 31px;
		line-height: 36px;
	}
	#slider-home .box-img-slider {
		padding: 71px 0px 55%;
	}
	.logo-header {
		max-width: 100%;
	}
	.carousel-control .fa-angle-left {
		margin-left: -35px;
	}
}
@media (max-width: 320px){
	#slider-home .box-img-slider {
		padding: 0px 0px 74%;
	}
}
/* This beautiful CSS-File has been crafted with LESS (lesscss.org) and compiled by simpLESS (wearekiss.com/simpless) */
