

a: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: 68px;

  /*===== Colors =====*/
  --first-color:  #192132;
  --first-color-light: #ffffff;
  --white-color: #0D121C;
  /*===== Font and typography =====*/
  --body-font: 'Poppins', sans-serif;
  --normal-font-size: 0.875rem;
  --heading-font-size: 1.25rem;
  --small-font-size: 0.75rem;
  
  /*===== 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;
}

.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__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;
}

.link {
  display: block;
  width: 90%;
  height: auto;
  padding: 16px 20px;
  box-shadow: 0 0 8px rgba(158, 202, 237, 0.3);
  margin: 20px auto;
  min-width: min(420px, 90vw);
  max-width: 670px;
  border-radius: 16px;
  background: var(--first-color);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.link h5 {
  text-align: left;
  margin: 0;
  font-size: var(--heading-font-size);
  line-height: 1.4;
  word-wrap: break-word;
}

.link span {
  color: white;
  font-size: var(--small-font-size);
}

.link:hover {
  box-shadow: 0 0 20px rgba(158, 202, 237, 0.4);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(25, 33, 50, 0.95);
}

/*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 (max-width: 767px) {
  .link {
    width: 95%;
    padding: 12px 16px;
    margin: 15px auto;
    min-width: 0;
  }
  
  .link h5 {
    font-size: calc(var(--heading-font-size) * 0.9);
  }

  .section-title img {
    width: 15vw !important;
  }
}

@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: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(56, 56, 59, 0.2);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: rgba(32, 34, 37, 0.8);
  border-radius: 10px;
  border: 2px solid rgba(56, 56, 59, 0.2);
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(84, 81, 81, 0.9);
  border-width: 1px;
}



#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
  
}

  @-webkit-keyframes txta {
    from { opacity:0; transform: translateY(10px); } 
    to { opacity:1; transform: translateY(0); }
  }
  
  @keyframes txta {
    from { opacity:0; transform: translateY(10px); } 
    to { opacity:1; transform: translateY(0); }
  }
