.cta {
  visibility: hidden;
}

@media (min-width: 800px) {
  .cta {
    visibility: visible;
  }

  .cta__item__mail {
    position: fixed;
    right: -200px;
    width: 250px;
    height: 50px;
    top: 45vh;
    z-index: 500;
    color: white;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    background: var(--primary);
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 1);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 1);
  }

  .cta__item__mail:hover {
    right: 0;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }

  .cta__item__phone {
    position: fixed;
    right: -200px;
    width: 250px;
    height: 50px;
    top: 51vh;
    z-index: 500;
    color: white;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    background: var(--primary);
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 1);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 1);

  }

  .cta__item__phone:hover {
    right: 0;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }

  .cta__item__social {
    position: fixed;
    right: -200px;
    width: 250px;
    height: 50px;
    top: 57vh;
    z-index: 500;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    background: var(--primary);
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 1);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .cta__item:hover {
    right: 0;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }

  .cta__item a {
    width: 50px;
    height: 50px;
  }

  .cta__item i {
    width: 50px;
    color: white;
    height: 50px;
    padding: 10px 0;
    background: var(--primary);
    text-align: center;
    font-size: 33px;
    vertical-align: top;
  }

  .cta__info {
    width: 230px;
    color: white;
    visibility: visible;
    font-weight: 100;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 501;
    padding-top: 1rem;
    text-align: right;
  }

  .cta__info__social {
    color: white;
    visibility: visible;
    font-weight: 100;
    z-index: 501;
    text-align: left;
  }
}

@media (max-height: 900px) {
  .cta__item__mail {
    top: 43vh;
  }

  .cta__item__phone {
    top: 50vh;
  }

  .cta__item__social {
    top: 57vh;
  }
}

@media (max-height: 770px) {
  .cta__item__mail {
    top: 42vh;
  }

  .cta__item__phone {
    top: 50vh;
  }

  .cta__item__social {
    top: 58vh;
  }
}

@media (max-height: 650px) {
  .cta__item__mail {
    top: 41vh;
  }

  .cta__item__phone {
    top: 50vh;
  }

  .cta__item__social {
    top: 59vh;
  }
}

@media (max-height: 590px) {
  .cta__item__mail {
    top: 40vh;
  }

  .cta__item__phone {
    top: 50vh;
  }

  .cta__item__social {
    top: 60vh;
  }
}