@import url(https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700;1,900&display=swap);

html, body {
  margin: 0;
  height: 100%;
}

* {
  font-family: "Lato";
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

.top-nav {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  background-color: #fff;
  color: #191E2B;
  height: 110px;
  padding: 2em;
}

.logorelati {
  width: 200px;
}

.escudocol {
  width: 70px;
}

.menu {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.menu>li {
  margin: 0 .5rem;
}

.menu li a {
  text-decoration: none;
  color: #191E2B;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .5px;
}

.menu li a:hover {
  color: #A7C437;
  transition: .3s;
}

.menu li a:focus {
  border-bottom: 3px solid #067DAF;
  padding-bottom: 4px;
  transition: .3s;
}

.menu li img {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}

.menu-button-container {
  display: none;
  height: 100%;
  width: 30px;
  cursor: pointer;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}

#menu-toggle {
  display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
  display: block;
  background-color: #191E2B;
  position: absolute;
  height: 4px;
  width: 30px;
  -webkit-transition: -webkit-transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: -webkit-transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
}

.menu-button::before {
  content: '';
  margin-top: -8px;
}

.menu-button::after {
  content: '';
  margin-top: 8px;
}

#menu-toggle:checked+.menu-button-container .menu-button::before {
  margin-top: 0px;
  -webkit-transform: rotate(405deg);
  transform: rotate(405deg);
}

#menu-toggle:checked+.menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked+.menu-button-container .menu-button::after {
  margin-top: 0px;
  -webkit-transform: rotate(-405deg);
  transform: rotate(-405deg);
}

.container-fluid {
  background-image: url(https://www.jep.gov.co/Infografas/relati/background.png);
  background-position: inherit;
  background-size: cover;
  padding: 55px;
  height: 80vh;
}

.container-fluid .row h1, .container-fluid .row p {
  color: #fff;
  text-align: center;
}

.container-fluid .row h1 {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 1px;
}

.container-fluid .row p {
  font-size: 20px;
  font-weight: 300;
  font-family: 'Source Sans Pro', sans-serif;
}

.bg-color {
  background-color: #46a1de;
  transition-duration: .5s;
}

.text-color {
  color: #46a1de;
  transition-duration: .5s;
}

.wrapper {
  min-width: 320px;
  max-width: 1200px;
  margin: 0 auto;
}

.tabs {
  display: table;
  table-layout: fixed;
  width: 100%;
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
  margin-bottom: 0;
  text-transform: uppercase;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  letter-spacing: 0.5px;
  font-weight: 700;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 5px 5px 0 0;
}

.tabs>li {
  transition-duration: .25s;
  display: table-cell;
  list-style: none;
  text-align: center;
  padding: 18px 15px 22px 15px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  color: white;
}

.tabs>li:before {
  z-index: -1;
  position: absolute;
  content: "";
  width: 100%;
  height: 120%;
  top: 0;
  left: 0;
  background-color: #A7C437;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  transition-duration: .25s;
  border-radius: 5px 5px 0 0;
}

.tabs>li:hover:before {
  -webkit-transform: translateY(70%);
  transform: translateY(70%);
}

.tabs>li.active {
  color: #191E2B;
  font-weight: 900;
}

.tabs>li.active:before {
  transition-duration: .5s;
  background-color: white;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.tab__content {
  background-color: white;
  position: relative;
  width: 100%;
  border-radius: 3px;
  margin-bottom: 20px;
}

.tab__content>li {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  list-style: none;
}

.tab__content>li .content__wrapper {
  text-align: center;
  border-radius: 5px;
  width: 100%;
  padding: 40px 35px 30px 35px;
  background-color: white;
}

.content__wrapper h2 {
  width: 100%;
  text-align: center;
  padding-bottom: 20px;
  font-weight: 300;
}

.content__wrapper .input {
  display: flex;
  justify-content: center;
}

.content__wrapper input {
  border-radius: 5px;
  border: 1px #DEDEDE solid;
  width: 100%;
  padding: 5px;
  margin-right: 10px;
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 600;
}

.content__wrapper .search {
  background: #A7C437;
  width: 150px;
  padding: 5px;
  border-radius: 5px;
  cursor: pointer;
}

.content__wrapper .search:hover {
  background: #BEDE3E;
  transition: .15s;
}

.search img, .search2 img {
  width: 25px;
}

.settings {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.help, .config img {
  width: 25px;
}

.config a {
  font-family: 'Source Sans Pro', sans-serif;
  text-decoration: none;
  color: #067DAF;
  font-weight: 700;
  font-size: 14px;
}

.boxes, .news {
  max-width: 1200px;
  margin: 0 auto;
}

.col-md-3, .col-md-4 {
  padding: 0;
}

.box-style {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background-color: rgba(0, 87, 137, .6);
  padding:15px;
  height: 180px;
}

.box-style h2, .box-style ul {
  color: #fff;
}

.box-style h2 {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  border-bottom: dotted 2px #C4C4C4;
  padding-bottom: 8px;
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.box-style h2 a{
  color: #BEDE3E;
  border-left: .5px  solid #fff;
  padding: 4px 0 4px 15px;
  text-decoration: none;
}

.box-style ul {
  padding: inherit;
  padding-top: 8px;
  margin-bottom: 0;
  padding: 8px 20px 0px 20px;
  line-height: 1.3;
}

.box-style ul li a{
  list-style: none;
  text-align: center;
  cursor: pointer;
  color: #fff;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 14px;
}

.margin-right {
  margin-right: 20px;
}

.margin-0 {
  margin-right: 0px;
}

.news{
  background-color: #067DAF;
  color: #fff;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 15px;
  display: flex;
  align-items: center;
}

.news a{
  color: #fff;
}

.borderlink{
  border-left: 1px solid #fff;
  padding-left:40px;
}
p.instruction{
  color: #2A3039!important;
  font-size: 18px!important;
  font-weight: 600!important;
}
.salaseccion {
  background: #A7C437;
  width: 150px;
  padding: 5px;
  border-radius: 5px;
  cursor: pointer;
  color:#fff;
  margin: 5px;
}
.salaseccion:hover {
  background: #BEDE3E;
  transition: .15s;
}
.sigla{
  font-size: 18px;
  font-weight: 700;
}
.namesala{
  font-size:12px;
  margin: 5px;
}
.datosright{
  text-align: left;
}
.col-md-6 {
  padding: 20px;
}
.padding0{
  padding:0!important;
}
.datosright input{
  margin-bottom:10px;
}
.search2 {
  background: #A7C437;
  width: 130px;
  padding: 5px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  color:#fff;
  text-align: center;
}
.search2:hover {
  background: #BEDE3E;
  transition: .15s;
}
.footer{
  background-color: #192744;
  padding: 30px;
}
.footer .row{
  display: flex;
  align-items: center;
}
.logojep img{
  width: 220px;
}
.logojusticia img{
  width: 220px;
}
.infojep{
  font-size: 10px;
  line-height: 1.2;
  color:#fff;
}
.container{
  width: 100%;
}
