@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*========== Colors ==========*/
/*========== Font and typography ==========*/
/*========== Font weight ==========*/
/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body,
input,
button {
  font-family: "Verdana", sans-serif;
  font-size: 0.938rem;
}

body {
  color: hsl(0, 0%, 0%);
  transition: background-color 0.4s;
  line-height: 20px;
}

input,
button {
  border: none;
  outline: none;
}

h1,
h2,
h3,
h4 {
  color: inherit;
  font-weight: 500;
}

ul {
  list-style: none;
}

a {
  text-decoration: none !important;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

p {
  line-height: 30px;
}

.card-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 0.8rem;
  row-gap: 10px;
  margin-bottom: 10rem;
}
.card-container .person-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background-image: linear-gradient(to bottom, rgb(220, 220, 220), rgba(220, 220, 220, 0.1));
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #ccc;
  border-radius: 15px;
  text-align: center;
  width: 90%;
  margin-bottom: 40px;
  margin-top: 150px;
  padding: 0.5rem;
  box-sizing: border-box;
  height: 290px;
}
.card-container .person-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 1em;
  object-fit: cover;
  margin-top: 10px;
}
.card-container .person-card h4 {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 0.5em;
}
.card-container .person-card p {
  font-size: 1.1em;
  color: rgb(161, 19, 103);
  line-height: 20px;
}
.card-container .person-card .top {
  margin-top: 5px;
}
.card-container .person-card .second-text {
  font-size: 12px;
  line-height: 15px;
  color: black;
}
.card-container .person-card a {
  margin-top: auto;
}
.card-container .person-card svg {
  font-size: 25px;
  margin-top: 10px;
}

.maps {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1em;
  row-gap: 2rem;
  color: rgb(161, 19, 103);
  margin-bottom: 10rem;
}
.maps .maps-item {
  width: 90%;
  margin: 0 auto;
  text-align: center;
}
.maps .maps-item h3 {
  font-weight: bold;
  font-size: 0.9rem;
}
.maps .maps-item iframe {
  width: 100%;
  margin-top: 10px;
  border-radius: 15px;
}

.contact-adentia {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 1.2rem;
  color: hsl(0, 0%, 0%); /* Un color gris oscuro para el texto */
  line-height: 1; /* Espaciado entre líneas */
  max-width: 600px; /* Para no tener líneas de texto demasiado largas */
  row-gap: 25px;
  margin: 0 auto;
  padding: 10px;
}
.contact-adentia h2 {
  text-align: center;
  color: rgb(161, 19, 103);
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
}
.contact-adentia .all-contacts p:first-child {
  margin-bottom: 25px;
}
.contact-adentia .all-contacts h4 {
  margin-bottom: 15px;
  font-weight: bold;
}
.contact-adentia .all-contacts span {
  font-weight: bold;
  font-size: 20px;
}
.contact-adentia .all-contacts a {
  color: rgb(161, 19, 103);
}

@media screen and (min-width: 850px) {
  .card-container {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 350px;
    row-gap: 0;
    column-gap: 2rem;
  }
  .card-container .person-card {
    max-width: 250px;
    height: 310px;
  }
  .card-container .person-card img {
    margin-top: 5px;
  }
  .card-container .person-card h4 {
    font-size: 1.3rem;
  }
  .card-container .person-card p {
    font-size: 1.2rem;
  }
  .maps {
    flex-direction: row;
    justify-content: center;
    row-gap: 0;
    column-gap: 2rem;
  }
  .maps .maps-item {
    max-width: 350px;
    width: 100%;
    margin: 0;
  }
}

/*# sourceMappingURL=contact.output.css.map */
