/* CSS Document */
.contentBox {
  max-width: 1100px;
  margin: 0 auto;
}

.textEditor .classBoxRow ul {
  list-style: none;
  padding-left: 0;
}
@media (min-width: 1024px) {
  .textEditor .classBox .classLink {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .textEditor .classBox .classLink a {
    display: block;
    padding: 10px 15px;
    font-size: 17px;
    font-weight: 700;
    color: #043248;
    letter-spacing: 4px;
    text-align: center;
  }
  .textEditor .classBox .classLink a::after {
    content: "";
    display: block;
    position: relative;
    z-index: -1;
    height: 15px;
    margin: -10px auto 0;
    background: #e0ceb3;
    opacity: 0;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .textEditor .classBox .classLink a.current:after, .textEditor .classBox .classLink a:hover:after {
    opacity: 1;
  }
}
.textEditor .classBoxRow .classLink {
  list-style: none;
  padding-left: 0;
}
@media (max-width: 1023px) {
  .textEditor .classBoxRow .classLink {
    all: initial;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .textEditor .classBoxRow .classLink > li {
    all: initial;
  }
  .textEditor .classBoxRow .classLink a {
    all: initial;
    display: block;
    padding: 10px 15px;
    font-size: 17px;
    font-weight: 700;
    color: #043248;
    letter-spacing: 4px;
    text-align: center;
    cursor: pointer;
  }
  .textEditor .classBoxRow .classLink a::after {
    content: "";
    display: block;
    position: relative;
    z-index: -1;
    height: 15px;
    margin: -10px auto 0;
    background: #e0ceb3;
    opacity: 0;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
}