.cms-con {
  display: block;
  width: 100%;
  margin-bottom: 30px;
}
.cms-con * {
  color: #000;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
}
.cms-con.text-white {
  color: var(--white);
}
.cms-con:last-child {
  margin-bottom: 0;
}
.cms-con p:last-child {
  margin-bottom: 0;
}
.cms-con ul {
  list-style: none;
}
.cms-con :is(ul, ol) {
  padding-left: 20px;
  font-size: 0;
  margin-bottom: 20px;
}
.cms-con :is(ul, ol) :is(li) {
  width: 100%;
  margin-bottom: 5px;
  position: relative;
}
.cms-con li:last-child {
  margin-bottom: 0;
}
.cms-con ul li:before {
  content: "";
  position: absolute;
  top: 5px;
  left: -20px;
  right: inherit;
  bottom: inherit;
  width: 10px;
  height: 10px;
  border-bottom: 0.125rem solid #000;
  border-right: 0.125rem solid #000;
  transform: rotate(-45deg);
  margin: auto;
}
.cms-con ul.half li {
  width: 50%;
  display: inline-block;
}
.cms-con :is(h1, h2, h3, h4, h5, h6) {
  display: block;
  margin-bottom: 10px;
  text-transform: capitalize;
  line-height: 1.3;
  font-weight: 700;
}
.cms-con h1 {
  font-size: 38px;
}
.cms-con h2 {
  font-size: 34px;
}
.cms-con h3 {
  font-size: 30px;
}
.cms-con h4 {
  font-size: 28px;
}
.cms-con h5 {
  font-size: 24px;
}
.cms-con h6 {
  font-size: 20px;
}
.cms-con iframe {
  width: 100%;
  height: 500px;
}
.cms-con :is(.alignleft, .alignright) {
  width: auto;
  max-width: 50%;
}
.cms-con .alignleft {
  float: left;
  margin: 0 30px 30px 0;
}
.cms-con .alignright {
  float: right;
  margin: 0 0 30px 30px;
}
.cms-con .aligncenter {
  width: auto;
  max-width: 100%;
  margin: 30px auto;
  text-align: center;
}
.cms-con .aligncenter img {
  margin: auto;
}
.cms-con hr {
  background: #ccc;
  height: 2px;
  opacity: 1;
  margin: 30px 0;
}
.cms-con a {
  font-weight: 500;
  text-transform: initial;
  color: var(--lightBlue);
  transition: color 0.4s ease-in-out;
}
.cms-con a:hover {
  color: var(--blue);
}
