@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

* {
  box-sizing: border-box;
}

body {
  background-color: #e8e8e7;
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
}

.mycontent {
  max-width: 1200px;
  margin: auto;
  width: 95%;
}

header {
  background-color: white;
  margin-bottom: 50px;
  padding: 30px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}

.item {
  margin-bottom: 60px;
}
a {
  text-decoration: none;
}
header img {
  width: 150px;
}
.banner img {
  width: 100%;
}
.banner {
  background-color: #dc3545;
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.banner div {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
}

.banner h1 {
  font-size: 35px;
  font-weight: 600;
  color: white;
}

.banner h1 .secundary {
  font-size: 18px;
  font-weight: 400;
  margin-top: 20px;
}

.formulario {
  background-color: white;
  padding: 30px;
  border: solid 1px rgba(101, 101, 101, 0.262);
  margin-bottom: 50px;
}
.formulario h2 {
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 600;
}
.form-group {
  margin-bottom: 15px;
}
label {
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
}
select {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  font-size: 15px;
  outline: none;
  height: 55px;
}
.license-info {
  margin-top: 20px;
  padding: 15px;
  background-color: #f8f9fa;
  border-radius: 4px;
  display: none;
}

.button {
  display: flex;
  justify-content: right;
}

.button button {
  background-color: #dc3545;
  border: none;
  padding: 17px 60px;
  color: white;
  margin-top: 20px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}

footer {
  background-color: black !important;
  margin-top: 100px;
  color: white;
}

footer .mycontent {
  padding: 40px;
  font-size: 15px;
}

.links {
  margin-top: 40px;
}
.links h3 {
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 10px;
}
.links a {
  background-color: rgb(255, 255, 255);
  width: 100%;
  display: flex;
  padding: 20px;
  font-size: 17px;
  margin-bottom: 20px;
}
.item h2 {
  font-weight: 600;
  font-size: 23px;
  margin-bottom: 5px;
}

@media (max-width: 950px) {
  .banner {
    grid-template-columns: 1fr;
  }
  .banner div {
    order: 1;
    justify-content: left;
  }
  .banner h1 {
    font-size: 33px;
  }
}

@media (max-width: 800px) {
  .button button {
    width: 100%;
  }
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: white;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #dc3545;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.buttons {
}

.buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.buttons a {
  background-color: rgba(0, 0, 0, 0.384);
  padding: 20px;
  color: white;
  text-align: center;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 500;
}

.buttons .active {
  background-color: #dc3545;
  color: white;
}

.title-type {
  font-size: 20px;
}

.title-type {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
}

/*start styles*/
.accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.accordion__item {
  border: 1px solid #e5f3fa;
  overflow: hidden;
  background-color: white;
}

.accordion__header {
  padding: 20px 25px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
}

.accordion__header::after {
  content: "";
  background: url(https://www.svgrepo.com/show/357035/angle-down.svg) no-repeat
    center;
  width: 20px;
  height: 20px;
  transition: 0.4s;
  display: inline-block;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 1;
}

.accordion__header.active {
  background: white;
}

.accordion__header.active::after {
  transform: rotateX(180deg);
}
.accordion__item .accordion__content p {
  padding-bottom: 30px;
}
.accordion__item .accordion__content {
  padding: 0 25px;
  max-height: 0;
  transition: 0.5s;
  overflow: hidden;
}
