@font-face {
    font-family: 'montserratbold';
    src: url('montserrat-bold.woff2') format('woff2'),
         url('montserrat-bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'montserratregular';
    src: url('montserrat-regular.woff2') format('woff2'),
         url('montserrat-regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'montserratlight';
    src: url('montserrat-light.woff2') format('woff2'),
         url('montserrat-light.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

a:link,
a:hover,
a:visited,
a:active,
a:focus{
	color:#FFFFFF;
	text-decoration: none;
}
.centro{
	text-align:center;
	margin: 0 auto;
}
.header {
    position:absolute;
    height: 120px;
    width: 100%;
    z-index:100;
}
.header_bg{
    background: rgba(255, 255, 255, 0.1);
    -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
	-moz-box-shadow:    1px 1px 1px rgba(0, 0, 0, 0.5);
    box-shadow:         1px 1px 1px rgba(0, 0, 0, 0.5);
}
.swiper-button-next{
	right:50px;
}
.swiper-button-prev{
	left:50px;
}
h2{
	color:#555555;
    font-family: 'montserratlight';
    font-size: 55px;
    line-height:60px;
}
.img-responsive{
  	max-width: 100%;
   	height: auto;
   	display:block;
}
.pad1{
	padding: 100px;
}
.pt1{
	padding-top: 150px;
}
.pt2{
	padding-top: 50px;
}
.izda{
    float:left;
    padding: 0 25px 25px 0;
}
.color1{
	background-color: #780032;
}
.color2{
	background-color: #A20234;
}
.color3{
	background-color: #F05C22;
}
.color4{
	background-color: #F68F1E;
}
.color5{
	background-color: #FFCA05;
}
.color6{
	background-color: #FFF100;
}
.color7{
	background-color: #6E5952;
}
.color8{
	background-color: #A68A6B;
}
.color9{
	background-color: #C9A98B;
}
.color10{
	background-color: #5E4640;
}
.color11{
	background-color: #7CB342;
}
.color12{
	background-color: #C0CA33;
}
.color13{
	background-color: #9E9D24;
}
.color14{
	background-color: #827717;
}



.icono{
	width: 60px;
}

.sombra{
	-webkit-filter: drop-shadow(1px 1px 1px #000);
  	filter: drop-shadow(1px 1px 1px #000);
}

.swiper-container{
	z-index: 10;
}

.logo{
	position: relative;
	float: left;
	padding:15px 0 0 25px;
	width: 220px;
}

.navegacion{
	position: relative;
	float: right;
	padding: 20px;
}


button {
  padding: 10px;
  background: rgba(255, 255, 255, 0.3);
  border: 0;
  color:#ffffff;
    -o-transition:color .2s ease-out, background 0.5s ease-in;
  -ms-transition:color .2s ease-out, background 0.5s ease-in;
  -moz-transition:color .2s ease-out, background 0.5s ease-in;
  -webkit-transition:color .2s ease-out, background 0.5s ease-in;
  transition:color .2s ease-out, background 0.5s ease-in;
  -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.49);
-moz-box-shadow:    1px 1px 3px rgba(0, 0, 0, 0.49);
box-shadow:         1px 1px 3px rgba(0, 0, 0, 0.49);
}

button:active,
button:focus,
button:hover {
  background: rgba(255, 255, 255, 0.1);
  color:#ffffff;
  border: 0;
}
:disabled {
     background: #3BB1E0;
    color:#ffffff;
    border: 0;
}
a:link{
 	text-decoration:none;
}
.vertical{
	display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
#crumbs {
	float:right;
}

#crumbs ul {
	list-style: none;
	display: inline-table;
	margin:25px 50px 0 0;
}

#crumbs ul li {
	display: inline;
}

#crumbs ul li a {
	display: block;
	float: left;
	text-align: center;
	position: relative;
}
.bgblanco{
background-color: #FFFFFF;
}
.animated {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(50px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}
.animado{
	animation:mymove 4s ease-out forwards;
	animation-iteration-count:1;

	/* Safari and Chrome */
	-webkit-animation:mymove2 4s;
	-webkit-animation-iteration-count:1;
}

@keyframes mymove2{
	from {opacity: 0;}
	to {opacity: 1}
}

@-webkit-keyframes mymove2{
	from {opacity: 0;}
	to {opacity: 1;}
}

.animated2 {
    animation-duration: 2s;
    animation-fill-mode: both;
    animation-timing-function: ease-in-out;
    animation-iteration-count:infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}
.pulse {
    animation-name: pulse;
}
