/* call to action */
.wrap-call-to-action{
    position: relative;
    height: auto;
    width: 100%;
    padding: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-self: center;
    text-align: center;
    /* border: solid black; */
}

.wrap-call-to-action.services{
    margin-top: 5%;
}

.call-to-action {
    width: auto;
    height: auto;
    min-height: 300px;
    min-width: 700px;
    max-height: 380px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    color: white;
    align-self: center;
    padding: 5%;
    background: linear-gradient(180deg,rgba(5, 50, 65, 1) 0%, rgba(30, 76, 90, 1) 100%);
    border-radius: 48px;
    gap: 30px;
    z-index: 5;
    transition: all 0.3s linear;
}

.call-to-action:hover{
    transform: scale(1.08);
}


.call-to-action h3 {
  font-size: 29.64px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 100;
}

.call-to-action p {
  font-family: 'Work Sans', sans-serif;
  font-size: 26.35px;
  font-weight: 100;
}

/* image background */
.bg-img-lines{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
}

.bg-img-lines img{
    width: 100%;
    height: 100%;
    object-fit: none;
}

/* .bg-img-lines.top-left{
    left: 50px;
    top: 0; 
} */

.bg-img-lines.bottom-left{
    left: 0;
    bottom: 0; 
}


.button-sobre {   
  width: auto;
  height: auto; 
  background: #e5e7e9;
  color: #222121;
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 29px;
  border: none;
  border-radius: 48px;
  padding: 12px 40px;
  cursor: pointer;
  box-shadow: none;
  outline: none;
  display: inline-block;
  transition: all 0.3s, color 0.3s;
}

.button-sobre:hover {
  background: #EC6938;
  color: #f0f0f0;
}

@media (max-width: 900px) {
    .wrap-call-to-action{
         padding: 5% 5% 10% 5%;
    }
    .call-to-action{
        min-height: auto;
        min-width: auto;
        gap: 10px;
        border-radius: 16px;
    }
    .call-to-action p{
        font-size: clamp(1rem, 2.8vw, 2.5rem);
    }
    .call-to-action h1{
        font-size: clamp(1.28rem, 2.8vw, 2.5rem);
    }
    .call-to-action h3{
        font-size:clamp(1.08rem, 2.8vw, 2.5rem);
    }

    .button-sobre{
        font-size: clamp(1rem, 2.8vw, 2.5rem);
    }

}
 





