.page-title {
  margin-bottom: calc(var(--half-block) * 2);
}

.bloque-projectes-title h2 {
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: var(--block);
  margin-top: calc(var(--half-block) * 3);
}
@media (max-width: 650px) {
  .bloque-projectes-title h2 {
    font-size: 12px;
  }
}

.bloque-title {
  display: flex;
  justify-content: space-between;
}
.bloque-title .title,
.bloque-title .name {
  font-size: 24px;
  margin: 0;
  font-weight: normal;
}
.bloque-title .left {
  width: 30%;
}
.bloque-title .content {
  width: 70%;
}
.bloque-title .content .title {
  margin-bottom: 64px;
}
.bloque-title .content .description {
  font-size: 18px;
  text-indent: 70px;
  max-width: 780px;
  margin-left: auto;
  line-height: 1.25em;
}
@media (max-width: 650px) {
  .bloque-title {
    flex-direction: column;
  }
  .bloque-title .title,
.bloque-title .name {
    font-size: 20px;
  }
  .bloque-title .left,
.bloque-title .content {
    width: 100%;
  }
  .bloque-title .content .description {
    font-size: 14px;
  }
}

.bloque-servicios {
  width: 100vw;
  margin-left: calc((100vw - 1372px) / -2);
}
.bloque-servicios a {
  text-decoration: none;
  font-style: inherit;
}
.bloque-servicios a:hover {
  text-decoration: none;
}
.bloque-servicios .icona {
  max-width: 24px;
}
.bloque-servicios .content {
  margin: auto;
  max-width: var(--width);
  padding: 32px;
}
.bloque-servicios .content > .title {
  max-width: 45ch;
  margin-top: 0;
  font-size: 18px;
}
.bloque-servicios .content > .description {
  max-width: 45ch;
}
.bloque-servicios .content > .description p {
  font-size: 18px;
}
.bloque-servicios .media {
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  font-size: 0;
}
.bloque-servicios .media img,
.bloque-servicios .media video {
  width: 100%;
  height: auto;
}
.bloque-servicios .bottom {
  display: flex;
  gap: 50px;
  margin-top: 64px;
}
.bloque-servicios .card-servicio {
  width: 33.333%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: black;
}
.bloque-servicios .card-servicio .icon svg {
  height: 22px;
}
.bloque-servicios .card-servicio .title {
  margin-top: 3px;
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 500;
}
.bloque-servicios .card-servicio .description {
  line-height: 1.3em;
  font-size: 14px;
}
.bloque-servicios .card-servicio .btn-plus {
  margin-top: auto;
  width: 30px;
  height: 30px;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  margin-left: -10px;
  border-radius: 50%;
  background-color: transparent;
  transition: 0.2s background-color;
}
.bloque-servicios .card-servicio .btn-plus svg {
  transition: 0.5s transform;
}
.bloque-servicios .card-servicio:hover .btn-plus svg {
  transform: rotate(90deg);
}
@media (max-width: 1440px) {
  .bloque-servicios {
    margin-left: calc(var(--block) * -1);
  }
}
@media (max-width: 650px) {
  .bloque-servicios .bottom {
    flex-direction: column;
    gap: calc(var(--block) * 3 - var(--half-block));
  }
  .bloque-servicios .media img,
.bloque-servicios .media video {
    object-fit: cover;
    height: 70vw;
    max-height: 350px;
  }
  .bloque-servicios .content > .title {
    font-size: 16px;
  }
  .bloque-servicios .content > .description p {
    font-size: 16px;
    line-height: 1.3em;
  }
  .bloque-servicios .card-servicio {
    width: 100%;
  }
  .bloque-servicios .card-servicio .title {
    font-size: 12px;
    margin-bottom: calc(var(--block) * 2);
    font-weight: 700;
  }
  .bloque-servicios .card-servicio .description {
    font-size: 12px;
  }
  .bloque-servicios .card-servicio .description p {
    margin-top: 0;
    margin-bottom: calc(var(--block) * 2);
  }
}

.bloque-pagination {
  border-top: 1px solid black;
  padding-top: 16px;
  margin-top: 32px;
  padding-left: calc(20% + 32px);
}
.bloque-pagination ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 16px;
}
.bloque-pagination a {
  color: rgba(0, 0, 0, 0.3);
  font-size: 14px;
  transition: 0.2s color;
}
.bloque-pagination a.active {
  color: black;
}
.bloque-pagination a:hover {
  color: black;
}
@media (max-width: 650px) {
  .bloque-pagination {
    padding-left: 0;
    margin-bottom: calc(var(--block) * 3);
  }
  .bloque-pagination a {
    font-size: 12px;
  }
}

.bloque-news {
  border-top: 1px solid black;
  display: flex;
  padding: var(--block) 0;
  gap: var(--block);
  color: black;
}
.bloque-news:last-child {
  border-bottom: 1px solid black;
}
.bloque-news .name,
.bloque-news .title {
  font-size: 14px;
  font-weight: normal;
  margin-top: 0;
}
.bloque-news .title {
  margin-bottom: calc(var(--half-block) * 3);
}
.bloque-news .description {
  font-size: 14px;
  line-height: 16px;
}
.bloque-news .description p:first-child {
  margin-top: 0;
}
.bloque-news .left {
  width: 20%;
  flex-shrink: 0;
}
.bloque-news .content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.bloque-news .btn-plus {
  margin-top: auto;
  width: 30px;
  height: 30px;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  margin-left: -10px;
  border-radius: 50%;
  background-color: transparent;
  transition: 0.2s background-color;
}
.bloque-news .btn-plus svg {
  transition: 0.5s transform;
}
.bloque-news:hover .btn-plus svg {
  transform: rotate(90deg);
}
.bloque-news .image {
  font-size: 0;
  width: 30%;
  flex-shrink: 0;
}
@media (max-width: 650px) {
  .bloque-news .left,
.bloque-news .image {
    display: none;
  }
  .bloque-news .image {
    text-align: right;
    width: 100%;
    margin-bottom: calc(var(--block) * 2);
  }
  .bloque-news .image img {
    width: 65%;
  }
  .bloque-news .name,
.bloque-news .description,
.bloque-news .title {
    font-size: 12px;
  }
}

.bloque-clients {
  border-top: 1px solid black;
  padding-top: 32px;
  padding-bottom: 32px;
  margin: 32px 0;
  /*
  .bottom {
    display: flex;
    gap: 32px;
    margin-top: 32px;
    flex-wrap: wrap;
  }
  .item {
    width: calc(8.333% - 32px);
    aspect-ratio: 1/1;
    flex-grow: 1;
    align-items: center;
    display: flex;
  }
  */
}
.bloque-clients .top .content {
  max-width: 780px;
  margin-left: auto;
  flex-grow: 1;
  font-size: 18px;
}
.bloque-clients .top .content .title {
  margin: 0 0 32px 0;
  font-size: 14px;
  font-weight: 400;
}
.bloque-clients .top .content p {
  margin: 0;
  text-indent: 70px;
}
.bloque-clients .bottom {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 32px;
  margin-top: 32px;
}
.bloque-clients .item {
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 650px) {
  .bloque-clients .top .content .title {
    font-size: 12px;
  }
  .bloque-clients .top .content p {
    font-size: 14px;
    line-height: 1.3;
  }
  .bloque-clients .bottom {
    display: grid;
    gap: 32px;
    margin-top: 32px;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  }
}

.bloque-text-image-right {
  display: flex;
  gap: 32px;
  padding-bottom: calc(var(--block) * 2);
}
.bloque-text-image-right .media video {
  width: 100%;
  height: auto;
}
@media (max-width: 650px) {
  .bloque-text-image-right .media {
    width: 100%;
  }
  .bloque-text-image-right .media video {
    width: 100%;
  }
}
.bloque-text-image-right .content {
  max-width: 780px;
  margin-left: auto;
  flex-grow: 1;
  font-size: 18px;
}
.bloque-text-image-right .content .title {
  margin: 0 0 32px 0;
  font-size: 14px;
  font-weight: 400;
}
.bloque-text-image-right .content p {
  margin: 0;
  text-indent: 70px;
}
@media (max-width: 650px) {
  .bloque-text-image-right {
    flex-direction: column;
  }
  .bloque-text-image-right .image {
    order: 2;
  }
  .bloque-text-image-right .content {
    order: 1;
  }
  .bloque-text-image-right .content .title {
    font-size: 12px;
  }
  .bloque-text-image-right .content p {
    font-size: 14px;
    line-height: 1.3;
  }
}

.bloque-contacto {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--block);
}
.bloque-contacto address {
  font-style: normal;
}
.bloque-contacto a {
  color: black;
}
.bloque-contacto .left,
.bloque-contacto .right {
  display: flex;
  justify-content: space-between;
  width: 25%;
}
.bloque-contacto .right {
  max-width: 780px;
  flex-grow: 1;
}
.bloque-contacto .social {
  display: flex;
  flex-direction: column;
}
.bloque-contacto .social:last-child {
  text-align: right;
}
@media (max-width: 650px) {
  .bloque-contacto {
    flex-direction: column;
    text-align: center;
    gap: 50px;
    font-size: 12px;
  }
  .bloque-contacto .left,
.bloque-contacto .right {
    gap: 30px;
    width: 100%;
  }
  .bloque-contacto .left address:first-child,
.bloque-contacto .left .social:first-child,
.bloque-contacto .right address:first-child,
.bloque-contacto .right .social:first-child {
    text-align: left;
  }
  .bloque-contacto .left address:last-child,
.bloque-contacto .left .social:last-child,
.bloque-contacto .right address:last-child,
.bloque-contacto .right .social:last-child {
    text-align: right;
  }
}

.bloque-recerca-head {
  width: 100vw;
  margin-left: calc((100vw - 1372px) / -2);
  margin-top: -168px;
  padding-top: 168px;
  min-height: 380px;
  /*margin-bottom: 16px;*/
  margin-bottom: calc(var(--block) * 2);
}
.bloque-recerca-head .content {
  margin: auto;
  max-width: var(--width);
  padding: 32px;
}
.bloque-recerca-head .bottom {
  margin-top: 250px;
  display: flex;
  align-content: center;
  justify-content: space-between;
}
.bloque-recerca-head .description {
  max-width: 450px;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.bloque-recerca-head h1 {
  font-size: 24px;
  margin: 0;
}
.bloque-recerca-head img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
@media (max-width: 1440px) {
  .bloque-recerca-head {
    margin-left: -34px;
  }
}
@media (max-width: 650px) {
  .bloque-recerca-head {
    border-bottom: 1px solid black;
  }
  .bloque-recerca-head .description {
    font-size: 18px;
  }
  .bloque-recerca-head .bottom {
    margin-top: 30px;
    flex-direction: column;
    gap: 20px;
  }
  .bloque-recerca-head .logo {
    text-align: right;
  }
  .bloque-recerca-head img {
    width: 65px;
    height: 65px;
  }
}

.bloque-recerca {
  /*min-height: 350px;*/
  min-height: calc(100dvh - 168px + var(--block));
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 32px;
}
.bloque-recerca p {
  margin: 0;
  max-width: 35ch;
  font-size: 24px;
}
.bloque-recerca .btn-arrow {
  border: 0;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s background;
  flex-shrink: 0;
}
@media (max-width: 650px) {
  .bloque-recerca p {
    font-size: 20px;
  }
  .bloque-recerca .btn-arrow {
    height: 40px;
    margin-bottom: -25px;
  }
  .bloque-recerca .btn-arrow svg {
    height: 24px;
  }
  .bloque-recerca .btn-arrow svg path {
    stroke-width: 2px;
  }
}

.bloque-color {
  width: 100vw;
  margin-left: calc((100vw - 1372px) / -2);
  display: block;
  color: black;
  border-top: 1px solid black;
}
.bloque-color:last-of-type {
  border-bottom: 1px solid black;
}
.bloque-color .content {
  margin: auto;
  max-width: var(--width);
  padding: 32px;
}
.bloque-color h3 {
  font-size: 24px;
  margin: 0;
  font-weight: 700;
}
.bloque-color .bottom {
  margin-top: 250px;
  display: flex;
  align-content: center;
  justify-content: space-between;
}
.bloque-color .description {
  max-width: 450px;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.bloque-color img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
@media (max-width: 1440px) {
  .bloque-color {
    margin-left: calc(var(--block) * -1);
  }
}
@media (max-width: 650px) {
  .bloque-color h3 {
    font-size: 18px;
  }
  .bloque-color .description {
    font-size: 18px;
  }
  .bloque-color .bottom {
    margin-top: 30px;
    flex-direction: column;
    gap: 20px;
  }
  .bloque-color .logo {
    text-align: right;
  }
  .bloque-color img {
    width: 65px;
    height: 65px;
  }
}

.bloque-text-image {
  /*padding-top: var(--half-block);
  padding-bottom: var(--half-block);*/
  display: flex;
  gap: var(--block);
  padding-bottom: calc(var(--block) * 2);
}
.bloque-text-image p {
  margin: 0;
  font-size: 18px;
  line-height: 1.3em;
}
.bloque-text-image .text,
.bloque-text-image .image {
  width: 50%;
  text-align: right;
}
.bloque-text-image .image img {
  max-height: 600px;
}
.bloque-text-image a.linkimg {
  width: 50%;
}
.bloque-text-image .text {
  flex: 1;
}
.bloque-text-image .media {
  flex: 1;
}
.bloque-text-image .media video {
  width: 100%;
  max-height: 600px;
}
@media (max-width: 650px) {
  .bloque-text-image .media {
    width: 100%;
  }
  .bloque-text-image .media video {
    width: 100%;
  }
}
@media (max-width: 650px) {
  .bloque-text-image {
    flex-direction: column;
    font-size: 14px;
  }
  .bloque-text-image p {
    margin: 0;
    font-size: 16px;
  }
  .bloque-text-image .text,
.bloque-text-image .image {
    width: 100%;
  }
}

.bloque-image-text {
  /*padding-top: var(--half-block);
  padding-bottom: var(--half-block);*/
  padding-bottom: calc(var(--block) * 2);
  display: flex;
  gap: var(--block);
}
.bloque-image-text p {
  margin: 0;
  font-size: 18px;
  line-height: 1.3em;
}
.bloque-image-text .text,
.bloque-image-text .image {
  width: 50%;
}
.bloque-image-text .image img {
  max-height: 600px;
}
.bloque-image-text a.linkimg {
  width: 50%;
}
.bloque-image-text .media video {
  width: 100%;
  height: auto;
}
@media (max-width: 650px) {
  .bloque-image-text .media {
    width: 100%;
  }
  .bloque-image-text .media video {
    width: 100%;
  }
}
@media (max-width: 650px) {
  .bloque-image-text {
    flex-direction: column;
    font-size: 14px;
  }
  .bloque-image-text p {
    margin: 0;
    font-size: 16px;
  }
  .bloque-image-text .text,
.bloque-image-text .image {
    width: 100%;
  }
}

.bloque-parallax {
  background: #eee;
  overflow: hidden;
  margin-bottom: var(--block);
  width: 100vw;
  margin-left: calc((100vw - 1372px) / -2);
}
.bloque-parallax .image {
  min-height: 500px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.bloque-parallax img {
  width: 100%;
}
@media (max-width: 1440px) {
  .bloque-parallax {
    margin-left: calc(var(--block) * -1);
  }
}
@media (max-width: 650px) {
  .bloque-parallax {
    height: 50vw;
  }
}

.bloque-text-right {
  /*margin: var(--block) 0px;*/
  padding-bottom: calc(var(--block) * 2);
  font-size: 18px;
  text-indent: 70px;
  line-height: 1.2;
}
.bloque-text-right .content {
  max-width: 780px;
  width: 70%;
  margin-left: auto;
}
.bloque-text-right p:first-child {
  margin-top: 0;
}
.bloque-text-right p:last-child {
  margin-bottom: 0;
}
@media (max-width: 650px) {
  .bloque-text-right {
    font-size: 14px;
  }
  .bloque-text-right .content {
    width: 100%;
  }
}

.bloque-project-info {
  margin: 0px 0px 64px 0px;
}
.bloque-project-info .content {
  width: calc(50% - 10px);
  margin-left: auto;
}
.bloque-project-info p {
  margin: 0;
}
@media (max-width: 650px) {
  .bloque-project-info {
    margin: 32px 0;
  }
  .bloque-project-info .content {
    margin-left: 0;
    width: 100%;
  }
  .bloque-project-info p {
    font-size: 12px;
  }
}

.bloque-project-info .info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.bloque-project-info .info-item {
  display: contents; /* esto alinea cada meta y valor como dos columnas */
}

.bloque-project-info .valor {
  text-align: left;
}

.bloque-two-images {
  /*padding-top: var(--block);
  padding-bottom: var(--block);*/
  padding-bottom: calc(var(--block) * 2);
  display: flex;
  gap: var(--block);
  /* article link */
}
.bloque-two-images > div,
.bloque-two-images > a {
  width: 50%;
}
.bloque-two-images .media video {
  width: 100%;
  max-height: 600px;
}
@media (max-width: 650px) {
  .bloque-two-images .media {
    width: 100%;
  }
  .bloque-two-images .media video {
    width: 100%;
  }
}
.bloque-two-images .image-1,
.bloque-two-images .image-2 {
  display: flex;
}
.bloque-two-images .image-2 {
  justify-content: end;
}
.bloque-two-images a .image:before,
.bloque-two-images a .media:before {
  position: absolute;
  content: "";
  background: rgba(193, 97, 54, 0.4);
  inset: 0;
  z-index: 10;
  opacity: 0.2;
  transition: 0.3s opacity;
}
.bloque-two-images .image,
.bloque-two-images .media {
  /*width: 100%;*/
  width: auto;
  font-size: 0;
  position: relative;
}
.bloque-two-images .image img,
.bloque-two-images .media img {
  max-height: 600px;
}
.bloque-two-images .image-title {
  color: black;
  font-size: 14px;
  margin-top: 10px;
  translate: 0px -10px;
  opacity: 0;
  transition: 0.2s translate, 0.2s opacity;
}
.bloque-two-images .image-title-dr {
  justify-content: flex-end;
}
.bloque-two-images a:hover .image::before,
.bloque-two-images a:hover .media::before {
  opacity: 1;
}
.bloque-two-images a:hover .image-title {
  translate: 0px 0;
  opacity: 1;
}
@media (max-width: 650px) {
  .bloque-two-images {
    gap: calc(var(--block) * 2);
    flex-direction: column;
  }
  .bloque-two-images .image-title {
    font-size: 12px;
    translate: 0px 0;
    opacity: 1;
  }
  .bloque-two-images > div,
.bloque-two-images > a {
    width: 100%;
  }
}

.bloque-full-image {
  /*padding-top: var(--block);
  padding-bottom: var(--block);*/
  padding-bottom: calc(var(--block) * 2);
  /* article link */
}
.bloque-full-image img {
  width: 100%;
}
.bloque-full-image .image {
  font-size: 0;
  position: relative;
  text-align: center;
}
.bloque-full-image .image:before {
  position: absolute;
  content: "";
  background: rgba(193, 97, 54, 0.4);
  inset: 0;
  z-index: 10;
  opacity: 0;
  transition: 0.3s opacity;
}
.bloque-full-image .image-title {
  color: black;
  font-size: 14px;
  margin-top: 10px;
  translate: 0px -10px;
  opacity: 0;
  transition: 0.2s translate, 0.2s opacity;
}
.bloque-full-image a:hover .image::before {
  opacity: 1;
}
.bloque-full-image a:hover .image-title {
  translate: 0px 0;
  opacity: 1;
}
@media (max-width: 650px) {
  .bloque-full-image .image-title {
    font-size: 12px;
  }
}

.bloque-center-image {
  padding-top: 0px;
  padding-bottom: calc(var(--block) * 2);
  text-align: center;
  /* article link */
}
.bloque-center-image .content {
  display: flex;
  justify-content: center;
}
.bloque-center-image .content .media video {
  /* width: 50%; */
  height: auto;
}
@media (max-width: 650px) {
  .bloque-center-image .content .media video {
    width: 100%;
  }
}
.bloque-center-image .image,
.bloque-center-image .media {
  display: flex;
  flex-direction: column;
  font-size: 0;
  position: relative;
}
.bloque-center-image .image:before,
.bloque-center-image .media:before {
  position: absolute;
  content: "";
  background: rgba(193, 97, 54, 0.4);
  inset: 0;
  z-index: 10;
  opacity: 0;
  transition: 0.3s opacity;
}
.bloque-center-image .image img,
.bloque-center-image .media img {
  max-height: 600px;
}
.bloque-center-image .image-title {
  color: black;
  font-size: 14px;
  margin-top: 10px;
  translate: 0px -10px;
  opacity: 0;
  transition: 0.2s translate, 0.2s opacity;
}
.bloque-center-image a:hover .image::before,
.bloque-center-image a:hover .media::before {
  opacity: 1;
}
.bloque-center-image a:hover .image-title {
  translate: 0px 0;
  opacity: 1;
}
@media (max-width: 650px) {
  .bloque-center-image .image-title {
    font-size: 12px;
    text-align: left;
  }
}

.bloque-center-image-gran {
  padding-top: 0px;
  padding-bottom: calc(var(--block) * 2);
  text-align: center;
  display: flex;
  align-content: center;
  justify-content: center;
  /* article link */
}
.bloque-center-image-gran .content {
  display: flex;
  justify-content: center;
}
@media (max-width: 650px) {
  .bloque-center-image-gran .content {
    width: 100% !important;
  }
}
.bloque-center-image-gran .content .media video {
  width: 100%;
  height: auto;
}
@media (max-width: 650px) {
  .bloque-center-image-gran .content .media video {
    width: 100%;
  }
}
.bloque-center-image-gran .image,
.bloque-center-image-gran .media {
  display: flex;
  flex-direction: column;
  font-size: 0;
  position: relative;
}
.bloque-center-image-gran .image:before,
.bloque-center-image-gran .media:before {
  position: absolute;
  content: "";
  background: rgba(193, 97, 54, 0.4);
  inset: 0;
  z-index: 10;
  opacity: 0;
  transition: 0.3s opacity;
}
.bloque-center-image-gran .image img,
.bloque-center-image-gran .media img { /*max-height: 600px;*/ }
.bloque-center-image-gran .image-title {
  color: black;
  font-size: 14px;
  margin-top: 10px;
  translate: 0px -10px;
  opacity: 0;
  transition: 0.2s translate, 0.2s opacity;
}
.bloque-center-image-gran a:hover .image::before,
.bloque-center-image-gran a:hover .media::before {
  opacity: 1;
}
.bloque-center-image-gran a:hover .image-title {
  translate: 0px 0;
  opacity: 1;
}
@media (max-width: 650px) {
  .bloque-center-image-gran .image-title {
    font-size: 12px;
    text-align: left;
  }
}

.nosang .bloque-text-right {
  text-indent: inherit !important;
}

.single-actualitat .bloque-text-right {
  text-indent: inherit;
}

p {
  margin-top: 0px;
}

.page-recerca a {
  color: black;
  text-decoration: underline;
  font-style: italic;
}
.page-recerca a:hover {
  text-decoration: none;
}

a.bloque-color {
  text-decoration: none;
  font-style: normal;
}