/*
Theme Name: Impreza Child
Template: Impreza
Version: 1.0
Author:	UpSolution
Theme URI: http://impreza.us-themes.com/
Author URI: http://us-themes.com/
*/

/*Add your own styles here:*/



/*tabs*/
.contenido{
 
    display: grid;
    gap: 30px;

}
.day {
    background: green;
    width: fit-content;
    padding: 5px 20px;
    font-size: 12px;
    color: white;
    font-weight: bold;
    border-radius: 20px;
	margin-bottom: 20px;
}

 .tabs-container {
            display: flex;
            overflow: hidden;
    gap: 10px;
    border-bottom: 3px solid var(--color-content-primary);
	     width: 100%;
    overflow: auto;
        }

        .tab {
            flex: 1;
            padding: 10px;
            text-align: center;
            cursor: pointer;
	           gap:20px;
 background-color: #ffffff;
    transition: background-color 0.3s;
    text-transform: uppercase;
    border-radius: 10px 10px  0 0;
					text-transform: uppercase;
        }

        .tab:hover {
            background-color: #ddd;
        }

        .tab.active {
            background-color: #ddd; /* Color de fondo cuando está activo */

					            background-color:var(--color-content-primary);
    color: white;
        }

        .tab-content {
            display: none;
            
            border-top: none;
					background:#fff;
					padding-top: 40px;
    padding-right: 50px;
    padding-bottom: 40px;
    padding-left: 50px;
					overflow:auto;
					    box-shadow: 1px 1px 3px 1px #00000054;
    border-radius: 0 0 16px 16px;
        }
        .tab-content.active {
            display: block;
        }

.contenido figure {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background: #0000000d;
    border-radius: 16px;
    padding: 20px;
}
.contenido figure img{
	width:100%;
	height:100%;
	object-fit:cover;
}



.large-cards article .w-grid-item-h{
    display: grid;
    grid-template-columns: 2fr 2fr 1fr;
    background: white;
    box-shadow: 0px 4px 4px 6px #0000001c;
    border-radius: 20px;
    overflow: hidden;
	justify-items: center;
}
.large-cards img{
	width:100%;
	height:100%;
	object-fit:cover;
}
.large-cards article i{
	color:var(--color-content-primary);
}
.layout_154 .usg_post_custom_field_1 {

    max-width: max-content;
    padding: 5px 20px;
	font-size:13px;
	color:#333;
}


@media only screen and (max-width: 877px){
	.tab-content{
		padding:5px;
	}
	ul {

    margin-left: 25px;
}
	p{
		font-size:13px;
		line-height:22px;
	}
	
.large-cards article .w-grid-item-h{
    display: grid;
    grid-template-columns: 1fr;
    background: white;
    box-shadow: 0px 4px 4px 6px #0000001c;
    border-radius: 20px;
    overflow: hidden;
}
}

/*cards*/
/*card para imagen dezlizante del inicio*/
.animar-galeria article img{
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.animar-galeria article:hover img{
    opacity: 1;
}
@keyframes slideshow {
    0%, 100% {
      opacity: 0;
    }
    20%, 80% {
      opacity: 1;
    }
  }
  .animar-galeria article img:nth-child(1) {
    animation: slideshow 6s infinite 0s;
  }
  
  .animar-galeria article img:nth-child(2) {
    animation: slideshow 6s infinite 2s;
  }
  
  .animar-galeria article img:nth-child(3) {
    animation: slideshow 6s infinite 4s;
  }
  
  .animar-galeria article img:nth-child(4) {
    animation: slideshow 6s infinite 6s;
  }