/*HEADER*/
.header h1 {
  font-weight: 800;
  color: #ffffff;
  font-size: 4em;
  line-height: 1em;
}

.header h1 small {
  font-weight: 300;
  color: #ffffff;
  font-size: 1.3em;
  line-height: 0.5em;
}

.header p {
  color: hsl(0, 0%, 100%);
  padding: 10px 15px;
  border-radius: 15px;
  display: inline-block;
}

header .header-option a {
  color: #383838;
  text-decoration: none;
  font-size: 1em;
  padding: 10px;

}

.button {
  --primary-color: #ee7033;
  --secondary-color: #fff;
  --hover-color: #111;
  --arrow-width: 10px;
  --arrow-stroke: 2px;
  box-sizing: border-box;
  border: 0;
  border-radius: 10px;
  color: var(--secondary-color);
  padding: 0.5em 1em;
  background: var(--primary-color);
  display: flex;
  transition: 0.2s background;
  align-items: center;
  gap: 0.6em;
  font-weight: bold;
  text-decoration: none;
}

.button .arrow-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.button .arrow {
  margin-top: 1px;
  width: var(--arrow-width);
  background: var(--primary-color);
  height: var(--arrow-stroke);
  position: relative;
  transition: 0.2s;
}

.button .arrow::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  border: solid var(--secondary-color);
  border-width: 0 var(--arrow-stroke) var(--arrow-stroke) 0;
  display: inline-block;
  top: -3px;
  right: 3px;
  transition: 0.2s;
  padding: 3px;
  transform: rotate(-45deg);
}

.button:hover {
  background-color: var(--hover-color);
}

.button:hover .arrow {
  background: var(--secondary-color);
}

.button:hover .arrow:before {
  right: 0;
}

/*MENU*/
.nav-link {
  color: #464545;
  font-size: 1rem;
  font-weight: 400;
  margin-right: 30px;
  border-bottom: 1px solid #ffffff;
}

.nav-link:hover {
  color: #000000;
  border-bottom: 1px solid #ee7033;
}


/*MAIN*/
.main p {
  margin: 0 0 20px 0;
}

.main a {
  color: #ee7033;
  text-decoration: none;
}

.main a:hover {
  text-decoration: underline;
}

.main ul {
  margin-left: 12px;
}

.main ul li ul {
  margin: 0 0 0 0;
}

.main h1 {
  color: #34455a;
  font-size: 1.6rem;
  font-weight: 400;
  margin: 5px 0 20px 0;
  text-align: left;
  padding-top: 10px;
  display: inline-block;
  text-transform: uppercase;
}

.main h2 {
  color: #464646 !important;
  font-size: 1.3em;
  font-weight: 500;
  margin: 20px 0 20px 0;
  text-align: left;
}

.main h3 {
  color: #000000 !important;
  font-size: 1.1em;
  font-weight: 600;
  margin: 10px 0 10px 0;
  text-align: left;
}

.main .new h3 {
  color: #000000 !important;
  font-size: 1.1em;
  font-weight: 600;
  margin: 10px 0 10px 0;
  text-align: left;
}

.main h4 {
  color: #000000;
  font-size: 1.2em;
  font-weight: 500;
  margin: 10px 0 20px 0;
  text-align: left;
}

.main .actividades h4 {
  color: #000000;
  font-size: 1.3em;
  font-weight: 400;
  margin: 10px 0 20px 0;
  text-align: left;
}

.main .submenu h4 {
  color: #000000;
  font-size: 1.3em;
  font-weight: 400;
  margin: 10px 0 20px 10px;
  text-align: left;
}

.main .actividades p {
  margin-top: 10px;
  font-weight: 500;
}

.main h5 {
  color: #73837f;
  font-size: 1em;
  font-weight: 700;
  margin: 10px 0 0 0;
  text-align: left;
}

.main .submenu ul li a {
  padding-left: 0;
}

.main .btn-primary {
  background-color: #23a0b8;
  border: 0;
}

.main .btn-enviar:hover {
  text-decoration: none;
}

.main .codigo {
  background-color: #a7bcc7;
  font-size: 1.5em;
  color: #ffffff;
  padding: 5px 10px;
  border-radius: 3px;
}

.main .pagination .page-link {
  border: 0;
}

.main .pagination .page-link:hover {
  background-color: #d8a68e;
  color: #ffffff;
  text-decoration: none;
}

.main .pagination .active .page-link {
  background-color: #ee7033;
}

.main a .fa-left-long {
  font-size: 3em;
  color: #c0e676;
}



@media (width <=768px) {

  .header h1 {
    font-size: 3em;
  }

}

.word-count {
  color: #000000;
  margin: 10px 0 20px 0;
}


.btn-primary {
  background-color: #23a0b8;
  border: 0;
}

.btn-primary:hover {
  background-color: #108299;
  border: 0;
}