html {
	scroll-behavior: smooth;
}

.nav-link::after{
	position: absolute;
	content: "";
	width: 100%;
	height: 3px;
	top: 100%;
	left: 0;
	background: #fff;
	transition: transform 0.5s;
	transform: scaleX(0);
	transform-origin: right;
  }

  .nav-link-dark::after{
	background: #06B6D4;
  }
  .nav-link:hover::after {
	  transform: scaleX(1);
	  transform-origin: left;
	}
.nav-link-brown::after{
	background: #B98036;
	}

.slide-1, .post-section{
    background: url('../img/home_slide_1.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.slide-2{
    background: url('../img/home_slide_2.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.slide-3{
    background: url('../img/home_slide_3.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.slide-1sr, .post-section{
    background: url('../img/home_slide_1-sr.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.slide-2sr{
    background: url('../img/home_slide_2-sr.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.slide-3sr{
    background: url('../img/home_slide_3-sr.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}


.cliqueable {
	cursor: pointer;
}
.bg-header {
	background-image: url('../img/bg-header/bg-home.png');
	background-color: rgba(0, 0, 0, 0.3);
	background-size: cover;
	background-position: center;
}

.bg-header-sr {
	background-image: url('../img/bg-header/bg-nuestras-casas.jpg');
	background-color: rgba(0, 0, 0, 0.3);
	background-size: cover;
	background-position: center;
	background-blend-mode: multiply;
}

.bg-footer {
	background-image: url('../img/bg-footer.png');
	background-color: rgba(0, 0, 0, 0.3);
	background-size: cover;
	background-position: center;
}

.bg-footer-sr {
	background-image: url('../img/bg-footer-sr.png');
	background-color: rgba(0, 0, 0, 0.3);
	background-size: cover;
	background-position: center;
}

.bg-contacto {
	background-image: url('../img/bg-contacto.jpg');
	background-blend-mode: multiply;
	background-color: rgba(14, 16, 144, 0.5);
	background-size: cover;
	background-position: center;
}

.bg-footer-contacto {
	background-color: rgba(0, 0, 0, 0.4);
}

.icon {
	color: aqua;
}

.icon:hover {
	color: blue;
}

/*Galeria Imagenes Obras*/
.carousel-row--img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	cursor: pointer;
	transition: 0.4s;
}
.carousel-row--img img:hover {
	box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.2),
		0 12px 20px 0 rgba(0, 0, 0, 0.19);
}

.column-box {
	white-space: nowrap;
	background-color: transparent;
	width: 100%;
	overflow: hidden;
}
.column-box .column {
	width: 25%;
	display: inline-block;
	transition: all 1s;
}
.column-box .column img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	cursor: pointer;
}

/* The Modal */
.modal-artistas {
	display: none;
	position: fixed;
	padding: 50px 0;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background-color: rgba(0, 0, 0, 0.8);
}
.modal-artistas.no-select {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.modal-artistas-content {
	margin: auto;
	width: 75%;
	overflow: hidden;
}
@media only screen and (max-width: 37.5em) {
	.modal-artistas-content {
		width: 90%;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
}

@keyframes anime {
	0% {
		opacity: 0;
		transform: scale(0.9);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}

.my-slides {
	display: none;
	height: 60vh;
	transition: all 2s;
	overflow: hidden;
	animation: anime 0.8s ease-in;
	position: relative;
}
@media only screen and (max-width: 56.25em) {
	.my-slides {
		height: 70vh;
	}
}
@media only screen and (max-width: 37.5em) {
	.my-slides {
		height: 60vh;
	}
}
.my-slides img {
	object-fit: contain;
	width: 100%;
	height: 100%;
}
.my-slides--number {
	color: #f2f2f2;
	font-size: 12px;
	padding: 8px 12px;
	position: absolute;
	top: 0;
}

.demo {
	opacity: 0.5;
	transition: all 0.4s;
}
.demo.active,
.demo:hover {
	opacity: 1;
}

/* Caption text */
.caption-container {
	text-align: center;
	background-color: transparent;
	padding: 6px 16px;
	color: white;
}

/* The Close Button */
.close {
	color: white;
	position: absolute;
	top: 10px;
	right: 25px;
	font-size: 35px;
	font-weight: bold;
}
.close:hover,
.close:focus {
	color: #999;
	text-decoration: none;
	cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
	cursor: pointer;
	position: fixed;
	top: 50%;
	width: auto;
	padding: 16px;
	color: white;
	font-weight: bold;
	font-size: 50px;
	transition: 0.6s ease;
	transform: translateY(-50%);
}
@media only screen and (max-width: 37.5em) {
	.prev,
	.next {
		position: fixed;
		top: 95%;
		padding: 10px;
		font-size: 40px;
		transform: translateY(-50%);
	}
}
.prev:active,
.next:active {
	font-size: 30px;
}

/* Position the "next button" to the right */
.next {
	right: 0;
}

.prev {
	left: 0;
}
@media only screen and (max-width: 37.5em) {
	.prev {
		left: 80%;
	}
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
	background-color: rgba(255, 255, 255, 0.1);
}
@media only screen and (max-width: 37.5em) {
	.prev:hover,
	.next:hover {
		background-color: transparent;
	}
}


/*

	MODAL

*/
.modal {
	transition: opacity 0.25s ease;
  }
body.modal-active {
	overflow-x: hidden;
	overflow-y: visible !important;
}

/*

		whatsapp button	

*/

.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	color:#FFF;
	border-radius:50px;
	text-align:center;
	font-size:30px;
	z-index:100;
}

@media (min-width: 640px) {
    table {
      display: inline-table !important;
    }

    thead tr:not(:first-child) {
      display: none;
    }
  }

  td:not(:last-child) {
    border-bottom: 0;
  }

  th:not(:last-child) {
    border-bottom: 2px solid rgba(0, 0, 0, .1);
  }