/* Scss Document */

.container {
  width: 100%;
  margin: 50px auto 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: 60px; }

.slider-container {
  margin-bottom: 60px; }
  .slider-container h2 {
    text-align: center; }

.flexbox-slider {
  margin-top: 50px; }

/*slide styles !!!YOU NEED THEM */
.flexbox-slider {
  display: flex;
  width: 100%;
  height: 700px;
  visibility: hidden; }
  .flexbox-slider .flexbox-slide {
    transition-property: all;
    transition-duration: 0.3s;
    transition-timing-function: linear;
    transition-delay: 0s;
    width: 20%;
    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;
      bottom: 30px;
      max-width: 400px;
      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 {
    flex-shrink: 0;
    width: 80%; }

/* effect 1 styles */
.flexbox-slider.flexbox-slider-1 .flexbox-slide .text-block {
  bottom: 60px; }
.flexbox-slider.flexbox-slider-1:hover .flexbox-slide:hover .text-block {
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: linear;
  transition-delay: 0.5s;
  bottom: 30px;
  opacity: 1;
  visibility: visible; }
