.text-icon-link-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #344F9C;
  margin-bottom: 25px;
  /*Mobile*/
}
.text-icon-link-wrapper.right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
.text-icon-link-wrapper.center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.text-icon-link-wrapper.left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
@media (max-width: 480px) {
  .text-icon-link-wrapper {
    gap: 8px;
    margin-bottom: 10px;
  }
  .text-icon-link-wrapper .icon-content {
    width: 24px;
  }
}

.title-and-redirect-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /*Mobile*/
}
@media (max-width: 480px) {
  .title-and-redirect-wrapper {
    gap: 12px;
  }
}
.title-and-redirect-wrapper .text-title {
  font-weight: 600;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: 0;
  /*Mobile*/
}
@media (max-width: 480px) {
  .title-and-redirect-wrapper .text-title {
    font-size: 20px;
  }
}
.title-and-redirect-wrapper .text-icon-link {
  font-weight: 400;
  font-size: 19px;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: center;
  text-decoration: underline;
  text-decoration-style: solid;
  /*Mobile*/
}
@media (max-width: 480px) {
  .title-and-redirect-wrapper .text-icon-link {
    font-size: 14px;
  }
}
