/*button cta_contact*/
.cta_contact_container {
  width: 10rem;
  background-color: #d13531;
}
.cta_contact {
  position: fixed;
  bottom: 0rem;
  right: 6rem;
  background-color: #d10565;
  opacity: 0.8;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  font-size: 1em;
  font-weight: 500;
  padding: 0.5em 1em;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
  text-align: center;
  z-index: 9999;
  margin: auto;
}
.cta_contact a {
  color: white;
  text-decoration: none;
}

.cta_contact:hover {
  opacity: 1;
  background-color: #d10565;
}

.cta_contact a:hover {
  color: white;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .cta_contact {
    position: fixed;
    bottom: 0rem;
    right: 5rem;
    background-color: #d10565;
    opacity: 0.8;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    font-size: 1em;
    font-weight: 500;
    padding: 0.5em 1em;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
    text-align: center;
    z-index: 9999;
  }
}
/*end button cta_contact*/
