
.design-background-proyect {
	height: 90%;
    width: 100%;
    min-height: 505px;
    background:  url('/images/projects/fondo.jpg') center no-repeat;
    background-size: cover;
	overflow-y: auto;
	background-position: center; 
	background-repeat: no-repeat;
}

.design-background {
    height: auto;
    width: 100%;
	min-height: 300px;
    background: url('/images//Fondos/Fondo3.png') center no-repeat;
    background-size: cover;
	overflow-y: auto;
	background-position: center; 
	background-repeat: no-repeat;
	padding-top: 0%;
	padding-bottom: 2%;
}
.imgdomotica{
	margin-top: 4%;
	margin-left: 12%;
	height: 320px;
	width: 330px;
	border-radius: 15%;
}

.margenes-project{
	margin-top: 2%; 
	margin-right: 7%
}

.design-container {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin-top: 3%;
}


@keyframes flipCard {
  0% {
    transform: rotateY(0);
  }
  50% {
    transform: rotateY(-180deg);
  }
  100% {
    transform: rotateY(0);
  }
}

.projectcard {
	animation: flipCard 1s ease forwards;
    position: relative;
    width: 300px;
    height: 400px;
    overflow: hidden;
    margin-bottom: 5%;
    perspective: 2000px;
    border-radius: 5%;
    cursor: pointer;
}

.projectcard-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 550ms cubic-bezier(0.1, 0.22, 0.8, 1.13);
    transform-style: preserve-3d;
    border-radius: 5%;
}

.projectcard:hover .projectcard-inner {
    transform: rotateY(-180deg);
}

.projectcard .card_landing, .projectcard .card_info {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 5%;
}

.projectcard .card_landing {
    box-shadow: 0 5px 10px #000;
    background: linear-gradient(transparent 80%, #000), var(--i);
    background-position: center;
    background-size: cover;
}
.projectcard .card_landing h6 {
   
   position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    font-size: 24px; 
    color: #fff;
    word-wrap: break-word; 
    overflow-wrap: break-word;
    white-space: normal;
    text-align: center; 
}

.projectcard .card_info {
    padding: 15px;
    background: #fff;
    box-shadow: 0 5px 10px #000;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.projectcard .card_landing, .projectcard .card_info {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
}

.projectcard:hover .projectcard-inner {
    transform: rotateY(-180deg); 
}

.card_info .head {
   padding-bottom: 25%;
}

.card_info .head .title {
    font-size: 20px;
    font-weight: 700;
    color: #e07e11;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	text-align: center;
}
.card_info .content .title {
    color: #e04011;
	text-align: center;
	margin-bottom: 25%;
}

.card_info .content p {
	text-align: center;
	margin-top:  -10%;
	
}


.card_info .head .description {
    display: flex;
    gap: 10px;
}

.card_info .head .description .item {
    display: flex;
    gap: 2px;
    align-items: center;
}

.card_info .head .description .item i {
    color: #e07e11;
    font-size: 15px;
}

.card_info .head .description .item p {
    font-size: 13px;
}

.card_info .content {
    margin-top: 15px;
}

.card_info .action .btn {
    padding: 10px;
    color: white;
    width: 100%;
    text-decoration: none;
    text-align: center;
    background: rgb(240, 111, 0);
    display: block;
    margin-top: 10px;
}

.card_info .action .btn:hover {
	color: white;
	background: #000000;
}

@media (max-width: 1000px) {
    .projectcard {
		padding-top:  5%;
        padding-left: 10%;
		margin-right: 10%;
    }
}