/* Global styles */
body {
  font-family: "Lucida Sans", Arial, Helvetica, sans-serif;
  padding: 20px;
  background: #f1f1f1;
}

/* Header styles */
header {
  text-align: center;
  padding: 10px;
  font-size: 35px;
  color: black;
  text-shadow: 1px 1px #006847;
  background: linear-gradient(to right, #006847, #FFFFFF, #CE1126);
}

/* Navigation styles */
.navbar {
  overflow: hidden;
  text-align: center;
  background-color: #006847;
  width: auto;
  animation: myanimation 10s ease-in-out 3s alternate infinite;
}

@keyframes myanimation {
  20% {
    background: #006847;
  }
  50% {
    background: #FFFFFF;
  }
  100% {
    background: #CE1126;
  }
}

.navbar a,
.dropdown .dropbtn {
  font-size: 30px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-shadow: 1px 1px 2px #000000;
}

.navbar a:hover,
.dropdown:hover .dropbtn {
  animation: myanimation 10s ease-in-out 3s alternate infinite;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: gray;
  color: black;
  border-radius: 5px;
  text-decoration: none;
  box-shadow: 0px 2px 0px #b3b3b3, 0px -2px 0px #b3b3b3, 2px 0px 0px #b3b3b3, -2px 0px 0px #b3b3b3;
}

.container-button {
  display: flex;
  justify-content: center;
  width: 100%;
}

.collapsible {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: center; /* Center align the button text */
  border: none;
  outline: none;
  transition: 0.4s;
}


.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.new-collapsible {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  margin: 0 auto;
  max-width: 700px;
  text-align: center;
  border: none;
  outline: none;
  transition: 0.4s;
}

.new-content {
  display: none;
  background-color: #fff;
  width: calc(100% - 36px); /* Subtract double the padding from the width */
  margin: 0 auto;
  padding: 18px;
  max-width: 700px; /* Set the maximum width if needed */
}

.new-collapsible.active + .new-content {
  display: block;
}
.indented-list {
  padding-left: 50px; /* Adjust the desired indentation value */
}

p.center {
  text-align: center;
}



/* Typewriter animation */
.typewriter {
  font-family: monospace;
  overflow: hidden;
  font-size: 25px;
  white-space: nowrap;
  margin: 0 auto;
  letter-spacing: 0.05em;
  animation: typing 2s steps(30, end), blinking-cursor 0.5s step-end infinite;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 90%;
  }
}

@keyframes blinking-cursor {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: black;
  }
}

/* Content sections */
section {

  margin: 30px;
  padding: 30px;
  text-align: left;
  font-size: 25px;
  color: black;
  background: linear-gradient(to right, #006847, #FFFFFF, #CE1126);
  
}


section-g
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.grid-item {
  background-color: #f2f2f2;
  padding: 20px;
  text-align: center;
}


section.column-layout {
  margin: 30px;
  padding: 30px;
  font-size: 25px;
  color: black;
  background: linear-gradient(to right, #006847, #FFFFFF, #CE1126);
  display: flex;
  flex-wrap: wrap;
}

.column-1,
.column-2 {
  flex-basis: 100%;
  padding: 10px;
}

@media (min-width: 768px) {
  /* Apply styles only for screens wider than 768px */
  .column-1 {
    flex-basis: 30%;
    background-color: #f1f1f1;
  }

  .column-2 {
    flex-basis: 70%;
    background-color: #dcdcdc;
  }
}

section.column-layout {
  margin: 30px;
  padding: 30px;
  font-size: 25px;
  color: black;
  background: linear-gradient(to right, #006847, #FFFFFF, #CE1126);
  display: flex;
}

.column-1,
.column-2 {
  flex-basis: 50%;
}

.collapsible {
  margin-bottom: 10px;
}

.collapsible h3 {
  cursor: pointer;
  padding: 10px;
  background-color: #f1f1f1;
  margin: 0;
}

.collapsible .content {
  display: none;
  padding: 10px;
  background-color: #dcdcdc;
}

.collapsible.active .content {
  display: block;
}



/* Grid layout */
/* Grid layout */
.grid-container {
  display: grid;
  grid-column-gap: 20px; /* Adjust the gap width as needed */
  grid-template-columns: auto auto auto;
  background-image: linear-gradient(to right, #006847, #FFFFFF, #CE1126);
  padding: 10px;
}

.grid-item {
  background-color: transparent; /* Set background color to transparent */
  padding: 20px;
  font-size: 30px;
  text-align: center;
  word-wrap: normal;
}

/* Add this media query to change the grid layout on small screens */
@media (max-width: 600px) {
  .grid-container {
    grid-template-columns: 1fr;
  }
}

/* Columns layout */
.col-container {
  text-align: left;
  display: table;
  width: 100%;
  background: linear-gradient(to right, #006847, #FFFFFF, #CE1126);
}

.col {
  display: table-cell;
  padding: 16px;
  width: 40%;
}

@media only screen and (max-width: 600px) {
  .col {
    display: block;
    width: 100%;
  }
}

/* Blog layout */
.leftcolumn,
.rightcolumn {
  float: left;
  width: 100%;
}

.rightcolumn {
  padding-left: 20px;
}

.card {
  background-color: white;
  padding: 20px;
  margin-top: 20px;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Footer */
footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 5px;
  text-align: center;
  color: black;
  background: linear-gradient(to right, #006847, #FFFFFF, #CE1126);
}

/* Animation styles */
.fade-in {
  opacity: 1;
  animation-name: fadeInOpacity;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-duration: 2s;
}

@keyframes fadeInOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.slidein {
  animation-duration: 3s;
  animation-name: slidein;
  animation-iteration-count: 1;
  animation-direction: normal;
}

@keyframes slidein {
  from {
    margin-left: 100%;
    width: 300%;
  }
  to {
    margin-left: 0%;
    width: 100%;
  }
}

/* Miscellaneous styles */
#chart_div,
#chart2_div,
.gchart {
  width: 400px;
  height: 120px;
  margin: 0 auto;
}

.graphicalInfo {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.columns {
  margin-left: auto;
  margin-right: auto;
}
.text-block {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: black;
  color: white;
  padding-left: 20px;
  padding-right: 20px;
}

.head {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 87%;
}

/* Responsive layout */
@media screen and (max-width: 800px) {
  .leftcolumn,
  .rightcolumn {
    width: 100%;
    padding: 0;
  }
}
.image-slider {
  display: flex;
  overflow: hidden;
  animation: slide 10s infinite linear;
}

@keyframes slide {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.image-slider img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

#exigencia-section .col-container {
  display: flex;
  flex-wrap: wrap;
}

#exigencia-section .col {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
}

@media screen and (min-width: 768px) {
  #exigencia-section .col {
    width: 50%;
    display: flex;
    flex-direction: column;
  }

  #exigencia-section .col .center {
    margin: 0 auto;
  }
}

@media screen and (max-width: 767px) {
  #exigencia-section .col {
    width: 100%;
    display: block; /* Add this line to override flex layout */
  }
}


.smaller-font {
    font-size: 14px; /* Adjust the font size as needed */
}

ul.indented-list {
  font-size: 14px;
}

ul.indented-list li {
  margin-bottom: 5px;
}

.form-container {
  max-width: 500px;
  margin: 0 auto;
}

.form-container h2 {
  text-align: center;
}

.form-container label {
  display: block;
  margin-bottom: 10px;
}

.form-container input,
.form-container textarea {
  width: 100%;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.form-container button.print-button {
  padding: 10px 20px;
  background-color: #4CAF50;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

@media print {
  .form-container button.print-button {
    display: none;
  }
}
/* Print-specific styles */
@media print {
  body * {
    visibility: hidden;
  }
  form,
  form * {
    visibility: visible;
  }
  form {
    left: 0;
    top: 0;
	    page-break-inside: avoid;
  }
  
  body {
    margin-top: 5px;
  }
  
  hr {
    margin-bottom: 5px;
  }
}

.container {
  background: #f2f2f2;
  padding: 20px;
}
.formulario button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #888888;
  color: #000000;
  border-radius: 10px;
  border: none;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s;
}

.formulario button:hover {

}

.formulario button:hover {
  background-color: #CCCCCC;
}

.formulario button:active {
  background-color: #555555;
  transform: translateY(1px);
}

.form-field input[type="text"],
.form-field textarea,
.form-field input[type="date"] {
  display: block;
  width: 300px;
  margin-bottom: 10px;
}


@media (max-width: 600px) {
  .container-button {
    flex-direction: column;
    align-items: center;
  }
}