main{
}

body{
    font-family: sans-serif;
}

.carousel {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  font-family: Arial;
}

.carousel__list {
    display: flex;
    list-style: none;
    position: relative;
    width: 100%;
    height: 700px;
    justify-content: center;
    perspective: 300px;
    overflow: hidden;
    padding: 0;
}

.carousel__item {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  width: 150px;
  border-radius: 1em;
  box-shadow: 0px 2px 8px 0px rgba(50, 50, 50, 0.5);
  position: absolute;
  transition: all 0.3s ease-in;
}

/* Example background colors */
.carousel__item:nth-child(1) { background: linear-gradient(45deg, #2D35EB 0%, #904ED4 100%); }
.carousel__item:nth-child(2) { background: linear-gradient(45deg, #2D35EB 0%, #fdbb2d 100%); }
.carousel__item:nth-child(3) { background: linear-gradient(45deg, #2D35EB 0%, #22c1c3 100%); }
.carousel__item:nth-child(4) { background: linear-gradient(45deg, #fdbb2d 0%, #904ED4 100%); }
.carousel__item:nth-child(5) { background: linear-gradient(45deg, #22c1c3 0%, #904ED4 100%); }
.carousel__item:nth-child(6) { background: linear-gradient(45deg, #2D35EB 0%, #904ED4 100%); }
.carousel__item:nth-child(7) { background: linear-gradient(45deg, #2D35EB 0%, #fdbb2d 100%); }
.carousel__item:nth-child(8) { background: linear-gradient(45deg, #2D35EB 0%, #22c1c3 100%); }
.carousel__item:nth-child(9) { background: linear-gradient(45deg, #fdbb2d 0%, #904ED4 100%); }
.carousel__item:nth-child(10) { background: linear-gradient(45deg, #22c1c3 0%, #904ED4 100%); }

.carousel__item[data-pos="0"] {
  z-index: 5;
}

.carousel__item[data-pos="-1"], .carousel__item[data-pos="1"] {
  opacity: 0.7;
  filter: blur(1px) grayscale(10%);
}

.carousel__item[data-pos="-1"] {
  transform: translateX(-40%) scale(0.9);
  z-index: 4;
}

.carousel__item[data-pos="1"] {
  transform: translateX(40%) scale(0.9);
  z-index: 4;
}

.carousel__item[data-pos="-2"], .carousel__item[data-pos="2"] {
  opacity: 0.4;
  filter: blur(3px) grayscale(20%);
}

.carousel__item[data-pos="-2"] {
  transform: translateX(-70%) scale(0.8);
  z-index: 3;
}

.carousel__item[data-pos="2"] {
  transform: translateX(70%) scale(0.8);
  z-index: 3;
}

.carousel__item[data-pos="-3"], .carousel__item[data-pos="3"] {
  opacity: 0.4;
  filter: blur(3px) grayscale(20%);
}

.carousel__item[data-pos="-3"] {
  transform: translateX(-90%) scale(0.7);
  z-index: 2;
}

.carousel__item[data-pos="3"] {
  transform: translateX(90%) scale(0.7);
  z-index: 2;
}

.carousel__item[data-pos="-4"], .carousel__item[data-pos="4"] {
  opacity: 0.2;
  filter: blur(5px) grayscale(30%);
}

.carousel__item[data-pos="-4"] {
  transform: translateX(-110%) scale(0.6);
  z-index: 1;
}

.carousel__item[data-pos="4"] {
  transform: translateX(110%) scale(0.6);
  z-index: 1;
}

/*Cookies*/
.cookie-notice {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: black;
    padding: 10px;
    border-radius: 5px;
    z-index: 1000;
}


/*Entrar*/
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index:10;
}

.popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 20px;
  border-radius: 5px;
}

.close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  cursor: pointer;
}
.form_main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgb(255, 255, 255);
  padding: 60px;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.062);
  position: relative;
  overflow: hidden;
}

.form_main::before {
  position: absolute;
  content: "";
  width: 300px;
  height: 300px;
  background-color: rgb(91, 155, 240);
  transform: rotate(45deg);
  left: -180px;
  bottom: 30px;
  z-index: 1;
  border-radius: 30px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.082);
}

.heading {
  font-size: 2em;
  color: #2e2e2e;
  font-weight: 700;
  margin: 5px 0 10px 0;
  z-index: 2;
}

.inputContainer {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.inputIcon {
  position: absolute;
  left: 3px;
}

.inputField {
  width: 100%;
  height: 30px;
  background-color: transparent;
  border: none;
  border-bottom: 2px solid rgb(173, 173, 173);
  margin: 10px 0;
  color: black;
  font-size: .8em;
  font-weight: 500;
  box-sizing: border-box;
  padding-left: 30px;
}

.inputField:focus {
  outline: none;
  border-bottom: 2px solid rgb(156, 149, 160);
}

.inputField::placeholder {
  color: rgb(80, 80, 80);
  font-size: 1em;
  font-weight: 500;
}

#button {
  z-index: 2;
  position: relative;
  width: 100%;
  border: none;
  background-color: rgb(150, 149, 153);
  height: 30px;
  color: white;
  font-size: .8em;
  font-weight: 500;
  letter-spacing: 1px;
  margin: 10px;
  cursor: pointer;
}

#button:hover {
  background-color: rgb(69, 20, 219);
}

.forgotLink {
  z-index: 2;
  font-size: .7em;
  font-weight: 500;
  color: rgb(44, 24, 128);
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 20px;
}





/*Fon*/
.fon_p {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    filter: blur(5px);
    z-index: -1;
}

/*Cards_down*/
/*Containers_l*/
.containers_l{
    display: flex;
    flex-direction: column;
    align-items: center;
}
}

.containers_l h3{
    font-size: 1.5em;
    margin-top: 2em;
    text-align: center;
}


.row{
    display: flex;
    justify-content: center;

}

.col12{
    display: flex;
    justify-content: center;
    box-shadow: 0em 0em 3em #46464694;
    border-radius: 1em;
    margin: 5%;

}



.col12 a{
    user-select: none;
    text-decoration: none;
    color: #3c3c3c;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    position: relative;
    height: 100%;
    background-color: #0000004a;
    border-radius: 5%;
}
.img-fluid{
    width: 100%;
    border-radius: 1em;
    z-index: -1;
}
.mini-banner{
height: 20em;
}

.mini-banner-body{
    display: flex;
    position: absolute;
    top: 80%;
    height: max-content;
    align-items: center;
    text-align: center;
    width: 100%;
    justify-content: center;
    color: black;
}



.mini-banner-header{
    color: #ffffff;
    justify-content: center;
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    text-align: center;
}


.Valorac{
    display: flex;
    flex-direction: column;
    margin: 2%;
    box-shadow: 0em 0em 3em #46464694;
    border-radius: 20px;
    align-content: center;
    color: #3c3c3c;
    text-align: center;
    align-items: baseline;
}
.Valorac ul{
    list-style: none;
    padding: 0em;
}
.Autorizacion ul{
    list-style: none;
    padding: 0em;
}
.INQUILINOS ul{
    list-style: none;
    padding: 0em;
}
.CONTRATOC ul{
    list-style: none;
    padding: 0em;
}
.Autorizacion{
    display: flex;
    flex-direction: column;
    margin: 2%;
    box-shadow: 0em 0em 3em #46464694;
    border-radius: 20px;
    align-content: center;
    color: #3c3c3c;
    text-align: center;
    align-items: baseline;
}
.INQUILINOS{
    display: flex;
    flex-direction: column;
    margin: 2%;
    box-shadow: 0em 0em 3em #46464694;
    border-radius: 20px;
    align-content: center;
    color: #3c3c3c;
    text-align: center;
    align-items: baseline;
}
.CONTRATOC{
    display: flex;
    flex-direction: column;
    margin: 2%;
    box-shadow: 0em 0em 3em #46464694;
    border-radius: 20px;
    align-content: center;
    color: #3c3c3c;
    text-align: center;
    align-items: baseline;
}

.containers_l h5{
    font-size: 1em;
        margin-bottom: 5%;
}


.list{
    width: 70%;
}

.person{
    width: 70%;
}

.contrato{
    width: 70%;
}

.home{
    width: 70%;
}

.persona{
}
.autorizaciones{

}
.Services span{
    text-align: center;
    margin: 1em;
}
.Services{
    display: flex;
    position: relative;
    overflow: hidden;
}



.map_div{
    display:flex;
    justify-content: center;
}




@media screen and (max-width: 768px) {


.popup {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 10;
}

.button_carousel{
    display: none !important;
}

.popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  width: 80%;
  height: 60%;
}

.close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  cursor: pointer;
}
.form_main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.062);
  position: relative;
  overflow: hidden;
  height: 100%;
  padding:0;
}

.form_main::before {
  position: absolute;
  content: "";
  width: 300px;
  height: 300px;
  background-color: rgb(91, 155, 240);
  transform: rotate(45deg);
  left: -180px;
  bottom: 30px;
  z-index: 1;
  border-radius: 30px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.082);
}

.heading {
  font-size: 2em;
  color: #2e2e2e;
  font-weight: 700;
  margin: 5px 0 10px 0;
  z-index: 2;
}

.inputContainer {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.inputIcon {
  position: absolute;
  left: 3px;
}

.inputField {
  width: 100%;
  height: 30px;
  background-color: transparent;
  border: none;
  border-bottom: 2px solid rgb(173, 173, 173);
  margin: 10px 0;
  color: black;
  font-size: .8em;
  font-weight: 500;
  box-sizing: border-box;
  padding-left: 30px;
}

.inputField:focus {
  outline: none;
  border-bottom: 2px solid rgb(156, 149, 160);
}

.inputField::placeholder {
  color: rgb(80, 80, 80);
  font-size: 1em;
  font-weight: 500;
}

#button {
  z-index: 2;
  position: relative;
  width: 100%;
  border: none;
  background-color: rgb(150, 149, 153);
  height: 30px;
  color: white;
  font-size: .8em;
  font-weight: 500;
  letter-spacing: 1px;
  margin: 10px;
  cursor: pointer;
}

#button:hover {
  background-color: rgb(69, 20, 219);
}

.forgotLink {
  z-index: 2;
  font-size: .7em;
  font-weight: 500;
  color: rgb(44, 24, 128);
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 20px;
}


}













.container_obranueva .btn1 {
	position: relative;
	top: 0;
	left: 0;
	width: 250px;
	height: 50px;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.container_obranueva .btn1 a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(255, 255, 255, 0.05);
	box-shadow: 0 15px 15px rgba(0, 0, 0, 0.3);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 30px;
	padding: 10px;
	letter-spacing: 1px;
	text-decoration: none;
	overflow: hidden;
	color: #fff;
	font-weight: 400px;
	z-index: 1;
	transition: 0.5s;
	backdrop-filter: blur(15px);
}
.container_obranueva .btn1:hover a {
	letter-spacing: 3px;
}
.container_obranueva .btn1 a::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	height: 100%;
	background: linear-gradient(to left, rgba(255, 255, 255, 0.15), transparent);
	transform: skewX(45deg) translate(0);
	transition: 0.5s;
	filter: blur(0px);
}
.container_obranueva .btn1:hover a::before {
	transform: skewX(45deg) translate(200px);
}
.container_obranueva .btn1::before {
	content: "";
	position: absolute;
	left: 50%;
	transform: translatex(-50%);
	bottom: -5px;
	width: 30px;
	height: 10px;
	background: #f00;
	border-radius: 10px;
	transition: 0.5s;
	transition-delay: 0.5;
}
.container_obranueva .btn1:hover::before /*lightup button*/ {
	bottom: 0;
	height: 50%;
	width: 80%;
	border-radius: 30px;
}

.container_obranueva .btn1::after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translatex(-50%);
	top: -5px;
	width: 30px;
	height: 10px;
	background: #f00;
	border-radius: 10px;
	transition: 0.5s;
	transition-delay: 0.5;
}
.container_obranueva .btn1:hover::after /*lightup button*/ {
	top: 0;
	height: 50%;
	width: 80%;
	border-radius: 30px;
}
.container_obranueva .btn1:nth-child(1)::before, /*chnage 1*/
.container_obranueva .btn1:nth-child(1)::after {
	background: #511cb9c7;
	box-shadow: 0 0 5px #511cb9c7, 0 0 15px #511cb9c7, 0 0 30px #511cb9c7,
		0 0 60px #511cb9c7;
}
.container_obranueva .btn1:nth-child(3)::before, /* 2*/
.container_obranueva .btn1:nth-child(3)::after {
	background: #511cb9c7;
	box-shadow: 0 0 5px #511cb9c7, 0 0 15px #511cb9c7, 0 0 30px #511cb9c7,
		0 0 60px #511cb9c7;
}
.container_obranueva .btn1:nth-child(2)::before, /* 3*/
.container_obranueva .btn1:nth-child(2)::after {
	background: #511cb9c7;
	box-shadow: 0 0 5px #511cb9c7, 0 0 15px #511cb9c7, 0 0 30px #511cb9c7,
		0 0 60px #511cb9c7;
}




.vend{
    background-color: #ffc107;
    color: black;
    font-size: 1em;
    padding: 4px 10px;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-50%);
    z-index: 3;
    border-radius: 10px;
}