html {
	font-family: 'Raleway', sans-serif;
	width: 100%;
	height: 100%;
}

*, *:before, *:after {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

h1, h2, h3, h4 {
	color:#111827;
	margin-bottom:24px;
	font-weight: 800;
	letter-spacing: -0.025em;
}

h2 {
	color: #059669;
	font-size: 2.5rem !important;
	font-weight: 900;
	line-height: 1.1;
	letter-spacing: -0.05em;
	position: relative;
	display: inline-block;
	text-transform: uppercase;
}

h2::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -8px;
	width: 60px;
	height: 4px;
	background: #059669;
	border-radius: 2px;
}

p{line-height: 1.5;text-transform: initial;text-align: justify; margin-bottom: 20px;}

body {
	width: 100%;
	height: 100%;
	font-family: 'Raleway', sans-serif;
	background-color: rgb(255, 255, 255);
	-webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

a {
	font-weight: 600;
	text-decoration: none;
	color:#0D988C;
	transition: color 0.2s ease;
}

img {
	pointer-events: none;
  }

/* END GLOBAL */

/* ANIMATIONS */
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(-20px);}
  100% { opacity: 1; transform: translateY(0px);}
}
/* ANIMATIONS ENDS */



/* ADAPT */
/*
@media(min-width: 700px){
  .mobilenav{
    display: none !important;
		background-color: #ffffff !important;
  }
}

@media(max-width: 700px){
  .mobilenav{
    display: block;
		background-color: #ffffff !important;
  }
} 
*/

/* END ADAPT */



/* HERO */
#main-hero-bg{
	background-image: linear-gradient(180deg, rgba(0,0,0,.6) 0%, rgba(0,0,0,.3) 50%, rgba(0,0,0,.6) 100%), url("../img/h-header-b2g.jpg");
	background-size: cover;
	background-position: center;
	min-height: 450px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 40px 20px;
}

.hero-name {
	font-family: 'Raleway', sans-serif;
	font-weight: 800;
	color: #ffffff;
	font-size: clamp(2rem, 5vw, 4rem);
	line-height: 1.1;
	text-transform: uppercase;
	letter-spacing: -0.02em;
	text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.hero-title {
	font-family: 'Raleway', sans-serif;
	font-weight: 300;
	color: #e5e7eb;
	font-size: clamp(1rem, 2.5vw, 1.5rem);
	text-transform: uppercase;
	letter-spacing: 0.2em;
	margin-top: 10px;
	display: block;
	text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

@media(max-width: 768px){
	#main-hero-bg{
		min-height: 350px;
		padding: 60px 20px;
	}
	
	.hero-name {
		font-size: 2.5rem;
	}
	
	.hero-title {
		font-size: 1rem;
		letter-spacing: 0.15em;
	}
	
	h2 {
		font-size: 2rem !important;
	}
}

/* RESPONSIVE GRID ADJUSTMENTS */
@media(max-width: 640px){
	.grid-cols-2, .sm\:grid-cols-2 {
		grid-template-columns: 1fr !important;
	}
	
	.contact-info, .formwrapper {
		width: 100% !important;
		padding: 24px !important;
	}
	
	.max-w-6xl {
		padding-left: 16px;
		padding-right: 16px;
	}
}
/* END HERO */

/* ABOUT */
.about-header-img{
  	-webkit-clip-path: polygon(
  		0% 10%,
  		100% 0%,
  		100% 90%,
  		0% 100%
  	);
  	clip-path: polygon(
  		0% 10%,
  		100% 0%,
  		100% 90%,
  		0% 100%);
	background-image: url("../img/sections/001.jpg");
	-webkit-background-image: url("../img/sections/001.jpg");
	-ms-background-image: url("../img/sections/001.jpg");
	-moz-background-image: url("../img/sections/001.jpg");
	-o-background-image: url("../img/sections/001.jpg");
	background-position: top center;
 	background-repeat: no-repeat;
 	background-size: cover;
 	overflow: hidden;
  	height: 50vh;
  	margin-top: -50px;
 	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
 	-webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
 	-moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
 	-ms-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
  	-o-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
}

.info{padding: 15px 15px 25px 15px;}

.about-main-section{
	animation: fadeIn 1.5s;
	animation-delay: 200ms;
	margin: auto;
}

.about-info-section{padding: 20px 20px 20px 20px;}

.info-about {padding: 0px 20px 0px 20px;margin-top: 30px;}
/* END ABOUT */

/* GLOBAL IMG */
.section-img{width: 100%;}
/* END GLOBAL IMG */

/* SERVICIOS */
.inner-services {
	width: 100%;
}

.container-services{
	background: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%) !important;
  	-webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 95%, 0% 100%);
  	clip-path: polygon(0% 05%, 100% 0%, 100% 95%, 0% 100%);
  	padding: 80px 0px 80px 0px;
  	animation: fadeIn 1.5s;
	animation-delay: 300ms;
	margin: auto;
	text-align: center;
}

.service-item {
	background-color: #fafafa !important;
	min-height: 140px;
	width: 100%;
	max-width: 260px;
	border-radius: 10px;
	padding: 16px;
	transition: 250ms;
	box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
	border: solid #cccccc 0px;
	text-align: center;
	margin: 8px;
	vertical-align: middle;
	align-items: center;
	display: inline-flex;
	justify-content: center;
}

.service-item span {
	text-transform: capitalize;
	font-weight: 600;
	font-size: 14px;
	margin: 0 auto;
	display: flex;
	color: #303030 !important;
}

.service-item span a {
	text-decoration: none;
	color: #303030 !important;
	transition: 200ms;
	display: block;
}

.service-item span a:hover{
	text-decoration: none;
	color: #0D988C !important;
	transition: 200ms;
}

.service-item:hover{
	transform: translateY(-4px);
	box-shadow: 0px 10px 22px rgba(0, 0, 0, 0.28);
}
/* SERVICIOS */

/* CLIENTES */
.about-info-section-list{
	padding: 30px;
	margin-bottom: 20px;
	animation: fadeIn 1.5s;
	animation-delay: 200ms;
}


.table-clients {
	margin: auto;
	width: 100%;
	display: inline-flex;
}

.table-clients {
	width: 100%;
	padding: 10px;
}

.list-clients{
	width: 50%;
}

.list-clients ul {
	list-style-type: none;
}

.list-clients li {
	margin: 12px 0px 12px 25px;
	font-size: 15px;
	background-color: #f5f7f7 !important;
	border-radius: 9999px;
	padding: 8px 14px;
}

.clients-section{
	padding: 0px;
	width: 100%;
	margin-bottom: 20px;
	animation: fadeIn 1.5s;
	animation-delay: 200ms;
}

.clients-img{
  	-webkit-clip-path: polygon(
  		0% 10%,
  		100% 0%,
  		100% 100%,
  		0% 100%
  	);
  	clip-path: polygon(
  		0% 10%,
  		100% 0%,
  		100% 100%,
  		0% 100%);
	background-image: url("../img/sections/002.jpg");
	-webkit-background-image: url("../img/sections/002.jpg");
	-moz-background-image: url("../img/sections/002.jpg");
	-ms-background-image: url("../img/sections/002.jpg");
	-o-background-image: url("../img/sections/002.jpg");
	background-position: center center;
  	background-repeat: no-repeat;
 	background-size: cover;
 	overflow: hidden;
  	height: 50vh;
  	box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
  	-webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
  	-moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
  	-ms-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
  	-o-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
  	border: 0;
}
/* TERMINA CLIENTES */

/* CONTACT */
.formulario-main {
	width: 100%;
	background: #0D988C !important;
	border: 0;
	padding: 30px 15px 30px 15px;
	text-align: center;
	color: #fff;
}

.formulario-main h2{
	color: #fff !important;
}

.form-content {
	width: 100%;
}

.direct-container {
	width: 100%;
	display: flex; /*TEMPORAL FLEX*/
	background-color: #fff !important;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	padding: 20px 5px 20px 5px;
	text-align: center;
	margin-top: 5px;
}

.info-adress {
	color: #000 !important;
	width: 100%;
}

.tex-adds {
	font-size: 12px;
	font-weight: 600;
	text-transform: capitalize;
	display: flex;
	width: 100%;
}

.tex-adds p {
	text-indent: 0px;
	font-family: 'Roboto', sans-serif;
	margin: 0px;
}

.tex-adds a {
	text-decoration: none;
	color: #0D988C !important;
}

.iconito {
	color: #0D988C !important;
	width: 10%;
}

.info-adress td {
	vertical-align: top;
	padding-top: 5px;
	padding-bottom: 0px;
}
/* END CONTACT */

/* MINI-CARD */
.juridico-card {
	padding: 20px;
	background-color:#fafafa !important;
	border-radius: 10px;
	margin: auto;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	box-shadow: 0px 0px 4px rgba(50, 50, 50, .5);
	-webkit-box-shadow: 0px 0px 4px rgba(50, 50, 50, .5);
	-moz-box-shadow: 0px 0px 4px rgba(50, 50, 50, .5);
	-ms-box-shadow: 0px 0px 4px rgba(50, 50, 50, .5);
	-o-box-shadow: 0px 0px 4px rgba(50, 50, 50, .5);
	align-items: center;
	vertical-align: middle;
	display: display-flex;
}

.juridico-card h3 {
	color: #0D988C !important;
	margin-bottom: 10px;
}

.p-juri {
	margin-top: 3vh;
	text-align: left;
	font-size: 13px;
	text-indent: 0px;
}

.colegiado-img{
	filter: invert(1);
	-webkit-filter: invert(1);
	-moz-filter: invert(1);
	-o-filter: invert(1);
	-ms-filter: invert(1);
}

.whatsapp-button{
	position: fixed;
	width: 60px;
	height: 60px;
	right: 30px;
	bottom: 40px;
	background-color: #25D366 !important;
	border-radius: 50%;
	align-items: center;
	vertical-align: middle;
	display: flex; /*TEMPORAL FLEX*/
	margin: auto;
	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
	transition: 250ms;
}

.whatsapp-button:hover{
	position: fixed;
	width: 60px;
	height: 60px;
	right: 30px;
	bottom: 45px;
	background-color: #25D366 !important;
	border-radius: 50%;
	align-items: center;
	vertical-align: middle;
	display: flex;
	margin: auto;
	box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
	transition: 250ms;
}

.fa-whatsapp {
	display: block;
	margin: auto;
	color: #ffffff !important;
	font-size: 2em;
}


.hidden-head-wrap {
	top: 0;
  position:fixed;
  width: 100%;
  height: 70px;
  flex-wrap: wrap;
  margin: auto;
  padding: 10px;
  z-index: 1;
  transition: all .5s ease;
  vertical-align: middle;
  align-items: center;
  background-color: #ffffff !important;
  box-shadow: 0 1px 25px rgba(0,0,0, .1);
  -webkit-box-shadow: 0 1px 25px rgba(0,0,0, .1);
  -moz-box-shadow: 0 1px 25px rgba(0,0,0, .1);
  -ms-box-shadow: 0 1px 25px rgba(0,0,0, .1);
  -o-box-shadow: 0 1px 25px rgba(0,0,0, .1);
}

.hidden-head-wrap.hide {
	top: -71px;
}
