@charset "utf-8";
/* CSS Document */
.contenedor-obj {
	position: relative;
	height: 250px;
	text-align: center;
}
.obj1 {
	position: absolute;
	right: 200px;
	top: 15px;
	z-index: 2;
	-webkit-animation-timing-function: linear;
	-webkit-animation: mymove 5s; /* Safari 4.0 - 8.0 */
	animation: mymove 5s;
	animation-duration: 4s;
}
.obj2 {
	position: absolute;
	left: 100px;
	top: 80px;
	z-index: 3;
	-webkit-animation-timing-function: linear;
	-webkit-animation: mymove 5s; /* Safari 4.0 - 8.0 */
	animation: mymove 5s;
}
.obj3 {
	position: absolute;
	left: 60px;
	top: 10px;
	z-index: 1;
	-webkit-animation-timing-function: linear;
	-webkit-animation: mymove 5s; /* Safari 4.0 - 8.0 */
	animation: mymove 5s;
}
.obj4 {
	position: absolute;
	left: -50px;
	top: -10px;
	z-index: 4;
}
.t1 {
	border-bottom: dashed 3px #930297;
}
.t2 {
	color: #B0027F;
	font-weight: 700;
}
.t3 {
	font-size: 18px;
	color: #292525;
	font-weight: 400;
	font-family: "Poppins", sans-serif;
}
.t4 {
	color: #5F5D5D;
	font-size: 14px;
	font-family: "Poppins", sans-serif;
}
.paralax {
	background-image: url(../imagenes/banners/animal-avian-beak-326900.jpg);
	width: 100%;
	background-repeat: no-repeat;
	background-size: auto;
}

@media only screen and (max-width: 500px) {
.proyect1 {
	width: 50%;
}
}

@media only screen and (min-width: 699px) {
.proyect1 {
	width: 25%;
}
}

/*:::::::::::::::::::::::::::::CODDLE BOX::::::::::::::::::::::::::::::*/
.coddle__box {
	display: block;
	position: relative;
	width: 100%;
	float: left;
	color: #fff;
	flex: none;
	perspective: 1000px;
}
.coddle__box:hover {
	z-index: 3;
}
.coddle__box:hover figure {
	box-shadow: 5px 20px 50px 5px rgba(0, 0, 0, 0.3);
}
.coddle__box__figure .coddle__box__caption {
	display: none;
}
.coddle__box__figure:hover .coddle__box__caption {
	display: block;
}
.coddle__box__figure:hover .coddle__box__image {
	filter: brightness(0.5);
	-webkit-filter: brightness(0.5);
}
.coddle__box__figure {
	margin: 0;
	width: 100%;
	height: 100%;
	display: block;
}
.coddle__box__image {
	margin: 0;
	width: 100%;
	height: 100%;
	display: block;
	filter: brightness(100%);
}
.coddle__box__figure > * {
	transform: translateZ(0px); 
}
.coddle__box__figure div {
	position: relative;
}
.coddle__box__deco {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.coddle__box__deco--overlay {
	background-image: linear-gradient(45deg, rgba(226, 60, 99, 0.4), rgba(145, 58, 252, 0.4), rgba(16, 11, 192, 0.4));
}
.coddle__box__deco--shine div {
	position: absolute;
	width: 200%;
	height: 200%;
	top: -50%;
	left: -50%;
	background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.5) 0%, rgba(255, 255, 255, 0.25) 50%, transparent 100%);
}
.coddle__box__caption {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 100%;
	padding-top: 26%;
}
.coddle__box__title {
	margin: 0;
	font-weight: normal;
	font-size: 35px;
	line-height: 1;
}
.coddle__box__title a {
	color: #fff;
}
.coddle__box__title a:hover {
	text-decoration: none;
}
.coddle__box__description {
	margin: 1em 0 0 0;
	font-size: 22px;
}
/* GHOST BUTTON */

.ghost-btn {
	position: relative;
	display: inline-block;
	width: 217px;
	height: 50px;
	font-weight: bold;
	line-height: 60px;
	text-align: center;
	background-color: transparent;
	cursor: pointer;
	text-decoration: none;
	margin-left: 50px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.ghost-btn svg {
	width: 217px;
	height: 62px;
	position: absolute;
	top: 0;
	left: 0;
	color: #18a0d8;
}
.ghost-btn svg rect {
	width: 206px;
	height: 50px;
	stroke-width: 2;
	stroke-dasharray: 353, 0;
	stroke-dashoffset: 0;
	-webkit-transition: all 600ms ease;
	transition: all 600ms ease;
}
.ghost-btn span {
	background: #18a0d8;
	/*background: -moz-linear-gradient(left, #ff8282 0%, #e178ed 100%);
	background: -webkit-linear-gradient(left, #ff8282 0%, #e178ed 100%);
	background: linear-gradient(to right, #ff8282 0%, #e178ed 100%);*/
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff8282', endColorstr='#e178ed', GradientType=1 );
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.ghost-btn:hover svg rect {
	stroke-width: 2;
	stroke-dasharray: 156, 505;
	stroke-dashoffset: 427;
}
.ghost-btn:hover {
	text-decoration: none;
}
