:root {
  --color-primary: rgb(15,12,88);
  --color-secundary: #03D694;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  margin:0;
  padding:0;
}

.slider {
  width: 100%;
  z-index: 5;
  position: relative;
}

.slider__component {
  width: 100vw;
  height: 100vh;
  z-index: 10;
  position: relative;
  opacity: 0;
  visibility: hidden;
}

.slider__component .flickity-page-dots {
  width: calc(100% - 16.66666%);
  left: 50%;
  bottom: 2vh;
  z-index: 35;
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.slider__component .flickity-page-dots li {
  width: 10px;
  height: 10px;
  opacity: 0.8;
  border: 2px solid white;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
}

.slider__component .flickity-page-dots li.is-selected {
  opacity: 1;
  border: 2px solid white;
  background-color: white;
  transition: all 0.3s ease-in-out;
}

.slider__component .flickity-page-dots li:hover {
  opacity: 1;
  border: 2px solid white;
  background-color: white;
  transform: scale(1.2);
  transition: all 0.3s ease-in-out;
}

.slider__loader {
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  position: fixed;
  overflow: hidden;
  z-index: 30;
  background-color: rgb(52, 73, 94);
}

.slider__item {
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: 15;
  position: relative;
}

.slider__item__image {
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  position: absolute;
  overflow: hidden;
  z-index: 15;
}

.slider__item__image img {
  opacity: 0;
  visibility: hidden;
}

.slider__item__text {
  width: calc(100% - 16.66666%);
  top: 50%;
  left: 50%;
  z-index: 25;
  position: absolute;
  text-align: center;
  transform: translate(-50%, -50%);
}

.slider__item__text h1 {
  color: white;
  font-size: 64px;
  font-weight: 700;
  position: relative;
  margin-bottom: 10px;
  opacity: 0;
  visibility: 0;
  font-family: 'Montserrat', sans-serif;
}

@media (min-width: 0px) and (max-width: 768px) {
  .slider__item__text h1 {
    font-size: 43px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .slider__item__text h1 {
    font-size: 28px;
  }
}

.slider__item__text p {
  color: white;
  font-size: 24px;
  font-weight: 400;
  position: relative;
  margin-bottom: 10px;
  opacity: 0;
  visibility: 0;
  font-family: 'Open Sans', sans-serif;
}

@media (min-width: 0px) and (max-width: 1024px) {
  .slider__item__text p {
    font-size:16px;
  }
}

.slider__item__text a {
  color: white;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  position: relative;
  margin-top: 35px;
  padding: 12px 20px;
  border: 0px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  background-color: rgb(52, 73, 94);
  opacity: 0;
  visibility: 0;
  text-transform: uppercase;
  letter-spacing:1px;
  font-family: 'Open Sans', sans-serif;
}

.slider__item__text a.white {
  color:rgb(52, 73, 94);
  background:white;
}

@media (min-width: 0px) and (max-width: 768px) {
  .slider__item__text a {
    font-size: 1rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .slider__item__text a {
    font-size: 1.2rem;
  }
}

.slider__item__text a:hover {
  color: white;
  background-color: #333333;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.slider__controls {
  top: 50%;
  z-index: 30;
  position: absolute;
  transform: translateY(-50%);
  background:white;
}

@media (min-width: 0px) and (max-width: 768px) {
  .slider__controls {
    display: none;
  }
}

.slider__controls.is-prev {
  left: 0px;
}

.slider__controls.is-next {
  right: 0px;
}

.slider__controls button {
  color:#333333;
  font-size: 2rem;
  cursor: pointer;
  width: 54px;
  height: 54px;
  border: 0px;
  border-radius: 0px;
  padding: 0px;
  position: relative;
  text-align: center;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

@media (min-width: 0px) and (max-width: 768px) {
  .slider__controls button {
    font-size: 1.4rem;
    width: 36px;
    height: 36px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .slider__controls button {
    font-size: 1.6rem;
    width: 46px;
    height: 46px;
  }
}

.slider__controls:hover {
  background:#333333;
}

.slider__controls button:hover {
  color: white;
  transition: all 0.3s ease-in-out;
}

.slider__controls button:focus {
  outline: 0px;
  box-shadow: none;
  border-radius: 0px;
}

@media(min-width:1200px){
  span.lbr::before{
    content:"\A";
    white-space:pre;
  }
}
