.services-header{
    background-image: url(/images/backgroundserv.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 120px;
    padding-bottom: 30px;
}

.services-title{
    color: white;
    font-size: 50px;
    font-family:'Bebas Neue';
}

.services-card{
    margin: 10px 0;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0px 0px 10px 7px rgb(0 0 0 / 15%);
}

.card-content{
    display: grid;
    grid-template-columns: 1fr 2fr;
}

@media only screen and (max-width: 600px) {
    .card-content {
        display: flex;
        flex-direction: column;
    }
  }

  @media only screen and (max-width: 600px) {
    .card-content img{
        width: 40%;
        margin-left: 100px;
        margin-bottom: 20px;
    }
  }

.card-text{
    margin-left: 30px;
}

@media only screen and (max-width: 600px) {
    .card-text {
        margin-left: 10px;
    }
  }

.card-text h2{
    color:#244459;
    font-size: 35px;
    font-family:'Barlow Semi Condensed';
    font-weight: bold;
}

.card-text li{
    list-style-type: circle;
    font-family: sans-serif;
    font-size: 16px;
}

.check-card{
    vertical-align:middle;
    margin-top: 30px;
    font-family: sans-serif;
    font-size: 16px;
    font-style: italic;
    font-weight: bold;
}

.final-card{
    padding: 20px 30px;
}

.final-title{
    color:#244459;
    font-size: 30px;
    font-family:'Barlow Semi Condensed';
    font-weight: bold;
}

@media only screen and (max-width: 800px) {
    .form-title {
        margin-top: 20px;
    }
  } 

.final-left{
    padding-left: 50px;
}

@media only screen and (max-width: 800px) {
    .final-left {
        padding-left: 0;
    }
  } 

.final-right{
    padding-right: 50px;
}

@media only screen and (max-width: 800px) {
    .final-right {
        padding-right: 0;
    }
  } 

.final-text{
    font-family: sans-serif;
    font-size: 14px;
    text-align: center;
}

.formulario{
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 500px;
    margin: 0 auto;
    grid-gap: 10px;
}

@media only screen and (max-width: 600px) {
    .formulario {
        display: flex;
        flex-direction: column;
    }
  }  

.formulario input{
    margin-bottom: 10px;
    box-sizing: border-box;
    width: 100%;
    border-radius: 5px;
    border: 1px solid #a6a9a8;
    font-size: 10px;
    padding: 5px 20px;
    background-color: #f6fafa;
}

.formulario textarea{
    box-sizing: border-box;
    width: 100%;
    height: calc(100% - 10px);
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #a6a9a8;
    font-size: 10px;
    padding: 5px 20px;
    background-color: #f6fafa;
}

@media only screen and (max-width: 600px) {
    .formulario textarea{
        height: 100px;
    }
  }  

.botao-contato{
    grid-column-start: 1;
    grid-column-end: span 2;
    background-color: #0dcaf0;
    color: white;
    font-size: 12px;
    font-weight: bold;
    border-radius: 15px;
    font-family: sans-serif;
    font-style: italic;
    text-decoration: none;
    text-align: center;
    padding: 10px 15px;
    transition: 0.5s;
}

.botao-contato:hover{
    background-color:#071D59;
}

.form-msg{
    grid-column-start: 1;
    grid-column-end: span 2;
    margin: 0 5px;
}
