article .btn-text-white {
  background: #fff;
  border: 1px solid #c6c6c6;
  -webkit-box-shadow: inset 0px -2px 0px rgba(0, 0, 0, .1);
  box-shadow: inset 0px -2px 0px rgba(0, 0, 0, .1);
  border-radius: 4px;
  padding: 0 6px;
  padding-bottom: 2px;
  margin-right: 2px;
  line-height: 1.3;
  display: inline-flex;
}

article .btn-text-black {
  padding: 2px 4px;
  font-size: 90%;
  color: #fff;
  background-color: #333;
  border-radius: 3px;
  box-shadow: inset 0 -1px 0 rgb(0 0 0 / .25);
}

article .pre-text {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  line-height: 1.4;
  word-break: break-all;
  word-wrap: break-word;
  border-radius: 4px;
}

article h2.blue-left-style {
  padding: 16px 24px;
  border-left: 10px solid #207CFB;
  border-radius: 0;
  background: #f6f8fc;
}

article h2.blue-left-style::before {
  display: none;
}

article .pre-text.pre-text-grey {
  color: #333;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
}

article .pre-text.pre-text-yellow {
  color: #8a6d3b;
  background-color: #fffdf0;
  border: 1px solid #ffd166;
}

article .pre-text.pre-text-blue {
  color: #2c3e50;
  background-color: #f0f8ff;
  border: 1px solid #3498db;
}

article .pre-text.pre-text-green {
  background-color: #f0faf1;
  border: 1px solid #2ecc71;
  color: #27ae60;
}

article .pre-text.pre-text-purple {
  background-color: #f8f0fa;
  border: 1px solid #9b59b6;
  color: #8e44ad;
}

article .pre-text.pre-text-black {
  color: #fff;
  background-color: #000800;
  border: 1px solid #2c3e50;
}

#picModal.show {
  background: rgba(0, 0, 0, 0.5);
}

#picModal .modal-dialog .btn-close {
  width: 40px;
  height: 40px;
  right: 0;
  top: -48px;
  position: absolute;
  cursor: pointer;
}

#picModal .modal-dialog {
  max-width: 1020px !important;
}

#picModal .modal-dialog .modal-content {
  width: 100%;
  border: none !important;
  background-color: transparent;
}

.modal .modal-body {
  padding: 0;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  width: thin;
  background: #f1f1f1;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #B4D1FB;
  border-radius: 10px;
  border: 0px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}
/*  */
.sidebar .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 24px;
}

.sidebar .tags .tag {
  background: linear-gradient(135deg, #e0f7fa, #b2ebf2);
  color: #006064;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
}

@media (max-width: 1279.98px) {
  .sidebar .tags {
    display: none;
  }
}
/*  */
ul,
ol {
  margin: 0;
}

article .style-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 40px;
}

article .card-header {
  padding: 20px 25px;
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
}

article .card-header.purple {
  background: linear-gradient(90deg, #8e2de2 0%, #4a00e0 100%);
}

article .card-header.blue {
  background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
}

article .card-content {
  padding: 25px;
}

/* floating-card Start */
article .floating-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

article .floating-card {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: top .2s ease;
  top: 0;
  border: 1px solid #f0f0f0;
  position: relative;
}

article .floating-card.had-num {
  background: #f7f9ff;
  overflow: hidden;
}

article .floating-card:hover {
  top: -8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

article .floating-card.had-num::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
  transition: height 0.3s ease;
}

article .card-number {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(106, 17, 203, 0.1);
  line-height: 1;
}

article .floating-title {
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 1.2rem;
  color: #2575fc;
}

/* floating-card End */

/* reason-item Start */
article .reason-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

article .reason-item {
  background: #fff8f5;
  border-radius: 12px;
  padding: 20px;
  border-top: 3px solid #ff7e5f;
  box-shadow: 0 4px 10px rgba(255, 126, 95, 0.1);
  transition: top .2s ease;
}

article .reason-title {
  font-weight: 600;
  color: #ff7e5f;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

article .reason-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

article .reason-desc {
  color: #555;
  margin-bottom: 15px;
}

article .reason-tag {
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  background: rgba(255, 126, 95, 0.1);
  color: #ff7e5f;
  border: 1px solid rgba(255, 126, 95, 0.3);
}

/* reason-item End */

article .style-card ul li {
  display: flex;
  align-items: center;
}

article .style-card ul.correct-icon li::before {
  content: '';
  width: 20px;
  height: 20px;
  background: url('data:image/svg+xml,<svg width="32" height="33" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="4" y="4.5" width="24" height="24" rx="12" fill="%236a11cb" stroke="%236a11cb" stroke-width="2"/><path d="m10 17.5 2.828 2.828a1 1 0 0 0 1.415 0l7.07-7.07" stroke="%23fff" stroke-width="2" stroke-linecap="round"/></svg>') no-repeat center center;
  background-size: 100% 100%;
  display: inline-block;
  margin-right: 10px;
}

article .style-card ul.correct li::before {
  content: '✓';
  color: #6a11cb;
  font-weight: bold;
  margin-right: 12px;
}

article .style-card ul.dot li::before {
  content: '·';
  font-size: 1.5rem;
  line-height: 1;
  color: #8e2de2;
  font-weight: bold;
  margin-right: 12px;
}

article .style-card ul li:not(:last-child) {
  margin-bottom: 16px;
}

@media (max-width: 767.98px) {
  article .card-header {
    padding: 12px 16px;
    font-size: 1.25rem;
  }

  article .card-content,
  article .floating-card {
    padding: 20px;
  }
}
/*  */
article .floating-item {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  margin-bottom: 35px;
  border-left: 5px solid #3498db;
  transition: top .2s ease, box-shadow 0.4s ease;
  top: 0;
  position: relative;
  overflow: hidden;
  margin-bottom: 32px;
}

article .floating-item:hover {
  top: -5px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

article .floating-item h3 {
  color: #3498db;
  margin-bottom: 20px;
  font-size: 1.7rem;
  position: relative;
  z-index: 2;
  padding-left: 0;
}

article .floating-item h3::before {
  display: none;
}

article .floating-item p {
  line-height: 1.9;
  margin-bottom: 25px;
  color: #444;
  font-size: 1.15rem;
}
/*  */
article .label-text {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 4px;
  background: #F5DEB3;
  color: #000;
  font-weight: 700;
  margin-bottom: 16px;
}
/*  */
article .summary_box {
  background-color: #f4f8fe;
  border-radius: 13px;
  padding: 1.5rem;
  margin-bottom: 32px;
}

article .summary_box p {
  line-height: 1.5;
}

article .summary_box a.download_btn {
  background: #09a043;
  color: #fff;
  padding: .5rem 1rem;
  border-radius: 5px;
  font-size: 14px;
  line-height: 1.2;
  text-indent: 5px;
  display: inline-flex;
  align-items: center;
}

article .summary_box a.download_btn span.small {
  font-size: 12px;
}

article .summary_box .stamp_logo {
  max-width: 60px;
}

article .summary_box .stamp_box {
  width: 185px;
  border-radius: 5px;
  color: #7e7e7e;
  padding: .5rem 1rem;
  font-size: 12px;
  z-index: 2;
  top: -.5rem;
  line-height: 1.2;
  left: 4rem;
  opacity: 0;
  transform: translateX(5px);
  transition: .6s ease-in-out;
  font-weight: 600;
  text-align: left;
  background: #181617;
  position: absolute;
}

article .stamp_box span {
  display: block;
  font-weight: 700;
  color: #c8c8c8;
  font-size: 13px;
  padding-bottom: 5px
}

article .stamp_box:before {
  width: 10px;
  height: 10px;
  content: "";
  position: absolute;
  background: #181617;
  top: 14px;
  transform: rotate(45deg);
  left: -3px
}

article .stamp_logo img:hover~.stamp_box {
  opacity: 1;
  transform: translateX(0)
}

@media(max-width: 768px) {
  article .summary_box .stamp_logo {
    display: none;
  }
}
/*  */
article .globle_img_bg {
  border-radius: 15px;
  border: 1px solid #BBEBFF;
  padding: 20px 16px;
  text-align: center;
  background: url(https://4ddig.tenorshare.com/images/ariticle/article-gather/article-img-bg.png?w=2560&h=1559) no-repeat center center;
  background-size: 100% 100%;
  margin-bottom: 32px;
}

article .globle_img_bg .img_box_pop {
  max-width: 700px;
  display: inline-block;
  zoom: 1;
  position: relative;
  box-shadow: 0 0 .125rem .075rem #e9e9e9;
  vertical-align: middle;
}

article .globle_img_bg picture {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  article .globle_img_bg {
    border-radius: 8px;
  }
}
/*  */
article .kaisetsu-box {
  border: 1px solid #89c2f4;
  max-width: 650px;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 32px;
}

article .kaisetsu-box .kaisetsu-box-title {
  background-color: #89c2f4;
  font-size: 21px;
  font-weight: 500;
  color: #fff;
  padding: 12px 0;
  text-align: center;
}

article .kaisetsu-box .kaisetsu-box-content {
  padding: 25px;
}

article .kaisetsu-box .kaisetsu-box-content p {
  color: #395372;
  margin-bottom: 20px;
}

article .kaisetsu-box .marker {
  background: linear-gradient(transparent 80%, #eeee22 0%);
}

article .kaisetsu-box .sheet-table {
  border: 1px solid #ccc;
}

article .kaisetsu-box .sheet-table ul {
  display: flex;
}

article .kaisetsu-box .sheet-table ul:not(:last-child) {
  border-bottom: 1px solid #ccc;
}


article .kaisetsu-box .sheet-table ul li {
  padding: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  color: #395372;
}

article .kaisetsu-box .sheet-table ul:first-child li {
  background: #FFFAF0;
}

article .kaisetsu-box .sheet-table ul li:first-child {
  background: #FFFAF0;
  min-width: 200px;
  border-right: 1px solid #ccc;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

article .kaisetsu-box .sheet-table ul li:last-child {
  flex: 1;
}

article .kaisetsu-box .sheet-table ul:not(:first-child) li:not(:first-child) {
  padding: 14px;
}

article .kaisetsu-box .sheet-table ul li:first-child a {
  color: #008db7;
  text-decoration: underline;
}

article .kaisetsu-box .sheet-table ul li:first-child a:hover {
  opacity: 0.6;
}

@media (max-width: 650px) {
  article .kaisetsu-box .kaisetsu-box-content {
    padding: 20px;
  }

  article .kaisetsu-box .sheet-table ul li {
    font-size: 12px;
  }

  article .kaisetsu-box .sheet-table ul li:first-child {
    min-width: 100px;
  }

  article .kaisetsu-box .sheet-table ul:not(:first-child) li:not(:first-child) {
    padding: 10px;
  }
}
/*  */
article .search_button_box {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

article .search_button_box a.search_btn {
  display: flex;
  align-items: center;
  width: max-content;
  padding: 8px 12px;
  background: #0189F2;
  color: #fff;
  border-radius: 8px;
  transition: top .2s ease-in-out;
  top: 0;
  position: relative;
}

article .search_button_box a.search_btn:hover {
  top: -4px;
  box-shadow: 0rem .25rem .35rem 0rem rgba(0, 0, 0, 0.2);
}

article .search_button_box .iconfont {
  width: 24px;
  height: 24px;
  display: inline-block;
  background: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="11" cy="11" r="7" stroke="%23fff" stroke-width="2"/><path d="M15.4999 17.0001L19.4746 20.5175" stroke="%23fff" stroke-width="2" stroke-linecap="round"/></svg>') center no-repeat;
  background-size: 100% 100%;
  margin-right: 8px;
}
/*  */
article .new-sheet-table {
  width: max-content;
  max-width: 100%;
  overflow: hidden;
  overflow-x: visible;
  border: 1px solid #E6E6E6;
  border-radius: 16px;
}

article .new-sheet-table .new-sheet-table-content {
  width: max-content;
  overflow: hidden;
}

article .new-sheet-table ul {
  list-style: none;
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
}

article .new-sheet-table ul:not(:last-child) {
  border-bottom: 1px solid #E6E6E6;
}

article .new-sheet-table ul li {
  width: 220px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 24px;
}

article .new-sheet-table ul:first-child li {
  padding: 16px 24px;
  background: #0462F0;
  color: #fff;
  font-weight: 700;
}

article .new-sheet-table ul:not(:first-child) li:not(:last-child) {
  border-right: 1px solid #E6E6E6;
}
/*  */
article .list-triangle {
  list-style: none;
  padding-left: 0;
  margin-bottom: 32px;
}

article .list-triangle li {
  position: relative;
  line-height: 1.75;
  margin-bottom: 1rem;
}

article .list-triangle li::before {
  content: '';
  display: inline-block;
  width: 0.4375rem;
  height: 0.5rem;
  margin-right: .5rem;
  vertical-align: middle;
  background: url('data:image/svg+xml,<svg width="7" viewBox="0 0 7 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M6.333 4.808 1.458 7.855A.953.953 0 0 1 0 7.047V.953A.953.953 0 0 1 1.458.145l4.875 3.047a.953.953 0 0 1 0 1.616Z" fill="%235576F3"/></svg>') no-repeat scroll center/cover;
  background-size: 100% 100%;
}
/*  */
article .article-cards {
  border: 1px solid #E0E1E9;
  padding: 20px 30px;
  border-radius: 8px;
  position: relative;
  margin-bottom: 32px;
}

article .article-cards .article-icon {
  left: -1px;
  position: absolute;
  padding: 2px 15px;
  top: 0;
  border-radius: 8px 8px 0 0;
  background-color: #ffcc00;
  display: flex;
  align-items: center;
  gap: 8px;
  transform: translateY(-100%);
}

article .article-cards p {
  margin-bottom: 0;
}

article .article-cards p a {
  font-weight: 700;
}

article .article-cards p a:hover {
  text-decoration: underline;
}
/*  */
article .anyto-video-box {
  margin-bottom: 30px;
  background: #fcfcfc;
  border: 2px dashed #ff8d06;
  border-radius: 8px;
  padding: 20px 35px;
  overflow: hidden;
  line-height: 24px;
}

article .anyto-video-box .bg-box-f39700 {
  display: inline-block;
  color: #3b352e;
  padding: 2px 10px;
  background-color: #f39700;
  border-radius: 4px;
  margin: 0 0 32px;
  line-height: 28px;
  white-space: pre-line;
}

article .anyto-video-box .youtube-video {
  margin: 0;
}

article .anyto-video-box .btn-group {
  margin: 0;
  margin-top: 32px;
  justify-content: center;
  align-items: center;
}
/*  */
article .article-catalogue {
  display: flex;
  padding: 20px 32px;
  border-radius: 8px;
  background: #f6f8fc;
  margin-bottom: 32px;
}

article .article-catalogue .list-catalogue {
  list-style: none;
  padding-left: 0;
}

article .article-catalogue .list-catalogue li {
  font-weight: 700;
  display: flex;
  align-items: start;
}

article .article-catalogue .list-catalogue li:not(:last-child) {
  margin-bottom: 6px;
}

article .article-catalogue .list-catalogue li a:hover {
  text-decoration: underline;
}

article .article-catalogue .list-catalogue li::before {
  content: '';
  display: inline-block;
  width: 0.4375rem;
  height: 0.5rem;
  margin-right: 1rem;
  vertical-align: middle;
  background: url('data:image/svg+xml,<svg width="7" viewBox="0 0 7 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M6.333 4.808 1.458 7.855A.953.953 0 0 1 0 7.047V.953A.953.953 0 0 1 1.458.145l4.875 3.047a.953.953 0 0 1 0 1.616Z" fill="%235576F3"/></svg>') no-repeat scroll center/cover;
  background-size: 100% 100%;
  margin-top: 10px;
}

@media (max-width: 767.98px) {
  article .article-catalogue .list-catalogue li {
    font-size: 14px;
  }
}
/*  */
article .cards-ochre {
  background: #fff4e3;
  padding: 20px 30px;
  border-radius: 8px;
  position: relative;
  margin-bottom: 32px;
}

article .cards-ochre .cards-title {
  color: #754e14;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 12px;
}

article .cards-ochre .cards-list {
  list-style: none;
  padding-left: 0;
}

article .cards-ochre .cards-list li {
  display: flex;
  align-items: center;
  color: rgb(117, 78, 20);
  position: relative;
  padding-left: 32px;
}

article .cards-ochre .cards-list li:not(:last-child) {
  margin-bottom: 8px;
}

article .cards-ochre .cards-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  background: url('data:image/svg+xml,<svg width="32" height="33" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="4" y="4.5" width="24" height="24" rx="12" fill="%23068800" stroke="%23068800" stroke-width="2"/><path d="m10 17.5 2.828 2.828a1 1 0 0 0 1.415 0l7.07-7.07" stroke="%23fff" stroke-width="2" stroke-linecap="round"/></svg>') no-repeat center center;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  top: 4px;
}
/*  */
article .article-title-icon {
  padding-left: 0;
  line-height: 1.5;
}

article .article-title-icon::before {
  display: none;
}

article .article-title-icon span {
  font-size: 26px;
  font-weight: 500;
}

article .article-title-icon :is(.icon-hexagon-blue, .icon-polygon, .icon-coordinate, .icon-bubble-blue) {
  display: inline-flex;
  justify-content: center;
  margin-right: 8px;
  background: url(https://4ddig.tenorshare.com/images/ariticle/article_title_icon.png) no-repeat;
}

article .article-title-icon .icon-polygon {
  align-items: center;
  width: 41px;
  height: 38px;
  color: #0049d6;
  background-position: -134px -10px;
}

article .article-title-icon .icon-bubble-blue {
  position: relative;
  align-items: center;
  width: 40px;
  height: 40px;
  margin: 0 5px 0 0;
  color: #fff;
  background: #0049d6;
  border: 3px solid #fff;
  border-radius: 50%;
}

article .article-title-icon .icon-bubble-blue::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45px;
  height: 45px;
  background: #0049d6;
  border-radius: 50%;
  z-index: -1;
}

article .article-title-icon .icon-hexagon-blue {
  align-items: center;
  width: 45px;
  height: 40px;
  color: #fff;
  background: #0049d6;
  clip-path: polygon(79% 0%, 100% 51%, 79% 100%, 21% 100%, 0% 51%, 22% 0%);
}
/*  */
article .list-dot.blue li::before {
  background-color: #0049d6;
}
/*  */
article .list-correct,
article .list-wrong,
article .list-blue-dot {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

article .list-correct li,
article .list-wrong li {
  position: relative;
  padding-left: 28px;
}

article .list-blue-dot li {
  position: relative;
  line-height: 1.75;
  padding-left: 0.8125rem;
  margin-bottom: 1rem;
}

article .list-correct li:not(:last-child),
article .list-wrong li:not(:last-child) {
  margin-bottom: 1rem;
}

article .list-correct li:before,
article .list-wrong li:before {
  content: '';
  width: 20px;
  height: 20px;
  background: url('data:image/svg+xml,<svg width="32" height="33" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="4" y="4.5" width="24" height="24" rx="12" fill="%23068800" stroke="%23068800" stroke-width="2"/><path d="m10 17.5 2.828 2.828a1 1 0 0 0 1.415 0l7.07-7.07" stroke="%23fff" stroke-width="2" stroke-linecap="round"/></svg>') no-repeat center center;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  top: 4px;
}

article .list-wrong li:before {
  background: url('data:image/svg+xml,<svg width="32" height="33" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="4" y="4.5" width="24" height="24" rx="12" fill="%23FF4D4F" stroke="%23FF4D4F" stroke-width="2"/><path d="M12 12 L20 20 M20 12 L12 20" stroke="%23fff" stroke-width="2" stroke-linecap="round"/></svg>') no-repeat center center;
  background-size: 100% 100%;
}

article .list-blue-dot li::before {
  content: '';
  position: absolute;
  top: 0.71875rem;
  left: 0;
  width: 0.3125rem;
  height: 0.3125rem;
  border-radius: 50%;
  background-color: #0049d6;
}

article .alert-components {
  display: flex;
  align-items: center;
  font-size: 18px;
  padding: 16px 24px;
  gap: 12px;
  border-radius: 6px;
  margin-bottom: 1rem;
}

article .alert-components svg {
  min-width: 20px;
  height: 20px;
}

article .alert-components.alert-green {
  color: #276749;
  background: #c6f6d5;
}

article .alert-components.alert-red {
  color: #982c2c;
  background: #fed7d7;
}

article .alert-components.alert-yellow {
  color: #975a16;
  background: #feebc8;
}

article .alert-components.alert-blue {
  color: #2c5282;
  background: #bee3f8;
}
/*  */
article .blue-left {
  padding-left: 10px;
  border-left: 4px solid #a0bcfd;
}

article .blue-left::before {
  display: none;
}