.contact-container{
  background: var(--primary-color);
  color: var(--light-black-color);
}

.contact-content{
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 100%;

  max-width: 140rem;
  margin: 0 auto;
  padding: 3rem;
  height: 100%;
  overflow: hidden;
}

.contact-text{
  font-size: 30px;
}

.contact-now {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--light-black-color);
  padding: 2rem 4rem;
  color: var(--primary-color);
  border: 0;
  border-radius: 20px;
  font-size: 2.4rem;
  cursor: pointer;
  animation: pulse 3s infinite;
  transition: filter .5s;
  width: 500px;
  box-shadow: var(--light-black-color) 0 0 20px;
}

.contact-now img {
  width: 50px;
}


@media (max-width: 800px) {
  .contact-content{
    flex-direction: column;
  }

  .contact-text{
    font-size: 12px;
    text-align: center;
  }

  .contact-now {
    padding: 1rem 2rem;
    border-radius: 20px;
    font-size: 2rem;
    width: 90%;
    margin-top: 16px;
    z-index: 1;
  }

  .contact-now span {
    font-size: 14px;
  }
}