@font-face{
	font-family: font;
	src:  url(font/TTWellingtons.otf);
}

@font-face{
	font-family: title;
	src:  url(font/TTWellingtons.otf);
}

/*------------------------------------------*/

*{
	margin: 0px;
	padding: 0px;
}

*,
*::after,
*::before {
  box-sizing: border-box;
}

body{
	background-color: rgb(250, 250, 250);	

}

:root {
  --bar-width: 40px;
  --bar-height: 3px;
  --hamburger-gap: 7px;
  --foreground: white;
  --background: darkgray;
  --hamburger-margin: 45px;
  --animation-timing: 200ms ease-in-out;
  --hamburger-height: calc(var(--bar-height) * 3 + var(--hamburger-gap) * 2);
}

/*------------------------------------------*/
.menu{
	position: absolute;
	top: 0px;
	right: 0px;
	width: 100px;
	height: 100px;
	z-index: 3;	
}

.menu-menu{
	position: absolute;
	top: 0px;
	right: 0px;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}



.hamburger-menu {
  --x-width: calc(var(--hamburger-height) * 1.41421356237);
  display: flex;
  flex-direction: column;
  gap: var(--hamburger-gap);
  width: max-content;
  position: absolute;
  top: var(--hamburger-margin);
  right: var(--hamburger-margin);
  z-index: 2;
  cursor: pointer;
  transition: var(--animation-timing);
}

.hamburger-menu:hover{
	opacity: 0.7;
}

.hamburger-menu:has(input:checked) {
  --foreground: white;
  --background: #333;
}

.hamburger-menu:has(input:focus-visible)::before,
.hamburger-menu:has(input:focus-visible)::after,
.hamburger-menu input:focus-visible {
  border: 1px solid var(--background);
  box-shadow: 0 0 0 1px var(--foreground);
}

.hamburger-menu::before,
.hamburger-menu::after,
.hamburger-menu input {
  content: "";
  width: var(--bar-width);
  height: var(--bar-height);
  background-color: var(--foreground);
  border-radius: 9999px;
  transform-origin: left center;
  transition: opacity var(--animation-timing), width var(--animation-timing),
    rotate var(--animation-timing), translate var(--animation-timing),
    background-color var(--animation-timing);
}

.hamburger-menu input {
  appearance: none;
  padding: 0;
  margin: 0;
  outline: none;
  pointer-events: none;
}

.hamburger-menu:has(input:checked)::before {
  rotate: 45deg;
  width: var(--x-width);
  translate: 0 calc(var(--bar-height) / -2);
}

.hamburger-menu:has(input:checked)::after {
  rotate: -45deg;
  width: var(--x-width);
  translate: 0 calc(var(--bar-height) / 2);
}

.hamburger-menu input:checked {
  opacity: 0;
  width: 0;
}

.sidebar {
	position: absolute;
	right: 0px;
	top: 0px;
  transition: translate var(--animation-timing);
  translate: 100%;
  padding: 0.5rem 1rem;
  padding-top: calc(var(--hamburger-height) + var(--hamburger-margin) + 1rem);
  background-color: rgba(0,0,0, 0.5);
  color: black;
  width: 100vw;
  height: 100vh;
  backdrop-filter: blur(10px);

  
}

.hamburger-menu:has(input:checked) + .sidebar {
  translate: 0;
}

nav{
	position: relative;
	top: 0px;
	width: 100%;
	height: 300px;

	display: flex;
	
	z-index: 2;

	justify-content: right;
	overflow: hidden;
}

nav ol{
	position: relative;
	height: auto;
	width: auto;

	display: flex;
	flex-wrap: nowrap;
	flex-flow: column;
	
	z-index: 2;

	white-space: nowrap;

	list-style-type: none;
	margin-right: 39px;
	margin-top: 39px;


}

nav ol li{
	position: relative;
	top: 0px;

	
	text-align: right;
	
	margin:auto 0px;

	font-family: title;
	color: white;
	font-size: 20px;
	text-shadow: 2.0px 3.0px 8.0px black;
}

nav a{
	text-decoration: none;
	color: white;
  transition: all 0.3s ease-in-out;
}

nav ol li a:hover{
	opacity: 0.6;
	margin-right: 10px;
}

/*------------------------------------------*/

header{
	position: relative;
	top: 0px;
	width: 100%;
	height: 100vh;

	z-index: 2;

	background-color: black;

	box-shadow: 2.0px 8.0px 8.0px hsl(0deg 0% 0% / 0.14);
	overflow: hidden;
}

.nav{
	position: relative;
	top: 30px;
	width: calc(100% - 60px);
	height: auto;

	display: flex;
	
	z-index: 2;

	margin-left: 30px;
	

	justify-content: space-between;
	overflow: hidden;
}

.nav1{
	position: relative;
	height: auto;
	width: auto;

	display: flex;
	flex-wrap: nowrap;
	flex-flow: row;

	margin: 0px;
	padding-top: 0px;

	white-space:nowrap;

	
}

.nav2{
	position: relative;
	height: auto;
	width: auto;


	display: flex;
	flex-wrap: nowrap;
	flex-flow: row;

	margin: 0px;
	padding-top: 0px;

	white-space:nowrap;

	
}

.nav2 ol{
	position: relative;
	height: auto;
	width: auto;

	display: flex;
	flex-wrap: nowrap;
	flex-flow: row;
	
	z-index: 2;

	white-space: nowrap;
}

.nav2 ol li{
	position: relative;
	top: 0px;

	display: inline-block;

	padding-left: 50px;
	margin:auto 0px;

	font-family: title;
	color: white;
	font-size: 20px;


}

.nav2 a{
	text-decoration: none;
	color: white;
  transition: all 0.3s ease-in-out;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.nav2 a:hover{
	
  border-bottom: 2px solid white;
}

.nav a{
	text-decoration: none;
	color: white;
  transition: all 0.3s ease-in-out;
  
}

.nav a:hover{
	opacity: 0.6;
}


.nav-title{
	position: relative;

	margin: auto 0px;	

	font-family: title;
	color: white;
	font-size: 30px;
	z-index: 3;
}

.nav-logo{
	position: relative;
	width: 60px;

	margin: auto 0px;
		
	object-fit: scale-down;
}

.header-small{
	height: max-content;
}

.header_img{
	position: absolute;
	top: 0px;
	right: 0px;
	width: 100%;
	height: auto;
	object-fit: fit;
	opacity: 0.4;
	object-position: 0% 0%;
}

.header_img_index{
	position: absolute;
	top: 0px;
	right: 0px;
	width: 100%;
	height: 100vh;

	object-fit: cover;
	opacity: 0.4;
	object-position: 50% 25%;
}


.header-title{
	position: relative;
	width: 100%;

	z-index: 1;

	

	color: white;
	font-family: title;
	
	text-align: center;
	text-shadow: 2.0px 3.0px 8.0px black;
}


.about-us-button{
	position: relative;
	width: auto;
	height: auto;
	margin-top: 50px;

	z-index: 2;
	

	

	border: 1px solid #004f59;
	text-decoration: none;
	
	font-weight: 900;
	color: white;
	font-family: title;
	transition: all 0.3s ease-in-out;


	background-color: #004f59;
	border-radius: 6px;
	
}

.about-us-button a{
	text-decoration: none;
	color: white;

}


.about-us-button:hover{
	background: none;
	color: white;
	border: 1px solid white;
	cursor: pointer;
}


/*------------------------------------------*/

section{
	position: relative;
	height: auto;
	background-color: rgb(250, 250, 250);

	
}

.section-aviso-manejo-dinero{
	position: relative;
	height: auto;
	width: 100%;
	margin-top: 50px ;

	background-color: #f1f1f1;

	padding: 20px 0px;
}

.section{
	position: relative;
	height: auto;
	width: 100%;
	background-color: rgb(250, 250, 250);
}

.first-secction{
	display: flex;
	flex-flow: row;
}

.contact-group-container{
	display: flex;
	width: 80%;
	margin-top: 35px;
	margin-bottom: 35px;
	flex-wrap: wrap;
	margin-left: 10%;
	row-gap: 35px;
	column-gap: 35px;
}

.contact-container{
	width: auto;
	
	
	display: flex;
	flex-wrap: wrap;
	flex-flow: column;
	gap: 10px;
	align-items: flex-start;
	align-content: center;

	
	padding-bottom: 0vh;


	

}

.contact-items{
	display: flex;
	
	height: auto;

	
	

	

}

.sub-contact-item{
	font-family: title;
	
}

.sub-contact-item p{
	font-size: 15px;
}

.contact-icons{
	width: auto;
	height: 4vh;
	position: relative;
	margin: 0;
	padding: 0;
	box-shadow: none;
}

.contact-container2{
	flex: 1 0 300px;
	
	display: flex;
	
	flex-wrap: wrap;
	justify-content: space-between;
	
	height: auto;

	column-gap: 1vw;


	row-gap: 2vh;


	

}

.form-name{
	flex: 1 0 300px;
	height: 4vh;
	font-family: title;
	font-size: 14px;
	padding-left: 1vh;
}

.form-email{
	flex: 1 0 300px;
	
	height: 4vh;
	font-family: title;
	font-size: 14px;
	padding-left: 1vh;
}

.form-subject{
	flex: 1 0 auto;
	width: 100%;
	height: 4vh;
	font-family: title;
	font-size: 14px;
	padding-left: 1vh;
}

.form-message{
	
	flex: 1 0 auto;
	width: 100%;
	height: auto;
	font-family: title;
	font-size: 14px;
	padding-top: 1vh;
	padding-left: 1vh;
}

.submit-button{
	width: 100px;
	height: 40px;
	margin: auto;
	background-color: #004f59;
	border-radius: 6px;
	border: none;
	color: white;
	transition: 250ms;
	font-family: title;
	margin-left: calc(50% - 50px);
}

.submit-button:hover{
	cursor: pointer;
	background-color: #007887;

}

.title-grid2{
	display: flex;
	flex-wrap: nowrap;
	justify-content: ;
	gap:50px;
	width: 80%;
	margin-left: 10%;

}

.grid-center2{
	width: 70%;
	
}

.grid-right2{
	width: 30%;
	margin: auto 0px;
	
}

.title-grid{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 20px 0;
	padding-top: 20px;
}

.grid-left{
	width: 20vw;
	margin: auto 0px;
	
}

.grid-center{
	width: 40%;
	
}

.grid-right{
	width: 20vw;
	margin: auto 0px;
	
}

.section_title{
	text-align: center;
	font-size: 50px;
	font-family: title;
	padding: 20px 0;
}


.acerca-de-nosotros{
	display: flex;
	flex-wrap: wrap;
	gap: 50px;
	width: 80%;
	margin: 0px auto;

}

.mision{
	flex: 1 0 400px;
	width: 100%;
}

.vision{
	flex: 1 0 400px;
	width: 100%;
}

.historia{
	width: 80%;
	margin: 0px auto;
}

.div-text{
	width: 80%;
	margin:  0px auto;
}

.section_text{
	position: relative;
	width: 100%;
	text-align: justify;
	
	top: 0px;

	font-size: 20px;
	font-family: title;
}

.section_text2{
	width: 100%;
	position: relative;
	text-align: justify;
	top: 0px;
	width: auto;
	height: max-content;

	font-size: 20px;
	font-family: title;
	
}





.first-seccion1{
	flex: .60;
}

.first-seccion2{
	flex: .40;
	
}


.section_text1{
	position: relative;
	width: 60%;
	text-align: center;
	margin-left: 20%;
	top: 0px;

	font-size: 25px;
	font-family: title;
}

.section-img1{
	position: relative;
	right: 60px;
	width:90%;
	height: auto;
	object-fit: cover;
	object-position: 0 25%;
	box-shadow: 4.0px 8.0px 8.0px hsl(0deg 0% 0% / 0.38);
}

.section-img{
	position: relative;
	width: 80%;
	margin: 0px 10%;
	margin-top: 50px;
	height: 400px;
	object-fit: cover;
	object-position: 0 25%;
	box-shadow: 4.0px 8.0px 8.0px hsl(0deg 0% 0% / 0.38);
	margin-bottom: 10px;

}

.section-img2{
	
	position: relative;
	
	
	height: auto;
	object-fit: cover;
	object-position: 50% 25%;
	box-shadow: 4.0px 8.0px 8.0px hsl(0deg 0% 0% / 0.38);
	
	

	margin: 0px auto;

	position: relative;
	flex: 1 1 500px;
	width: 500px;


}

.proximamente{
	width: 75%;
	margin-left: 12%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	
	
	margin-bottom: 50px;
	gap: 30px;
	row-gap: 80px;

	

}



.sub-proximamente{
	
	display: flex;
	flex-flow: column;
	
	
	margin: 0px auto;
	overflow: hidden;
	
	gap: 30px;

	position: relative;
		
	flex: 1 1 500px;
	width: auto;
		
}


	


.members_img{
	position: relative;
	width: 100%;
	margin: 0px;
	height: 500px;
	object-fit: cover;
	object-position: 100% 0;

	transition: all 300ms ease-in-out;

}

.team-group{
	position: relative;
	display: flex;
	width: 80%;

	height: auto;
	overflow: hidden;
	flex-wrap: wrap;
	margin:  0px auto;
	justify-content: center;
	margin-top: 40px;
	gap: 30px;
	

	
}


.team-group2{
	position: relative;
	display: flex;
	width: 80%;
	height: auto;
	overflow: hidden;
	flex-wrap: wrap;
	margin:  0px auto;
	
	
	margin-top: 0px;
	
	
	column-gap: 30px;
	row-gap: 30px;


	
}

.notario_card{
	flex: 1 0 380px;
	max-width: 100% ;
	

}

.notario_card_text{
	flex: 1 0 400px;
	width: 100%;
	
	background-color: rgb(238, 238, 238);

	margin: 0px auto;
	padding: 0px 30px 30px 30px;
	min-height: 600px;

}

.members-card{
	flex: 1 0 300px;
	max-width: 500px;
	position: relative;
	display: flex;
	flex-flow: column;
	
	
	height: 550px;
	
	overflow: hidden;

	border: 1px solid darkgray;

}

.members-card2{
	flex: 1 0 300px;
	max-width: 500px;
	position: relative;
	display: flex;
	flex-flow: column;
	
	
	height: 600px;
	
	overflow: hidden;

	border: 1px solid darkgray;

	margin: 0px auto;

}

.members-card img{
	box-shadow: none;

}

.members-card2 img{
	box-shadow: none;

}

.flex-container{
	font-family: title;
	width: 80%;
	margin-left: 10%;
	display: flex;
	gap: 50px;
	flex-wrap: wrap;
	height: max-content;
	margin-bottom: 50px;

	
	
}

.flex-item{
	text-align: center;
	position: relative;
	flex: 1 0 auto;
	width: 30%;
	
	height: auto;

	
	
	border: 1px  solid darkgray;
	padding: 10px;



}

/*.members_img:hover{
	transform: scale(1.2) translateX(30px);
	object-position:  0 -20%;

}*/

.members-socials{
	position: relative;
	height: 75px;
	width: 80%;
	background-color: #fafafa;
	top: -78px;
	padding: 0px;
	margin: 0px auto;
	
	
}

.social-media-container2{
	position: relative;
	width: 65%;
	height: 75px;
	display: flex;
	justify-content: space-between;
	column-gap: 10px;
	margin:  0px auto;
	

}

.social-media2{
	position: relative;
	width: 30px;
	height: 30px;
	transition: transform 250ms;
	margin: auto 0px;
	filter: invert(23%) sepia(27%) saturate(3042%) hue-rotate(152deg) brightness(35%) contrast(101%);

}

.social-media2:hover{
	transform: translateY(-5px);
	cursor: pointer;
	
}

.members-separation{
	position: relative;
	height: 1px;
	width: 60%;
	background-color: darkgray;
	top: -78px;
	margin:  0px auto;
}
.members-card p{
	position: relative;

	font-family: title;
	font-size: 18px;
	text-align: center;
	width: auto;
	margin: auto;
	padding-top: 10px;

	
}


.members-card2 p{
	position: relative;
	top: 0px;
	font-family: title;
	font-size: 18px;
	text-align: center;
	width: auto;
	margin-left: 20px;
	padding-top: 10px;
	
}




/*.grupo_medios{
	position: relative;
	width: 90%;
	height: auto;
	margin-left: 5%;

}

.grupo_clientes{
	position: relative;
	width: 49%;
	margin-left: 6px;
	display: inline-block;
}

.clientes{
	width: 20%;
	height: auto;
	object-fit: cover;
	box-shadow: none;
	margin: 0px;
	margin-right: 3%;
	padding-bottom: 4%;
	filter: grayscale(100%);
}*/

iframe{
	position: relative;
	width: 80%;
	margin-left: 10%;
	height: 250px;
}

.grupo_direccion{
	position: relative;
	width: 80%;
	margin-left: 10%;
	font-family: title;
	padding-top: 2%;
}

.grupo_correo{
	position: relative;
	width: 80%;
	margin-left: 10%;
	font-family: title;
	padding-top: 2%;
}

.grupo_telefono{
	position: relative;
	width: 80%;
	margin-left: 10%;
	font-family: title;
	padding-top: 2%;
}

.grupo_horario{
	position: relative;
	width: 80%;
	margin-left: 10%;
	font-family: title;
	padding-top: 2%;
}

.grupo_redes{
	position: relative;
	width: 80%;
	margin-left: 10%;
	font-family: title;
	padding-top: 2%;
}






.grupo_ventanas2{
	position: relative;
	width: 95%;
	height: auto;

	
}

.equipo_ventanas2{
	position: relative;
	display: inline-block;
	width: 28%;
	margin: 0% 2% 0% 1%;
	height: auto;
	/*box-shadow: 4.0px 8.0px 8.0px hsl(0deg 0% 0% / 0.38);*/
	border: 1px solid black;
	margin-bottom: 3%;
	vertical-align: top;

}

.equipo_ventanas2{
	position: relative;
	display: inline-block;
	width: 28%;
	margin: 0% 2% 0% 1%;
	height: 450px;
	/*box-shadow: 4.0px 8.0px 8.0px hsl(0deg 0% 0% / 0.38);*/
	border: 1px solid black;
	margin-bottom: 3%;
	vertical-align: top;

}



.equipo_ventanas2 p{
	position: relative;
	font-family: title;
	font-size: 18px;
	text-align: left;
	width: auto;
	margin: auto;
	padding-top: 4px;
	padding-left: 4px;
	
}

.grupo_especial{
	position: relative;
	top: 20px;
	display: flex;
	width: 80%;
	margin-left: 10%;
	height: max-content;
	flex-wrap: wrap;
	justify-content: space-between;
	row-gap: 10px;
	column-gap: 10px;
	
}


.especial{
	position: relative;
	display: flex;
	flex-flow: column;
	flex: 1 0 220px;
	height: auto;
	margin: 0px auto;

}

.mini-especial {
	height: auto;
	flex: 1 0 auto;

}

.especial-title{
	font-size: 30px;
	white-space: nowrap;

}

.especial p{
	font-family: title;
	font-size: 25px;
	text-align: center;
	width: auto;
	white-space: nowrap;
	
}

.whats{
	position: relative;
	width: 12%;
	height: auto;
	margin: 0px;
	padding: 0px;
	float: right;
	top: -10%;
	right: 7%;
	transform: scale(1);
	transition: 300ms ease-in-out;

}

.whats:hover{
	transform: scale(1.2);
}


.small-title-grid{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 20px 0;
}

.small-grid-left{
	width: 7vw;
	margin: auto 0px;
	
}

.small-grid-center{
	width: 50%;
	
}

.small-grid-right{
	width: 7vw;
	margin: auto 0px;
	
}

.small-section_title{
	text-align: center;
	font-size: 40px;
	font-family: title;
	padding: 20px 0;
	
}


.small-section_text{
	position: relative;
	width: 75%;
	text-align: center;
	margin-left: 12%;
	top: 0px;

	font-size: 25px;
	font-family: title;
}


.about-us-button a{
	text-decoration: none;
	color: white;

}

.about-us-button:hover{
	background: none;
	color: white;
	border: 1px solid white;
}


.special-services-container{
	width: 80%;
	margin-left: 10%;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 40px;
	column-gap: 20px;
}

.services-container{
	display: flex;
	position: relative;
	top: -50px;
	width: max-content;
	height: auto;
	margin-left: 10%;
	flex-flow: row;
	flex-wrap: wrap;

	margin-bottom: 0px;
	column-gap: 20px;
	row-gap: 20px;
	justify-content: center;
	
	
}


.container-list-services{
	flex: 1 0 noneauto;
	width: 420px;
	height: auto;
	color: black;
	font-family: title;
	padding: 0px 10px 10px 10px;

}


.services-title{
	height: auto;
	font-size: 20px;
	color: black;
	
	text-align: center;
	background-color: darkgray;
	padding: 20px 0px;
	border: 1px solid darkgray;
}



.container-list-services ul{
	list-style-type: none;
	
	font-size: 18px;
	line-height: 32px;
	border: 1px solid darkgray;
	padding: 20px;
	height: auto;
	
}



.container-list-services a{
	transition: all 0.3s;
	text-decoration: none;
	color: black;	
}

.aviso-div{
	margin: 50px auto;
	
	width: 90%;
	
	font-family: title;
	text-align: justify;
	font-size: 16px;
	line-height: 30px;

}

.aviso-div ul{
	margin-left: 2%;
}

.services-needs{
	height: max-content;
	flex: 1 0 600px;
	padding: 0px 20px 20px 20px;
}

.container-list-services ol{
	list-style-type: none;
	
	font-size: 16px;
	line-height: 32px;
	
	padding: 0px 20px 0px 20px;
	height: auto;
	
}

.services-needs p{
	font-family: title;
	font-size: 16px;
	text-align: left;
	
}


}

.requirements p{
	margin-left: 0px;
	text-align: justify;

}

.sub-requirements p{
	margin-left: 20px;
	text-align: justify;
}

.about-us-button{
	padding: 10px 35px;
	font-size: 17px;
}

.nav-title{
	font-size: 30px;
}

.nav-logo{
	width: 60px;

}


/*------------------------------------------*/
footer{
	background-color: #004f59;
	font-family: title;
	color: white;
	box-shadow: 0px -8px 8.0px hsl(0deg 0% 0% / 0.14);
	overflow: hidden;
	width: auto;
	width: 100%;

	display: felx;
	align-items: flex-start;
	padding-top: 15px;

}

.footer-top-container{
	width: 86%;
	margin: 0 auto;
	
	display: flex;
	flex-wrap: wrap;
	
	padding-top: 2%;
	padding-bottom: 2%;
	column-gap: 50px;
	row-gap: 50px;

	justify-content: space-between;


}

.footer-top-items{
	display: flex;
	flex-wrap: wrap;
	width: auto;
	column-gap: 50px;
	row-gap: 25px;

}






.footer-top-container p{
	font-family: title;
	font-size: 16px;
	text-align: justify;
	width: auto;
	line-height: auto;
	
}


.flex-1{
	max-width: 100%;
	flex: 1  1 300px;

	
	
}

.flex-2{
	max-width: 100%;
	flex: 1 1 auto;


}

.footer-icons{
	position: relative;
	top: 10px;
	width: 25px;
	margin-right: 10px;
	
}

.footer-icons2{
	position: relative;
	top: 10px;
	width: 18px;
	margin-right: 10px;
	
}


.footer-bot-container{
	width: 86%;
	margin: 2% 7%;
	display: flex;
	justify-content: space-between;
	column-gap: 20px;
	
}




.copyright{
	position: relative;
	width: auto;
	height: auto;
	margin: auto 0px;
	font-family: title;
	
}

.social-media-container{
	position: relative;
	width: auto;
	height: 34px;
	display: flex;
	column-gap: 10px;
	margin: auto 0px;

}

.social-media{
	position: relative;
	width: 30px;
	height: 30px;
	transition: transform 250ms;
	margin: auto 0px;

}

.social-media:hover{
	transform: translateY(-5px);
	cursor: pointer;
	
}




.footer-menu{
	position: relative;
	top: 10px;
	width: 100%;
	height: auto;

	display: flex;
	
	z-index: 2;
	
	overflow: visible;
	
}

.footer-menu ol{
	position: relative;
	height: auto;
	width: auto;

	display: flex;
	flex-wrap: nowrap;
	flex-flow: column;
	
	z-index: 2;

	white-space: nowrap;

	list-style-type: none;
	
	
	margin-top: 35px;
}

.footer-menu ol li{
	position: relative;
	top: 0px;

	padding-top: 8px;

	list-style-type: none;
	
	text-align: left;
	
	margin: 0px;

	font-family: title;
	color: white;
	font-size: 18px;
	
	
}



.nav2 a:hover{
	
  border-bottom: 2px solid white;
}

.footer-menu a{
	text-decoration: none;
	color: white;
  transition: all 0.3s ease-in-out;
  border-bottom: 2px solid transparent;

}

.footer-menu ol li a:hover{
	opacity: 0.6;
	border-bottom: 2px solid white;
}


.aviso-privacidad{
	text-decoration: none;
	color: white;
  transition: all 0.3s ease-in-out;
  text-align: center;
}

.aviso-privacidad:hover{
	opacity: 0.6;
}
/*------------------------------------------*/

/* Slideshow container */
.slideshow-container{
  max-width: 100%;
  position: relative;
  margin: 0px;
  background-color: black;
  height: max-content;

}

/* Fading animation */
.fade{
	display: none;
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade{
  from {opacity: .4}
  to {opacity: 1}
}

/*---------------------------------------*/

/*.activelink::before{
	content: '';
	position: absolute;
	left: 0;
	top: 38px;
	width: 100%;
	height: 2px;
	background-color: white;
	filter: drop-shadow(2.0px 3.0px 8.0px black);


}*/

/*****************************************/

.list-services:hover{
	background-color: none;
	cursor: pointer;
	color: #aeb2ba;
}

/*****************************************/
.container-preview{
	display: flex;
	width: 80%;
	height: auto;
	column-gap: 20px;
	row-gap: 20px;
	margin: 0px auto;
	flex-wrap: wrap;
	margin-bottom: 50px;
	justify-content: center;
	overflow: hidden;

}

.card {
	position: relative;
	flex: 1 1 100%;
	max-width: 500px;
	height: 300px;
	background-color: #000;
	overflow: hidden;
	transition: all 0.4;
		
}

.card__image {
	height: 100%;
	width: 100%;
	object-fit: cover;
	scale: 1.15;
	transition: all 0.4 ;
	opacity: 0.8;

}

.card:hover .card__image {
	opacity: 0.5;
	scale: 1;
	filter: blur(5px) grayscale(0%);

}

.card:hover .card__title {
	transform: translateY( -33px);

}

.card__body {
	position: absolute;
	inset: 0;
	padding: 50px;
	color: #fff;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	row-gap: 15px;
	justify-content: center;

}

.card__body::before {
	content: '';
	position: absolute;
	inset: 20px;
	border: 2px solid #fff;
	opacity: 0;
	scale: 1.25;
	transition: opacity 0.25s, scale 0.25s;

}

.card:hover .card__body::before {
	opacity: 1;
	scale: 1;

}

.card__title {
	position: relative;
	font-family: title;
	font-size: 35px;
	top: 33px;

	letter-spacing: 1px;
	text-transform: uppercase;
	text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
	transition:  0.5s ;
	
}
.card__description {
	font-size: 16px;
	opacity: 0;
	translate: -25px;
	transition: opacity 0.25s, translate 0.25s;

}
.card:hover .card__description {
	opacity: 1;
	translate: 0;
}

/*****************************************/


.services{
	width: 80%;
  margin-left: 10%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
  gap: 20px;
  justify-content: center;
}

.faq_container{
	flex: 1 0 550px;
	height: max-content;
	

}

.container {
	flex: 1 0 auto;
	position: relative;
	width: 100%;
	
	padding: 10px 20px;
	
	background-color: #fafafa;
	font-family: title;
}
.faq__header-title {
	font-size: clamp(26px, 5vw, 40px);
	color: black;
	position: relative;
	top: -10px;
}
.faq__panel {
	padding: 7px 21px;
	margin-bottom: 24px;
	border: 1px solid darkgray;
	border-radius: 8px;
}
.faq__label {
	padding-block: 7px;
	color: black;
	cursor: pointer;
}
.faq__label:hover {
	color: #3b71fe;
}
.faq__panel-answer {
	color: black;
	padding-top: 5px;
	padding-bottom: 7px;
}

.faq_hr{
	width: 100%;
	padding: 0px;
	margin-bottom: 25px;
	height: 1px;
}

.center-button{
	width: 100%;
	
}


.about-us-button2 a{
	text-decoration: none;
	color: white;

}

.about-us-button2:hover{
	background: none;
	color: #005059;
	border: 1px solid #005059;
}
/*****************************************/

@media only screen and (min-width: 1081px){
	.menu{
		display: none ;
	}
}

@media only screen and (max-width: 1080px){
	.nav2 ol li{
		top: -1000px;
	}
}

/*****************************************/


@media only screen and (min-width: 868px) and (max-width: 1154px){
	.cafes{
		display: none;
	}
	
}
@media only screen and (min-width: 200px) and (max-width: 376px){
	.members_img{
		object-position: -25px 0;

	}

	.section-img{
		object-position: 50% 0;
	}

	.header-title{
		font-size: 28px;
	}
	.nav-title{
		font-size: 21px;
	}

	.nav-logo{
		width: 43px;
	}

	:root {
  	--hamburger-margin: 23px;
  	--bar-width: 27px;
  	--bar-height: 2px;
	}

	.nav{
		top: 15px;
		margin-left: 15px;
	}

	.header-title-small{
		top: 0;
		padding-top: 25px;
		padding-bottom: 20px;
	}

	.header-title-height{
		margin-top: calc(50vh - 110px);
	}
	.copyright{
		font-size: 12px;
	}
	.footer-menu ol li{
	
		font-size: 15px;
	}
	
	.footer-top-container p, div{
		font-size: 15px;
	}
	.footer-top-container b{
		font-size: 25px;
	}

	.aviso-privacidad{
		font-size: 12px;
	}
	.section_title{
		font-size: 25px;
	
	}

	.section_text{
		font-size: 16px;
	}

	.section_text2{
		font-size: 16px;
	}

	.grid-left{
		width: 10vw;
		
	}

	.grid-center{
		width: 60vw;
		
	}

	.grid-right{
		width: 10vw;
		
	}
	.social-media{
		width: 19px;
		height: 19px;

	}
	
	.card{
		
		height: 200px;
	}


	
	.card__title{
		font-size: 25px;
	}

	.services-needs{
		flex: 1 0 100%;
		font-size: 1px;
	}
	.services-needs p{
		font-size: 18px;
	}
	.container-list-services{
		flex: 1 0 100%;

	}
	.section_title{
		margin-bottom: 0px;
		

	}

	.title-grid{

		margin-bottom: 0px;
		padding-bottom: 0px;

	}

	.special-services-container{
		padding-top: 0px;

	}
	.container-list-services ul li{
		font-size: 19px;
	}

	.section-img2{
		width: 100%;
	}
	.faq_container{
		flex: 1 0 100%;
		height: max-content;
	
	}
	.notario_card_text{
		flex: 1 0 100%;

		
	}
	

}


@media only screen and (min-width: 376px) and (max-width: 490px ){

	.section-img{
		object-position: 50% 0;
	}

	.header-title{
		font-size: 28px;
	}
	.nav-title{
		font-size: 21px;
	}

	.nav-logo{
		width: 43px;
	}

	:root {
  	--hamburger-margin: 23px;
  	--bar-width: 27px;
  	--bar-height: 2px;
	}

	.nav{
		top: 15px;
		margin-left: 15px;
	}

	.header-title-small{
		top: 0;
		padding-top: 25px;
		padding-bottom: 20px;
	}

	.header-title-height{
		margin-top: calc(50vh - 110px);
	}
	.copyright{
		font-size: 12px;
	}
	.footer-menu ol li{
	
		font-size: 15px;
	}
	
	.footer-top-container p, div{
		font-size: 15px;
	}
	.footer-top-container b{
		font-size: 25px;
	}

	.aviso-privacidad{
		font-size: 12px;
	}
	.section_title{
		font-size: 25px;
	
	}

	.section_text{
		font-size: 16px;
	}

	.section_text2{
		font-size: 16px;
	}

	.grid-left{
		width: 10vw;
		
	}

	.grid-center{
		width: 60vw;
		
	}

	.grid-right{
		width: 10vw;
		
	}
	.social-media{
		width: 19px;
		height: 19px;

	}
	
	.card{
		
		height: 200px;
	}

	.card__title{
		font-size: 25px;
	}

	.services-needs{
		flex: 1 0 100%;
		font-size: 1px;
	}

	.services-needs p{
		font-size: 18px;
	}

	.container-list-services{
		flex: 1 0 100%;

	}

	.section_title{
		margin-bottom: 0px;
		

	}

	.title-grid{

		margin-bottom: 0px;
		padding-bottom: 0px;

	}

	.special-services-container{
		padding-top: 0px;

	}
	.container-list-services ul li{
		font-size: 19px;
	}

	.section-img2{
		width: 100%;
	}
	.faq_container{
		flex: 1 0 100%;
		height: max-content;
	
	}
	.notario_card_text{
		flex: 1 0 100%;
		
	}
	

}

@media only screen and (min-width: 490px) and (max-width: 529px){
	.header-title{
		font-size: 30px;
	}
	.nav-title{
		font-size: 25px;

	}

	.nav-logo{
		width: 50px;
	}

	:root {
  	--hamburger-margin: 39px;
	}

	.header-title-small{
		top: 0;
		padding-top: 42px;
		padding-bottom: 20px;
	}

	.header-title-height{
		margin-top: calc(50vh - 86px);
	}

	.section_title{
		font-size: 25px;
	
	}
	.section_text{
		font-size: 18px;
	}
	.section_text2{
		font-size: 18px;
	}
	.grid-left{
		width: 10vw;
		
	}

	.grid-center{
		width: 60vw;
		
	}

	.grid-right{
		width: 10vw;
		
	}

	.social-media{
		width: 23px;
		height: 23px;


	}

	.card__title{
		font-size: 25px;
	}
	.card__description{
		font-size: 18px;
	}
	.services-needs{
		flex: 1 0 100%;
	}
	.container-list-services{
		flex: 1 0 100%;

	}
	.container-list-services ul li{
		font-size: 19px;
	}
	.section-img2{
		width: 100%;
	}
	.faq_container{
		flex: 1 0 100%;
		height: max-content;
	
	}
	.notario_card_text{
		flex: 1 0 100%;
		
	}
	
}

@media only screen and (min-width: 530px) and (max-width: 649px){
	.header-title{
		font-size: 40px;
	}

	.header-title-small{
		top: 0;
		padding-top: 42px;
		padding-bottom: 20px;
	}

	.header-title-height{
		margin-top: calc(50vh - 86px);
	}

	.section_title{
		font-size: 35px;
	
	}

	.section_text{
		font-size: 19px;
	}
	.section_text2{
		font-size: 19px;
	}
	.grid-left{
		width: 10vw;
		
	}

	.grid-center{
		width: 60vw;
		
	}

	.grid-right{
		width: 10vw;
		
	}

	.social-media{
		width: 23px;
		height: 23px;


	}

	.card__title{
		font-size: 30px;
	}
	.card__description{
		font-size: 18px;
	}
	
	.services-needs{
		flex: 1 0 100%;
	}
	.container-list-services{
		flex: 1 0 100%;

	}

	.container-list-services ul li{
		font-size: 18px;
	}
	.section-img2{
		width: 100%;
	}
	.faq_container{
		flex: 1 0 100%;
		height: max-content;
	
	}
	.notario_card_text{
		flex: 1 0 auto;
		max-width: 100%;
		
	}

	
}

@media only screen and (min-width: 650px) and (max-width: 768px){
	.header-title{
		font-size: 50px;
	}
	.about-us-button{
		padding: 13px 38px;
		font-size: 18px;
	}

	.header-title-small{
		top: 0;
		padding-top: 53px;
		padding-bottom: 40px;
	}

	.header-title-height{
		margin-top: calc(50vh - 168px);
	}
	.section_title{
		font-size: 40px;
	
	}
	.grid-left{
		width: 10vw;
		
	}

	.grid-center{
		width: 60vw;
		
	}

	.grid-right{
		width: 10vw;
		
	}

	.card{
		
		height: 200px;
	}

	.card__title{
		font-size: 30px;
	}
	.card__description{
		font-size: 19px;
	}

	.container-list-services{
		flex: 1 0 100%;

	}

	.services-needs{
		flex: 1 0 100%;
	}

	

	.container-list-services ul li{
		font-size: 20px;
	}

	.container-list-services ol li{
		font-size: 18px;
	}

	.services-needs p{
		font-size: 18px;
	}

	
	.section-img2{
		width: 100%;
	}
	.faq_container{
		flex: 1 0 100%;
		height: max-content;
	
	}

	.notario_card_text{
		flex: 1 0 auto;
		max-width: 100%;
		
	}
	
	

	
}

@media only screen and (min-width: 769px) and (max-width: 1080px){
	.header-title{
		font-size: 60px;
	}
	.about-us-button{
		padding: 13px 38px;
		font-size: 18px;
	}
	.header-title-small{
		top: 0;
		padding-top: 60px;
		padding-bottom: 50px;
	}
	.header-title-height{
		margin-top: calc(50vh - 168px);
	}

	.section_title{
		font-size: 45px;
	
	}
	.grid-left{
		width: 10vw;
		
	}

	.grid-center{
		width: 60vw;
		
	}

	.grid-right{
		width: 10vw;
		
	}
	.card{
		
		height: 250px;
	}

	.card__title{
		font-size: 30px;
	}
	.card__description{
		font-size: 19px;
	}

	.flex-1 p{
		font-size: 20px;
	}
	
	.container-list-services ul li{
		font-size: 20px;
	}

	.container-list-services ol li{
		font-size: 18px;
	}

	.services-needs p{
		font-size: 18px;
	}

	

	.faq_container{
		flex: 1 0 100%;
		height: max-content;
	
	}
	.notario_card_text{
		flex: 1 0 auto;
		max-width: 80%;
		
	}
	
	
}

@media only screen and (min-width: 1081px) and (max-width: 1440px){
	.header-title{
		font-size: 80px;
	}
	.about-us-button{
		padding: 15px 40px;
		font-size: 20px;
	}

	.header-title-small{
		top: 0;
		padding-top: 68px;
		padding-bottom: 50px;
	}
	.header-title-height{
		margin-top: calc(50vh - 168px);
	}
	.grid-left{
		width: 18vw;
		
	}

	.grid-center{
		width: 44vw;
		
	}

	.grid-right{
		width: 18vw;
		
	}

	.card{
		height: 200px;
		width: 320px;
	}

	.card__title{
		font-size: 30px;
	}
	.card__description{
		font-size: 19px;
	}
	.flex-1 p{
		position: relative;
		top: -10px;
		font-size: 20px;

	}
	.container-list-services ul li{
		font-size: 18px;
	}

	.container-list-services ol li{
		font-size: 16px;
	}

	.services-needs p{
		font-size: 20px;
	}

	

	.section_text2{
		position: relative;

		width: 100%;
		
		
	}


	

}

	@media only screen and (min-width: 1441px) and (max-width: 1623px){
	.header-title{
		font-size: 80px;
	}
	.about-us-button{
		padding: 15px 40px;
		font-size: 20px;
	}

	.header-title-small{
		top: 0;
		padding-top: 68px;
		padding-bottom: 50px;
	}
	.header-title-height{
		margin-top: calc(50vh - 168px);
	}
	.grid-left{
		width: 18vw;
		
	}

	.grid-center{
		width: 44vw;
		
	}

	.grid-right{
		width: 18vw;
		
	}

	.card{
		width:  100%;
		height: 280px;
		
		
	}

	.card__description{
		font-size: 20px;
	}
	.flex-1 p{
		position: relative;
		top: -8px;
		font-size: 20px;

	}
	.container-list-services ul li{
		font-size: 18px;
	}

	.container-list-services ol li{
		font-size: 16px;
	}

	.services-needs p{
		font-size: 20px;
	}

	
	
}

	@media only screen and (min-width: 1624px){
	.header-title{
		font-size: 80px;
	}
	.about-us-button{
		padding: 15px 40px;
		font-size: 20px;
	}

	.header-title-small{
		top: 0;
		padding-top: 68px;
		padding-bottom: 50px;
	}
	.header-title-height{
		margin-top: calc(50vh - 168px);
	}
	.grid-left{
		width: 18vw;
		
	}

	.grid-center{
		width: 44vw;
		
	}

	.grid-right{
		width: 18vw;
		
	}

	.card{
		width:  100%;
		height: 280px;
		
		
	}

	.card__description{
		font-size: 20px;
	}
	.flex-1 p{
		position: relative;
		top: -5px;
		font-size: 20px;

	}

	.container-list-services ul li{
		font-size: 18px;
	}

	.container-list-services ol li{
		font-size: 16px;
	}

	.services-needs p{
		font-size: 20px;
	}

	
	
}




