@font-face {
  font-family: 'Montserrat-Black';
  src: url('./fonts/Montserrat-Black.otf');
}
@font-face {
  font-family: 'Montserrat-Bold';
  src: url('./fonts/Montserrat-Bold.otf');
}
@font-face {
  font-family: 'Montserrat-ExtraBold';
  src: url('./fonts/Montserrat-ExtraBold.otf');
}
@font-face {
  font-family: 'Montserrat-Hairline';
  src: url('./fonts/Montserrat-Hairline.otf');
}
@font-face {
  font-family: 'Montserrat-Light';
  src: url('./fonts/Montserrat-Light.otf');
}
@font-face {
  font-family: 'Montserrat-Regular';
  src: url('./fonts/Montserrat-Regular.otf');
}
@font-face {
  font-family: 'Montserrat-SemiBold';
  src: url('./fonts/Montserrat-SemiBold.otf');
}
@font-face {
  font-family: 'OpenSans-Bold';
  src: url('./fonts/OpenSans-Bold.ttf');
}
@font-face {
  font-family: 'OpenSans-Semibold';
  src: url('./fonts/OpenSans-Semibold.ttf');
}
@font-face {
  font-family: 'KGLIFEISMESSY';
  src: url('./fonts/KGLIFEISMESSY.TTF');
}

body{
	color: #000;
}
.navbar-default .navbar-nav > li > a {
    color: #000;
    font-family: "Montserrat-Regular";
    font-size: 18px;
}
.wrapper{
	max-width: 1580px;
	background: #ffffff;
	margin: auto;
}
.menu_fijo{
	position:relative; /*fixed;*/
	right: 0;
	left: 0;
	z-index: 9999;
	background: #fff;
}
.banner{
	background-repeat: no-repeat;
	background-image: url("img/fondo.PNG");
	background-size: 100% 100%;
	background-position: center top;
	width: 100%;
	min-height: 450px;
	opacity: 1;
	visibility: inherit;
	z-index: 20;

}
h2{
    font-family: "Montserrat-Regular";
    font-size: 39px;
}
p{
	font-family: "OpenSans-Bold";
	font-size: 16px;
	color: #827979;
}
.linea_border{
	border: 0 solid #e7e6e6;
	border-top-width:4px;
	margin-top:0px;
	margin-bottom:35px;
	width:100%;
	max-width:55px;
}



.btn_cotizar{
	font-size: 22px;
	background: #ff008a;
	padding: 10px;
	padding-right: 10px;
	padding-left: 10px;
	color: #ffffff;
	width: 150px;
	font-family: "Montserrat-SemiBold";
	margin-top: -10px;
	cursor: pointer;
}
.btn_cotizar:hover{
	background: #9e105d;
}
.carousel-control {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 15%;
    font-size: 20px;
    color: #1f69bc;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
    background-color: rgba(0, 0, 0, 0);
    filter: alpha(opacity=50);
    opacity: 1;
}
.carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right, .carousel-control .icon-prev, .carousel-control .icon-next {
    width: 40px;
    height: 50px;
    margin-top: -10px;
    font-size: 50px;
}

.banner_text1{
	font-size: 80px;
	font-family: 'Montserrat-Bold';
	color: #000;
}
.banner_text2{
	font-size: 75px;
	font-family: 'KGLIFEISMESSY';
	color: #7c174e;
	padding-bottom: 20px;
}
.banner_text3{
	font-size: 24px;
	font-family: 'Montserrat-Light';
	color: #0000ff;
}

.banner_movil_text1{
	font-size: 95px;
	font-family: 'Montserrat-Bold';
	color: #000;
}
.banner_movil_text2{
	font-size: 90px;
	font-family: 'KGLIFEISMESSY';
	color: #7c174e;
	padding-bottom: 20px;
}
.banner_movil_text3{
	font-size: 30px;
	font-family: 'Montserrat-Light';
	color: #0000ff;
}

.text_form1{
	font-family: "Montserrat-Bold";
	font-size: 18px;
	color: #ffffff;
}
.text_form2{
	font-family: "Montserrat-Regular";
	font-size: 15px;
	color: #ffffff;
}

.formulario1{
	font-family: "Montserrat-Regular";
	font-size: 17px;
}
.btn_enviar{
	width:140px;
	background:#0f5f34;
	color:#ffffff;
	border:none;
	padding:10px;
	border: 0px solid #056DC5;
	border-style: inset;
	margin-left: auto;
}
.btn_enviar:hover{
	background:#0b4325;
}
.text_footer{
	font-family: "Montserrat-Regular";
	font-size: 13px;
	color: #ffffff;
	text-align: center;
	padding-top: 8px;

}
.texto_cotizar_movil1{
	font-size: 25px;
}
.border_derecho{
	border-left: 2px solid #0F5F34;
}

.carousel-fade .carousel-inner .item {
  opacity: 0;
  transition-property: opacity;
}

.carousel-fade .carousel-inner .active {
  opacity: 1;
}

.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  opacity: 0;
  z-index: 1;
}

.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}

.carousel-fade .carousel-control {
  z-index: 2;
}

.imagen_movimiento1, .imagen_movimiento2, .imagen_movimiento3{
	animation-name: example;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	animation-duration: 4s;
}
/* Safari 4.0 - 8.0 */
@-webkit-keyframes example {
    0%   {transform: rotate(5deg);}
    25%  {transform: rotate(-5deg);}
    50%  {transform: rotate(5deg);}
    100% {transform: rotate(-5deg);}
}

/* Standard syntax */
@keyframes example {
    0%   {transform: rotate(5deg);}
    25%  {transform: rotate(-5deg);}
    50%  {transform: rotate(5deg);}
    100% {transform: rotate(-5deg);}
}

@media only screen and (min-width: 768px) and (max-width: 980px) {
	.banner_movil_text1{
		font-size: 90px;
	}
	.banner_movil_text2{
		font-size: 90px;
	}
	.banner_movil_text3{
		font-size: 30px;
	}
	.texto_cotizar_movil1{
		font-size: 25px;
	}
	.border_derecho{
		border-left: 0px solid #0F5F34;
	}

}

@media only screen and (min-width: 560px) and (max-width: 767px) {
	.banner_movil_text1{
		font-size: 55px;
	}
	.banner_movil_text2{
		font-size: 55px;
	}
	.banner_movil_text3{
		font-size: 30px;
	}
	.texto_cotizar_movil1{
		font-size: 25px;
	}
	.border_derecho{
		border-left: 0px solid #0F5F34;
	}
}

@media only screen and (max-width: 559px) {
	.banner_movil_text1{
		font-size: 40px;
	}
	.banner_movil_text2{
		font-size: 40px;
	}
	.banner_movil_text3{
		font-size: 20px;
	}
	h2{
		font-size: 30px;
	}
	.texto_cotizar_movil1{
		font-size: 20px;
	}
	.border_derecho{
		border-left: 0px solid #0F5F34;
	}
}