p {
  margin: 0;
}
/*Fun begins*/
.tab_container-library {
  max-width: 1005px;
	/*width: 80%;*/
	margin: 0 auto;
	padding-top: 50px; /* 20px */
	position: relative;
}

/* .radio-library, .tab-content-library {
  clear: both;
  padding-top: 10px;
  display: none;
} */

.tab-library {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 700;
  float: left;
  width: 25%;
  /* padding: 1.5em; */
  padding-bottom: .5rem;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  border-bottom: 3px solid var(--color-blue-dark-opacity-2);
  
  filter: opacity(0.6);
}

/* container icons */
.container-icons-library {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.icon-background-white-library {
  background-color: var(--color-white-opacity);
  height: 40px;
  width: 40px;
  border-radius: 50%;
  padding: 15px;
  box-shadow: 0px 8px 6px 0px rgba(7,46,59,0.04);
  -webkit-box-shadow: 0px 8px 6px 0px rgba(7,46,59,0.04);
  -moz-box-shadow: 0px 8px 6px 0px rgba(7,46,59,0.04);
}
.icon-background-white-library img {
  height: 100%;
  width: 100%;
}
/* end container icons */

/* #tab5:checked ~ #content5,
#tab6:checked ~ #content6,
#tab7:checked ~ #content7,
#tab8:checked ~ #content8 {
  display: block;
  padding: 85px 0 100px 0; /* 50px 0 100px 0 */ /*
} */
#content7 {
  display: block;
  padding: 0 0 100px 0; /* 50px 0 100px 0 */
}
.big-card-container-library {
  display: flex;
  justify-content: center;
  padding-bottom: 23px;
}
.tab_container-library .tab-content-library h3  {
  max-width: 480px; /* 360px */
  margin: 0;
}

.tab_container-library [id^="tab"]:checked + label {
  border-bottom: 3px solid var(--color-blue-dark);
  filter: none;
}

.tab_container-library [id^="tab"]:checked + label > span {
  font-weight: 500;
  color: var(--color-blue-dark);
}

/* tab content */
.tertiary-title {
  color: var(--color-red-opacity);
}
.display-center {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 15px;
}

/* css big card */
.card {
  width: 100%;
  max-width: 315px; /* 480px */
  background-color: var(--color-white);
  /* box-shadow: 0px 0px 10px rgb(7 46 59 / 20%);
  -webkit-box-shadow: 0px 0px 10px rgb(7 46 59 / 20%);
  -moz-box-shadow: 0px 0px 10px rgb(7 46 59 / 20%); */
  box-shadow: 0px 0px 10px rgb(3 88 103 / 10%);
  -webkit-box-shadow: 0px 0px 10px 0 rgb(3 88 103 / 10%);
  -moz-box-shadow: 0px 0px 10px rgb(3 88 103 / 10%);
  border-radius: 10px;
  margin: 10px;
}
.container-img-library {
  width: 100%;
  height: 200px;
  /* position: relative; */
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.container-img-library img {
  max-width: 100%!important;
  min-height: 100%;
  object-fit: cover;
}
.card-body-library {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
  padding: 40px 35px;
}
.paragraph > div {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.subtitle-red {
  color: var(--color-red-opacity);
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
}
.cta-download {
  font-weight: 600;
  text-decoration: none;
  color: var(--color-red);
}
@media (max-width: 1300px) and (min-width: 990px) { /* max-width: 1237px min-width: 1139px */
  #tab5:checked~#content5,
  #tab6:checked~#content6,
  #tab7:checked~#content7,
  #tab8:checked~#content8 {
    padding: 50px 0 50px;
  }
}
@media only screen and (max-width: 900px) {
  .tab_container-library {
    width: 98%;
  }
}
@media (max-width: 990px) and (min-width: 767px) {
  .tab_container-library {
    max-width: 590px;
    padding-top: 40px;
  }
  .tab-library {
    padding-bottom: 1rem;
  }
  #tab5:checked~#content5,
  #tab6:checked~#content6,
  #tab7:checked~#content7,
  #tab8:checked~#content8 {
    padding: 50px 0;
  }
  .tab-library span:nth-child(3) {
    font-size: 16px;
  }
  .tab-library span:nth-child(2) {
    display: none;
  }
  .icon-background-white-library {
    height: 30px;
    width: 30px;
  }
  .card {
    max-width: 100%;
    margin: 20px 0 10px;
  }
  .container-img-library img {
    width: 100%;
  }
  .big-card-container-library {
    flex-direction: column;
  }
  .container-img-library {
    height: 200px;
    min-height: inherit;
  }
  .card-body-library {
    min-height: 170px;
  }
}
@media (max-width: 767px) {
  .tab_container-library {
    padding-top: 40px;
  }
  .tab-library {
    padding-bottom: 1rem;
  }
  .tab-library span:nth-child(2) {
    display: none;
  }
  #tab5:checked~#content5,
  #tab6:checked~#content6,
  #tab7:checked~#content7,
  #tab8:checked~#content8 {
    padding: 50px 0 50px;
  }
  .icon-background-white-library {
    height: 30px;
    width: 30px;
    box-sizing: initial!important;
  }
  .card {
    max-width: 100%;
    margin: 20px 0 10px;
  }
  .container-img-library img {
    width: 100%;
  }
  .big-card-container-library {
    flex-direction: column;
  }
  .container-img-library {
    height: 200px;
    min-height: inherit;
  }
  .card-body-library {
    min-height: 170px;
  }
}