:link, 
a:visited,
a:hover,
a:active {
  color: rgb(57, 192, 255);
  background-color: transparent;
  text-decoration: none;
}


/*===== VARIABLES CSS =====*/

:root{
  --header-height: 3rem;
  --nav-width: 6rem;

  /*===== Colors =====*/
  --first-color:  #192132;
  --first-color-light: #ffffff;
  --white-color: #0D121C;
  /*===== Font and typography =====*/
  --body-font: 'Poppins', sans-serif;
  --normal-font-size: .6rem;
  
  /*===== z index =====*/
  --z-fixed: 100;
}
   

/*===== BASE =====*/
*,::before,::after{
  box-sizing: border-box;
}


h1,
h2,
h3,
h4,
h5,
h6,
p,
li {
font-size: var(--normal-font-size);
color: #FFFFFF
}



body{
  position: relative;
  margin: var(--header-height) 0 0 0;
  padding: 0 1rem;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  transition: .5s;
  text-decoration: none;
  background-color: #0D121C;

}

.botc .botc-list a.collapsed {
  text-decoration: none;
}
.botc .botc-list a {
  text-decoration: none;
}


/*===== HEADER =====*/
.header{
  width: 100%;
  height: var(--header-height);
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  z-index: var(--z-fixed);
  transition: .5s;

}

.header__toggle{
  color: #e2cd12;
  font-size: 1.5rem;
  cursor: pointer;
  
}

.header__img{
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
}

.header__img img{
  width: 40px;
}

/*===== NAV =====*/
.l-navbar{
  position: fixed;
  top: 0;
  left: -30%;
  width: var(--nav-width);
  height: 100vh;
  background-color: var(--first-color);
  padding: .5rem 1rem 0 0;
  transition: .5s;
  z-index: var(--z-fixed);
  
}

.nav{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
    overflow-y:auto;
}

.nav__logo, .nav__link{
  display: grid;
  grid-template-columns: max-content max-content;
  align-items: center;
  column-gap: 1rem;
  padding: .5rem 0 .5rem 1.5rem;
}

.nav__logo {
  margin-bottom: 2rem;
  width: 50px;
}
.nav__logo img {
  width: 60px;
  margin-left: -23px;
}

.nav__link img {
     transition-duration: 0.1s;
 	border-radius:50%  
}
.nav__link img:hover {
            border:2px solid rgb(158, 202, 237);
         transition-duration: 0.1s;
     	border-radius:50%;
}

.nav__tool {
    visibility:hidden;
}

.nav__tool:hover {
    visibility: visible;
    
}


.nav__logo-icon{
  font-size: 2.25rem;
  color: var(--white-color);
}

.nav__logo-name{
  color: #fff;
  font-weight: 700;
  font-size: 19px;
}

.nav__link{
  position: relative;
  color: #fff;
  margin-bottom: 1.5rem;
  transition: .3s;
}

.nav__link:hover{
  color: #e2cd12;
}

.nav__icon{
  font-size: 1.25rem;
}

/*Show navbar movil*/
.show{
  left: 0;
}

.wrap {
display: flex;
        justify-content: space-around;
}
.block{
  display: block;
  width: auto;
  height: auto;
  padding: 10px;
  box-shadow: 0 0 5px #9ecaed;
  margin:13px;
  min-width:320px;
  max-width:400px;
  border-radius: 16px; 
  background: var(--first-color);
}

.block h5 {
    text-align:left;
}

.block h4 {  
    color: rgb(57, 192, 255);
}

.block span {
    color: white;
}
.block:hover {
  box-shadow: 0 0 15px #9ecaed;
}


/*Add padding body movil*/
.body-pd{
  padding-left: calc(var(--nav-width) + 1rem);
}

/*Active links*/
.active{
  color: #e2cd12;
}

.active::before{
  content: '';
  position: absolute;
  left: 0;
  width: 2px;
  height: 32px;
  background-color: var(--white-color);
}

/* ===== MEDIA QUERIES=====*/
@media screen and (min-width: 768px){
  body{
    margin: calc(var(--header-height) + 1rem) 0 0 0;
    padding-left: calc(var(--nav-width) + 2rem);
  }

  .header{
    height: calc(var(--header-height) + 1rem);
    padding: 0 2rem 0 calc(var(--nav-width) + 2rem);
  }

  .header__img{
    width: 40px;
    height: 40px;
  }

  .header__img img{
    width: 45px;
  }

  .l-navbar{
    left: 0;
    padding: 1rem 1rem 0 0;
  }
  
  /*Show navbar desktop*/
  .show{
    width: calc(var(--nav-width) + 156px);
  }

  /*Add padding body desktop*/
  .body-pd{
    padding-left: calc(var(--nav-width) + 188px);
    background: #0D121C;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #e2cd12;
}

.section-title h3 {
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  top: calc(65px);
  right: 65px;
}

.section-title h2::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #e2cd12;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
  color: #fff;
}



::-webkit-scrollbar {
	width: 12.2px;
}

::-webkit-scrollbar-track {
	box-shadow: inset 0 0 1000px #38383b; 
}

::-webkit-scrollbar-thumb {
	background: #202225; 
	border-radius: 4px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: rgb(84, 81, 81); 
  }



#ReplButton {-webkit-animation-name: txta;
  -webkit-animation-duration: 1.1s;
  animation-name: txta;
  animation-duration: 1.1s}
.repl form {
  -webkit-animation-name: txta;
  -webkit-animation-duration: 1.1s;
  animation-name: txta;
  animation-duration: 1.1s;
  
}
     input[type="url"]::placeholder {
                 
                /* Firefox, Chrome, Opera */
                text-align: center;
            }

input[type="url"]{
    border-radius:20px;
    width:7.5em;


}

  @-webkit-keyframes txta {
  from { opacity:0; } 
  to { opacity:1; }
  }


 input[type="submit"] {
  font-size: 1em;
  font-weight: bold;
  font-family: "Open Sans";
  color: #696666;
  border-radius: 1.5em;
  border: 0.10em solid #F9C23C;
  cursor: pointer;
}





.dblock{
  display: block;
  width: auto;
  height: auto;
  padding: 10px;
  box-shadow: 0 0 5px #9ecaed;
  margin:13px;
  min-width:320px;
  border-radius: 16px; 
  background: var(--first-color);
  overflow:hidden;
}

.dblock h5 {
    text-align:left;
}

.dblock h4 {  
    color: rgb(57, 192, 255);
}

.dblock span {
    color: white;
}
.dblock:hover {
  box-shadow: 0 0 15px #9ecaed;
}
