@import url('https://fonts.googleapis.com/css2?family=League+Spartan&family=Poppins:ital@1&display=swap');
* {
    font-family: 'League Spartan', sans-serif;
    margin: 0;
    padding: 0;
}

.tonavbar{
    z-index: 2;
    display: none;
    background-color: rgba(0, 0, 0, .4);
    width: 100%;
    height: 100%;
}

.tonavbar.open{
    display: block;
    position: fixed;
}


/*#div-1-background {
    background-image: url("../imagenes/background_1color4_ats.png");
    background-size: 100% 800px;
    height: 250px;
    /* opacity: 1; */
/*}*/

#div-2-background {
    background-image: url("../imagenes/background_2color4_ats.png");
    background-size: 100% 600px;
    background-repeat: no-repeat;
    height: 800px;
    /* opacity: 0.8; */
}

.sidebar {
    z-index: 2;
    transform: translateX(-100%);
    transition: all 500ms ease;
    position: fixed;
    height: 100vh;
    margin-top: min(20px);
}

.sidebar.open {
    transform: translateX(0%);
}

.ff-roboto {
    font-family: 'Roboto Mono', monospace;
}

.ff-oswald-sans-serif{
    font-family: 'Oswald', sans-serif;
}

ol {
    counter-reset: item;
}

ol > li{
   display: block; 
}

ol li:before {
    content: counter(item) ". ";
    counter-increment: item;
    font-weight: bold;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  height: 100px;
  width: 100px;
  outline: black;
  background-size: 100%, 100%;
  background-image: none;
}

.carousel-control-next-icon:after
{
  content: '>';
  font-size: 55px;
  color: #013F4E;
}

.carousel-control-prev-icon:after {
  content: '<';
  font-size: 55px;
  color: #013F4E;
}

.carousel-control-prev {
    left: -100px;
    opacity: 1;
}
.carousel-control-next {
    right: -100px;
    opacity: 1;
}

.carousel-item {
    transition: transform 0.5s ease-in-out;
}
  
  .carousel-fade .active.carousel-item-start,
  .carousel-fade .active.carousel-item-end {
    transition: opacity 0s 0.5s;
}

@media only screen and (max-width: 600px) {
  .card-info{
    margin-bottom: 20px;
  }
}

