/* normal style */
@media print,screen {
  .article h2.h2_italic {
    font-weight: 700;
    font-style: italic;
    color: #000;
    transform: scale(1.1,1.0);
  }
  .article h2.h2_italic:before {
    display: none;
  }

  .article h2.h2_gradient {
    font-weight: 200;
    font-style: italic;
    color: rgba(0,0,0,0.6)!important;
    text-align: left;
    display: inline-block;
    font-size: 26px;
    background-image: linear-gradient(to right, #ffffff99 0%, #ffffff99 90%, #ffffff00 100% );
    margin-left: -500px;
    padding: 10px 100px 10px 525px;
    margin-bottom: 20px;
    transform: scale(1.1,1.0);
  }
  .article h2.h2_gradient:before {
    display: none;
  }

  .article h3.h3_whitefont {
    background: transparent;
    border: 0;
    color: #fff;
    margin-bottom: 8px;
    padding: 4px 20px;
    font-weight: 200;
    font-size: 180%;
    margin-top: 0px;
  }

  .article h4.h4_circle {
    border: 0;
    padding: 4px 1.2em;
    position: relative;
    display: inline-block;
    float: left;
    background: transparent;
    border-radius: 0;
  }
  .article h4.h4_circle span.white {
    display: inline;
    background: transparent;
    border-radius: 0;
    min-width: auto;
    padding: 0;
  }
  .article h4.h4_circle:before,
  .article h4.h4_circle:after {
    content: "";
    position: absolute;
    top: 0.45em;
    left: 0;
    width: 0.6em;
    height: 0.6em;
    display: block;
    background: #202a69;
    border-radius: 50%;
  }
  .article h4.h4_circle:after {
    right: 0;
    left: auto;
  }
}

/* max-width step down */
@media only screen and ( max-width: 480px ) {
  .article h2.h2_italic {
    transform: scale(1.0,1.0);
  }
}

