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

.process-page {
  margin-top: 4rem;
  padding: 3rem;
}

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

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

.process-page .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);
}

.process-page .copy span{
  display: inline-block;
}

.process-page .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%;
}


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

.process-page .copy span a img{
  margin-right: 0.5rem;
}


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

.process-page .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;
}


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

.process-page .list-process{
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.process-page .list-process .process{
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.process-page .list-process .process .copy-process{
  height: 100%;
  align-items: flex-start;
  max-width: 30rem;
}

.process-page .list-process .process .copy-process h2{
  font-family: 'Lato';
  font-weight: bold;
  font-size: 1.6rem;
  max-width: 15rem;
  color: var(--title);
  margin-bottom: 0.6rem;
}

.process-page .list-process .delivery .copy-process h2{
  color: var(--primary);
  text-shadow: 0px 0px 10px var(--primary-opac);
  text-decoration: underline;
}

.process-page .list-process .process .copy-process p{
  font-family: 'Lato';
  font-weight: normal;
  font-size: 1.2rem;
  max-width: 15rem;
  color: var(--text);
}

.process-page .list-process .delivery .copy-process p{
 
  text-shadow: 0px 0px 10px var(--text-opac);
}

.process-page .list-process .process img{
  height: 2rem;
  width: 2rem;
  margin-left: 2rem;
}


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

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

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

  .process-page{
    margin-top: 4rem;
    display: flex;
    align-items: center;
    padding: 1.3rem;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10vh;
  }

  .process-page .copy{
    display: flex;
    flex-direction: column;
    
    justify-content: center;
  }
  .process-page .copy .title{
    flex-direction: column;
  }

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

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

  .process-page .list-process{
    width: 100%;
  }
  
  .process-page .list-process .process{
    flex-direction: column;
    width: 60%;
  }
  
  .process-page .list-process .process .copy-process{
    align-items: center;
    max-width: 100%;
  }
  
  .process-page .list-process .process .copy-process h2{

    font-size: 1.9rem;
    max-width: 100%;
    text-align: center;
  }
  
  .process-page .list-process .process .copy-process p{
    font-size: 1.5rem;
    max-width: 100%;
    text-align: center;
  }
  
  .process-page .list-process .process img{
    height: 1.8rem;
    width: 1.8rem;
    margin-top: 1rem;
    transform: rotate(90deg);
  }

  
}

@media (max-width:650px){
  .process-page .list-process{
    align-items: center;
    flex-direction: column;
  }

  .process-page .list-process .process img{
    margin-left: 0;
  }
}

@media (max-width:500px){
  .process-page .list-process .process{
    flex-direction: column;
    width: 80%;
  }
}
