@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/* apply a natural box layout model to all elements, but allowing components to change */
html {
  box-sizing: border-box;
  font-family: "Raleway", sans-serif;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
body {
  margin: 0px;
  padding: 0px;
  background-color: black;
}

.arco {
  position: absolute;
  width: 80%;
  top: -10px;
  right: 0px;
  z-index: -1;
}
.arco svg {
  fill: #00cb4e;
}

.contenedor {
  max-width: 1000px;
  width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 40px;
  grid-gap: 50px;
}
/*cont-items*/
.contenedor .cont-items {
  text-align: center;
  color: white;
}
.contenedor .cont-items .titulo {
  font-size: 20px;
}
.contenedor .cont-items .href_sub_titulo {
  font-size: 15px;
  text-decoration: none;
  color: white;
  font-weight: bold;
}
.contenedor .cont-items .href_sub_titulo div {
  font-weight: 400;
  margin-top: 10px;
  margin-bottom: 20px;
}
.contenedor .cont-items .btn_descargas {
  display: grid;
  margin: auto;
  

}
.contenedor .cont-items .btn_descargas  img{
  height:80px;
}
.contenedor .cont-items .btn_descargas button {
  width: 100%;
  border-radius: 17px;
  border: solid 3px white;
  color: white;
  background-color: #00cb4e;
  padding-bottom: 8px;
  transition: 0.3s;
  padding-top: 8px;
  margin-top: 20px;
}

.contenedor .cont-items .btn_descargas .btn button:hover {
  background-color: #01953a;
  cursor: pointer;
}
.cont-credenciales {
  margin-top: 20px;
  font-weight: 600;
  padding: 10px;
  font-size: 15px;
}
.cont-credenciales .credenciales {
  margin-top: 10px;
}

.cont-list {
  margin-top: 25px;
  font-size: 13px;
}
.cont-list a {
  text-decoration: none;
  color: #00cb4e;
}
.cont-list a:hover {
  color: #0a9941;
}
/*END cont-items*/

.contenedor .cont-imagen {
  text-align: center;
}
.contenedor .cont-imagen img {
  width: 100%;
}

.contenedor .cont-imagen .titulo_imagen {
  font-size: 15px;
  font-weight: 200;
}
.contenedor .cont-imagen .titulo_imagen {
  font-size: 15px;
  font-weight: 200;
}
.contenedor .cont-imagen .credenciales_imagen {
  font-size: 14px;
  font-weight: 200;
  margin-bottom: 20px;
}

@media (max-width: 900px) {
  .contenedor {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 5px;
    grid-gap: 15px;
  }
  .contenedor .cont-imagen {
    color: white;
  }
}
