.back-home{
  margin: -2rem 0 0 1rem;
  position: absolute;
}



.get-site {
  margin-top: 4rem;
  padding: 3rem;
}

.get-site .copy .title{
  display: flex;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 0.8rem;
}

.get-site .copy .title h1{
  font-family: 'Roboto';
  font-weight: 600;
  font-size: 2.5rem;
  max-width: 50%;
  color: var(--title);
}

.get-site .copy p{
  font-family: 'Lato';
  text-align: left;
  font-weight: normal;
  max-width: 60%;
  font-size: 1.3rem;
  line-height: 1.8rem;
  margin-bottom: 1.4rem;
  color: var(--text);
}

.get-site .copy span{
  display: inline-block;
}

.get-site .copy span a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
  background-color: var(--whats-cta-bg);
  padding: 0.7rem 1.8rem 0.9rem 1.8rem;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
  border-radius: 2rem;
  font-family: 'Lato';
  font-weight: bold;
  font-size: 1.5rem;
  transition: transform 200ms ease-in-out;
  width: 100%;
}


.get-site .copy span a:hover{
  opacity: 0.8;
  background-color: var(--title);
  transform: scale(1.05);
}

.get-site .copy span a img{
  margin-right: 0.5rem;
}


/* @keyframes floating-right {
  0%{
    transform: translateX(0px);
  }
  50%{
    transform: translateX(-10px);
  }
  100%{
    transform: translateX(0px);
  }
} */

.get-site .copy .title span .bg-icon{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.8rem;
  border-radius: 100%;
  background-color: var(--secondary);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
  animation: floating-right 2s infinite;
  margin-right: 0.5rem;
}


.get-site .copy .title span .bg-icon img{
  width: 2.4rem;
  height: 2.4rem;
}

@media (max-width:1000px){
  .get-site .copy .title h1{
    max-width: 90%;
  }
  
  .get-site .copy p{
    max-width: 100%;
  }
}

@media (max-width:700px){
  .back-home{
    margin: 2rem 0 0 0.8rem;
  }

  .back-home img{
    height: 3rem;
  }
  

  .get-site{
    margin: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 1.3rem;
  }

  .get-site .copy{
    display: flex;
    flex-direction: column;
    
    justify-content: center;
  }
  .get-site .copy .title{
    flex-direction: column;
  }

  .get-site .copy .title h1{
    max-width: 100%;
    font-size: 2.5rem;
    text-align: center;
  }

  .get-site .copy p{
    max-width: 100%;
    text-align: center;
    font-size: 1.5rem;
  }
  
  .get-site .copy span a {
    justify-content: center;
    max-width: auto;
    text-align: center;
  }
}
