@font-face {
  font-family: 'Pragmatica';
  src: url('../resours/Pragmatica_Condensed-Medium.otf') format('truetype');
  font-style: normal;
  font-weight: normal;
}
* {
  margin: 0;
  padding: 0;
  font-family: 'Pragmatica';
}
html{
  scroll-behavior: smooth;
}
a{
  text-decoration:none;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #000000;
  padding: 10px ;
  font-weight: bold;
}
.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links {
  display: flex;
  gap: 1em;
}
.nav-links a {
  color: #000000;
}
.recursos {
  position: relative;
  display: inline-block;
}
.dropbtn{
  background: transparent;
  border: transparent;
  font-size: 100%;
  cursor: pointer;
  font-weight: bold;
}
.dropdown {
  background-color:  rgb(190, 167, 190);
  padding: 1em 0;
  position: absolute;
  display: none;
  border-radius: 8px;
  top: 35px;
  right: 0; /* Align the dropdown to the right */
  z-index: 1000;
}
.dropdown-item {
  display: block;
  padding: 0.5em 1em;
}

.dropdown-item:hover {
  background-color:  rgb(63, 42, 63);
  color: white;
}
.dropdown-separator {
  border-top: 2px solid #fff;
  margin: 2px 10px 3px;
}
.show-dropdown {
  display: block;
}
#imagen{
  margin: 0;
  background-image: linear-gradient(115deg,hsl(292deg 37% 60%) 46%,hsl(323deg 58% 66%) 69%,hsl(323deg 46% 79%) 100%);
  text-align: center;
  max-height: 300px;
  color: white;
  font-weight: bold;
}
.img_max{
  max-height: 250px;
}
#subtitulo{
  font-style: italic;
}
.descripcion_somos{
  padding: 1%;
  text-align: center;
}
.col3{
  display: grid; 
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0px;
  height: 100%;
  padding: 1% 0% 2%;
}
.col2{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 50px;
  grid-row-gap: 0px;
}
.nosotras{
  border-width: 2px;
  border-style: solid;
  border-color: black;
  border-radius: 20px;
}
#contacto{
  background: rgb(133, 103, 133);
  color:white;
  text-align: center;
}
.col3 a{
  color: white;
}
.col3 h4{
  font-weight: 100;
}
.img_contacto{
  max-height: 50px;
}

footer{
  background: rgb(212, 162, 212);
  text-align: center;
  color: #000000;
}
footer a{
  color: black;
}
.descripcion_todos{
  text-align: center;
  padding: 2px;
  font-weight: 100;
  background: rgb(236, 208, 236);
}
.main-nuevo{
  background: rgb(141, 49, 141);
  padding-bottom: 5%;
}
.formulario-seccion{
  display: flex;
  justify-content: center;
  padding-left: 10%;
  padding-right: 10%;
  padding-top: 2%;
  text-align: center;

}
.formulario{
  border: #000000 solid 2px;
  width: 100%;
  border-radius: 50px;
  padding-top: 2%;
  background-color: white;
}
.formulario-titulo{
  
  margin: 2%;
}
.formulario-subtitulo{
  font-size: 90%;
  font-style: italic;
}
.contenido-formulario{
  padding-left: 10%;
  padding-right: 10%;
}
input,textarea{
  margin: 0;
  width: 100%;
  min-height: 2em;
  border-radius: 10px;
  border: 1px solid rgb(0, 0, 0);
}
input[type="submit"] {
  display: block;
  width: 60%;
  margin: 1em auto;
  height: 2em;
  font-size: 1.1rem;
  background-color: #510d57;
  color:white;  
  min-width: 300px;
  border-radius: 20px;
  cursor: pointer;
}
.div-cat{
  margin-bottom: 4%;
}

input[type="checkbox"]  {
  width: auto;
  margin: 1px 10px;
  display: inline-block;
  position: relative;
  top:8px;
  left: 5px;
  cursor: pointer;
}
.cat-box{
  font-size: 80%;
}
.checkbox-categoria{
  border-bottom: rgb(0, 0, 0) solid 1.5px;
  padding: 1%;
}
label span{ 
  color: rgb(85, 85, 85);
  cursor: pointer;
}
label input:checked + span{ color: #000000; }

#cb_validation:empty{ display: none; }
#cb_validation{ background: pink; color: darkred; padding: 6px 10px; margin: 10px  0 0 0; display:block; }

.obligatorio{
  color: red;
  font-size: 150%;
}
.div-recursos{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 250px));
  justify-content: stretch;
}