@charset "UTF-8";
/*!
    Theme Name: AEP starter theme
    Theme URI: pending
    Description: Starter theme with pages to validate business idea
    Version: 1.0.0
    Author: Armando Niño
    Author URI: pending
    Tags: Gulp

    License: MIT
    License URI: http://opensource.org/licenses/mit-license.php
*/
@import url("https://fonts.googleapis.com/css2?family=K2D:wght@300;500;700&display=swap");
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after {
  content: '';
  content: none; }

q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

/*max width of the document*/
/*width of the containers on mobile*/
/*
base styles
*/
/***************************
***For widths of document
***************************/
.w-95 {
  width: 95%; }

.w-100 {
  width: 100%; }

/*for max widths*/
.mxw-narrow {
  max-width: 1110px; }

.mxw-full {
  max-width: 100%; }

.flex {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch; }
  @media only screen and (min-width: 768px) {
    .flex {
      flex-direction: row; } }

.flex-horizontal {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  overflow-x: auto;
  justify-content: flex-start;
  padding-bottom: 5px; }
  .flex-horizontal::-webkit-scrollbar {
    width: 0 !important;
    overflow: -moz-scrollbars-none;
    -ms-overflow-style: none;
    display: none; }
  @media only screen and (min-width: 768px) {
    .flex-horizontal {
      justify-content: center;
      align-items: stretch;
      flex-wrap: nowrap;
      overflow: visible; } }
  .flex-horizontal > div {
    flex: 0 0 auto; }
    @media only screen and (min-width: 768px) {
      .flex-horizontal > div {
        flex: auto; } }
    .flex-horizontal > div:last-child {
      width: 1px;
      opacity: 0; }
      @media only screen and (min-width: 768px) {
        .flex-horizontal > div:last-child {
          display: none; } }

.box-shadow {
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3); }

.brds {
  border-radius: 6px; }

p {
  font-size: 0.9em;
  margin-bottom: 20px;
  line-height: 1.4em; }
  @media only screen and (min-width: 768px) {
    p {
      font-size: 1em; } }
  p:last-child {
    margin-bottom: 0; }
  p span {
    font-weight: bold; }

h1, h2, h3, h4, h5, h6 {
  text-transform: none;
  font-weight: bold;
  line-height: 1.4em; }

h1 {
  font-size: 2.3em; }

h2 {
  font-size: 2em; }

h3 {
  font-size: 1.7em; }

h4 {
  font-size: 1.5em; }

h5 {
  font-size: 1.3em; }

h6 {
  font-size: 1.2em; }

/***********************************
********
for content that is going to be absolute centered both in X and Y
*******************************************/
.abcc {
  position: relative; }
  @media only screen and (min-width: 768px) {
    .abcc {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%); } }

/*
Main files where load all the rest files
*/
/*
Modules styles
*/
.flex-normal {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center; }
  @media only screen and (min-width: 768px) {
    .flex-normal {
      flex-direction: row; } }

.flex-horizontal {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  overflow-x: auto;
  justify-content: flex-start;
  padding-bottom: 5px; }
  .flex-horizontal::-webkit-scrollbar {
    width: 0 !important;
    overflow: -moz-scrollbars-none;
    -ms-overflow-style: none;
    display: none; }
  @media only screen and (min-width: 768px) {
    .flex-horizontal {
      justify-content: center;
      align-items: flex-start;
      flex-wrap: wrap;
      overflow: visible; } }
  .flex-horizontal > div {
    flex: 0 0 auto; }
    @media only screen and (min-width: 768px) {
      .flex-horizontal > div {
        flex: auto; } }
    .flex-horizontal > div:last-child {
      width: 1px !important;
      opacity: 0; }
      @media only screen and (min-width: 768px) {
        .flex-horizontal > div:last-child {
          display: none; } }

body {
  font-family: "K2D", sans-serif;
  background-color: #f7f9fb; }
  @media only screen and (min-width: 768px) {
    body {
      margin-top: 85px; } }
  body.lb-disable-scrolling {
    overflow: hidden; }

nav {
  width: 100%;
  height: auto;
  border-bottom: solid 1px #ccc;
  flex-direction: row;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: white;
  transition: all 0.3s ease; }
  nav .nav-up,
  nav .nav-down {
    padding: 0 6%; }
    @media only screen and (min-width: 768px) {
      nav .nav-up,
      nav .nav-down {
        padding: 0 3%; } }
  nav.landing .nav-down {
    justify-content: center; }
    nav.landing .nav-down .logo {
      background: transparent url('assets/images/logo.png') no-repeat center;
      background-size: auto 90%; }
  nav.headroom--unpinned {
    transform: translateY(-100%); }
  nav.headroom--pinned {
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3); }
  nav.headroom--top {
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0); }
  nav .nav-up {
    width: 100%;
    background-color: #f4f4f4;
    justify-content: space-between;
    padding: 10px 3%;
    font-size: 0.9em;
    display: none; }
    @media only screen and (min-width: 768px) {
      nav .nav-up {
        display: flex;
        display: none; } }
    nav .nav-up .icon-text .icon {
      margin-right: 5px; }
      nav .nav-up .icon-text .icon svg {
        fill: black !important;
        stroke: black; }
      nav .nav-up .icon-text .icon.open {
        margin-left: 5px;
        margin-right: 0;
        width: auto; }
        nav .nav-up .icon-text .icon.open svg {
          width: 15px;
          margin-left: 5px; }
    nav .nav-up .icon-text a {
      text-decoration: none;
      color: #666; }
      nav .nav-up .icon-text a:hover {
        color: #3E7CB1; }
        nav .nav-up .icon-text a:hover svg {
          fill: blue; }
    nav .nav-up .info .mail {
      margin-right: 20px; }
  nav .nav-down {
    justify-content: space-between;
    width: 100%;
    flex-direction: row; }

.has-svg {
  width: 20px; }
  .has-svg svg {
    width: 100%;
    height: auto; }

.logo {
  width: 150px;
  height: 50px;
  background: transparent url('assets/images/logo.png') no-repeat center left;
  background-size: auto 90%; }
  @media only screen and (min-width: 768px) {
    .logo {
      width: 200px;
      height: 85px;
      background: transparent url('assets/images/logo.png') no-repeat center;
      background-size: auto 90%; } }

.menu {
  display: none;
  width: 100%;
  padding-bottom: 20px;
  margin: 20px 0; }
  @media only screen and (min-width: 768px) {
    .menu {
      display: flex;
      width: auto;
      padding-bottom: 0px;
      margin: 0; } }
  .menu.open {
    display: flex; }
  .menu .menu-item {
    position: relative;
    width: 100%; }
    @media only screen and (min-width: 768px) {
      .menu .menu-item {
        width: auto; } }
    .menu .menu-item.with-sub-menu:hover ul {
      display: block; }
      @media only screen and (min-width: 768px) {
        .menu .menu-item.with-sub-menu:hover ul {
          opacity: 1;
          pointer-events: auto; }
          .menu .menu-item.with-sub-menu:hover ul:hover {
            opacity: 1;
            pointer-events: auto; } }
    @media only screen and (min-width: 768px) {
      .menu .menu-item.main {
        margin-left: 20px; } }
    .menu .menu-item.main a {
      background-color: black;
      color: white;
      padding: 12px 40px;
      border-radius: 4px; }
      .menu .menu-item.main a:hover {
        background-color: #8B54FB;
        color: white; }
    .menu .menu-item a {
      text-transform: uppercase;
      text-decoration: none;
      padding: 25px 22px;
      display: block;
      font-weight: bold;
      color: black;
      font-size: 1em;
      transition: all 0.3s ease;
      border-top: transparent solid 3px;
      border-bottom: transparent solid 3px;
      text-transform: none; }
      @media only screen and (min-width: 768px) {
        .menu .menu-item a:hover {
          color: black;
          border-bottom: #3E7CB1 solid 3px; } }
      .menu .menu-item a.active {
        color: black;
        border-top: transparent solid 3px;
        border-bottom: #3E7CB1 solid 3px; }
        @media only screen and (min-width: 768px) {
          .menu .menu-item a.active {
            border-top: #3E7CB1 solid 3px;
            border-bottom: transparent solid 3px; } }
    .menu .menu-item ul {
      background-color: black;
      width: 100%;
      transition: all 0.3s ease;
      display: none; }
      @media only screen and (min-width: 768px) {
        .menu .menu-item ul {
          position: absolute;
          transform: translate(0, 70px);
          right: 0;
          top: 0;
          opacity: 0;
          pointer-events: none;
          width: 180%;
          display: block; } }
      .menu .menu-item ul li a {
        color: white;
        position: relative; }
        .menu .menu-item ul li a:hover {
          color: white; }
        .menu .menu-item ul li a span {
          position: absolute;
          text-transform: uppercase;
          font-size: 0.55em;
          background-color: #8B54FB;
          padding: 5px;
          top: 10px;
          right: 0;
          letter-spacing: 0.7px; }

@media only screen and (min-width: 768px) {
  .menu-trigger {
    display: none; } }

.menu-trigger .icon:nth-of-type(2) {
  display: none;
  width: 15px;
  margin-top: 4px; }
  .menu-trigger .icon:nth-of-type(2) .has-svg {
    width: 100%; }
    .menu-trigger .icon:nth-of-type(2) .has-svg svg {
      width: 100%;
      height: auto; }

.menu-trigger.open .icon:nth-of-type(1) {
  display: none; }

.menu-trigger.open .icon:nth-of-type(2) {
  display: block; }

.columns {
  align-items: stretch;
  align-content: stretch;
  width: 95%;
  margin: 00px auto;
  max-width: 1200px; }
  .columns--double .item {
    width: 100%;
    margin: 0%; }
    @media only screen and (min-width: 768px) {
      .columns--double .item {
        width: 48%;
        margin: 0 1%; } }
    .columns--double .item.img-nosotros {
      background-size: cover; }
  .columns--triple .item {
    width: 98%;
    margin: 0 1% 20px 1%;
    border-radius: 5px;
    padding-bottom: 15px; }
    @media only screen and (min-width: 768px) {
      .columns--triple .item {
        width: 31.3%;
        margin: 0 1% 20px 1%; } }
    .columns--triple .item:nth-child(1) .img {
      background-size: cover; }
    @media only screen and (min-width: 768px) {
      .columns--triple .item:nth-child(2) {
        padding-bottom: 0; } }
    .columns--triple .item:nth-child(2) h4 {
      font-size: 1.3em; }
      @media only screen and (min-width: 768px) {
        .columns--triple .item:nth-child(2) h4 {
          font-size: 1.5em; } }
    .columns--triple .item:nth-child(3) .img {
      background-size: cover; }
    .columns--triple .item:nth-child(4) .img {
      background-size: cover; }
    .columns--triple .item:nth-child(5) .img {
      background-size: cover; }
    .columns--triple .item:nth-child(6) .img {
      background-size: cover; }
    .columns--triple .item .img {
      height: 250px;
      width: 100%;
      background-size: cover; }
    .columns--triple .item h2 {
      text-align: center;
      font-size: 0.9em;
      margin: 15px 0; }
    .columns--triple .item p {
      width: 90%;
      margin: auto; }
  .columns--four .item {
    width: 48%;
    margin: 0 1%; }
    @media only screen and (min-width: 768px) {
      .columns--four .item {
        width: 23%; } }
    .columns--four .item h4 {
      margin-bottom: 20px;
      font-size: 1.2em; }

.m-btns-container {
  width: 100%;
  margin: auto;
  text-align: center;
  justify-content: flex-start; }
  .m-btns-container.alone {
    justify-content: center; }
  @media only screen and (min-width: 768px) {
    .m-btns-container .m-btn:nth-child(1) {
      margin-right: 15px; } }

.m-btn {
  padding: 12px 30px;
  text-transform: uppercase;
  font-size: 0.8em;
  font-weight: bold;
  border: solid 2px transparent;
  letter-spacing: 1px;
  display: inline-block;
  border-radius: 5px;
  transition: all 0.3s ease; }
  .m-btn--main {
    background-color: black;
    color: white;
    border: solid 2px black; }
    .m-btn--main:hover {
      background-color: #8B54FB;
      border: solid 2px #8B54FB; }
  .m-btn--border {
    border: solid 2px black;
    color: black; }
    .m-btn--border-blue {
      border: solid 2px black; }
    .m-btn--border:hover {
      background-color: black;
      border: solid 2px black;
      color: white; }
  .m-btn--double {
    width: auto;
    display: flex;
    padding: 0; }
    .m-btn--double:hover {
      background-color: black;
      border: solid 2px black; }
    .m-btn--double .first {
      border-right: solid 2px black !important; }
    .m-btn--double .first,
    .m-btn--double .second {
      padding: 12px 20px;
      border: none;
      transition: all 0.3s ease; }
      .m-btn--double .first:hover,
      .m-btn--double .second:hover {
        background-color: black;
        border: none; }
  .m-btn a {
    text-decoration: none;
    color: white; }

header {
  height: auto;
  padding: 80px 0 55px 0; }
  @media only screen and (min-width: 768px) {
    header {
      padding: 80px 0; } }
  header.job-list {
    text-align: center; }
    header.job-list h1 {
      font-size: 1.5em; }
      @media only screen and (min-width: 768px) {
        header.job-list h1 {
          font-size: 2.2em; } }
  header.entry-header {
    text-align: center; }
    header.entry-header h1:first-letter {
      text-transform: uppercase; }
  header.offer-vid {
    text-align: center; }
    header.offer-vid h1 span {
      color: #8B54FB; }
    header.offer-vid h2 {
      margin-bottom: 50px;
      font-size: 1.6em;
      font-weight: normal;
      max-width: 1000px;
      margin: 30px auto; }
    header.offer-vid .video {
      width: 750px;
      height: 410px;
      border: solid 4px #8B54FB;
      border-radius: 6px;
      margin: auto; }
      header.offer-vid .video iframe {
        width: 100%;
        height: 100%; }
    header.offer-vid .m-btns-container {
      justify-content: center;
      margin-top: 50px; }
  header.single-job {
    height: auto;
    padding: 100px 0 0 0; }
    header.single-job .columns {
      max-width: 800px;
      min-height: unset; }
    header.single-job .m-btn:hover {
      cursor: pointer; }
  header .columns {
    height: 100%;
    max-width: 1300px;
    align-content: stretch;
    align-items: stretch;
    flex-direction: column-reverse; }
    @media only screen and (min-width: 768px) {
      header .columns {
        min-height: 500px;
        flex-direction: row; } }
    header .columns h1 {
      font-size: 1.5em;
      margin-bottom: 20px;
      font-weight: bold;
      color: black; }
      @media only screen and (min-width: 768px) {
        header .columns h1 {
          font-size: 2.4em; } }
      header .columns h1 span {
        text-decoration: underline;
        color: #8B54FB; }
    header .columns h2 {
      font-size: 1em;
      text-transform: none;
      margin-bottom: 20px;
      color: #666;
      font-weight: normal; }
      header .columns h2 span {
        font-weight: bold;
        color: black; }
      @media only screen and (min-width: 768px) {
        header .columns h2 {
          padding-left: 5%;
          font-size: 1.3em; } }
    header .columns p {
      padding-left: 5%;
      font-size: 1.1rem; }
    header .columns .left {
      flex: 1;
      padding: 20px 0; }
      @media only screen and (min-width: 768px) {
        header .columns .left {
          padding: 50px 0; } }
      header .columns .left .m-btns-container {
        flex-direction: row;
        justify-content: center; }
        @media only screen and (min-width: 768px) {
          header .columns .left .m-btns-container {
            justify-content: flex-start; } }
        header .columns .left .m-btns-container .m-btn {
          font-size: 0.65em;
          padding: 12px 20px; }
          header .columns .left .m-btns-container .m-btn:first-child {
            margin-right: 10px; }
            @media only screen and (min-width: 768px) {
              header .columns .left .m-btns-container .m-btn:first-child {
                margin-left: 10px;
                margin-right: 0; } }
          @media only screen and (min-width: 768px) {
            header .columns .left .m-btns-container .m-btn {
              font-size: 0.8em;
              padding: 12px 30px; } }
    header .columns .right {
      width: 100%;
      height: 420px;
      margin: auto; }
      @media only screen and (min-width: 768px) {
        header .columns .right {
          width: 40%;
          max-width: 400px;
          height: auto;
          margin: 0 0 0 50px; } }
      header .columns .right > div {
        width: 100%;
        height: 100%;
        margin: auto;
        display: block;
        background-color: #8B54FB;
        border-radius: 8px; }

.entry-content {
  width: 95%;
  max-width: 1000px;
  margin: auto; }
  .entry-content #wppb_register_pre_form_message {
    text-align: center; }

.testimonial-slid {
  border-top: solid 1px #ccc;
  padding-top: 45px;
  margin-top: 45px;
  padding-left: 7%;
  padding-right: 7%;
  max-width: 650px;
  margin-right: 0;
  margin-left: auto; }
  .testimonial-slid p {
    text-align: right;
    color: #444; }
    .testimonial-slid p span {
      display: block;
      margin-top: 6px; }

.why.pb {
  padding-bottom: 70px; }
  .why.pb ul {
    width: 90% !important;
    margin: auto; }
  .why.pb .columns .item .right .item {
    width: 100%; }
    @media only screen and (min-width: 768px) {
      .why.pb .columns .item .right .item {
        width: 48%; } }

.why .columns {
  max-width: 1300px;
  justify-content: flex-start;
  width: 100%; }
  @media only screen and (min-width: 768px) {
    .why .columns {
      width: 100%; } }
  .why .columns .item {
    width: 80%;
    margin-right: 20px; }
    @media only screen and (min-width: 768px) {
      .why .columns .item {
        width: 48%;
        margin-right: 1%;
        flex: 0 0 auto; } }
  .why .columns h3 {
    margin-bottom: 20px; }
  .why .columns ul {
    width: 100%; }
    .why .columns ul li {
      margin-bottom: 15px;
      line-height: 1.3em;
      list-style-type: disc;
      list-style-position: inside;
      text-align: justify; }
  .why .columns p.intro-p {
    font-size: 0.9em;
    margin-bottom: 20px;
    width: 90%;
    margin: 0 auto 20px auto;
    text-align: center; }
    @media only screen and (min-width: 768px) {
      .why .columns p.intro-p {
        font-size: 1.3em;
        width: 100%; } }
  .why .columns .left {
    width: 100%; }
    @media only screen and (min-width: 768px) {
      .why .columns .left {
        width: 370px; } }
  .why .columns .right {
    flex: 1;
    width: 100%; }
    .why .columns .right .columns {
      width: 100%;
      margin: auto;
      padding-left: 20px; }
      @media only screen and (min-width: 768px) {
        .why .columns .right .columns {
          width: 100%;
          padding-left: 0; } }
      @media only screen and (min-width: 768px) {
        .why .columns .right .columns:nth-child(1) {
          padding-left: 0; } }
      .why .columns .right .columns .item {
        background-color: #ecf1f6;
        padding: 20px 10px;
        border-radius: 5px;
        border: solid 1px #ccc;
        margin-bottom: 25px;
        text-align: center;
        width: 80%; }
        @media only screen and (min-width: 768px) {
          .why .columns .right .columns .item {
            width: 48%; } }
        .why .columns .right .columns .item h4 {
          font-size: 1.4em;
          margin-bottom: 10px;
          margin-top: 40px; }
          .why .columns .right .columns .item h4 span {
            font-size: 1.5em;
            background-color: #8B54FB;
            color: white;
            margin-right: 15px;
            margin-top: -30px;
            padding: 0 10px; }
            @media only screen and (min-width: 768px) {
              .why .columns .right .columns .item h4 span {
                font-size: 2em; } }
        .why .columns .right .columns .item .icon {
          width: 100px;
          height: auto;
          margin-bottom: 15px;
          margin: 0 auto 15px auto;
          padding: 20px 0 30px 0; }
          .why .columns .right .columns .item .icon.text {
            font-weight: bold;
            font-size: 2.2em;
            color: #8B54FB;
            width: 100%; }
            @media only screen and (min-width: 768px) {
              .why .columns .right .columns .item .icon.text {
                font-size: 3em; } }
          .why .columns .right .columns .item .icon.img {
            width: 100%;
            height: 250px;
            margin-top: -10px;
            position: relative; }
            .why .columns .right .columns .item .icon.img svg {
              display: none; }
            .why .columns .right .columns .item .icon.img div {
              width: 100%;
              height: 100%;
              position: absolute;
              top: 0;
              left: 0;
              background-color: rgba(139, 84, 251, 0.4); }
            .why .columns .right .columns .item .icon.img#img1 {
              background: transparent url('assets/images/i1.jpg') no-repeat center;
              background-size: cover; }
            .why .columns .right .columns .item .icon.img#img2 {
              background: transparent url('assets/images/pp1.png') no-repeat center;
              background-size: cover; }
            .why .columns .right .columns .item .icon.img#img3 {
              background: transparent url('assets/images/i3.jpg') no-repeat center;
              background-size: cover; }
            .why .columns .right .columns .item .icon.img#img4 {
              background: transparent url('assets/images/i4.jpg') no-repeat center;
              background-size: cover; }
          .why .columns .right .columns .item .icon svg {
            width: 100%;
            height: auto;
            fill: #8B54FB; }

.services {
  background-color: #fff;
  padding: 100px 0;
  margin-top: 80px; }
  .services.front .columns .item:nth-child(1), .services.front .columns .item:nth-child(2) {
    width: 31.3% !important; }
  .services .columns {
    width: 100%;
    padding-left: 10px; }
    @media only screen and (min-width: 768px) {
      .services .columns {
        padding-left: 0; } }
    .services .columns.items-services {
      max-width: 1300px; }
      .services .columns.items-services .item {
        background-color: #dbe4ee;
        padding: 0 0 20px 0;
        margin-bottom: 20px;
        border-radius: 6px;
        position: relative;
        width: 80%;
        overflow: hidden;
        justify-content: flex-start; }
        @media only screen and (min-width: 768px) {
          .services .columns.items-services .item {
            width: 31.3%;
            min-height: 300px; } }
        @media only screen and (min-width: 768px) {
          .services .columns.items-services .item:nth-child(1) {
            width: 48%; } }
        .services .columns.items-services .item:nth-child(1) .img {
          background: transparent url('assets/images/s4.jpg') no-repeat center;
          background-size: cover; }
        @media only screen and (min-width: 768px) {
          .services .columns.items-services .item:nth-child(2) {
            width: 48%; } }
        .services .columns.items-services .item:nth-child(2) .img {
          background: transparent url('assets/images/s2.jpg') no-repeat center;
          background-size: cover; }
        .services .columns.items-services .item:nth-child(3) .img {
          background: transparent url('assets/images/i4.jpg') no-repeat center;
          background-size: cover; }
        .services .columns.items-services .item:nth-child(4) .img {
          background: transparent url('assets/images/s3.jpg') no-repeat center;
          background-size: cover; }
        .services .columns.items-services .item:nth-child(5) .img {
          background: transparent url('assets/images/s5.jpg') no-repeat center;
          background-size: cover; }
        .services .columns.items-services .item:nth-child(6) .img {
          background: transparent url('assets/images/pyme.jpg') no-repeat center;
          background-size: cover; }
        .services .columns.items-services .item:nth-child(7) .img {
          background: transparent url('assets/images/job.jpg') no-repeat center;
          background-size: cover; }
        .services .columns.items-services .item a {
          text-decoration: none;
          display: block;
          width: 100%; }
        .services .columns.items-services .item h3 {
          font-size: 1.3em;
          text-align: center; }
        .services .columns.items-services .item p {
          margin-bottom: 15px; }
        .services .columns.items-services .item .m-btn {
          margin-top: 10px;
          position: absolute;
          display: none; }
        .services .columns.items-services .item .icon {
          width: 70px;
          height: 70px;
          margin-bottom: 15px;
          margin: 0 auto 15px auto;
          display: none; }
          .services .columns.items-services .item .icon svg {
            width: 100%;
            height: 100%; }
        .services .columns.items-services .item .img {
          height: 180px;
          position: relative;
          margin-bottom: 20px; }
          @media only screen and (min-width: 768px) {
            .services .columns.items-services .item .img {
              width: 100%;
              height: 100%;
              margin-bottom: 20px;
              position: absolute;
              left: 0;
              top: 0; } }
          .services .columns.items-services .item .img div {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(139, 84, 251, 0.2);
            transition: all 0.3s ease; }
            @media only screen and (min-width: 768px) {
              .services .columns.items-services .item .img div {
                background-color: rgba(139, 84, 251, 0.4); } }
        .services .columns.items-services .item ul {
          list-style-type: disc;
          list-style-position: inside; }
          .services .columns.items-services .item ul li {
            margin-bottom: 10px;
            line-height: 1.3em;
            width: 90%;
            margin: auto;
            color: white;
            color: #555; }
            @media only screen and (min-width: 768px) {
              .services .columns.items-services .item ul li {
                font-size: 1.2em;
                color: white; } }
        @media only screen and (min-width: 768px) {
          .services .columns.items-services .item .info-show {
            position: absolute;
            left: 0;
            top: 0;
            opacity: 0;
            transition: all 0.3s ease;
            width: 100%;
            height: 100%; } }
        .services .columns.items-services .item .info-show .contain {
          width: 100%;
          height: auto; }
        .services .columns.items-services .item .start {
          opacity: 1;
          width: 100%;
          text-align: center;
          transition: all 0.3s ease;
          position: relative;
          color: black; }
          .services .columns.items-services .item .start h3 {
            font-size: 1.2em !important; }
            @media only screen and (min-width: 768px) {
              .services .columns.items-services .item .start h3 {
                font-size: 2em !important;
                text-shadow: 1.5px 1.5px black; } }
          .services .columns.items-services .item .start p {
            font-weight: bold; }
            @media only screen and (min-width: 768px) {
              .services .columns.items-services .item .start p {
                font-size: 1.4em;
                text-shadow: 1px 1px black; } }
          @media only screen and (min-width: 768px) {
            .services .columns.items-services .item .start {
              color: white; } }
        @media only screen and (min-width: 768px) {
          .services .columns.items-services .item:hover {
            background-color: #8B54FB;
            color: white; }
            .services .columns.items-services .item:hover svg {
              fill: white; }
            .services .columns.items-services .item:hover .start {
              opacity: 0; }
            .services .columns.items-services .item:hover .info-show {
              opacity: 1; }
            .services .columns.items-services .item:hover .img div {
              background-color: rgba(0, 0, 0, 0.8); } }
        .services .columns.items-services .item:hover .m-btn {
          height: auto; }
  .services.job-list {
    margin-top: 0 !important;
    padding-top: 0 !important;
    background-color: transparent; }
    .services.job-list .columns {
      max-width: 600px !important;
      margin: auto !important;
      padding-left: 0;
      width: 95%; }
      .services.job-list .columns .item {
        width: 100% !important;
        margin: 0 0 20px 0 !important; }
        .services.job-list .columns .item ul {
          margin-top: 20px; }
          @media only screen and (min-width: 768px) {
            .services.job-list .columns .item ul {
              margin-top: 0; } }
          .services.job-list .columns .item ul li {
            color: #777;
            list-style-type: none; }
            @media only screen and (min-width: 768px) {
              .services.job-list .columns .item ul li {
                color: white; } }
            .services.job-list .columns .item ul li span {
              color: black; }
              @media only screen and (min-width: 768px) {
                .services.job-list .columns .item ul li span {
                  color: white; } }

.cta {
  padding: 50px 0 0 0; }
  .cta .columns {
    align-items: center;
    flex-direction: column; }
    .cta .columns h4 {
      font-size: 1.2em;
      color: #8B54FB;
      margin-bottom: 15px;
      text-align: center; }
      @media only screen and (min-width: 768px) {
        .cta .columns h4 {
          font-size: 3em; } }
    .cta .columns p {
      font-size: 1.12em; }
    .cta .columns .right {
      text-align: center; }

.about-us {
  padding: 100px 0; }
  .about-us.white {
    background-color: #fff; }
  .about-us .columns {
    align-items: center;
    align-content: center; }
    .about-us .columns .left {
      font-size: 1.2em;
      margin-bottom: 20px; }
      @media only screen and (min-width: 768px) {
        .about-us .columns .left {
          margin-bottom: 0; } }
      .about-us .columns .left p {
        font-size: 0.9rem;
        text-align: justify; }
        @media only screen and (min-width: 768px) {
          .about-us .columns .left p {
            font-size: 1.1em; } }
    .about-us .columns .right .img {
      width: 80%;
      height: 500px;
      margin: auto;
      background: transparent url('assets/images/bg-about.jpeg') no-repeat bottom center;
      background-size: cover; }
    .about-us .columns .full {
      width: 70%;
      height: 400px;
      margin-top: 60px;
      background: transparent url('assets/images/bg-about2.jpeg') no-repeat center;
      background-size: cover; }

section h2 {
  text-align: center;
  color: #8B54FB;
  margin-bottom: 15px;
  font-size: 2.5em; }

section p.bellow-title {
  width: 90%;
  margin: auto;
  font-size: 1.2em;
  max-width: 500px;
  text-align: center;
  margin-bottom: 45px; }

.contact-wrapper {
  position: relative;
  z-index: 5;
  margin-top: 80px; }
  .contact-wrapper.pt {
    padding-top: 70px; }
  .contact-wrapper .left {
    background-color: #fff;
    padding: 25px;
    border-radius: 6px;
    border: solid 1px #e0e0e0; }
    .contact-wrapper .left ul {
      width: 80%;
      margin: auto; }
      .contact-wrapper .left ul li {
        margin-bottom: 15px;
        line-height: 1.3em;
        list-style-type: disc; }
    .contact-wrapper .left h2 {
      text-align: left;
      margin-bottom: 10px; }
    .contact-wrapper .left h3 {
      margin-bottom: 20px;
      color: black;
      text-align: center;
      font-size: 1.2em; }
      @media only screen and (min-width: 768px) {
        .contact-wrapper .left h3 {
          text-align: left;
          font-size: 1.6em; } }
    .contact-wrapper .left p {
      width: 90%;
      margin: 0 auto 15px auto;
      font-size: 0.9em; }
      @media only screen and (min-width: 768px) {
        .contact-wrapper .left p {
          font-size: 1.2em; } }
      .contact-wrapper .left p strong {
        font-weight: bold; }
  .contact-wrapper .right .img-mini-logo {
    bottom: 0;
    transform: translate(-30px, 30px); }
  .contact-wrapper .right .flexslider {
    transform: translate(0, -50px); }
  .contact-wrapper .right .flex-viewport {
    overflow: hidden; }
  .contact-wrapper .right .slides .slide .content .content-main .img {
    height: 210px;
    width: 100%;
    background-color: red; }
    @media only screen and (min-width: 768px) {
      .contact-wrapper .right .slides .slide .content .content-main .img {
        height: 450px; } }
  .contact-wrapper .img-mini-logo {
    transform: translate(-50px, -30px);
    position: absolute;
    z-index: -3;
    display: none; }
    @media only screen and (min-width: 768px) {
      .contact-wrapper .img-mini-logo {
        display: block; } }
  .contact-wrapper .form-container {
    background-color: #8B54FB;
    padding: 20px 20px 10px 20px;
    border-radius: 6px;
    box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.3);
    transform: translate(0, 0px);
    color: white;
    margin: 20px 0 35px 0; }
    .contact-wrapper .form-container button {
      background-color: black !important;
      color: white !important;
      border: none;
      text-transform: uppercase !important;
      font-size: 0.8em !important;
      font-weight: bold !important;
      letter-spacing: 1px !important;
      width: 70% !important;
      box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3) !important;
      padding: 14px 0 !important;
      border-radius: 6px !important; }
    .contact-wrapper .form-container .wp-forms-container {
      z-index: 1; }
  .contact-wrapper.single .columns .item.left {
    order: 2; }
    @media only screen and (min-width: 768px) {
      .contact-wrapper.single .columns .item.left {
        order: 1; } }
    .contact-wrapper.single .columns .item.left h3 {
      margin-top: 0; }
      @media only screen and (min-width: 768px) {
        .contact-wrapper.single .columns .item.left h3 {
          margin-top: 50px; } }
  .contact-wrapper.single .columns .item.right {
    order: 1; }
    @media only screen and (min-width: 768px) {
      .contact-wrapper.single .columns .item.right {
        order: 2; } }

.map {
  width: 100%;
  margin: auto;
  height: 300px;
  position: relative;
  z-index: 1; }
  @media only screen and (min-width: 768px) {
    .map {
      height: 400px; } }
  .map iframe {
    width: 100%;
    height: 100%; }

#pics-proyect {
  width: 100%;
  height: 100%;
  background-color: transparent;
  margin-bottom: 0 !important;
  border-color: black;
  border: none; }
  #pics-proyect .flex-viewport {
    height: 100%;
    overflow: hidden; }
  #pics-proyect .slides {
    height: 100%; }
    #pics-proyect .slides .slide {
      height: 100%; }
      #pics-proyect .slides .slide .content {
        width: 100%;
        height: 100%; }
        #pics-proyect .slides .slide .content .content-main {
          width: 100%;
          height: 100%; }
          #pics-proyect .slides .slide .content .content-main .img {
            width: 100%;
            height: 100%; }
            #pics-proyect .slides .slide .content .content-main .img#a {
              background: transparent url('assets/images/p1.png') no-repeat bottom center;
              background-size: auto 90%; }
            #pics-proyect .slides .slide .content .content-main .img#b {
              background: transparent url('assets/images/p2.png') no-repeat bottom center;
              background-size: auto 90%; }
            #pics-proyect .slides .slide .content .content-main .img#c {
              background: transparent url('assets/images/p3.png') no-repeat bottom center;
              background-size: auto 90%; }
            #pics-proyect .slides .slide .content .content-main .img#d {
              background: transparent url('assets/images/p4.png') no-repeat bottom center;
              background-size: auto 90%; }

p.introo {
  margin: 0; }

.what-you-get {
  padding-bottom: 60px; }
  .what-you-get h2 {
    color: #8B54FB;
    text-align: center;
    font-size: 1.5em; }
    @media only screen and (min-width: 768px) {
      .what-you-get h2 {
        text-align: left;
        margin-bottom: 70px;
        font-size: 2em; } }
  .what-you-get .right p {
    font-size: 1.4em;
    text-align: center; }
    @media only screen and (min-width: 768px) {
      .what-you-get .right p {
        text-align: left; } }
  .what-you-get .right ul {
    width: 80%;
    margin: auto; }
    .what-you-get .right ul li {
      margin-bottom: 15px;
      font-size: 1.1em;
      list-style-position: inside;
      list-style-type: disc;
      line-height: 1.3em; }

.img-guide {
  width: 90%;
  margin: auto;
  height: 320px;
  margin-top: 25px;
  background: transparent url('assets/images/book.png') no-repeat bottom center;
  background-size: auto 100%;
  margin-bottom: 30px; }
  @media only screen and (min-width: 768px) {
    .img-guide {
      height: 600px;
      width: 80%;
      margin-bottom: 0; } }

#faq {
  padding: 0px 0 50px 0; }
  @media only screen and (min-width: 768px) {
    #faq {
      padding: 50px 0; } }
  #faq.dark {
    background-color: #f4f4f4;
    margin-top: 80px; }
    #faq.dark p.intro--big {
      padding-top: 0; }
  #faq.main {
    background-color: transparent;
    padding-top: 0;
    margin-top: 0; }
  #faq h3 {
    width: 90%;
    margin: auto;
    text-transform: none;
    color: #444;
    margin-bottom: 30px;
    font-size: 1em; }
    @media only screen and (min-width: 768px) {
      #faq h3 {
        margin-left: 15%;
        font-size: 1.8em;
        width: 85%; } }

.faq {
  width: 90%;
  max-width: 800px;
  margin: auto; }
  .faq .item {
    border-bottom: solid 1px #ccc;
    margin-bottom: 20px;
    padding-bottom: 20px; }
    .faq .item:hover .visible {
      cursor: pointer; }
      .faq .item:hover .visible h4 {
        color: #3E7CB1; }
      .faq .item:hover .visible .arrows div {
        border-bottom: solid 4px #3E7CB1; }
    .faq .item .visible {
      justify-content: space-between;
      flex-direction: row;
      align-items: flex-start; }
      .faq .item .visible h4 {
        text-transform: none;
        font-size: 0.9em;
        color: black;
        margin: 0 0 10px 0;
        flex: 1;
        font-family: "K2D", sans-serif;
        font-weight: normal; }
        @media only screen and (min-width: 768px) {
          .faq .item .visible h4 {
            font-size: 1.2em;
            margin: 15px;
            letter-spacing: 1px; } }
      .faq .item .visible .arrows {
        position: relative;
        width: 17px;
        height: 17px; }
        .faq .item .visible .arrows div {
          position: absolute;
          left: 50%;
          top: 50%;
          width: 100%;
          height: 2px;
          border-bottom: solid 4px #ccc; }
          .faq .item .visible .arrows div:nth-child(1) {
            transform: rotate(90deg); }
    .faq .item .info {
      height: 0;
      overflow: hidden;
      background-color: #fff; }
      .faq .item .info p {
        font-size: 0.9em;
        width: 90%;
        margin: 0 auto 20px auto; }
        @media only screen and (min-width: 768px) {
          .faq .item .info p {
            font-size: 1.2rem; } }
        .faq .item .info p:first-child {
          padding-top: 20px; }
        .faq .item .info p:last-child {
          padding-bottom: 1px; }
    .faq .item.active .visible {
      cursor: pointer; }
      .faq .item.active .visible h4 {
        color: black; }
      .faq .item.active .visible .arrows div {
        border-bottom: solid 4px black; }
    .faq .item.active .info {
      height: 100%; }

#faq .intro {
  padding-top: 50px !important; }

p strong {
  font-weight: bold; }

p.intro {
  text-align: center;
  width: 95%;
  max-width: 800px;
  margin: 50px auto;
  font-size: 0.9em; }
  @media only screen and (min-width: 768px) {
    p.intro {
      font-size: 1.4em; } }
  p.intro span {
    display: block;
    font-weight: normal;
    font-size: 0.75rem;
    line-height: 1.3em; }
    @media only screen and (min-width: 768px) {
      p.intro span {
        font-size: 1.1rem; } }
  p.intro--big {
    font-size: 1.2em; }
    @media only screen and (min-width: 768px) {
      p.intro--big {
        font-size: 1.8em; } }
    p.intro--big.mormt {
      margin-top: 60px; }
      @media only screen and (min-width: 768px) {
        p.intro--big.mormt {
          margin-top: 70px; } }

.testimonial {
  max-width: 1000px;
  margin: 60px auto 0 auto; }
  .testimonial .item {
    background-color: #fff;
    padding: 30px 20px 20px 20px;
    border-radius: 6px;
    font-size: 1.2em;
    line-height: 1.3em;
    position: relative;
    margin-bottom: 30px;
    width: 90%; }
    @media only screen and (min-width: 768px) {
      .testimonial .item {
        width: 48%;
        margin-bottom: 0; } }
    .testimonial .item .info {
      margin-top: 20px; }
      .testimonial .item .info .name {
        display: block;
        margin-bottom: 0px;
        font-size: 1.1rem; }
      .testimonial .item .info .empresa {
        font-size: 0.8em; }
    .testimonial .item .quote {
      position: absolute;
      left: 10px;
      top: 10px;
      font-size: 5.8em;
      color: black; }

section h2, section h3 {
  text-align: center !important;
  font-size: 1.1em !important; }
  @media only screen and (min-width: 768px) {
    section h2, section h3 {
      font-size: 1.6em !important; } }

.woocommerce .product .price span {
  color: #333;
  font-size: 1.6rem; }
  .woocommerce .product .price span.big {
    font-size: 1rem; }

.woocommerce .product .images {
  width: 100% !important; }

.woocommerce .product .flex-viewport {
  overflow: hidden; }

.woocommerce .product .flex-control-thumbs {
  margin-top: 10px !important; }

.woocommerce .product form {
  max-width: 350px;
  margin: 25px 0 0 0 !important; }
  .woocommerce .product form .button {
    background-color: white !important;
    border: solid 2px black;
    color: black;
    text-transform: uppercase;
    color: #444;
    font-size: 0.9em;
    padding: 13px 40px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: block;
    float: none; }
    .woocommerce .product form .button:hover {
      background-color: black !important;
      color: white; }
    .woocommerce .product form .button.disabled {
      background-color: black !important; }
      .woocommerce .product form .button.disabled:hover {
        background-color: black !important; }
  .woocommerce .product form .variations .label {
    color: #777; }
  .woocommerce .product form .variations .value {
    width: auto; }
  .woocommerce .product form .variations select {
    width: 200px;
    padding: 5px;
    max-width: 200px !important;
    min-width: 0 !important; }
    .woocommerce .product form .variations select option {
      padding: 5px; }
  .woocommerce .product form .single_variation_wrap .woocommerce-variation {
    background-color: #f4f4f4;
    padding: 5px;
    margin-bottom: 15px;
    display: block;
    border-radius: 6px; }
  .woocommerce .product form .single_variation_wrap .woocommerce-variation-description p {
    text-transform: none;
    font-weight: bold;
    color: #444; }
  .woocommerce .product form .woocommerce-variation-add-to-cart {
    height: auto;
    display: block;
    display: flex;
    margin-top: 15px; }

.woocommerce .quantity {
  float: none;
  margin-bottom: 15px; }
  @media only screen and (min-width: 768px) {
    .woocommerce .quantity {
      float: left; } }
  .woocommerce .quantity .qty {
    font-size: 1.6em;
    margin-right: 10px; }

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: "Always Show Up/Down Arrows";
  opacity: 1; }

.woocommerce-cart header,
.woocommerce-checkout header {
  height: auto;
  padding-top: 60px; }
  .woocommerce-cart header h1,
  .woocommerce-checkout header h1 {
    text-align: center;
    margin-top: 0 !important; }

.woocommerce-cart .col-1,
.woocommerce-cart .col-2,
.woocommerce-checkout .col-1,
.woocommerce-checkout .col-2 {
  width: 100% !important; }

.woocommerce-cart form,
.woocommerce-checkout form {
  padding: 10px; }

.woocommerce-cart h3,
.woocommerce-checkout h3 {
  text-align: center; }

.woocommerce-checkout .woocommerce {
  background-color: #fff; }
  .woocommerce-checkout .woocommerce .woocommerce-checkout {
    background-color: #fff; }

.woocommerce-checkout .product-total ins {
  text-decoration: none; }

.woocommerce-checkout .product-total .woocommerce-Price-amount {
  text-decoration: none; }
  .woocommerce-checkout .product-total .woocommerce-Price-amount .woocommerce-Price-currencySymbol {
    text-decoration: none; }

#checkout-wrapper {
  width: 95%;
  max-width: 600px;
  height: auto;
  padding: 0;
  overflow: hidden;
  margin: 40px auto;
  border-radius: 10px;
  border: solid 1px #ccc;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
  background-color: #fff; }
  @media only screen and (min-width: 768px) {
    #checkout-wrapper {
      margin: 40px auto 70px auto; } }

.check-h {
  text-align: center;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 40px;
  text-transform: uppercase;
  letter-spacing: 0.1em; }
  @media only screen and (min-width: 768px) {
    .check-h {
      font-size: 1.5em;
      margin-top: 90px; } }

.woocommerce-privacy-policy-text p {
  margin-bottom: 20px; }

#billing_last_name_field {
  width: 100% !important; }

.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1,
.woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2,
#order_review,
.woocommerce form.checkout_coupon {
  margin: auto; }

.woocommerce-info {
  border-top-color: #8B54FB; }

.woocommerce-info:before {
  color: #8B54FB; }

.woocommerce form .form-row.woocommerce-validated .select2-container, .woocommerce form .form-row.woocommerce-validated input.input-text, .woocommerce form .form-row.woocommerce-validated select,
.woocommerce form .form-row.woocommerce-invalid .select2-container, .woocommerce form .form-row.woocommerce-invalid input.input-text, .woocommerce form .form-row.woocommerce-invalid select {
  border-color: blue; }

.woocommerce form .form-row.woocommerce-invalid label {
  color: #8B54FB; }

.woocommerce-info a {
  color: #666; }
  .woocommerce-info a:hover {
    color: #8B54FB; }

.woocommerce-error {
  border-top-color: blue; }

.woocommerce-error::before {
  color: blue; }

.woocommerce form.checkout_coupon {
  margin-bottom: 40px; }

#checkout-wrapper > div > div:nth-child(1) > a:hover,
#checkout-wrapper > div > div:nth-child(3) > a:hover {
  color: black; }

#customer_details > div.col-1 {
  margin-bottom: 20px; }

#customer_details > div.col-1 > div > h3,
#customer_details > div.col-2 > div > h3,
#order_review_heading {
  font-size: 1em;
  text-align: center;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: bold;
  padding-bottom: 0px; }

#customer_details > div.col-1 > div > h3 {
  padding-bottom: 20px; }

#customer_details > div.col-2 > div > h3,
#order_review_heading {
  margin: 0 auto 30px auto; }

#billing_first_name_field {
  float: none;
  width: 100%; }

#checkout-wrapper > div > form.checkout_coupon.woocommerce-form-coupon > p:nth-child(1) {
  padding-bottom: 20px;
  text-align: center; }

.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
  float: none;
  background-color: #8B54FB;
  padding: 18px 3%;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.9em; }

.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea {
  padding: 10px; }

.woocommerce-error li, .woocommerce-info li, .woocommerce-message li {
  margin: 10px; }

.woocommerce form .form-row.woocommerce-invalid label {
  color: rgba(41, 171, 226, 0.9); }

.woocommerce form .form-row .required {
  color: #8B54FB; }

.select2-container .select2-selection--single {
  height: auto; }

#billing_state_field > span > span.selection > span {
  min-height: 39px; }

.select2-container .select2-selection--single .select2-selection__rendered {
  padding-top: 5px;
  padding-bottom: 5px; }

#order_review > table > tfoot > tr.order-total {
  color: #8B54FB;
  text-transform: uppercase; }
  @media only screen and (min-width: 768px) {
    #order_review > table > tfoot > tr.order-total {
      font-size: 1.3em; } }

#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment {
  background-color: white; }

#payment > ul > li.wc_payment_method > label {
  color: black;
  font-weight: bold; }

.woocommerce #payment #place_order, .woocommerce-page #payment #place_order {
  float: none;
  width: 100%;
  margin-bottom: 0 !important; }

#payment > div {
  margin: 0;
  padding: 30px 3%; }

#add_payment_method #payment div.form-row, .woocommerce-cart #payment div.form-row, .woocommerce-checkout #payment div.form-row {
  padding: 30px 3%; }

.paypal-button.paypal-button-color-blue {
  box-shadow: 2px 2px rgba(0, 0, 0, 0.7); }

.woocommerce-cart,
.woocommerce-checkout {
  background-color: #f4f4f4; }
  .woocommerce-cart header,
  .woocommerce-checkout header {
    padding-bottom: 20px; }
    .woocommerce-cart header h1,
    .woocommerce-checkout header h1 {
      text-align: center;
      font-size: 1.2em !important;
      margin: 30px auto 20px auto !important; }
      @media only screen and (min-width: 768px) {
        .woocommerce-cart header h1,
        .woocommerce-checkout header h1 {
          margin: 0px auto 40px auto !important;
          font-size: 1.6em !important; } }
  .woocommerce-cart .woocommerce,
  .woocommerce-checkout .woocommerce {
    width: 100%;
    max-width: 1100px;
    margin: 30px auto; }
    .woocommerce-cart .woocommerce .woocommerce-cart-form,
    .woocommerce-checkout .woocommerce .woocommerce-cart-form {
      background-color: #fff; }
    .woocommerce-cart .woocommerce .cart_totals .shop_table,
    .woocommerce-checkout .woocommerce .cart_totals .shop_table {
      background-color: #fff; }
    .woocommerce-cart .woocommerce .cart_totals h2,
    .woocommerce-checkout .woocommerce .cart_totals h2 {
      font-size: 1.2em;
      margin-bottom: 10px;
      text-align: center; }
      @media only screen and (min-width: 768px) {
        .woocommerce-cart .woocommerce .cart_totals h2,
        .woocommerce-checkout .woocommerce .cart_totals h2 {
          text-align: left;
          font-size: 1.6em; } }
    .woocommerce-cart .woocommerce a.button.alt,
    .woocommerce-checkout .woocommerce a.button.alt {
      background-color: black; }
      .woocommerce-cart .woocommerce a.button.alt:hover,
      .woocommerce-checkout .woocommerce a.button.alt:hover {
        background-color: black; }

.woocommerce-checkout .woocommerce {
  max-width: 600px;
  width: 95%;
  margin: 0 auto 30px auto;
  border: solid 1px #ccc;
  border-radius: 6px;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  overflow: hidden; }

p.space {
  margin-top: 35px !important;
  display: block; }

.what {
  width: 35px;
  height: 35px;
  margin-left: 40px; }
  .what svg {
    width: 100%;
    height: 100%; }

.soon {
  width: 100%;
  height: 100vh;
  background-color: #fff;
  flex-direction: column; }
  @media only screen and (min-width: 768px) {
    .soon {
      margin-top: -100px; } }

.logos {
  background-color: #fff;
  padding: 20px;
  width: 95%;
  max-width: 1000px;
  margin: auto;
  text-align: center;
  margin-top: 80px; }
  .logos h4 {
    margin-top: 40px; }
  .logos .logos-img {
    width: 100%;
    height: 400px;
    margin-top: 50px;
    background: transparent url('assets/images/logos.png') no-repeat bottom center;
    background-size: auto 90%; }

.job_filters {
  background-color: #8B54FB;
  width: 100%;
  max-width: 600px;
  margin: 0 auto 40px auto;
  border-radius: 6px; }
  .job_filters .search_jobs input[type="text"] {
    padding: 8px;
    border-radius: 6px; }
  .job_filters .search_jobs input[type="submit"] {
    background-color: black;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    padding: 13px 20px;
    font-size: 0.75rem;
    border-radius: 6px; }

ul.job_listings {
  background-color: #fff;
  padding: 20px;
  border-radius: 6px; }
  ul.job_listings li {
    border-radius: 6px; }
    ul.job_listings li a {
      border-radius: 6px; }

.rp4wp-related-job_listing > ul li.job_listing a:hover, .rp4wp-related-job_listing > ul li.job_listing a:focus, .rp4wp-related-job_listing > ul li.no_job_listings_found a:hover, .rp4wp-related-job_listing > ul li.no_job_listings_found a:focus, ul.job_listings li.job_listing a:hover, ul.job_listings li.job_listing a:focus, ul.job_listings li.no_job_listings_found a:hover, ul.job_listings li.no_job_listings_found a:focus {
  background-color: #f4f4f4; }

.wpforms-container {
  width: 95%;
  max-width: 500px;
  margin: auto;
  background-color: #fff !important;
  padding: 20px !important;
  border: solid 1px #ccc !important;
  border-radius: 5px !important; }
  .wpforms-container button {
    background-color: black !important;
    padding: 13px 50px !important;
    text-transform: uppercase !important;
    font-size: 0.8em !important;
    color: white !important; }

div.wpforms-container-full .wpforms-form .wpforms-submit-container {
  text-align: center;
  margin-top: 40px; }

.info-job {
  background-color: #fff;
  padding: 20px;
  margin: 0 auto 100px auto;
  max-width: 800px; }
  .info-job ul li {
    margin-bottom: 15px;
    list-style-type: disc;
    list-style-position: inside;
    line-height: 1.3em; }

.overlay-single {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10000;
  display: none; }
  .overlay-single:hover {
    cursor: pointer; }
  .overlay-single.show {
    display: block; }
  .overlay-single div {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: all 0.3s ease; }
    .overlay-single div.show {
      opacity: 1;
      transition: all 0.3s ease; }

.overlay-content {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10001;
  display: none; }
  .overlay-content.show {
    display: block; }
  .overlay-content .content {
    width: 95%;
    max-width: 700px;
    margin: 40px auto;
    border-radius: 6px;
    height: auto;
    padding: 30px 3%;
    background-color: #fff;
    position: relative;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateY(20px); }
    @media only screen and (min-width: 768px) {
      .overlay-content .content {
        margin: 80px auto; } }
    .overlay-content .content.show {
      opacity: 1;
      transition: all 0.3s ease;
      transform: translateY(0px); }
    .overlay-content .content .close {
      position: absolute;
      right: 10px;
      top: 10px;
      font-size: 2rem;
      font-family: Verdana;
      font-weight: bold; }
      @media only screen and (min-width: 768px) {
        .overlay-content .content .close {
          font-size: 2em; } }
      .overlay-content .content .close:hover {
        cursor: pointer;
        color: black; }
    .overlay-content .content .m-btns-container {
      justify-content: center;
      margin-top: 30px; }
    .overlay-content .content .formulario {
      margin-top: 0;
      background-color: #f4f4f4;
      border-radius: 6px;
      border: solid 1px #ccc; }
      .overlay-content .content .formulario .disclaimer {
        font-size: 0.8em;
        margin: 0; }
    .overlay-content .content .testi {
      padding-top: 40px; }
      .overlay-content .content .testi h6 {
        font-size: 1.3em;
        padding-bottom: 20px;
        margin-bottom: 20px;
        border-bottom: solid 1px #ccc;
        color: black; }
      .overlay-content .content .testi p span {
        display: block;
        font-weight: bold;
        margin-top: 15px; }
    .overlay-content .content img {
      width: 100%;
      height: auto;
      display: block;
      margin: auto; }
    .overlay-content .content p {
      width: 95%;
      margin: 25px auto; }
      @media only screen and (min-width: 768px) {
        .overlay-content .content p {
          width: 80%; } }
      .overlay-content .content p.special {
        text-align: center;
        font-size: 1em; }
        @media only screen and (min-width: 768px) {
          .overlay-content .content p.special {
            font-size: 1.15em; } }
    .overlay-content .content h3 {
      text-align: center;
      width: 90%;
      margin: 10px auto 0 auto;
      max-width: 800px;
      font-size: 1.3em; }
      @media only screen and (min-width: 768px) {
        .overlay-content .content h3 {
          font-size: 1.1em; } }
      .overlay-content .content h3 span {
        color: black; }
    .overlay-content .content h4 {
      text-align: center;
      width: 90%;
      margin: 10px auto 0 auto;
      max-width: 800px;
      font-size: 1.1em; }
      @media only screen and (min-width: 768px) {
        .overlay-content .content h4 {
          font-size: 1.8em; } }
      .overlay-content .content h4 span {
        color: black; }
  .overlay-content--video {
    width: 90%;
    height: 220px;
    overflow-y: visible;
    position: fixed;
    max-width: 1100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10001; }
    @media only screen and (min-width: 768px) {
      .overlay-content--video {
        height: 80vh; } }
    .overlay-content--video .content {
      width: 100%;
      max-width: none;
      margin: 0;
      border-radius: 6px;
      height: 100%;
      padding: 0;
      background-color: #fff;
      position: relative;
      opacity: 0;
      transition: all 0.3s ease;
      transform: translateY(20px); }
      .overlay-content--video .content iframe {
        width: 100%;
        height: 100%; }
      .overlay-content--video .content .close {
        transform: translateY(-30px);
        color: white; }

.not-in {
  width: 90%;
  margin: auto; }
  .not-in #wppb-login-wrap {
    margin-bottom: 20px; }
  .not-in form {
    background-color: #f4f4f4;
    padding: 20px;
    margin-top: 30px;
    border: solid 1px #e0e0e0;
    border-radius: 6px;
    max-width: 500px;
    margin: 30px auto 0 auto; }
    .not-in form input[type="text"],
    .not-in form input[type="password"] {
      padding: 10px;
      display: block;
      width: 100%; }
    .not-in form input[type="submit"] {
      background-color: #8B54FB;
      color: white;
      text-transform: uppercase;
      font-size: 0.9em;
      padding: 13px 30px;
      border: none;
      border-radius: 6px;
      width: 100%; }
    .not-in form p {
      width: 100% !important; }
      .not-in form p.login-submit {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important; }

.search-users {
  width: 95%;
  max-width: 500px;
  margin: auto; }

.wppb-user-forms {
  margin-bottom: 100px; }
  .wppb-user-forms ul {
    max-width: 700px !important;
    margin: auto !important; }
    .wppb-user-forms ul:first-child {
      margin: auto !important;
      padding: 5px !important;
      border-radius: 6px;
      background-color: #fff;
      border: solid 1px #ccc; }
      @media only screen and (min-width: 768px) {
        .wppb-user-forms ul:first-child {
          padding: 20px !important; } }
      .wppb-user-forms ul:first-child li {
        background-color: #f7f7f7;
        padding: 10px;
        margin-bottom: 15px;
        border-radius: 6px; }
        .wppb-user-forms ul:first-child li select {
          color: #666; }
        .wppb-user-forms ul:first-child li input,
        .wppb-user-forms ul:first-child li select {
          font-size: 0.9em;
          padding: 10px; }
        .wppb-user-forms ul:first-child li[class*='heading'] {
          background-color: #ffffff; }
        .wppb-user-forms ul:first-child li.wppb-default-display-name-publicly-as {
          display: none; }
        .wppb-user-forms ul:first-child li label {
          line-height: 1.3em; }
        .wppb-user-forms ul:first-child li span {
          line-height: 1.3em; }
          .wppb-user-forms ul:first-child li span.wppb-description-delimiter {
            font-size: 0.9em !important;
            margin-top: 10px;
            line-height: 1.3em; }
          .wppb-user-forms ul:first-child li span.wppb-form-error {
            color: red; }
  .wppb-user-forms p.form-submit {
    text-align: center; }
    .wppb-user-forms p.form-submit input[type="submit"] {
      background-color: #8B54FB;
      padding: 13px 30px;
      color: white;
      font-weight: bold;
      border-radius: 4px;
      margin: 30px 0 100px 0;
      width: 95%;
      max-width: 300px; }

.readonly input {
  border: none !important;
  border-bottom: solid 1px #ccc !important;
  font-weight: bold;
  color: red !important; }

.entry-header h2 {
  font-size: 1.1em;
  font-weight: normal; }
  @media only screen and (min-width: 768px) {
    .entry-header h2 {
      font-size: 1.2em; } }
  .entry-header h2 span {
    color: #8B54FB;
    font-weight: bold; }

.spd {
  margin-bottom: 15px; }
  @media only screen and (min-width: 768px) {
    .spd {
      margin-bottom: 0; } }

.signin {
  margin-bottom: 100px;
  padding-top: 40px !important; }
  .signin .m-btns-container {
    justify-content: center; }

.viz_hidden {
  display: none; }

.testimonios {
  transform: translate(0, 0%);
  z-index: 100;
  position: relative;
  margin-bottom: 200px; }
  .testimonios .columns {
    max-width: 1500px; }
    .testimonios .columns .item {
      padding: 30px 0 35px 0;
      position: relative;
      overflow: hidden;
      border-radius: 20px;
      border-radius: 6px;
      border: solid 1px #ccc;
      box-shadow: 0 15px 38px rgba(0, 0, 0, 0.3); }
      .testimonios .columns .item:after {
        position: absolute;
        content: '"';
        left: 0;
        top: 0;
        font-size: 6em;
        font-family: arial;
        color: #8B54FB;
        transform: translate(-30%, -5%) rotate(10deg); }
      .testimonios .columns .item p {
        padding-left: 30px;
        font-weight: bold;
        color: #666; }
        .testimonios .columns .item p span {
          color: black;
          display: block;
          margin-top: 10px; }
          .testimonios .columns .item p span i {
            display: block;
            color: #8B54FB; }
      .testimonios .columns .item .img {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 110px;
        height: 110px;
        border-radius: 50%;
        background-color: red;
        transform: translate(15%, 15%); }

.slid {
  width: 100%;
  text-align: center;
  overflow: hidden;
  padding: 30px 0 60px 0; }
  @media only screen and (min-width: 768px) {
    .slid {
      padding: 60px 0 60px 0; } }
  .slid h3 {
    text-transform: none; }
    .slid h3 span {
      color: black; }
  .slid p {
    font-size: 1.3em; }
  .slid.alone {
    margin-bottom: 30px; }
  .slid .columns {
    margin: 0 auto 130px auto;
    max-width: 1200px; }
    @media only screen and (min-width: 768px) {
      .slid .columns {
        margin: 0 auto;
        align-items: stretch; } }
    .slid .columns .item {
      background-color: transparent; }
      .slid .columns .item.left {
        background-color: red;
        width: 100%;
        position: relative;
        z-index: 2;
        align-items: center;
        align-content: center;
        text-align: left; }
        @media only screen and (min-width: 768px) {
          .slid .columns .item.left {
            width: 30%; } }
        .slid .columns .item.left .cover {
          position: absolute;
          right: 0;
          top: 0;
          width: 200%;
          height: 100%;
          background-color: #f7f9fb;
          transform: translate(45px, 0); }
        .slid .columns .item.left h3 {
          width: 100%;
          font-size: 1.2em;
          margin-bottom: 10px; }
          @media only screen and (min-width: 768px) {
            .slid .columns .item.left h3 {
              font-size: 1.4em; } }
        .slid .columns .item.left p {
          font-size: 1em;
          padding-left: 0px;
          margin-bottom: 40px; }
          @media only screen and (min-width: 768px) {
            .slid .columns .item.left p {
              font-size: 1.1em;
              padding-left: 30px;
              margin-bottom: 0; } }
        .slid .columns .item.left h3, .slid .columns .item.left p {
          position: relative;
          text-align: center;
          transform: translate(0, 25px); }
          @media only screen and (min-width: 768px) {
            .slid .columns .item.left h3, .slid .columns .item.left p {
              text-align: left; } }
      .slid .columns .item.right {
        z-index: 1;
        width: 100%; }
        @media only screen and (min-width: 768px) {
          .slid .columns .item.right {
            width: 65%; } }
  .slid .flexslider {
    width: 100%;
    margin: 0 auto;
    background-color: transparent;
    border: none;
    position: relative; }
    @media only screen and (min-width: 768px) {
      .slid .flexslider {
        margin: 0 0 0 50px;
        width: 390px !important; } }
    .slid .flexslider:hover .flex-direction-nav .flex-next {
      right: -20px; }
    .slid .flexslider:hover .flex-direction-nav .flex-prev {
      left: -25px; }
    .slid .flexslider .flex-viewport {
      overflow: visible !important; }
    .slid .flexslider .img-mini-logo {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      z-index: -1; }
    .slid .flexslider .slides .slide {
      transform: scale(0.8);
      transition: all 0.3s ease; }
      .slid .flexslider .slides .slide.flex-active-slide {
        transform: scale(1); }
      .slid .flexslider .slides .slide:nth-child(1) .content .content-main .img {
        background-size: cover; }
      .slid .flexslider .slides .slide:nth-child(2) .content .content-main .img {
        background-size: cover; }
      .slid .flexslider .slides .slide:nth-child(3) .content .content-main .img {
        background-size: cover; }
      .slid .flexslider .slides .slide:nth-child(4) .content .content-main .img {
        background-size: cover; }
      .slid .flexslider .slides .slide:nth-child(5) .content .content-main .img {
        background-size: cover; }
      .slid .flexslider .slides .slide:nth-child(6) .content .content-main .img {
        background-size: cover; }
      .slid .flexslider .slides .slide .content {
        padding: 20px;
        width: 100%;
        height: 100%; }
        .slid .flexslider .slides .slide .content .content-main {
          box-shadow: 0 15px 38px rgba(0, 0, 0, 0.3);
          height: auto !important;
          background-color: #fff;
          border-radius: 15px;
          overflow: hidden; }
          .slid .flexslider .slides .slide .content .content-main .img {
            width: 100%;
            height: 220px !important;
            background-color: red; }
          .slid .flexslider .slides .slide .content .content-main h3 {
            text-transform: none;
            font-size: 1.3rem !important;
            margin: 10px 0; }
          .slid .flexslider .slides .slide .content .content-main p {
            font-size: 1rem;
            text-align: left;
            width: 90%;
            margin: 0 auto 20px auto; }
          .slid .flexslider .slides .slide .content .content-main .m-btns-container {
            border-top: solid 1px #ccc;
            background-color: #f4f4f4;
            position: relative;
            width: 100%;
            flex-direction: row; }
            .slid .flexslider .slides .slide .content .content-main .m-btns-container .m-btn {
              width: 100%;
              font-size: 0.7em;
              border-radius: 0;
              border: none;
              color: #666;
              margin-bottom: 0; }
              .slid .flexslider .slides .slide .content .content-main .m-btns-container .m-btn:nth-child(1) {
                margin-right: 0; }
              .slid .flexslider .slides .slide .content .content-main .m-btns-container .m-btn:hover {
                background-color: #dbdbdb;
                background-color: orangered;
                color: white;
                cursor: pointer;
                border: none; }
              .slid .flexslider .slides .slide .content .content-main .m-btns-container .m-btn span {
                display: block;
                font-size: 0.5rem;
                margin-top: 5px; }
            .slid .flexslider .slides .slide .content .content-main .m-btns-container a {
              width: 50%; }
              .slid .flexslider .slides .slide .content .content-main .m-btns-container a .m-btn {
                width: 100%; }
            .slid .flexslider .slides .slide .content .content-main .m-btns-container .line {
              width: 1px;
              height: 80%;
              position: absolute;
              left: 50%;
              top: 50%;
              transform: translate(-50%, -50%);
              border-left: solid 1px #ccc; }

.mobile-indicator {
  display: none;
  width: 100%;
  height: 1px; }
  @media only screen and (min-width: 768px) {
    .mobile-indicator {
      display: block; } }

.slide-cont {
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 100px;
  margin-bottom: 100px;
  background-repeat: no-repeat;
  background-size: 120% auto;
  background-position: top;
  position: relative; }

section > h3 {
  text-align: center;
  margin-bottom: 50px;
  text-transform: none; }

#included {
  width: 95%;
  margin: auto;
  max-width: 800px;
  padding: 50px 0;
  background-color: transparent;
  border: none; }
  #included .slide {
    padding: 0 20px;
    margin-bottom: 30px; }
    #included .slide .content {
      width: 100%;
      height: 100%; }
      #included .slide .content .content-main {
        width: 100%;
        height: 100%;
        background-color: white;
        border-radius: 15px;
        position: relative;
        padding: 20px;
        box-shadow: 0 15px 38px rgba(0, 0, 0, 0.3); }
        #included .slide .content .content-main .title {
          padding-left: 60px;
          min-height: 80px;
          justify-content: flex-start;
          width: 100%; }
          #included .slide .content .content-main .title h3 {
            text-transform: none;
            font-size: 1.3em; }
          #included .slide .content .content-main .title .icon {
            position: absolute;
            left: 0;
            top: 0;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background-color: #8B54FB;
            transform: translate(-25%, 20px);
            box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3); }
            #included .slide .content .content-main .title .icon svg {
              width: 40px;
              height: 40px;
              fill: white !important; }
        #included .slide .content .content-main p {
          padding-left: 30px; }

.info-can {
  width: 95%;
  max-width: 650px;
  margin: 0 auto 100px auto;
  box-shadow: 0 15px 38px rgba(0, 0, 0, 0.3);
  padding: 20px;
  border: solid 1px #ccc;
  border-radius: 6px;
  position: relative;
  background-color: #fff;
  z-index: 2; }
  .info-can ul li {
    margin-bottom: 20px;
    list-style-type: disc;
    list-style-position: inside;
    line-height: 1.3em;
    width: 85%;
    margin: 0 auto 25px auto; }

section {
  position: relative; }
  section .m-btns-container {
    justify-content: center; }
  section.last-cta {
    margin-top: -400px;
    z-index: 0;
    padding-bottom: 100px; }
    section.last-cta h3 {
      margin: 100px auto 20px auto; }
    section.last-cta .circle {
      background-repeat: no-repeat;
      background-size: 120% auto;
      background-position: top;
      width: 100%;
      transform: rotate(180deg);
      height: 500px; }

.question-bkc-end {
  width: 100%;
  max-width: 500px; }
  .question-bkc-end .question {
    position: relative;
    padding-left: 40px;
    margin-bottom: 16px; }
    .question-bkc-end .question span {
      color: white;
      background-color: black;
      position: absolute;
      border-radius: 50%;
      padding: 4px 9px;
      top: 50%;
      left: 0;
      transform: translate(0, -50%); }
  .question-bkc-end .to-show {
    width: 100%;
    padding: 15px;
    border-radius: 6px;
    background-color: #f2f1f0;
    margin-bottom: 20px; }
    .question-bkc-end .to-show .to, .question-bkc-end .to-show .from {
      margin-bottom: 15px; }
      .question-bkc-end .to-show .to strong, .question-bkc-end .to-show .from strong {
        font-weight: bold; }
    .question-bkc-end .to-show p {
      padding-top: 15px;
      border-top: solid 1px #ccc; }

.test-english {
  width: 95%;
  margin: 0 auto 100px auto;
  max-width: 500px;
  border-radius: 5px;
  overflow: hidden; }
  .test-english p {
    margin-bottom: 20px; }
    .test-english p strong {
      color: white;
      font-weight: bold;
      background-color: #8B54FB;
      padding: 0 20px;
      margin: 0 5px; }
  .test-english .acf-fields label {
    width: 100%;
    display: block;
    padding: 10px; }
  .test-english .acf-fields .acf-field {
    border-top: none !important;
    padding: 0 12px; }
  .test-english .acf-fields .acf-field-group {
    padding: 12px 0; }
    .test-english .acf-fields .acf-field-group .acf-fields {
      padding: 15px 0 !important; }
  .test-english .acf-field-radio {
    width: 100%;
    max-width: 500px; }
    .test-english .acf-field-radio ul li {
      border: solid 1px #ccc;
      border-radius: 5px;
      margin-bottom: 10px;
      transition: all 0.3s ease;
      background-color: #fafafa;
      font-size: 1em; }
      .test-english .acf-field-radio ul li:first-letter {
        text-transform: uppercase !important; }
      .test-english .acf-field-radio ul li:hover {
        border: solid 1px #8B54FB;
        cursor: pointer; }
      .test-english .acf-field-radio ul li input[type='radio']:hover,
      .test-english .acf-field-radio ul li label:hover {
        cursor: pointer; }

.intro-test {
  padding-top: 50px;
  text-align: center; }
  .intro-test p {
    font-size: 1em; }
    .intro-test p span {
      font-size: 1.3rem;
      color: red; }
    .intro-test p strong {
      font-weight: bold;
      background-color: transparent;
      padding: 0;
      color: black;
      text-transform: uppercase; }
    .intro-test p.score {
      font-size: 2em; }

.check-user {
  text-align: center; }

.acf-form-submit {
  text-align: center; }

.acf-form input[type="submit"] {
  padding: 12px 30px;
  text-transform: uppercase;
  font-size: 0.8em;
  font-weight: bold;
  border: solid 2px transparent;
  letter-spacing: 1px;
  display: inline-block;
  border-radius: 5px;
  transition: all 0.3s ease;
  background-color: black;
  color: white; }
  .acf-form input[type="submit"]:hover {
    background-color: #8B54FB;
    cursor: pointer; }

.already-in {
  text-align: center;
  padding: 20px;
  background-color: red;
  color: white;
  border: solid 3px red; }
  .already-in span {
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase; }

.not-en-lvl {
  font-size: 1.3em; }
  .not-en-lvl span {
    color: #8B54FB; }

.desc-spt {
  padding-top: 15px;
  border-top: solid 1px #8B54FB; }
  .desc-spt p {
    width: 95% !important;
    font-weight: bold;
    font-size: 1.15em;
    color: #8B54FB; }

.welcome {
  background-color: #8B54FB;
  width: 95%;
  max-width: 700px;
  padding: 20px;
  margin: 0 auto 40px auto;
  font-size: 1.2em;
  color: white; }
  .welcome span {
    display: block;
    margin-bottom: 20px;
    font-size: 1.4rem; }

.vid-alone {
  display: flex;
  justify-content: center;
  padding-top: 100px;
  flex-direction: column; }
  .vid-alone iframe {
    border: solid 4px #8B54FB;
    border-radius: 6px;
    width: 750px;
    height: 410px;
    margin-bottom: 30px; }
    .vid-alone iframe:last-child {
      margin-bottom: 0px; }
