
/* Content blocks */

.content_form--wrapper,
.content_banner--wrapper {
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  padding-top: 2em;
  padding-left: .5em;
  padding-right: .5em;
  padding-bottom: 2em;
  font-size: 1rem;
}

.content_banner {
  width: 100%;
  padding: 1em 1.5em;
  box-shadow: 0 .3em 1em 0 rgb(0 0 0 / 11%);
  border-radius: .5em;
  transition: all 0.3s cubic-bezier(.25,.8,.25,1);
  cursor: pointer;
}

.content_banner:hover {
  box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

.content_banner .image {
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.content_banner .image img {
  border-radius: .5em;
  display: block;
  margin: auto;
  max-width: 100%;
  height: auto;
}

.content_banner .image + .content {
  margin-top: 1em;
}

.content_banner .content {
  display: flex;
  flex-direction: column;
}

.content_banner .content > *:not(:last-child) {
  margin-bottom: 1rem;
}


.content_form .header,
.content_banner .header {
  font-size: 1.5em;
  font-weight: 500;
}

.content_banner .content {
  font-size: 1em;
}

.content_banner .extra {
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: space-between;
  align-items: center;
}

.content_banner .button {
  display: flex;
  padding: 0.3em 1em;
  border: none;
  border-radius: 1.1em;

  background-color: #ed2678;
  color: white;

  font-weight: 600;
  text-decoration: none;

  transition: all .2s;
}


.content_banner .button:hover {
  background-color: #ee7688;
}

.content_banner .price {
  font-weight: 600;
  font-size: 1.2em;
}

@media (min-width: 768px) {
  
  .content_form .header,
  .content_banner .header {
    font-size: 2em;
  }

  .content_banner {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
  }
  .content_banner .image {
    flex: 1 1 35%;
  }

  .content_banner .content {
    flex: 1 1 100%;
  }

  .content_banner .image + .content {
    flex: 1 1 65%;
    margin-top: 0;
    margin-left: 1em;
  }
}

/* CONTETNT FORM */
.content_form, 
.content_form * {
  box-sizing: border-box;
}

.content_form .header {
  display: block;
  margin-bottom: 0.4em;
}

.content_form form {
  display: flex;
  flex-direction: column;
  width: 100%;
  font-size: 18px;
}

@media (min-width: 768px) {
  .content_form form {
    max-width: 35vw;
    font-size: 1.35vw;
  }
}

.content_form .form-control {
  margin-bottom: 1em;
  position: relative;
}

.content_form .form-control label {
  display: none;
}

.content_form .form-control input.wpcf7-form-control,
.content_form .form-control select.wpcf7-form-control {
  width: 100%;
  background: #f3f3f3;
  border-radius: .5em;
  padding: .8em 1.2em;
  font-size: inherit;
  color: #666;
  border: 1px solid transparent;
  transition: .2s;
}

.content_form .form-control input[type=submit]{
  text-align: center;
  font-weight: bold;
  background: #15B6A4;
  color: #fff;
  text-transform: uppercase;
}

.content_form .form-control input[type=submit]:hover{
  background: #118a7c;
}

.content_form .wpcf7-not-valid-tip {
  font-size: .7em;
  margin-top: .5em;
}

.content_form .wpcf7 form .wpcf7-response-output {
  margin: 0 0 0 0;
  font-size: .8em;
  padding: 1rem 2rem;
  text-align: center;
  border-radius: 0.5em;
}

.content_form .wpcf7-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}