*{
  box-sizing: border-box;
  margin: 0;
}


a{
  text-decoration: none;
  color: #000;
}

body{
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
  display: flex;  
  height: 100vh;
}

html {
  scroll-behavior: smooth;
}


.outer-wrapper{
  display: flex;
  width: 100vh;
  height: calc(100vw - 80px);
  transform: rotate(-90deg) translateX(-100vh);
  transform-origin: top left;
  overflow-y: scroll;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  position: relative;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
::-webkit-scrollbar{
  display: none;
}

.wrapper{
  display: flex;
  flex-direction: row;
  transform: rotate(90deg) translateY(-100vh);
  transform-origin: top left; 
}

.slide{
  width: calc(100vw - 80px);
  height: 100vh;
  scroll-snap-align: center;
}

.home{
  display: flex;
}

.home-container{
  width: 100%;
}

.header{
  width: calc(100vw - 80px);
  height: 100px;
  border-bottom: 1px solid #009ADD;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px;
  position: absolute;
  background-color: #FFFFFF;
  z-index: 999;
}

.noticia-header{
  width: 100%;
  position: unset;
}

.current{
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0.04em;
  color: #001970;
  height: 100%;
  border-bottom: 6px solid #001970;
  display: flex;
  align-items: center;
  position: relative;
  top: 3.5px;
}

.next{
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0.04em;
  color: #515F66;
  color: #7B8285;
}

.h-current-blue{
  border-bottom: 5px solid #009ADD;
}

.body-slide{
  width: 100%;
  height: 100%;
  padding: 100px 0 0 0;
  display: flex;
  justify-content: space-between;
}

.h-bs{
  padding-left: 160px;
}

@media (min-width: 299px) and (max-width: 699px) {
  body{
    flex-direction: column;  
    height: auto;
  }

  .outer-wrapper{
    display: flex;
    width: 100%;
    height: 100%;
    transform: none;
    transform-origin: none; 
  }

  .wrapper{
    display: flex;
    flex-direction: column;
    transform: none;
    transform-origin: none; 
  }

  .slide{
    width: 100vw;
    height: auto;
    
  }

  .header{
    display: none;
  }

  .body-slide{
    padding: 0;
    justify-content: unset;
    flex-direction: column;
  }
}