/*common styles !!!YOU DON'T NEED THEM */
body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 17px;
  color: #212121;
  line-height: 1.4;
    margin: 0px;
}
.container {
  width: 100%;
  margin: 0;
}
.container h1 {
  font-size: 25px;
  text-align: center;
}
.container h1 span {
  position: relative;
  font-family: "Merienda", cursive;
  color: #ca9ce1;
}
.container h1 span:after {
  position: absolute;
  left: 0;
  bottom: -10px;
  content: "~";
  width: 100%;
  text-align: center;
}
.container .subheader {
  text-align: center;
  margin-top: 15px;
}
.link {
  display: flex;
  justify-content: center;
  width: 800px;
  margin: 30px auto 0;
}
.link a {
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: linear;
  transition-delay: 0s;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 40px;
  color: inherit;
  font-size: inherit;
  text-decoration: none;
}
.link a:hover {
  color: #ca9ce1;
}
.link a:last-child {
  margin-right: 0;
}
.link a i {
  color: #ca9ce1;
  margin-right: 9px;
  font-size: 30px;
}
.slider-containers {
  width: 100%;
  margin-top: 0px;
}
.slider-container {
  margin-bottom: 0px;
}
.slider-container h2 {
  text-align: center;
}
.flexbox-slider {
  margin-top: 0px;
}
/*slide styles !!!YOU NEED THEM */
.flexbox-slider {
  display: flex;
  width: 100%;
  height: 100%;
  visibility: hidden;
}
.flexbox-slider .flexbox-slide {
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: linear;
  transition-delay: 0s;
  width: 33.4%;
  height: 100%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  visibility: visible;
}
.flexbox-slider .flexbox-slide:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 2;
  opacity: 0;
}
.flexbox-slider .flexbox-slide img {
  position: absolute;
  top: 50%;
  left: 50%;
  height: auto;
  width: auto;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.flexbox-slider .flexbox-slide .text-block {
  position: absolute;
  left: 30px;
  top: 30px;
  padding: 20px;
  /*border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;*/
  z-index: 4;
  visibility: hidden;
  opacity: 0;
}
.flexbox-slider .flexbox-slide .text-block h3 {
  font-size: 20px;
  font-weight: 700;
}
.flexbox-slider:hover .flexbox-slide:hover {
    cursor: default;
  flex-shrink: 0;
  width: 60%;
}
.flexbox-slider .flexbox-slide .text-block img {
    width: auto;
}
/* effect 2 styles */
.flexbox-slider.flexbox-slider-2 .flexbox-slide .text-block {
  left: 0px;
}
.flexbox-slider.flexbox-slider-2:hover .flexbox-slide:not(:hover):after {
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: linear;
  transition-delay: 0s;
  opacity: 1;
}
.flexbox-slider.flexbox-slider-2:hover .flexbox-slide:hover .text-block {
 /* transition-property: all;
  transition-duration: 0.3s;
    transition-timing-function:  cubic-bezier(0, 0, 0.26, 0.89);
  transition-delay: 0.5s;*/
    -webkit-transition: opacity 1s ease-in-out;
  -moz-transition: opacity 1s ease-in-out;
  -ms-transition: opacity 1s ease-in-out;
  -o-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
  left: 50%;
    top: 70%;
  opacity: 1;
  visibility: visible;
}


.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: black;
    color: yellow;
    text-align: center;
    z-index: 20;
    height: 80px;
}
.fesq {
    float: left;
    width: 25%;
    margin-top: 20px;
}
.fcentro {
    float: left;
    width: 50%;
    margin-top: 10px;
}
.fdir {
    float: right;
    width: 25%;
    margin-top: 20px;
}