/**
 * CSS STYLE BETIS
 **/

/* VARIABLES */

:root {
  /*--background color--*/
  --base-color: #1e1e1e;

  --cta-color: rgb(1, 102, 40);

  --bg-color-1: #eef4f5;

  --bg-color-2: #ffffff;

  --bg-color-3: #004DFF;

  --bg-color-4: #f2f2f2;

  --bg-color-5: rgb(50, 49, 49);

  --bg-color-6: #333333;

  --bg-color-7: #33475B;

  --bg-color-8: #fff6f2;

  --bg-color-9: #999999;

  /*--overlay color--*/
  --bg-overlay-1:linear-gradient(135deg,#217e21 0%,#217e21 8%,#217e21 16%,#217e21 28%,#217e21 43%,#217e21 100%);

  --bg-overlay-2:linear-gradient(to right,rgb(99 143 255 / 80%),rgb(99 143 255 / 80%));

  /*--font color--*/
  --font-color-1: #000000;

  --font-color-2: #217e21;

  --font-color-3: #fff;

  --font-color-4: #003615;

  --font-color-5: #6f6e6e;

  --font-color-6: #444242;

  --font-color-7: #777;

  --font-color-8: #666666;

  /*--font size--*/
  --font-size-1: 16px;

  /*--font family--*/
  --font-family-1: RealBetisWEB-Lt;
  --font-family-1-cursive: RealBetisWEB-LtIt;

  --font-family-2: RealBetisWEB-Rg;
  --font-family-2-cursive: RealBetisWEB-RgIt;

  --font-family-3: RealBetisWEB-SmBd;
  --font-family-3-cursive: RealBetisWEB-SmBdIt;

  --font-family-4: RealBetisWEB-UltLt;
  --font-family-4-cursive: RealBetisWEB-UltLtIt;

  --font-family-headline-1: RealBetisHeadlineWEB-UNO;
  --font-family-headline-2: RealBetisHeadlineWEB-DOS;
  --font-family-headline-3: RealBetisHeadlineWEB-TRES;
  --font-family-headline-4: RealBetisHeadlineWEB-CUATRO;
  --font-family-headline-5: RealBetisHeadlineWEB-CINCO;
  --font-family-headline-6: RealBetisHeadlineWEB-SEIS;
  --font-family-headline-7: RealBetisHeadlineWEB-SIETE;
  --font-family-headline-8: RealBetisHeadlineWEB-OCHO;
  --font-family-headline-9: RealBetisHeadlineWEB-NUEVE;
  --font-family-headline-10: RealBetisHeadlineWEB-DIEZ;
  --font-family-headline-11: RealBetisHeadlineWEB-ONCE;

  
}

/* Global */

*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: auto;
  font-smooth: always;
  text-rendering: optimizeLegibility;
  margin: 0;
  padding: 0;
}

body, html {
 height: 100%;
 scroll-behavior: smooth;
}

body {
  font-size: var(--font-size-1);
  font-family: var(--font-family-1);
  color: var(--base-color);
  display: -webkit-box;
  display: -ms-flexbox;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow-wrap: anywhere;
  word-break: break-word;
  display: block;
  overflow: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 2rem;
}

p {
  margin-bottom: 2rem;
}

ul {
  padding-left: 2rem;
  margin-bottom: 2rem;
}

a {
  text-decoration: none;
  color: var(--cta-color);
  -webkit-transition: all .23s ease-out;
  transition: all .23s ease-out;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

.hero .lead-form div:nth-child(4) {
  width: 100%;
} 
/* Layout */

.container {
  margin: 0 auto;
  width: 100%;
  max-width: 1248px;
  padding: 0 20px;
}

.container-wider {
  padding: 0 95px;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.overlay {
  width: 100%;
  height: 100%;
  background-color: transparent;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /* gap: 1rem; */
}

.col1,
.col2,
.col3,
.col4,
.col5,
.col6,
.col7,
.col8,
.col9,
.col10,
.col11,
.col12 {
  position: relative;
  padding: 20px 0;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  max-width: 100%;
}

@media only screen and (min-width:768px) {
  .col1 {
      -webkit-box-flex: 1;
      -ms-flex: 1 1 8.33%;
      flex: 1 1 8.33%;
      max-width: 8.33%;
  }

  .col2 {
      -webkit-box-flex: 1;
      -ms-flex: 1 1 16.66%;
      flex: 1 1 16.66%;
      max-width: 16.66%;
  }

  .col3 {
      -webkit-box-flex: 1;
      -ms-flex: 1 1 25%;
      flex: 1 1 25%;
      max-width: 25%;
  }
  
  .col4 {
      -webkit-box-flex: 1;
      -ms-flex: 1 1 33.33%;
      flex: 1 1 33.33%;
      max-width: 33.33%;
  }

  .col5 {
      -webkit-box-flex: 1;
      -ms-flex: 1 1 41.66%;
      flex: 1 1 41.66%;
      max-width: 41.66%;
  }

  .col6 {
      -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
      flex: 1 1 50%;
      max-width: 100%;
  }

  .col7 {
      -webkit-box-flex: 1;
      -ms-flex: 1 1 58.33%;
      flex: 1 1 58.33%;
      max-width: 58.33%;
  }

  .col8 {
      -webkit-box-flex: 1;
      -ms-flex: 1 1 66.66%;
      flex: 1 1 66.66%;
      max-width: 66.66%;
  }

  .col9 {
      -webkit-box-flex: 1;
      -ms-flex: 1 1 75%;
      flex: 1 1 75%;
      max-width: 75%;
  }

  .col10 {
      -webkit-box-flex: 1;
      -ms-flex: 1 1 83.33%;
      flex: 1 1 83.33%;
      max-width: 83.33%;
  }

  .col11 {
      -webkit-box-flex: 1;
      -ms-flex: 1 1 91.63%;
      flex: 1 1 91.63%;
      max-width: 91.63%;
      margin: 0 auto;
  }

  .col12 {
      -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
      flex: 1 1 100%;
      max-width: 100%;
    }
}

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

.text-right {
  text-align: right;
}

.consent label {
  background-color: #f5f5f5;
}

.more-information {
  display: inline-block;
  max-width: 2rem !important;
}

/* Buttons */

button,
.btn {
  padding: 20px 18px;
  background: var(--cta-color);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  -webkit-transition: all .23s ease-out;
  transition: all .23s ease-out;
  cursor: pointer;
}

button:hover,
.btn:hover {
  opacity: .85;
}

.consent label {
  background-color: transparent !important;
}

div#mainForm div {
  width: 100%;
}

input#submitFormButton {
  white-space: pre-wrap;
  font-family: 'RealBetisHeadlineWEB-CINCO';
  font-size: 40px;
  letter-spacing: 2px;
  padding:0;
}

/* Titles */

.colored-title {
  color: var(--font-color-2);
}

/* RESPONSIVE */

@media only screen and (max-width:767px) {

  .container,
  .container-wider {
      padding: 0px;
      max-width: 100%;
  }

  /*.hero-form {
      max-width: 300px !important;
  }*/
}

/* BUTTON COOKIES */

.footer-bottom-button {
      -webkit-text-size-adjust: 100%;
      -webkit-font-smoothing: antialiased;
      box-sizing: border-box;
      background-color: var(--cta-color);
      border: 1px solid transparent;
      font-family: 'Lato', serif;
      font-weight: 700;
      color: white;
      height: 46px;
      line-height: 46px;
      text-align: center;
      text-decoration: none;
      padding: 0 18px;
      display: inline-block;
      text-shadow: none;
      font-size: 16px;
      vertical-align: middle;
      border-radius: 0;
}

.footer-bottom-cookies{
      width: 17rem;
  }


@media (max-width: 800px) {
  .footer-bottom-cookies{
      width:100%;

  }

}

/* ----- HEADERS ----- */

/* HEADER STYLE 1 */
.header-style-1{
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 9999;
  height: 88px;
  background-color: var(--bg-color-2);
}

.header-style-1 .flex {
  justify-content: space-between;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /* gap: 1rem; */
}

.header-style-1 .container-wider {
  padding: 0 95px;
}

.header-style-1 .logo {
  padding: 24px 0;
  width: 142px;
  height: auto;
}

.header-style-1 .header-contact {
  margin-right: 32px;
}

.header-style-1 .header-contact a {
  color: var(--font-color-1);
  font-weight: 700;
}

.header-style-1 .social-icon {
  margin-right: 32px;
}

.header-style-1 .social-icon img {
  width: 26px;
}

.header-style-1 .header-cta .btn {
  padding: 0;
  font-size: 0;
  transition: all .3s ease;
}

.header-responsive-style-1{
  display: none;
  opacity: 1;
}

.header-responsive-style-1 .container-wider {
  padding: 0 95px;
}

.header-responsive-style-1 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /* gap: 1rem; */
}

.header-responsive-style-1 .social-icon {
  width: 64px;
  height: 56px;
}

.header-responsive-style-1 #ctaButton {
  background-color: var(--cta-color);
  color: var(--font-color-3);
  padding: 18px;
  text-align: center;
  line-height: 3.5;
  font-size: 15px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .header-style-1 {
      height: auto;
  }
  .header-style-1 .container-wider {
      padding: 0 20px;
      max-width: 100%;
  }
  .header-style-1 .logo {
      width: 142px;
  }
  .header-style-1 .header-contact {
      margin-right: 0;
  }
  .header-responsive-style-1 .social-icon {
      max-width: 32% !important;
      min-width: 24% !important;
      height: 56px !important;
      display: flex !important;
  }
  .header-style-1 .social-icon {
      display: none;
  }
  .header-responsive-style-1 {
      display: flex !important;
      position: fixed;
      bottom: 0;
      background: var(--bg-color-2);
      justify-content: normal;
      width: 100%;
      height: 56px;
      z-index: 3;
  }
  .header-responsive-style-1  .container-wider.flex {
      width: 100% !important;
      min-height: 100%;
      max-width: 100% !important;
      display: flex;
      margin: 0px;
      padding: 0px !important;
      justify-content: space-between;
  }
  .header-responsive-style-1  .container-wider.flex > div {
      display: flex !important;
      max-width: 50% !important;
      min-width: 0%;
  }

  .header-responsive-style-1 .social-icon img {
      margin: auto;
      display: flex;
  }
  .header-responsive-style-1 .line {
      width: 1px;
      min-width: 1px;
      max-width: 1px;
      border: 1px solid #e0e0e0;
      height: 57%;
      margin: auto 0;
  }
  .header-responsive-style-1 .social-icon {
      max-width: 32%;
      min-width: 24%;
      height: 56px;
      display: flex;
  }
  .header-responsive-style-1 .social-icon img {
      margin: auto;
      display: flex;
  }
  .header-responsive-style-1  .header-cta {
      min-width: 50% !important;
      max-width: 90% !important;
      display: flex !important;
  }
  .header-responsive-style-1  #ctaButton {
      background-color: var(--cta-color);
      color: var(--font-color-3);
      padding: 0px 18px;
      text-align: center;
      line-height: 3.5;
      font-size: 16px;
      font-weight: 600;
      width: 100%;
  }

}


/* HEADER STYLE 2 */
.header-style-2{
  height: auto;
  padding: 0px;
  background-image: url('');
  background-size: cover;
  background-repeat: no-repeat;
}

.header-style-2 .overlay {
  width: 100%;
  height: 100%;
  background-color: transparent;
  /*background: var(--bg-overlay-2);*/
  padding: 0px 20px 20px 20px;
}

.header-style-2 .content-logo {
  padding-top: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}
.header-style-2 a {
  text-decoration: none;
  color: var(--font-color-3);
  -webkit-transition: all .23s ease-out;
  transition: all .23s ease-out;
  border-width: 0px;
  border: 0px;
}
.header-style-2 a:link {
  text-decoration: none;
  color: var(--font-color-3);
}
.header-style-2  .title {
  color: var(--font-color-3);
  font-weight: bold;
  font-size: 3.75rem;
  letter-spacing: -0.43px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.30);
  line-height: 1.3;
  position: relative;
  padding: 70px 0 40px 0;
  display: flex;
  justify-content: center;
  width: 940px;
  margin: 0 auto;
  text-align: center;
}
.header-style-2 .header-subtitle {
  display: flex;
  justify-content: center;
  position: relative;
}
.header-style-2 .header-subtitle span {
  font-size: 24px;
  font-weight: 400;
  color: var(--font-color-3);
  text-align: center;
}
.header-style-2 .type_module {
  margin: 50px 0px 70px 0px;
  font-size: 20px;
  color: var(--font-color-3);
  font-weight: 700;
  letter-spacing: 2.5px;
  line-height: 20px;
  display: flex;
  justify-content: center;
  position: relative;
}
.header-style-2 .date-caption{
  display: flex;
  align-content: center;
  align-items: center;
  font-size: 1.25rem;
  font-weight: bold;
}
.header-style-2 .location-caption {
  display: flex;
  align-content: center;
  align-items: center;
  font-size: 1.25rem;
  font-weight: bold;
}
.header-style-2 .material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  margin-right: 4px;
}
.header-style-2 .horizontal-seperator {
  border-left: 3px solid #fff;
  height: 30px;
  margin: -5px 15px 0;
}
.header-style-2 .button {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.header-style-2 .btn-register {
  box-shadow: 0 2px 4px 0 rgb(0 0 0 / 20%);
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 3px;
  color: var(--font-color-3);
  text-transform: uppercase;
  padding: 20px 25px;
  border-radius: 4px;
  position: relative;
  background: var(--bg-color-3);
}
.header-style-2 .btn-register span {
  color: var(--font-color-3);
  font-weight: bolder;
  text-decoration: none !important;
}
@media (max-width: 767px) {
  .header-style-2 .title {
      font-size: 40px;
      font-weight: 700;
      line-height: 52px;
      width: 220px;
  }
  .header-style-2 .container {
      padding: 10px 10px !important;
  }
  .header-style-2 .header-subtitle {
      width: 220px;
      text-align: center;
      margin: 0 auto;
      font-size: 20px;
      font-weight: 400;
      line-height: 30px;
  }
  .header-style-2 .type_module {
      min-width: 220px;
      margin: 40px auto 60px auto;
      text-align: center;
      font-size: 20px;
      font-weight: 700;
      display: flex;
      flex-direction: column;
  }
  .header-style-2 .event-date {
      display: flex;
      justify-content: center;
      line-height: 30px;
  }
  .header-style-2 .date-caption{
      display: flex;
      align-items: flex-start;
  }
  .header-style-2 .location-caption {
      display: flex;
      align-items: flex-start;
  }
  .header-style-2 .horizontal-seperator {
      display: none;
  }
  .header-style-2 .event-location {
      display: flex;
      justify-content: center;
      margin-top: 20px;
      line-height: 30px;
  }
  .header-style-2 .header .button {
      align-content: center;
      display: flex;
      width: 170px;
      margin: auto;
      width: 81%;
      text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .header-style-2 .title {
      font-size: 60px;
      font-weight: 700;
      line-height: 78px;
      width: 688px;
  }
  .header-style-2 .header-subtitle {
      width: 668px;
      text-align: center;
      margin: 0 auto;
      font-size: 24px;
      font-weight: 400;
      line-height: 36px;
  }
  .header-style-2 .type_module {
      width: 668px;
      min-width: 668px;
      margin: 40px auto 60px auto;
      text-align: center;
      font-size: 16px;
      font-weight: 400;
      display: flex;
      flex-direction: row;
      line-height: 24px;
  }
}


/* HEADER STYLE 3 */
.header-style-3 {
  display: flex;
  justify-content: space-between;
  padding: 20px 0px;
  align-items: center;
}

.header-style-3 .container {
  margin: 0 auto;
  width: 100%;
  max-width: 1100px;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}

.header-style-3 .content-logo {
  border-bottom: 0;
  width: fit-content;
  padding: 0px;
  margin: 0;
}

.header-style-3 .phone .logo {
  height: 45px;
  width: 45px;
  margin-right: 20px;
}

.header-style-3 a:link {
  text-decoration: none;
  color: #fff;
  margin-right: 10px;
}

.header-style-3 .border {
  background: var(--bg-color-3);
  height: 28px;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
}

.header-style-3 .phone {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin: 10px 0;
  padding: 0 20px;
  height: fit-content;
}

.header-style-3 .header .logo {
  width: 300px;
  height: 97px;
}

.header-style-3 img {
  width: auto;
  height: auto;
  vertical-align: bottom;
  cursor: default;
}

@media (max-width: 767px) {
  
  .header-style-3 {
      display: flex;
      flex-direction: column;
      align-items: center;
  }
  .header-style-3 .content-logo {
    padding: 0;
    margin-top: 28px;
  }

  .header-style-3 img {
        width: 100px;
        margin: 10px 0px;
    }

  .header-style-3 .phone {
      display: inline-block;
      padding: 10px;
      max-width: fit-content;
  }

  .header-style-3 .phone .logo {
      height: 30px;
      width: 30px;
  }

  .header-style-3 .container {
      display: flex;
  }

  .header-style-3 .enlace a {
      display: block;
      margin-top: 10px;
      margin-right: 0px;
  }

  .header-style-3 .enlace {
        display: none;
    }

  .header-style-3 img.logo1 {
      width: 70px;
  }
}

@media (min-width: 767px) {
  .header-style-3 .content-logo img {
      max-width: 350px;
      padding-top: 10px;
  }

  .header-style-3 img {
      max-width: 350px;
      height: 80px;
  }

  .header-style-3 .logo1 img {
    width: 70px;
    margin: 10px 0px;
  }
}

@media (max-width: 1024px) {
   .header-style-3 {
      display: flex;
      align-items: center;
      padding: 20 0px;
  }
  .header-style-3 .enlace span {
      font-size: 12px;
  }
}

/* HEADER STYLE 4 */

.header-style-4 {
  display: flex;
  justify-content: space-between;
  padding: 0 115px;
}

.header-style-4 .container {
  margin: 0 auto;
  width: 100%;
  max-width: 1100px;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}

.header-style-4 .content-logo {
  border-bottom: 0;
  height: 139px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0px;
}

.header-style-4 .phone .logo {
  height: 45px;
  width: 45px;
  margin-right: 20px;
}

.header-style-4 a:link {
  text-decoration: none;
  color: #de3831;
}

.header-style-4 .phone {
  display: none;
  align-items: center;
  flex-direction: column;
  height: 140px;
  padding: 15px;
  justify-content: center;
}

.header-style-4 .phone p {
  margin: 0;
  padding: 5px 10px;
  color: #fff;
}

.header-style-4 .phone span {
  font-size: 22px !important;
  color: #b7b5b5;
  font-weight: 300;
  margin-top: 5px;
}

.header-style-4 .header .logo {
  width: 300px;
  height: 97px;
}

.header-style-4 img {
  max-width: 250px;
  height: 70px;
  vertical-align: bottom;
  cursor: default;
}

@media (max-width: 767px) {
  .header-style-4 {
      display: flex;
      flex-direction: column;
      padding: 0px;
  }
  .header-style-4 .content-logo {
      margin: 0px;
      display: flex;
      justify-content: center;
      height: 100px;
  }
  .header-style-4 .phone {
      padding: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      height: auto;
  }
  .header-style-4 .phone .logo {
      height: 35px;
      width: 35px;
  }
  .header-style-4 .container {
      margin: 0 auto;
      width: 100%;
      max-width: 1100px;
      padding: 0 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-direction: column;
  }

}

@media (min-width: 767px) and (max-width: 1024px) {
  .header-style-4 {
      padding: 0px;
  }
}




/* ---------- FOOTERS ---------- */

/*** Footer Style 1 ***/

.footer-style-1 {
  font-size: 14px;
}

.footer-style-1 a {
  color: var(--font-color-3);
}

.footer-style-1 a:hover {
  color: var(--font-color-3);
  opacity: .84;
}

.footer-style-1 .footer-middle {
  padding: 26px 0 24px 0;
  background-color: var(--bg-color-6);
  color: #fff;
}

.footer-style-1 .footer-middle .footer-logo {
  margin-right: 95px;
  margin-bottom: -66px;
  width: 96px;
  height: 95px;
}

.footer-style-1 .footer-middle .footer-contact {
  margin-top: 24px;
}

.footer-style-1 .footer-bottom {
  padding: 16px 0;
  background-color: var(--cta-color);
  color: #fff;
}

.footer-style-1 .footer-bottom+span {
  padding: 10px 0;
  background-color: var(--cta-color);
  color: #fff;
}

.footer-style-1 img {
  max-width: 100%;
  vertical-align: bottom;
}

/*** Footer Style 2 ***/

.footer-style-2 {
  background-color: var(--bg-color-6);
  color: #fff;
  font-size: 16px;
  display: flex;
  flex-direction: column;
}

.footer-style-2 .content {
  display: flex;
}

.footer-style-2 h3 {
  margin: 0;
  padding: 0;
  color: var(--cta-color);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}

.footer-style-2 p {
  margin-bottom: 2rem;
}

.footer-style-2 a {
  color: var(--font-color-3);
}

.footer-style-2 a:hover {
  color: var(--font-color-3);
  opacity: .85;
}

.footer-style-2 .footer-map {
  background-image: url('../images/europeia_02_footer_map-01.jpg');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
}

.footer-style-2 .footer-contact {
  margin-left: 10%;
}

.footer-style-2 .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  min-height: 300px;
}

.footer-style-2 .row+span {
  padding: 10px 0px;
}

@media only screen and (max-width: 767px) {
  .footer-style-2 .content {
    display: flex;
    flex-direction: column;
  }
}

/*** Footer Style 3 ***/

.footer-style-3 {
  padding: 0px;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
  width: 100%;
  background: #333333;
}

.footer-style-3 .container {
  display: flex;
}

.footer-style-3 .footer-top {
    padding: 40px 0px;
    background: #0d833b;
    display: flex;
    background-size: cover;
}

.footer-style-3 a {
  text-decoration: none;
  color: var(--font-color-3);
  font-size: 16px;
  line-height: 24px;
}

.footer-style-3 .content-image {
  width: 19rem;
  position: absolute;
  margin-left: 60rem;
  margin-top: -59px;
}

.footer-style-3 .footer-top .titulo {
    font-family: 'RealBetisHeadlineWEB-OCHO';
    font-size: 36px;
    color: #fff;
}

.footer-style-3 .descripcion {
    font-family: 'RealBetisWEB-Lt';
    font-size: 16px;
    color: #fff;
}

.footer-style-3 .footer-bottom p {
  margin: 0;
  display: inline-block;
}

.footer-style-3 a:link {
  color: #fff !important;
}

.footer-style-3 a:hover {
  color: var(--font-color-3);
  opacity: .85;
}

.footer-style-3 .footer-medium {
  background: #206020;
  display: flex;
  flex-direction: row;
  background-size: cover;
}

.footer-style-3 .text-bottom {
    text-align: left;
}

.footer-style-3 .text-bottom {
    text-align: left;
    color: #5e8f5e;
    font-size: 12px;
}

.footer-style-3 .footer-medium .right .titulo {
    font-family: 'RealBetisHeadlineWEB-OCHO';
    font-size: 32px;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-style-3 .footer-medium .right .bloque1, .footer-style-3 .footer-medium .right .bloque2, .footer-style-3 .footer-medium .right .bloque3 {
  display: inline-block;
  width: 32%;
  vertical-align: top;
  text-align: left;
}

.footer-style-3 .bloque1, 
.footer-style-3 .bloque2 {
    width: 30%;
}

.footer-style-3 .footer-medium .right {
    display: inline-block;
    vertical-align: top;
    padding: 20px !important;
}

.footer-style-3 .footer-medium .right .bloque1 a,
.footer-style-3 .footer-medium .right .bloque2 a,
.footer-style-3 .footer-medium .right .bloque3 a {
    font-size: 14px;
    font-family: 'RealBetisWEB-Lt';
    display: block;
}

.footer-style-3 .sub-info+label {
    display: flex;
    align-items: center;
}

.footer-style-3 .text-bottom select,
.footer-style-3 .text-bottom .sub-info input {
    background: #206020;
    border: transparent;
    border-bottom: 1px solid #5e8f5e;
    padding: 5px 20px 5px 0px;
    color: #5e8f5e;
    margin-right: 30px;
}

.footer-style-3 .text-bottom .sub-info input {
    padding: 10px;
}

.footer-style-3 .sub-info+label > input {
    margin-right: 10px;
}

.footer-style-3 .sub-info {
    width: 100%;
    justify-content: revert;
    display: flex;
    margin-bottom: 18px;
}

.footer-style-3 .sub-info button {
    color: #134828;
    background: #d4ab03;
    font-family: 'RealBetisHeadlineWEB-OCHO';
    font-size: 21px;
    padding: 10px 20px;
}

.footer-style-3 .text-medium .subtitulo {
    color: #fff;
    font-size: 14px;
    font-family: 'RealBetisWEB-Lt';
}

.footer-style-3 .block-banner {
  margin-top: 10px;
}

.footer-style-3 .footer-medium .left, 
.footer-style-3 .footer-medium .right {
    width: 50%;
    padding: 30px 20px;
}

.footer-style-3 .text-medium .titulo {
  font-family: RealBetisWEB-SmBd;
    color: #fff;
    font-size: 32px;
    margin-bottom: 6px;
}

.footer-style-3 .text-medium {
    padding-top: 60px;
    text-align: left;
    color: #fff;
}

.footer-style-3 .footer-medium .imagen {
  width: auto;
  height: auto;
}

.footer-style-3 .footer-medium .left {
  display: inline-block;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  color: #fff;
  height: auto;
}

.footer-style-3 .footer-bottom {
    color: white;
    background: #00471B;
    padding: 30px 10px;
    display: flex;
    justify-content: space-around;
}

.footer-style-3 .footer-bottom .left,
.footer-style-3 .footer-bottom .right {
    font-size: 12px;
    display: flex;
    align-items: center;
}

.footer-style-3 .footer-bottom .left .copyright {
    color: #6CB187;
    font-weight: bold;
}

.footer-style-3 .footer-bottom .right .texto {
  cursor: pointer;
  color: #6CB187;
  font-size: 12px;
  font-weight: 700;
}

.footer-style-3 .footer-map {
  background-image: url('../images/europeia_02_footer_map-01.jpg');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.footer-style-3 .content-text {
    width: 70%;
    text-align: left;
}

.footer-style-3 .footer-contact {
  margin-left: 10%;
}

.footer-style-3 span a {
  color: var(--cta-color);
}

.footer-style-3 .FirstImageAPP, .footer-style-3 .SecondImageAPP {
  width: 100%;
  margin: 10px 0px;
  display: inline-block;
}

.footer-style-3 .logo-banner {
  max-width: 30%;
  display: inline-block;
  margin-top: 3%;
  vertical-align: middle;
  margin: 0% 2%;
}

.footer-style-3 .button-banner {
  max-width: 30%;
  display: inline-block;
  vertical-align: middle;
  margin-top: 3%;
}

.footer-style-3 .button-banner button {
  font-family: 'RealBetisHeadlineWEB-NUEVE';
  max-height: fit-content;
  height: 40px;
  background-size: 100% 100%;
  display: inline-flex;
  padding: 10px 10px;
}

.button-banner button {
  background: #fff;
  color: #017F35;
  font-size: 10px;
}

.footer-style-3 .left h3 {
  color: #008836;
  margin-bottom: 0;
  font-family: 'RealBetisHeadlineWEB-NUEVE';
  font-size: 51px;
}

.footer-style-3 .left h2 {
  margin-bottom: 0;
  font-size: 28px;
  font-family: 'RealBetisWEB-UltLt';
  letter-spacing: 0px;
  font-weight: 600;
  margin-top: -20px;
}

.footer-style-3 .left span {
  font-size: 15px;
  display: inline-block;
  vertical-align: middle;
}

.footer-style-3 .titulo-rrss span {
  font-family: 'RealBetisHeadlineWEB-OCHO';
  font-size: 25px;
  font-weight: 900;
}

.footer-style-3 .imagen-rrss {
  display: inline-block;
  width: 10%;
}

.footer-style-3 .imagen-rrss img {
  width: 100%;
}

.footer-style-3 .bloque-izquierdo-RRSS, .footer-style-3 .bloque-derecho-RRSS {
  width: 49.8495%;
}

.footer-style-3 .footer-RRSS {
  background: #CCE7D7;
  padding: 60px 0px 80px 0;
}

.footer-style-3 .titulo-rrss {
  margin-bottom: 30px;
}

.footer-style-3 .bloque-derecho-RRSS .titulo {
  margin-bottom: 2rem;
}

.footer-style-3 .bloque-derecho-RRSS .titulo span {
  font-family: 'RealBetisHeadlineWEB-OCHO';
  font-size: 25px;
  font-weight: 900;
}

.footer-style-3 .bloque-derecho-RRSS .texto-grande {
  color: #028735;
  font-family: 'RealBetisHeadlineWEB-ONCE';
  font-size: 45px;
  font-weight: bold;
}

.footer-style-3 .bloque-derecho-RRSS .texto-enlace {
  margin-top: 15PX;
}

.footer-style-3 .bloque-derecho-RRSS .texto-enlace span {
  color: #028735;
  font-family: 'RealBetisHeadlineWEB-OCHO';
  font-size: 15px;
  font-weight: bold;
}

.footer-style-3 .ImagesAPP img {
  max-width: 125px;
}

.footer-style-3 .texto-enlace img {
  width: 20px;
  margin-left: 10px;
  vertical-align: initial;
}

.footer-style-3 .left img, .footer-style-3 .right img {
  display: block;
  margin: 0 auto;
  max-width: 175px;
}



@media (max-width: 767px) {
  .footer-style-3 .footer-bottom {
      padding-top: 0px;
  }
  .footer-style-3 .content-text {
        width: 100%;
        text-align: left;
        padding: 0 20px;
        /* padding-bottom: 150px; */
    }
    .footer-style-3 .footer-medium .left {
        padding-left: 0;
        padding: 30px 20px;
        align-items: initial;
    }
    .footer-style-3 .footer-top .titulo {
      text-align: center;
  }
  .footer-style-3 .footer-medium {
    background-size: cover;
  }
  .footer-style-3 .footer-top {
    background-size: cover;
  }
  .footer-style-3 .container {
    display: block;
  }
  .footer-style-3 .content-image {
    position: relative;
    margin-left: 0%;
    margin-top: 0;
  }
  .footer-style-3 .content-image img {
    max-width: 50%;
  }
  .footer-style-3  .footer-medium {
    background: #016627;
    background-repeat: no-repeat;
  }
  .footer-style-3 .footer-RRSS {
    padding: 60px 20px;
  }
  .footer-style-3 .bloque-izquierdo-RRSS, .footer-style-3 .bloque-derecho-RRSS {
    width: 100%;
  }
  .footer-style-3 .imagen-rrss {
    width: 15%;
  }
  .footer-style-3 .titulo-rrss {
    margin-bottom: 0px;
  }
  .footer-style-3 .bloque-derecho-RRSS .texto-grande {
    font-size: 30px;
  }
  .footer-style-3 .button-banner {
    vertical-align: middle;
    max-width: 50%;
  }
  .footer-style-3 .logo-banner {
    max-width: 25%;
    margin: 1%;
  }

  .footer-style-3 .footer-medium .right .bloque1, .footer-style-3 .footer-medium .right .bloque2, .footer-style-3 .footer-medium .right .bloque3 {
    text-align: center;
  }
  .footer-style-3 .left img {
    max-width: 100%;
}
}

@media (min-width: 768px) and (max-width: 1024px) {
  .footer-style-3 .content-text {
    width: 100%;
    padding: 0px 20px;
  }

  .footer-style-3 .footer-top .titulo {
    text-align: center;
  }
  .footer-style-3 .container .content-image {
    width: 300px !important;
    position: initial;
    margin-left: 0;
    margin-top: 0;
    display: inline-block;
  }
  .footer-style-3 .footer-medium {
    background-size: cover;
  }
  .footer-style-3 .footer-top {
    background-size: cover;
  }
  .footer-style-3 .container {
    display: block;
  }
  .footer-style-3 .footer-RRSS .container {
    display: flex;
}
  .footer-style-3 .content-image {
    position: initial;
    margin-left: 0%;
    margin-top: 0;
  }
  .footer-style-3 .content-image img {
    max-width: 50%;
  }
  .footer-style-3 .footer-medium .right .bloque1, .footer-style-3 .footer-medium .right .bloque2, .footer-style-3 .footer-medium .right .bloque3 {
    margin-top: 15px;
    width: 100%;
    display: block;
    text-align: center;
  }
  .footer-style-3 .footer-bottom p {
    margin-bottom: 10px;
  }
}

/*** Footer Style 4 ***/

.footer-style-4 .top-footer span, .footer-style-4 .bottom-footer p {
  padding: 0 10px;
} 

.footer-style-4 .bottom-footer {
  width: 100%;
  color: #808080;
  font-size: 16px;
  padding: 20px 140px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-style-4 .top-footer span a {
  display: flex;
  justify-content: flex-end !important;
}

@media (min-width:320px) and (max-width: 767px) {
  .footer-style-4 .bottom-footer {
   padding: 10px 0px;
   display: block;
  }
}

/* ---------- HEROES ---------- */

/*** HERO STYLE 1 ***/

.hero-style-1 {
font-family: var(--font-family-2);
}

.hero-style-1 .hero-header {
  background-position: top;
  background-repeat: no-repeat;
  background-size: 100%;
  background-image: url('');
}

.hero-style-1 .overlay {
  width: 100%;
  height: 100%;
}

.hero-style-1 .hero-header .container {
  padding-top: 30px;
  padding-bottom: 30px;
  min-height: 490px;
}

.hero-style-1 .container {
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}

.hero-style-1 .hero-subtitle {
  color: var(--bg-color-2);
  font-weight: 700;
  line-height: 28px;
  max-width: 90%;
  margin-top: 24px;
  font-family: var(--font-family-4);
  font-size: 19px;
}

.hero-style-1 .hero-subtitle b {
  font-family: var(--font-family-3);
}

.hero-style-1 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.hero-style-1 .hero-title {
  width: auto;
   color: #fff;
   font-size: 38px;
   font-weight: 700;
   line-height: 50px;
   margin-bottom: 0px;
}

.hero-style-1 .hero h2 {
  font-size: 24px;
  line-height: 33px;
}

.hero-style-1 h2 {
  color: #0A8734;
  font-family: var(--font-family-headline-4);
  font-size: 50px;
  letter-spacing: 2px;
}

.hero-style-1 h3 {
  font-size: 54px;
  line-height: 30px;
  font-family: 'RealBetisHeadlineWEB-TRES';
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.hero-style-1 .hero-content {
  max-width: 1225px;
  margin: auto;
  background: var(--bg-color-2);
}

.hero-style-1 .hero-text-block {
  padding-top: 30px;
}

.hero-style-1 .hero-description {
  margin-top: 12px;
}

.hero-style-1 .hero-cta {
  position: relative;
  margin: -10px 0 44px 0;
  padding-left: 20px;
  color: var(--base-color);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1.4px;
}

.hero-style-1 .hero-cta:not(.sub2)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  background-color: #fde2e0;
}

.hero-style-1 h4 {
  font-family: var(--font-family-2);
  font-size: 16px;
  font-weight: 700;
  line-height: 28px;
}

.hero-style-1 h4 span {
  font-size: 14px;
  font-weight: 400;
}

.hero-style-1 ul {
  padding-left: 2rem;
  margin-bottom: 2rem;
}

.hero-style-1 .hero-form-block {
  justify-content: flex-end;
}

.hero-style-1 .hero-form {
  float: right;
  margin-top: calc(-100% + 180px);
  width: 100%;
  max-width: 400px;
  background: #0A8734;
  padding: 3rem 2rem;
  color: #fff;
  margin-left: 30%;
  margin-right: auto;
  position: absolute;
}

.hero-style-1 .consent-message a {
  color: #fff;
}

.hero-style-1 .lead-form {
  margin-top: 2rem;
  justify-content: space-between;
}

.hero-style-1 .lead-form>div {
  width: 100%;
}

.hero-style-1 .lead-form .multifield {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.hero-style-1 .lead-form p,
.hero-style-1 .lead-form label {
  display: block;
  margin-top: 10px;
  width: 100%;
  font-size: 0.9rem;
}

.hero-style-1 textarea {
  width: 100%;
  padding: 12px 10px;
  margin: 3px 0;
  background-color: var(--bg-color-2);
  border: 0px solid #d9d9d9;
  font-size: 14px;
  border-bottom: 1px solid #d2d4d9;
  color: #939393;
}

.hero-style-1 .lead-form input,
.hero-style-1 .lead-form select {
  width: 100%;
  padding: 12px 10px;
  margin: 3px 0;
  background-color: var(--bg-color-2);
  border: 0px solid #d9d9d9;
  font-size: 14px;
  border-bottom: 1px solid #d2d4d9;
  color: #939393;
}

.hero-style-1 .lead-form input::placeholder,
.hero-style-1 .lead-form select::placeholder {
  color: #939393;
}

.hero-style-1 .lead-form .phone-number-prefix {
  position: absolute;
  left: 8px;
  top: 0;
  height: 100%;
  font-family: sans-serif;
  font-size: 14px;
  line-height: 34px;
}

.hero-style-1 .lead-form .phone-number {
  /*padding-left: 48px;*/
}

.hero-style-1 .lead-form .phone-number-wrapper {
  position: relative;
}

.hero-style-1 .lead-form .consent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

.hero-style-1 .lead-form .consent-message {
  margin-top: 10px;
  font-size: 13px;
}

.hero-style-1 .lead-form #marketing_consent {
  display: inline-block;
  max-width: 2rem;
}

.hero-style-1 .lead-form .field-9 {
  max-width: calc((100% - 1rem) * 0.75);
}

.hero-style-1 .lead-form .field-8 {
  max-width: calc((100% - 1rem) * 0.666);
}

.hero-style-1 .lead-form .field-4 {
  max-width: calc((100% - 1rem) * 0.333);
}

.hero-style-1 .lead-form .field-3 {
  max-width: calc((100% - 1rem) * 0.25);
}

.hero-style-1 .lead-form em.invalid {
  color: #e62e00;
  font-size: 14px;
  font-weight: bold;
}

.hero-style-1 .lead-form .form-feedback {
  margin: 20px 0;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 700;
  border: solid 2px var(--cta-color);
  border-radius: 5px;
}

.hero-style-1 .lead-form .submit-button {
  margin-top: 20px;
  padding: 0.8rem 3rem;
  width: 100%;
  background: var(--cta-color);
  color: var(--bg-color-2);
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  -webkit-transition: all .23s ease-out;
  transition: all .23s ease-out;
  cursor: pointer;
}

.hero-style-1 .lead-form .submit-button.disabled {
  background: #999;
  color: #666;
  cursor: not-allowed;
}

.hero-style-1 .lead-form .submit-button:hover {
  opacity: .85;
}
.hero-style-1 .lead-form .submit-button.disabled:hover {
  opacity: 1;
}

.hero-style-1 .col12 {
  padding-right: 29%;
  max-width: 90%;
}

.hero-style-1 .container, 
.hero-style-1 .container-wider {
padding: 0 20px;
}

.hero-style-1 .layoutImagenes img {
width: auto;
max-width: 30%;
height: auto;
display: inline-block;
padding: 0 20px;
}

.hero-style-1 .layoutImagenes hr {
display: inline-block;
height: 100px;
}

.hero-style-1 .imagenTitulo img {
margin-top: -20px;
}

.hero-style-1 .enlace span {
margin-right: 10px;
}

.hero-style-1 .consent label {
  color: var(--font-color-3);
}

.hero-style-1 .col6 {
 max-width: 100%;
}

@media (max-width: 767px) {

  .hero-style-1 .imagenTitulo img {
    margin-top: 0px;
}

  .hero-style-1 .col12 {
      padding-right: 0%;
      padding: 0 20px;
  }

  .hero-style-1 .hero-title{
    line-height: 30px;
    font-size: 27px;
  }

  .hero-style-1  .hero .hero-title {
      width: 100%;
      font-size: 34px;
  }

  .hero-style-1 .hero-header .container {
      padding: 20px 0;
      max-width: 100%;
      min-height: auto;
      text-align: center;
  }
  .hero-style-1 h2{
    font-size: 32px;
  }

  .hero-style-1 .hero .hero-title br {
      display: none;
  }

  .hero-style-1 .hero .hero-subtitle {
      margin-top: 24px;
  }

  .hero-style-1 .layoutImagenes img {
      max-width: 48%;
  }

  .hero-style-1 h3 {
    font-size: 44px;
  }
  .hero-style-1 .hero-form {
    padding: 2rem 1rem;
    margin-top: 0;
    margin-left: 0;
    position: initial;
    float: initial;
    margin: 0 auto;
  }
  .hero-style-1 .textoEnlace {
    display: none;
}
}



@media (min-width: 768px) and (max-width: 1200px) {

  .hero-style-1 .hero-header {
    background-size: cover;
}
    .hero-style-1 .hero-content {
      margin-top: 0px;
  }
  .hero-style-1 .col12 {
      max-width: 100%;
  }
  .hero-style-1 .hero-form {
    margin-top: 0;
    margin-left: 0;
    position: initial;
  }
  .hero-style-1 .imagenTitulo img {
    margin-top: -10px;
  }
  .hero-style-1 .imagenTitulo {
    max-width: 300px;
  }
}

/*** HERO STYLE 2 ***/

.hero-style-2 {
  background-size: cover;
}

.hero-style-2 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.hero-style-2 .overlay {
  width: 100%;
  height: 100%;
  background-color: transparent;
  background: var(--bg-overlay-2);
}

.hero-style-2 .container {
  margin: 0 auto;
  width: 100%;
  max-width: 1100px;
}

.hero-style-2 .col7 {
  max-width: 100%;
}

.hero-style-2 h2 {
  margin-bottom: 2% !important;
}

.hero-style-2 .hero-content .content {
  padding: 20px 40px;
}

.hero-style-2 .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.hero-style-2 a {
  text-decoration: none;
  color: var(--cta-color);
  -webkit-transition: all .23s ease-out;
  transition: all .23s ease-out;
}

.hero-style-2 .hero .hero-logo {
  width: auto;
  max-height: 80px;
  margin: 0;
}

.hero-style-2 img {
  max-width: 100%;
  vertical-align: bottom;
}

.hero-style-2 .hero-content {
  color: #fff;
}

.hero-style-2 .hero-logo {
  max-height: 80px;
}

.hero-style-2 .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.hero-style-2 .hero .hero-content {
  color: var(--bg-color-2);
}

.hero-style-2 .hero .hero-pretitle {
  margin: 0;
  padding: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
}

.hero-style-2 .hero .hero-title {
  margin: 0;
  padding: 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 4%;
}

.hero-style-2 p {
  margin-bottom: 2rem;
  color: #000;
  padding: 0;
}

.hero-style-2 ul {
  padding-left: 1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-style-2 h2,
.hero-style-2 h3 {
  font-family: var(--font-family-3);
  margin-bottom: 2rem;
}

.hero-style-2 .hero-features {
  margin-top: 10px;
  padding-bottom: 5%;
}

.hero-style-2 .hero-features .feature-item {
  flex-basis: 20%;
  font-size: 14px;
  text-align: center;
}

.hero-style-2 .hero-features .feature-icon {
  margin-bottom: 10px;
  text-align: center;
}

.hero-style-2 .hero-features .feature-icon img {
  width: 58px;
  height: 50px;
  max-width: 100%;
  vertical-align: bottom;
}

.hero-style-2 .hero-pretitle {
  color: #fff;
}

.hero-style-2 h1.hero-title {
  color: #fff;
}

.hero-style-2 div.row.row-end > div > div > h2:nth-child(5) {
  margin-bottom: 2% !important;
}

.hero-style-2 .feature-width {
  display: inline-grid;
  color: #fff;
}

.hero-style-2 .hero-features .feature-title {
  margin: 0;
  font-size: 14px;
  text-align: center;
}

.hero-style-2 .hero-form {
  width: 100%;
  max-width: 100%;
  background: var(--bg-color-2);
  border-top-right-radius: 30px;
  padding: 40px;
  border-bottom-left-radius: 30px;
}

.hero-style-2 .hero-form h3 {
  margin: 0;
  line-height: 1.6;
  text-align: center;
}

.hero-style-2 .hero-form p {
  margin: 0;
  text-align: center;
}

.hero-style-2 .lead-form {
  margin-top: 20px;
  justify-content: space-between;
}

.hero-style-2 .lead-form>div {
  width: 100%;
}

.hero-style-2 .lead-form .multifield {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.hero-style-2 .lead-form p,
.hero-style-2 .lead-form label {
  font-size: 13px;
}

.hero-style-2 .lead-form label {
  display: block;
  margin-top: 10px;
  width: 100%;
}

.hero-style-2 .lead-form input,
.hero-style-2 .lead-form select {
  width: 100%;
  padding: 8px;
  background-color: var(--bg-color-2);
  border: 1px solid #d9d9d9;
  font-size: 13px;
}

.hero-style-2 .lead-form .phone-number-prefix {
  position: absolute;
  left: 8px;
  top: 0;
  height: 100%;
  font-family: sans-serif;
  font-size: 14px;
  line-height: 34px;
}

.hero-style-2 .lead-form .phone-number {
  padding-left: 48px;
}

.hero-style-2 .lead-form .phone-number-wrapper {
  position: relative;
}

.hero-style-2 .lead-form .consent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

.hero-style-2 .lead-form .consent-message {
  margin-top: 10px;
  font-size: 13px;
}

.hero-style-2 .lead-form #marketing_consent {
  display: inline-block;
  max-width: 2rem;
}

.hero-style-2 .lead-form .field-9 {
  max-width: calc((100% - 1rem) * 0.75);
}

.hero-style-2 .lead-form .field-8 {
  max-width: calc((100% - 1rem) * 0.666);
}

.hero-style-2 .lead-form .field-6 {
  max-width: calc((100% - 1rem) * 0.5);
}

.hero-style-2 .lead-form .field-4 {
  max-width: calc((100% - 1rem) * 0.333);
}

.hero-style-2 .lead-form .field-3 {
  max-width: calc((100% - 1rem) * 0.25);
}

.hero-style-2 .lead-form em.invalid {
  color: #e62e00;
  font-size: 13px;
}

.hero-style-2 .lead-form .form-feedback {
  margin: 20px 0;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 700;
  border: solid 2px var(--cta-color);
  border-radius: 5px;
}

.hero-style-2 .lead-form .submit-button {
  margin-top: 32px;
  padding: 15px 30px;
  width: 100%;
  background: var(--cta-color);
  color: var(--bg-color-2);
  font-size: 16px;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  -webkit-transition: all .23s ease-out;
  transition: all .23s ease-out;
  cursor: pointer;
}

.hero-style-2 .lead-form .submit-button.disabled {
  background: #999;
  color: #666;
  cursor: not-allowed;
}

.hero-style-2.lead-form .submit-button:hover {
  opacity: .85;
}

.hero-style-2.lead-form .submit-button.disabled:hover {
  opacity: 1;
}

.hero-style-2 .colored-background {
  color: var(--bg-color-2);
  padding: 30px;
}


@media (max-width: 767px) {
  .hero-style-2 .col8 {
      max-width: 100%;
  }
  
  .hero-style-2 .col4 {
      max-width: 100%;
  }
  
  .hero-style-2 .col7 {
      max-width: 100%;
  }
  .hero-style-2 {
      background-position: center;
  }

  .hero-style-2 .hero-features .feature-item {
      flex-basis: 25%;
      font-size: 14px;
      text-align: center;
  }

  .hero-style-2 .col8 {
      -webkit-box-flex: 1;
      -ms-flex: 1 1 66.66%;
      flex: 1 1 66.66%;
      max-width: 66.66%;
  }

  .hero-style-2 .col7 {
      -webkit-box-flex: 1;
      -ms-flex: 1 1 58.33%;
      flex: 1 1 58.33%;
      max-width: 58.33%;
  }

  .hero-style-2 .col4 {
      -webkit-box-flex: 1;
      -ms-flex: 1 1 33.33%;
      flex: 1 1 33.33%;
      max-width: 33.33%;
  }

  .hero-style-2 .lead-form .field-6{
      max-width: 100%;
  }

  .hero-style-2 .col8,
  .hero-style-2 .col4 {
      max-width: fit-content !important;
  }

  .hero-style-2 .hero-form {
      margin-top: 0;
      width: 100% !important;
  }
}

/*** HERO TYLE 3 ***/

.hero-style-3 .hero-form-block {
  justify-content: flex-end;
}

.hero-style-3 .hero-form {
  float: right;
  width: 100%;
  max-width: 100%;
  padding: 10px 20px;
  background: var(--bg-color-3);
}

.hero-style-3 .hero-form h3 {
  margin: 0;
  font-size: 40px;
  line-height: 44px;
  padding: 25px 0px;
  font-weight: 700;
  color: var(--bg-color-2);
  text-align: center;
}

.hero-style-3 .container {
  margin: 0 auto;
  max-width: 100%;
  justify-content: center;
  width: 1000px;
}


.hero-style-3 .lead-form {
  margin-top: 20px;
  justify-content: space-between;
}

.hero-style-3 .lead-form>div {
  width: 100%;
}

.hero-style-3 .lead-form .multifield {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.hero-style-3 .lead-form p,
.hero-style-3 .lead-form label {
  display: block;
  margin-top: 10px;
  width: 100%;
  background-color: var(--bg-color-2);
  font-size: 13px;
}

.hero-style-3 .lead-form label {
  display: block;
  margin-top: 10px;
  width: 100%;
  background: transparent;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
}

.hero-style-3 .lead-form input,
.hero-style-3 .lead-form select {
  width: 100%;
  padding: 8px;
  background-color: #ededed;
  font-size: 16px;
  border: 1px solid #d9d9d9;
  padding: 0px 20px;
}

.hero-style-3 .lead-form .phone-number-prefix {
  position: absolute;
  left: 8px;
  top: 6px;
  height: 100%;
  font-family: sans-serif;
  font-size: 14px;
  line-height: 34px;
}

.hero-style-3 .lead-form .phone-number {
  padding-left: 48px;
}

.hero-style-3 .lead-form .phone-number-wrapper {
  position: relative;
}

.hero-style-3 .lead-form .consent {
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  width: 100%;
  height: 22px;
  align-content: center;
  text-align: left;
}

.hero-style-3 .consent label {
  display: flex;
  align-items: center;
}

.hero-style-3 .lead-form .consent-message {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--font-color-3);
  text-align: left;
}

.hero-style-3 .lead-form #marketing_consent {
  display: inline-block;
  max-width: 18px;
  height: 18px;
  max-height: 18px;
  min-height: 18px;
  margin-right: 4px;
}

.hero-style-3 .lead-form .field-9 {
  max-width: calc((100% - 1rem) * 0.75);
}

.hero-style-3 .lead-form .field-8 {
  max-width: calc((100% - 1rem) * 0.666);
}

.hero-style-3 .lead-form input,
.hero-style-3 .lead-form select {
  height: 50px;
}

.hero-style-3 .lead-form .field-6 {
  max-width: 100%;
}

.hero-style-3 .lead-form .field-4 {
  max-width: calc((100% - 1rem) * 0.333);
}

.hero-style-3 .lead-form .field-3 {
  max-width: calc((100% - 1rem) * 0.25);
}

.hero-style-3 .lead-form em.invalid {
  color: #e62e00;
  font-size: 13px;
}

.hero-style-3 .lead-form .form-feedback {
  margin: 20px 0;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 700;
  border: solid 2px var(--cta-color);
  border-radius: 5px;
  color: var(--font-color-3);
}

.hero-style-3 .lead-form .submit-button {
  background-color: var(--bg-color-3);
  background-image: none;
  border-color: var(--bg-color-3);
  border-radius: 7px;
  border-style: none;
  border-width: 0px;
  color: var(--bg-color-2);
  font-weight: bold;
  padding: 10px 25px;
  width: fit-content;
  margin-left: 40px;
  margin-top: 40px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  display: flex;
  justify-content: center;
}

.hero-style-3 .lead-form .submit-button.disabled {
  background: #999;
  color: #666;
  cursor: not-allowed;
}

.hero-style-3 .col12 {
  background-color: transparent;
}


.hero-style-3 .lead-form .submit-button:hover {
  opacity: .85;
}

.hero-style-3 .lead-form .submit-button.disabled:hover {
  opacity: 1;
}


.hero-style-3 .sessions-form-input {
  width: auto !important;
  margin-right: 10px;
  height: auto !important;
}
.hero-style-3 .workshops-form-input {
  width: auto !important;
  margin-right: 10px;
  height: auto !important;
}
.hero-style-3 .student-form-span {
  color: white !important;
  font-size: 16px !important;
}
.hero-style-3 
.student-form input {
  height: auto !important;
  width: auto;
}
.hero-style-3 input#more_information {
  width: 50px;
  height: 18px;
  margin-right: 3px;
}

@media (max-width: 767px) {
  .hero-style-3 .lead-form .field-6 {
    max-width: 100%;
  }
  
  .hero-style-3 .col12 {
      -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
      flex: 1 1 100%;
      max-width: 100%;
  }
  
  .hero-style-3 .lead-form .submit-button {
      width: 65%;
      height: auto;
      white-space: pre-wrap;
  }
}


/* HERO STYLE 4*/

.hero-style-4 {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.hero-style-4 .hero-title {
  margin: 20px 0px;
  font-size: 35px;
  font-family: var(--font-family-1);
  font-weight: 100;
  line-height: 1.2;
}
.hero-style-4 .hero-form-block {
  padding-top: 0px;
}
.hero-style-4 .hero-form {
  float: right;
  padding: 10px 0px;
  width: 100%;
  background: var(--bg-color-2);
}
.hero-style-4 h3 {
  line-height: 30px;
  padding-top: 10px;
  padding-bottom: 4px;
  color: var(--bg-color-3);
  font-weight: 400;
  font-family: sans-serif;
  font-size: 16px;
  text-align: left;
  border-bottom: 1px solid #e3e3e3;
  margin: 0px;
}
.hero-style-4 .lead-form {
  margin-top: 16px;
  justify-content: space-between;
}
.hero-style-4 .lead-form .field-6 {
  max-width: calc((100% - 1rem) * 0.5);
}
.hero-style-4  label {
  display: block;
  margin-top: 10px;
  margin-bottom: 2px;
  width: 100%;
  font-size: 14px;
  color: var(--font-color-5);
  line-height: 14px;
}
.hero-style-4 .lead-form p, .hero-style-4 label {
  font-family: var(--font-family-2);
  font-size: 15px;
}
.hero-style-4 input#name {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAfBJREFUWAntVk1OwkAUZkoDKza4Utm61iP0AqyIDXahN2BjwiHYGU+gizap4QDuegWN7lyCbMSlCQjU7yO0TOlAi6GwgJc0fT/fzPfmzet0crmD7HsFBAvQbrcrw+Gw5fu+AfOYvgylJ4TwCoVCs1ardYTruqfj8fgV5OUMSVVT93VdP9dAzpVvm5wJHZFbg2LQ2pEYOlZ/oiDvwNcsFoseY4PBwMCrhaeCJyKWZU37KOJcYdi27QdhcuuBIb073BvTNL8ln4NeeR6NRi/wxZKQcGurQs5oNhqLshzVTMBewW/LMU3TTNlO0ieTiStjYhUIyi6DAp0xbEdgTt+LE0aCKQw24U4llsCs4ZRJrYopB6RwqnpA1YQ5NGFZ1YQ41Z5S8IQQdP5laEBRJcD4Vj5DEsW2gE6s6g3d/YP/g+BDnT7GNi2qCjTwGd6riBzHaaCEd3Js01vwCPIbmWBRx1nwAN/1ov+/drgFWIlfKpVukyYihtgkXNp4mABK+1GtVr+SBhJDbBIubVw+Cd/TDgKO2DPiN3YUo6y/nDCNEIsqTKH1en2tcwA9FKEItyDi3aIh8Gl1sRrVnSDzNFDJT1bAy5xpOYGn5fP5JuL95ZjMIn1ya7j5dPGfv0A5eAnpZUY3n5jXcoec5J67D9q+VuAPM47D3XaSeL4AAAAASUVORK5CYII=");
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: 16px 18px;
  background-position: 98% 50%;
  cursor: auto;
}
.hero-style-4 input, .hero-style-4 select {
  width: 100%;
  padding: 5px;
  background-color: #ededed;
  font-family: Arial,Helvetica,sans-serif;
  font-size: 14px;
  line-height: 14px;
  border: 1px solid #ededed;
  margin-bottom: 0px;
  font-weight: 150;
  color: #666;
  letter-spacing: .5px;
  height: auto;
  border-radius: 0;
}
.hero-style-4 .phone-number-wrapper {
  position: relative;
}
.hero-style-4 .phone-number {
  padding-left: 4em;
  color: #666;
  font-weight: 400;
}
.hero-style-4 .phone-number-prefix, .hero-style-4 .phone-number {
  font-family: var(--font-family-2);
  font-size: 14px;
}
.hero-style-4 .phone-number-prefix {
  position: absolute;
  left: 1em;
  top: calc(50% - 20px);
  height: 40px;
  line-height: 40px;
}
.hero-style-4 .phone-number-prefix {
  color: #666;
  left: .5rem;
}
.hero-style-4 .consent-message {
  margin-top: 10px;
  font-size: 13px;
  font-family: var(--font-family-1);
  color: var(--font-color-5);
}
.hero-style-4 .consent {
  display: flex;
  width: 100%;
  align-items: center;
  margin: 10px 0px;
}
.hero-style-4 .consent label {
  display: flex;
  margin-top: 0px;
  margin-bottom: 0px;
  width: 100%;
  font-size: 14px;
  color: var(--font-color-5);
  align-items: center;
}
.hero-style-4 #marketing_consent {
  display: inline-block;
  max-width: 2rem;
}
.hero-style-4 input[type="checkbox"] {
  width: 16px;
  margin: 2px 10px 2px 0;
}
.hero-style-4 .form-feedback {
  display: none;
  margin: 20px 0;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 700;
  border: solid 2px var(--cta-color);
  border-radius: 5px;
}
.hero-style-4 .submit-button {
  margin: 15px auto;
  padding: 10px 12px;
  width: 100%;
  height: 100%;
  background: var(--cta-color);
  color: var(--bg-color-2);
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 400;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  line-height: 12px;
  -webkit-transition: all .23s ease-out;
  transition: all .23s ease-out;
  cursor: pointer;
  text-align: center;
  font-family: Arial,Helvetica,sans-serif;
}
@media (max-width: 767px) {
  .hero-style-4 .col12 {
      display: flex;
      justify-content: center;
  }
  .hero-style-4 .field-6 {
      max-width: 100%;
  }
}




/* HERO STYLE 5 */

.hero-style-5.row.row-start {
  justify-content: flex-start;
  max-width: 1060px;
  width: auto;
  margin: 0 auto;
}

.hero-style-5 .hero-info h1, 
.hero-style-5 .hero-info h2 span {
  text-align: left;
  word-break: normal;
}

.hero-style-5 .hero-block.col12 {
  display: inline-flex;
  color: #6f6e6e;
}

.hero-style-5  input#phone_number {
  padding-left: 50px;
}

.hero-style-5 .phone-number-wrapper {
  height: 33.5px;
}

.hero-style-5 .container {
  margin: 0 auto;
  width: 1100px;
  max-width: 100%;
  padding: 0 20px;
  display: flex;
}

.hero-style-5 .hero-content {
  color: #444444;
  padding: 10px;
  background-color: initial;
  width:100%;
  max-width: 1200px;
}

.hero-style-5 img {
  max-width: 100%;
  vertical-align: bottom;
}

.hero-style-5 .hero-info {
  margin-bottom: 10px;
  margin-top: 20px;
}

.hero-style-5 h2 {
  margin-bottom: 0px;
  font-size: 16px;
  color: #444444;
  font-weight: 400;
}

.hero-style-5 .hero-info span {
  font-weight: bold;
}

.hero-style-5 .section-text {
  color: #444444;
  font-size: 16px;
  line-height: 24px;
}

.hero-style-5 .descripcion2 {
  color: #999999;
  line-height: 27px;
  font-size: 18px
}

.hero-style-5 div span {
  font-size: 16px;
  font-weight: normal;
  text-align: center;
  word-break:break-all;
}

.hero-style-5 .hero-form-block {
  justify-content: flex-end;
}

.hero-style-5 .hero-form {
 float: right;
 width: 100%;
 max-width: 400px;
 padding: 10px;
 background: #fff;
 border: 1px #000 solid;
}

.hero-style-5 .hero-form h3 {
 margin: 0;
 line-height: 1.6;
 text-align: left;
 border-bottom: 1px solid #e3e3e3;
 padding: 10px 0px;
 font-weight: 400;
 color: #000000 !important;
 font-size: 22px !important;
 font-family: Arial,Helvetica,sans-serif;
}

.hero-style-5 .lead-form {
  margin-top: 20px;
  justify-content: space-between;
}

.hero-style-5 .lead-form .field-6 {
  max-width: calc((100% - 1rem) * 0.5);
}

.hero-style-5 .lead-form>div {
  width: 100%;
}


.hero-style-5 .lead-form label {
  display: block;
  margin-top: 10px;
  width: 100%;
}

.hero-style-5 .hero-form input {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAfBJREFUWAntVk1OwkAUZkoDKza4Utm61iP0AqyIDXahN2BjwiHYGU+gizap4QDuegWN7lyCbMSlCQjU7yO0TOlAi6GwgJc0fT/fzPfmzet0crmD7HsFBAvQbrcrw+Gw5fu+AfOYvgylJ4TwCoVCs1ardYTruqfj8fgV5OUMSVVT93VdP9dAzpVvm5wJHZFbg2LQ2pEYOlZ/oiDvwNcsFoseY4PBwMCrhaeCJyKWZU37KOJcYdi27QdhcuuBIb073BvTNL8ln4NeeR6NRi/wxZKQcGurQs5oNhqLshzVTMBewW/LMU3TTNlO0ieTiStjYhUIyi6DAp0xbEdgTt+LE0aCKQw24U4llsCs4ZRJrYopB6RwqnpA1YQ5NGFZ1YQ41Z5S8IQQdP5laEBRJcD4Vj5DEsW2gE6s6g3d/YP/g+BDnT7GNi2qCjTwGd6riBzHaaCEd3Js01vwCPIbmWBRx1nwAN/1ov+/drgFWIlfKpVukyYihtgkXNp4mABK+1GtVr+SBhJDbBIubVw+Cd/TDgKO2DPiN3YUo6y/nDCNEIsqTKH1en2tcwA9FKEItyDi3aIh8Gl1sRrVnSDzNFDJT1bAy5xpOYGn5fP5JuL95ZjMIn1ya7j5dPGfv0A5eAnpZUY3n5jXcoec5J67D9q+VuAPM47D3XaSeL4AAAAASUVORK5CYII=");
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: 16px 18px;
  background-position: 98% 50%;
}

.hero-style-5 .lead-form input, .lead-form select {
  width: 100%;
  padding: 8px;
  background-color: #ededed;
  font-size: 12px;
  color: #666;
  border: 1px solid #d9d9d9;
}

.hero-style-5 .lead-form p, 
.hero-style-5 .lead-form label {
  display: block;
  margin-top: 10px;
  width: 100%;
  background-color: white;
  font-size: 12px;
}

.hero-style-5 .lead-form .consent-message {
  margin-top: 10px;
  font-size: 13px;
}

.hero-style-5 .lead-form .submit-button {
  margin-top: 32px;
  padding: 8px 30px;
  width: 100%;
  background: var(--cta-color);
  color: #fff;
  text-transform: uppercase;
  border: none;
  border-radius: 0px;
  -webkit-transition: all .23s ease-out;
  transition: all .23s ease-out;
  cursor: pointer;
  font-size: 14px;
}

.hero-style-5 .lead-form .phone-number-prefix {
  position: relative;
  left: 8px;
  top: -33px;
  height: 100%;
  font-family: sans-serif;
  font-size: 14px;
  line-height: 34px;
}

.hero-style-5 .lead-form #marketing_consent {
  display: inline-block;
  max-width: 2rem;
}


@media (min-width: 320px) and (max-width: 767px) {
    .hero-style-5 .container {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }
    .hero-style-5 .hero-block.col12 {
        display: block;
    }
  .hero-style-5 .hero-content {
    max-width: 100%;
  }
}



/*** HERO STYLE 6 ***/

.hero-style-6 {
  display: flex;
}

.hero-style-6 .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  text-align: center;
}

.hero-style-6 .container {
  margin: 0 auto;
  width: auto;
  display: inline-flex;
  padding: 0;
}

.hero-style-6 .section-content {
  color: #6f6e6e;
  background-color: initial;
}

.hero-style-6 .textUnderForm {
  color: #fff;
}

.hero-style-6 .section-title {
  font-weight: bold;
  font-size: 40px;
  padding: 25px 0 10px 0;
  width: 90%;
  margin: 0 auto 10px auto;
}

.hero-style-6 p {
  margin-bottom: 2rem;
  font-size: 18px;
}

.hero-style-6 .sesiones {
  margin-top: 70px;
}

.hero-style-6 .sesion {
  margin-left: 20px;
  text-align: left;
}

.hero-style-6 .sesion:not(:last-child) {
  margin-bottom: 80px;
}

.hero-style-6 .date {
  color: #444242;
  font-size: 18px;
  line-height: 27px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.hero-style-6 .sesiones .title {
  display: flex;
  flex-direction: column;
}

.hero-style-6 .description {
  margin-bottom: 24px;
  font-size: 24px;
  color: #444242;
  font-weight: 700;
}

.hero-style-6 .description span {
  font-size: 18px;
}

.hero-style-6 p.description span:not(:first-child) {
  margin-top: 6px;
}

.hero-style-6 svg.video {
  margin-right: 10px;
}

.hero-style-6 svg.icon {
  margin-right: 4px;
}

.hero-style-6 .hero-form-block {
  justify-content: flex-end;
}

.hero-style-6 .hero-form {
  float: right;
  width: 100%;
  max-width: 100%;
  padding: 10px 30px;
  background: #fff;
}

.hero-style-6 .hero-form h3 {
  margin: 0;
  font-size: 40px;
  line-height: 44px;
  padding: 25px 0px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.hero-style-6 .lead-form {
  margin-top: 20px;
  justify-content: space-between;
}

.hero-style-6 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.hero-style-6.section-content {
text-align: center;
}

.hero-style-6 .lead-form label {
  display: block;
  margin-top: 10px;
  width: 100%;
  background: rgb(50, 49, 49);
  color: #fff;
  font-size: 16px;
  line-height: 24px;
}
.hero-style-6 .lead-form input, .hero-style-6 .lead-form select {
  height: 50px;
}
.hero-style-6 .lead-form input, .hero-style-6 .lead-form select {
  width: 100%;
  padding: 8px;
  background-color: #fff;
  color: #000;
  border: 1px solid #fff;
  font-size: 16px;
  font-family: 'Work Sans',sans-serif;
}
.hero-style-6 .lead-form .phone-number-wrapper {
  position: relative;
}
.hero-style-6 .lead-form .phone-number {
  padding-left: 48px;
  color: #000;
  font-size: 16px;
}
.hero-style-6 .lead-form .phone-number-prefix {
  position: absolute;
  left: 8px;
  color: #000;
  top: 0;
  height: 100%;
  font-family: sans-serif;
  font-size: 14px;
  line-height: 34px;
  display: flex;
  align-items: center;
}
.hero-style-6 .lead-form .consent-message {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #fff;
}
.hero-style-6 .lead-form .consent {
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  width: 100%;
  height: 22px;
  align-content: center;
}
.hero-style-6 .lead-form p, .hero-style-6 .lead-form label {
  display: block;
  margin-top: 10px;
  width: 100%;
  background-color: white;
  font-size: 20px;
  color: #000;
}
.hero-style-6 .consent label {
  display: flex;
  align-content: center;
  line-height: 22px;
  color: #fff;
}
.hero-style-6 .lead-form #marketing_consent {
  display: inline-block;
  max-width: 18px;
  height: 18px;
  max-height: 18px;
  min-height: 18px;
  margin-right: 4px;
}
.hero-style-6 .lead-form .form-feedback {
  margin: 20px 0;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 700;
  border: solid 2px var(--cta-color);
  border-radius: 5px;
  color: #fff;
}
.hero-style-6 .hero-form .lead-form .submit-button {
  background-color: var(--bg-color-3);
  background-image: none;
  border-color: #00dfd5 !important;
  border-radius: 7px;
  border-style: none;
  border-width: 0px;
  color: #000 !important;
  display: flex;
  font-size: 18px;
  font-weight: 700;
  justify-content: center;
  padding: 10px 25px;
  width: fit-content;
  margin-left: 20px;
  margin-top: 40px;
}

@media (max-width: 767px) {
  .hero-style-6 .section-title {
      padding: 0;
      width: 100%;
  }
  .hero-style-6 .container {
      display: block;
  }
}

/* /HERO STYLE 6 */

/*** SECTIONS ***/

/* SECTION STYLE 1 */

.section-style-1 .section-title {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 4rem;
  margin: 40px 0 24px 0;
}
.section-style-1 .features {
  display: flex;
  flex-wrap: wrap;
  margin: 64px 30px 32px 30px;
  max-width: 100%;
  justify-content: space-between;
}

.section-style-1 .feature {
  display: flex;
  flex: 50%;
  justify-content: center;
}

.section-style-1 .feature-icon svg {
  width: 48px;
  height: 48px;
}
.section-style-1 .feature-content {
  padding-left: 32px;
}
.section-style-1 .feature-title {
  color: var(--cta-color);
  font-size: 1rem;
  font-weight: 600;
  line-height: 26px;
}
.section-style-1 .feature-description {
  padding-right: 32px;
  line-height: 22px;
}

@media (max-width: 767px) {
  .section-style-1 {
      padding: 0 20px;
  }
  .section-style-1 .container {
      padding: 0px;
      max-width: 100%;
  }
  .section-style-1 .section-title {
      text-align: center;
  }
  .section-style-1 .features {
      display: contents;
  }
}
/* SECTION STYLE 2 */

.section-style-2 {
  padding: 20px 0;
}

.section-style-2 .wrapper {
  width: 100%;
}
.section-style-2 .section-title {
  margin: 10px 0 24px 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  font-family: RealBetisHeadlineWEB-OCHO;
}

.section-subtitle.text-center {
  margin: 10px 0 24px 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  font-family: RealBetisWEB-Lt;
}

.section-style-2 .video {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .section-style-2 .wrapper {
    display: flex;
    flex-direction: column;
    padding: 32px 20px; 
    width: 100%;
  }
  .section-style-2 .section-title {
      text-align: center;
  }
  .section-style-2 iframe {
      width: auto;
      max-width: 100%;
      height: auto;
  }
}

/* SECTION STYLE 3 */

.section-style-3{
  padding: 40px 0;
}
.section-style-3 .section-title {
  margin: 40px 0 24px 0;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.375;
}
.section-style-3 .list-blocks-3 .list-block-wrapper {
  width: 31.625%;
}
.section-style-3 .list-block {
  padding: 32px 24px;
  background-color: #f5f5f5;
}
.section-style-3 .list-block h3 {
  margin: 0 0 24px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.54;
}
.section-style-3 .list-block ul {
  margin: 16px 0;
  padding-left: 40px;
  line-height: 22px;
}
.section-style-3 .executive-programmes {
  padding-top: 40px;
}
.section-style-3 h3 {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.54;
  margin: 0 0 24px;
}

.section-style-3 .list-blocks.list-blocks-3,
.section-style-3 .list-blocks.list-blocks-4 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.section-style-3 .list-blocks.list-blocks-4 .list-block-wrapper {
  width: 22%;
}

.section-style-3 .cta {
  padding: 80px 0 40px 0;
  font-size: 24px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .section-style-3 .section-title {
      text-align: center;
  }
  .section-style-3 .list-blocks .list-block-wrapper {
      margin-bottom: 20px;
      width: 100%;
  }
  .section-style-3 .executive-programmes {
      padding-top: 0;
  }
}

/* /SECTION STYLE 3 */

/* SECTION STYLE 4 */

.section-style-4{
  margin-bottom: 0px;
  background: var(--bg-color-1);
}

.section-style-4 .col5 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-style-4 .section-title {
    margin: 40px 0 24px 0;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.375;
    font-family: 'RealBetisHeadlineWEB-OCHO';
    color: #228e4c;
}
.section-style-4 .video-teaser {
  padding: 20px 0 20px 20px;
  width: 100%;
}


.section-style-4 .text-boxes {
    justify-content: space-evenly;
    padding-left: 15px;
}

.section-style-4 .box-1,
.section-style-4 .box-2,
.section-style-4 .box-3 {
    background: #0d833b;
    padding: 20px;
    width: 30%;
}

.section-style-4 .box-1 .titulo,
.section-style-4 .box-2 .titulo, 
.section-style-4 .box-3 .titulo {
    font-family: RealBetisHeadlineWEB-CUATRO;
    font-size: 32px;
    margin-bottom: 6px;
}

.section-style-4 .box-1 .subtitulo,
.section-style-4 .box-2 .subtitulo,
.section-style-4 .box-3 .subtitulo {
    font-family: 'RealBetisWEB-Lt';
    color: #fff;
    margin: 0;
}

.section-style-4 .box-1 .descripcion,
.section-style-4 .box-2 .descripcion,
.section-style-4 .box-3 .descripcion {
  font-family: RealBetisHeadlineWEB-CINCO;
  color: #fff;
  font-size: 40px;
}

.section-style-4 .col6 > p {
    font-family: 'RealBetisWEB-Lt';
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 0px;
}

.section-style-4 img {
  max-width: 100% !important;
}

.section-style-4 .hidden {
  display:none !important;
}

.section-style-4 .video-teaser-play {
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 5;
  background: var(--cta-color);
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' width='1024' height='1024' viewBox='0 0 1024 1024'%3E%3Cpath fill='%23FFFFFF' d='M203.402 23.786c7.011-3.688 15.489-3.187 22.017 1.301l682.668 469.334c5.786 3.981 9.246 10.556 9.246 17.579s-3.46 13.598-9.246 17.579l-682.668 469.333c-6.528 4.489-15.006 4.992-22.017 1.301-7.012-3.686-11.402-10.957-11.402-18.88v-938.667c0-7.922 4.39-15.192 11.402-18.88zM234.667 83.222v857.556l623.676-428.779-623.676-428.778z'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 36px 36px;
}

.section-style-4 img {
  max-width: 100%;
  vertical-align: bottom;
}

@media (max-width: 767px) {
  .section-style-4 .text-boxes {
    justify-content: space-evenly;
    padding-left: 0px;
  }
}


@media (max-width: 1024px) {
  .section-style-4 .container {
      background: var(--bg-color-1);
      display: flex;
      flex-direction: column;
      padding: 0 20px;
  }
  .section-style-4 .section-title {
      text-align: center;
  }
  .section-style-4 .row .col6 {
      max-width: 100%;
      text-align: center;
  }
  .section-style-4 .video-teaser {
      padding: 20px 0 20px 20px;
      width: 100%;
  }
  .section-style-4 .col5, .section-style-4 .col7 {
      position: relative;
      padding: 20px 0;
      -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
      flex: 1 1 100%;
      max-width: 100%;
  }

  .section-style-4 .text-boxes {
      flex-direction: column;
  }

  .section-style-4 .box-1, 
  .section-style-4 .box-2, 
  .section-style-4 .box-3 {
      margin-bottom: 10px;
      width: 100%;
  }
}



/* SECTION STYLE 5 */

.section-style-5{
  margin-bottom: 40px;
}
.section-style-5 .section-title {
  margin: 40px 0 24px 0;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.375;
}
.section-style-5 .logo-gallery-row {
  margin-bottom: 20px;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin: 0 auto 40px auto;
}
.section-style-5 .logo-item {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  text-align: center;
}

.section-style-5 img {
  max-width: 100%;
  vertical-align: bottom;
  width: 145px;
}

@media (max-width: 767px) {
  .section-style-5 .section-title {
      text-align: center;
  }
  .section-style-5 .logo-gallery-row {
      flex-direction: column;
      margin-bottom: 0;
      padding: 0;
  }
}


/* /SECTION STYLE 5 */

/* SECTION STYLE 6 */

.section-style-6 .col7 h2 {
  font-family: 'RealBetisHeadlineWEB-TRES';
  font-size: 75px;
  font-weight: 100;
}

/* /SECTION STYLE 6 */

/* SECTION STYLE 7 */

.section-style-7{
  padding: 3rem 0rem;
  background-size: 100% 100%;
}
.section-style-7 .section-title {
  margin:0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.375;
  color: #fff;
  padding: 1rem 0;
}
.section-style-7 h1, .section-style-7 h2, .section-style-7 h3, .section-style-7 h4, .section-style-7 h5, .section-style-7 h6 {
  font-family: var(--font-family-1);
  margin-bottom: 2rem;
}
.section-style-7 .col5 {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 41.66%;
  flex: 1 1 41.66%;
  display: inline-block;
  vertical-align: top;
  max-width: 50.66%;
}
.section-style-7 img {
  max-width: 100%;
  vertical-align: bottom;
  width: 100%;
  height: 100%;
}
.section-style-7 .BlockQuote {
  margin-left: 0;
  background: #dddddd;
  height: 100%;
}
.section-style-7 span {
  position: relative;
  margin: 0 0 60px;
  font-size: 3.6rem;
  line-height: 3rem;
  color: #fff;
  font-weight: 400;
  font-family: var(--font-family-headline-3);
}
.section-style-7 .squareContent {
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 18px;
  line-height: 2.6rem;
  color: var(--base-color);
  text-transform: none;
  position: relative;
}
.section-style-7 .squareContent:before {
  content: "";
  height: 19px;
  width: 19px;
  background: #fde2e0;
  position: absolute;
  left: -28px;
  top: 3px;
}
.section-style-7 .BlockQuote p {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.6rem;
  color: #1e1e1e;
}
.section-style-7 .bloques {
  width: 30%;
  margin-right: 1%;
  display: inline-block;
  text-align: center;
  margin: 0% 1% auto;
}
.section-style-7 .blockquote {
  padding: 15px;
  text-align: left;
}
.section-style-7 .video-teaser {
  width: 100%;
  height: 100%;
}
.section-style-7 .consent {
 display: none !important;
}
.section-style-7 .blockquote span {
  color: #228e4c;
  font-size: 2.3rem;
  font-family: var(--font-family-headline-4);
}
.section-style-7 iframe {
  width: 100%;
  height: 100%;
}
.section-style-7 video.imagen {
  width: 100%;
  height: 100%;
}
.section-style-7 .formulario {
  display: none;
  text-align: center;
  margin: 0 auto;
  padding: 50px 0;
}
.section-style-7 .formulario .submit-button {
  white-space: pre-wrap;
  font-family: 'RealBetisHeadlineWEB-CINCO';
  font-size: 40px;
  letter-spacing: 2px;
  padding: 0;
  text-align: center;
  margin: 0 auto;
}
.section-style-7 .col5, .section-style-7 .col7{
  padding:0px;
  display: inline-block;
  width: 100%;
  max-width: 100%;
}
.section-style-7 button {
  background: #fff;
  color: var(--cta-color);
}
.section-style-7 .formulario input#email {
  width: 20rem;
  padding: 8px;
  background-color: #ededed;
  font-size: 15px;
  color: #666;
  height: 40px;
  border: 1px solid #d9d9d9;
}
.section-style-7 input#submitFormButton {
  font-size: 30px;
  padding: 5px 40px;
  margin-top: 30px;
}
.section-style-7 em.invalid {
  text-align: center;
  width: 100%;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  font-style: normal;
  margin-top: 20px;
}
.section-style-7 div#formMessage {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
}
.section-style-7 .lead-form select {
  display: none;
}
.section-style-7 .col5 {
  margin-bottom: 20px;
  height: 400px;
}
.section-style-7 .col7 {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 40.33%;
  height: auto;
}
@media (max-width: 767px) {
  .section-style-7 .blockquote span {
    font-size: 2rem;
  }
  .section-style-7 {
    background-size: auto;
  }
  .section-style-7 .col5, .section-style-7 .col7 {
      position: relative;
      -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
      flex: 1 1 100%;
      max-width: 100%;
      height: auto;
  }
  .section-style-7 .section-title {
      text-align: center;
  }
  .section-style-7 .BlockQuote {
      padding: 0px;
  }
  .section-style-7 p {
      margin-left: 3%;
  }
  .section-style-7 .bloques {
    min-height: auto;
    margin: 0 auto;
    display: block;
    margin-bottom: 30px;
    width: 75%;
    text-align: center;
  }
  .section-style-7 .formulario input#email {
    width: 15rem;
  }
  .section-style-7 .col5 {
    height: 300px;
  }
}




/*** Section 8 ***/

.section-style-8 h2 {
  margin: 0 0 26px 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  color: var(--base-color);
}

.section-style-8 ul {
  line-height: 24px;
  margin-left: 5%;
}

.section-style-8 iframe {
  width: 480px;
  height: 350px;
}

.section-style-8 .container .col1 p {
  text-align: center;
}

.section-style-8 .video-teaser {
  margin-left: 4%;
}

.section-style-8 .col1 {
  display: inline-block;
  min-width: 53%;
}

.section-style-8 .col2 {
  margin-left: 2%;
  display: inline-block;
  min-width: 44%;
}

.section-style-8 .hidden{
display:none !important;
}


@media (max-width: 767px) {
.section-style-8 .video-teaser {
    margin-left: 0%;
}
}

/*** Section Style 9 ***/

.section-style-9 {
  background-color: var(--bg-color-8);
  padding: 4%;
}

.section-style-9 .container .order {
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  padding: 0;
  display: flex;
  justify-content: center;
}

.section-style-9 .container {
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.section-style-9 .col10 {
  display: inline-block;
  min-width: 24%;
  max-width: 24%;
  padding-left: 1%;
  vertical-align: text-top;
  color: var(--bg-color-7);
}

.section-style-9 .col10 svg {
  fill: var(--bg-color-7);
}

.section-style-9 .col10 .section-title {
  margin: 0 0 26px 0;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

.section-style-9 .col10 .section-title+p {
  margin-bottom: 2rem;
}


@media (max-width: 767px) {
  .section-style-9 .col10 {
      margin-left: 0%;
  }
  .section-style-9 .col1 {
      max-width: 94% !important;
      margin-left: 4%;
  }
  .section-style-9 iframe {
      max-width: 97%;
  }
  .section-style-9 .container .order {
    display: block;
  }
}



/*** Section Style 10 ***/

.section-style-10 .container {
  margin: 0 auto;
  max-width: 100%;
  justify-content: center;
  line-height: 24px;
  line-height: 1em;
  color: #333;
}

.section-style-10 .hero-content a {
  color: var(--font-color-4) !important;
}

.section-style-10 h2 {
  padding: 10px 0px;
  margin-top: 10px;
  font-weight: bold;
  font-size: 2.5rem;
  font-family: RealBetisHeadlineWEB-CINCO;
  line-height: 1em;
}

.section-style-10 h2+p {
  margin-bottom: 1rem;
}

.section-style-10 p:nth-child(2) {
  margin-bottom: 4rem;
}

.section-style-10 h3 {
 color: var(--font-color-4);
 margin-bottom: 32px;
}

/*** Section Style 11 ***/

.section-style-11 {
  background: var(--bg-color-4);
  padding-bottom: 2rem;
}

.section-style-11 .container {
  margin: 0 auto;
  max-width: 100%;
  justify-content: center;
  width: 1000px;
}

.section-style-11 h2 {
  padding: 10px 0px;
  margin-top: 10px;
  font-weight: bold;
  font-size: 2.5rem;
  font-family: RealBetisHeadlineWEB-CINCO;
}

.section-style-11 .agenda-start.colored-title {
  font-weight: bold;
  font-family: 'PT Sans',sans-serif;
  letter-spacing: 1px;
  display: inline-block;
  vertical-align: top;
  color: var(--font-color-4);
}

.section-style-11 .agenda-item {
  display: inline-block;
  vertical-align: top;
  position: relative;
  margin-left: 25px;
  padding: 0 0 40px 25px;
  border-left: solid 2px #ddd;
  width: 90%;
}

.section-style-11 .agenda-item:before {
  content: "";
  position: absolute;
  top: -3px;
  left: -16px;
  width: 30px;
  height: 30px;
  background-color: var(--font-color-3);
  border: 2px solid #003615;
  border-radius: 50%;
}

.section-style-11 h4 {
  font-size: 18px;
}

.section-style-11 .agenda-item span {
  color: var(--font-color-7);
  font-size: 14px;
  font-weight: 400;
}

/*** Section 21 ***/

.section-style-21 .container {
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}

.section-style-21 h2 {
  border: 0;
  color: var(--font-color-6);
  padding: 10px 0px;
  margin: 10px 0px 32px 0px;
}

.section-style-21 ul.lista {
  padding-left: 12px;
  font-size: 16px;
}


.section-style-21 ul.lista > li.lista:nth-child(1) {
  margin-bottom: 30px;
}

.section-style-21 ul.lista > li.lista:nth-child(1)+p {
  font-weight: 400;
}

.section-style-21 ul {
  padding-left: 2rem;
  margin-bottom: 2rem;
  line-height: 1;
  font-weight: normal;
}

.section-style-21 li.sublist {
  color: var(--font-color-6);
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
}

.section-style-21 ul.lista, 
.section-style-21 li.lista {
  color: var(--font-color-6);
  font-weight: 700;
  line-height: 27px;
  font-size: 18px;
  margin-bottom: 15px;
}

.section-style-21 li.lista:not(:nth-child(1))+p {
  margin-bottom: 100px;
}

/*** Section Style 12 ***/

.section-style-12 {
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
}

.section-style-12 p.item {
  background-color: #003615 !important;
}

.section-style-12 h3.section-title {
  text-align: left;
}


/*** Section Style 13 ***/

.section-style-13 {
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  border-bottom: 1px solid var(--font-color-8);
  padding-bottom: 40px !important;
}

.section-style-13 h2 {
  color: var(--font-color-4);
  font-style: italic;
  font-weight: 500;
}

.section-style-13 .container1 {
  color: var(--font-color-8);
  font-size: 16px;
  font-weight: 100;
  line-height: 22px;
}

.section-style-13 .container2 {
  margin-top: 50px;
  margin-top: 30px;
  color: var(--bg-color-9);
  font-size: 16px;
  font-weight: 100;
  line-height: 22px;
}

.section-style-13 span.order {
  color: var(--font-color-4);
  font-weight: bold;
}

/*** Section Style 14 ***/

.section-style-14 {
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--font-color-8);
}

.section-style-14 img {
  max-width: 300px;
}

.section-style-14 .center {
  display: block;
  text-align: center;
}

.section-style-14 .colored-title {
  color: var(--font-color-3)fff;
  background-color: var(--font-color-4);
  font-size: 24px;
}

.section-style-14 .container1 {
  color: var(--font-color-8);
  font-size: 16px;
  line-height: 22px;
}

.section-style-14 .color-grease {
  color: var(--bg-color-9);
}

.section-style-14 .list {
  margin: 30px 0 30px 30px;
}

/*** Section Style 15 ***/

.section-style-15 .container {
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  padding: 0 20px;
  line-height: 28px;
  font-size: 18px;
}

.section-style-15 .col7 .colored-title {
  font-size: 17px;
  font-weight: 400;
  line-height: 28px;
  color: var(--font-color-4);
}

.section-style-15 .col7 h2 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
}

.section-style-15 .table {
  width: 73%;
  margin: auto;
  overflow-x: auto;
  max-width: 100%;
  margin-bottom: 2rem;
}

.section-style-15 table {
  border-collapse: collapse;
  table-layout: fixed;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  height: 20px;
  border: 1px solid #99acc2;
}

.section-style-15 th {
  background-color: #B4C9FF;
  width: 50%;
  height: 10px;
  padding: 4px;
  font-size: 17px;
  color: var(--font-color-3)fff;
  font-weight: normal;
}

.section-style-15 td {
  vertical-align: middle;
  width: 50%;
  height: 10px;
  padding: 12px;
  border: 1px solid #99acc2;
}

.section-style-15 ul {
  list-style: circle;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0px;
  padding-left: 2rem;
  margin-bottom: 2rem;
  line-height: 28px;
  font-size: 18px;
  color: var(--base-color);
  padding-left: 2rem;
  margin-bottom: 2rem;
}

@media (max-width: 767px) {
  .section-style-15 td {
      padding: 0px;
  }
}

/*** Section Style 16 ***/

.section-style-16 .general-square {
  background-color: rgba(255,255,255,0.5);
}

.section-style-16 .square-inline {
  width: 14.893617%;
  display: inline-block;
  vertical-align: top;
  padding: 30px 10px;
  text-align: center;
  margin-left: 1%;
}

.section-style-16 .square-inline p {
  margin-bottom: 1.5rem;
}

/*** Section Style 17 ***/

.section-style-17 {
  margin: 30px 0px;
}

.section-style-17 h2 {
  color: var(--font-color-4);
  font-weight: 700;
  font-size: 27px;
  line-height: 43px;
}

.section-style-17 .content-image {
  width: 31.914893614%;
  display: inline-block;
}

@media (max-width: 767px) {
  .section-style-17 .content-image {
     width: 100%;
  }
}

/*** Section Style 18 ***/
.section-style-18 {
  padding: 60px 40px;
}

.section-style-18 .container {
  margin: 0 auto;
  width: 1100px;
  max-width: 100%;
}

.section-style-18 .square {
  width: 100%;
  display: inline-block;
  color: #FFF;
  vertical-align: top;
  padding: 20px;
}

.section-style-18 h2.title {
  font-size: 20px;
  text-align: left;
}

.section-style-18 ul {
  padding-left: 2rem;
  margin-bottom: 2rem;
}

.section-style-18 li {
  text-align: left;
  line-height: 1.6;
}

.section-style-18 .text-center {
  text-align: center;
}

.section-style-18 .video {
  display: inline-block;
  padding-left: 2%;
}

.section-style-18 iframe {
  border: 2px solid #fff;
  max-width: 100%;
  width: 556px;
}

@media (max-width: 767px) {
.section-style-18 {
    padding: 20px 20px;
}
}

/*** Section Style 31 ***/

.section-style-19 {
  line-height: 1.6;
  padding: 40px 0;
  background: #eaeaea;
  background-size: cover;
}

.section-style-19 .container {
  margin: 0 auto;
  width: 1100px;
  max-width: 100%;
}

.section-style-19 .title {
  text-align: center;
  display: block;
  width: 100%;
}

.section-style-19 .title p {
  font-size: 1.5em;
  margin-bottom: 50px;
  border: 0;
  text-align: center;
}

.section-style-19 .title p span {
  font-size: 1em;
  color: #fff;
  background: var(--cta-color);
}

.section-style-19 .col6 > h4 > span > span {
  background: #fff;
  color: var(--cta-color);
}

.section-style-19 ul {
  padding-left: 2rem;
  margin-bottom: 2rem;
  font-size: 16px;
  line-height: 25px;
  color: var(--base-color);
}

.section-style-19 .section1-image {
  width: 180px;
  height: 66px;
  margin: 1rem auto;
}

.section-style-19 img {
  max-width: 100%;
  vertical-align: bottom;
}

.section-style-19 li{
  margin-bottom: 0rem;
}

/*** Section Style 20 ***/

.section-style-20 {
  padding: 60px 40px;
}

.section-style-20 .container {
  margin: 0 auto;
  width: 1100px;
  max-width: 100%;
  display: flex;
}

.section-style-20 .col6 {
  display: inline-block;
  max-width: 100%;
  vertical-align: top;
}

.section-style-20 .col6 > div > h2 {
  font-size: 28px;
  margin-bottom: 4px;
  background: #fff;
  color: var(--cta-color);
}

.section-style-20 p {
  margin-bottom: 2rem;
  margin-top: 70px;
}

.section-style-20 .video {
  display: inline-block;
  width: 100%;
  max-width: 524px;
}

.section-style-20 .image {
  width: 65%;
  padding: 30px;
}

.section-style-20 img {
  width: 266px;
  max-width: 100%;
  vertical-align: bottom;
}

@media (max-width: 767px) {
  .section-style-20 .image {
      width: 100%;
      padding: 30px 0;
  }
  .section-style-20 .container {
      margin: 0 auto;
      width: 1100px;
      max-width: 100%;
      display: flex;
      flex-direction: column;
  }
}


/*** Section Style 21 ***/

.section-style-21 .container {
  padding: 0px;
  margin: 0 auto;
  width: 100%;
  max-width: 1130px;
  padding: 0 15px;
}

.section-style-21 .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.section-style-21 .col4 {
  padding-right: 15px;
}

.section-style-21 img {
  max-width: 100%;
  vertical-align: bottom;
  width: 360px;
}

.section-style-21 h1 {
  color: #000;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 4px;
}

.section-style-21 h4 {
  color: #000;
  font-size: 20px;
  line-height: 25px;
  margin-bottom: 4px;
  font-style: italic;
}

.section-style-21 .container .subtitle {
  text-decoration: underline;
  color: #000;
  font-size: 18px;
  font-weight: 600;
  display: block;
}

.section-style-21 p {
  margin: 20px 0px;
}

.section-style-21 a {
  color: #fff;
  background-color: #000;
  width: fit-content;
  height: 27px;
  align-items: center;
  text-shadow: 0px -1px rgb(66 16 14);
  font-size: 10px;
  text-transform: uppercase;
  font-weight: bolder;
  font-family: 'Poppins', sans-serif;
}

/*** Section Style 22 ***/

.section-style-22 {
  margin-bottom: 40px;
  padding: 60px 0;
}
.section-style-22 h3 {
  margin-bottom: 15px;
  font-size: 20px;
}
.section-style-22 .text-center {
  text-align: center;
}
.section-style-22 .container {
  margin: 0 auto;
  width: auto;
  max-width: 1100px;
}

.section-style-22 h3.section-title span {
  color: var(--cta-color);
}

.section-style-22 .section-title {
  margin-bottom: 40px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 26px 0;
  color: #000;
}

.section-style-22 .btn {
  margin-bottom: 32px;
  display: inline-block;
  padding: 15px 30px;
  width: auto;
  background: var(--cta-color);
  color: #fff !important;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.6;
  text-decoration: none;
  border: none;
  -webkit-transition: all .23s ease-out;
  transition: all .23s ease-out;
  cursor: pointer;
}
@media (max-width: 767px) {
  .section-style-22 .section-title {
      text-align: center;
  }
}
.section-style-22 .text-center {
  text-align: center;
}
.section-style-22 .container {
  margin: 0 auto;
  width: auto;
  max-width: 1100px;
}
.section-style-22 .section-title {
  margin-bottom: 40px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 26px 0;
}

@media (max-width: 767px) {
  .section-style-22 .section-title {
      text-align: center;
  }
}


/*** Section style 23 ***/

.section-style-23 .container {
  margin: 0 auto;
  width: auto;
  max-width: 1100px;
}

.section-style-23 .section-content {
  color: #6f6e6e;
  padding: 10px;
  background-color: initial;
}

.section-style-23 p {
  margin-bottom: 1rem;
  font-size: 16px;
  font-family: Arial,Helvetica,sans-serif;
  color: #000000;
  font-weight: 100;
}

.section-style-23 a:link {
  text-decoration: none;
  color: #1255FF !important;
  font-style: italic;
}

.section-style-23 .colored-title {
   color: var(--cta-color);
}

@media (max-width: 767px) {
  .section-style-23 .col6 {
      margin-top: 0% !important;
  }
}

@media (max-width: 767px) {
  .section-style-4 {
      background: var(--bg-color-1);
  }
  .section-style-4 .col7 {
      margin-left: 0;
  }
}

/*** Section style 24 ***/

.section-style-24 {
 background: #fff6f2;
}

.section-style-24 .container {
  margin: 0 auto;
  width: 1100px;
  max-width: 100%;
}

.section-style-24 .row .col6 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-style-24 .section-title {
  font-size: 1.5em;
  margin: 0;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

.section-style-24 .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.section-style-24 ul {
  padding-left: 2rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}


@media (min-width: 768px) and (max-width: 1200px) {
  .section-style-24 .logo-item {
      padding: 0px;
  } 
  .section-style-24 .container {
     padding: 10px 0px !important;
  }
}

/*** Section style 25 ***/

.section-style-25 {
  padding: 0;
  padding-top: 20px;
  background: #f8f8f8;
}

.section-style-25 .col7 {
  display: flex;
  flex-direction: column;
}

.section-style-25 .row-expanded {
  justify-content: space-between;
}

.section-style-25 h2, .section-style-25 .section-title, .section-style-25 .col13Title > span {
  color: var(--cta-color) !important;
}

.section-style-25 .text-center {
  text-align: center;
}

.section-style-25 .col13 {
  display: inline-flex;
  text-align: center;
  justify-content: center;
}

.section-style-25 .contentCol13 {
  width: 35%;
  margin-top: 10px;
  padding: 0px 20px;
}

.section-style-25 .section-title {
  font-size: 24px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .section-style-25 .col13 {
    margin-bottom: 20px !important;
  }.section-style-25 .col13 {
      display: inline-block;
  }
  .section-style-25 .contentCol13 {
      width: 100%;
  }
  .section-style-53 .container {
      display: inline-block !important;
  }
  .section-style-53 .col4 {
      max-width: 100% !important;
      width: 100% !important;
  }
  .section-style-53 .courses {
      width: 100%;
      margin-left: 0%;
  }
  .section-style-12 .container {
      padding: 0px !important;
  }
  .section-style-21 a {
      display: block;
      margin-top: 20px;
      margin-bottom: 20px;
  }
}

/*** Section style 26 ***/

.section-style-26 {
  padding: 60px 0;
  background: var(--cta-color);
  color: #fff;
  text-align: center;
}

.section-style-26 .container {
  margin: 0 auto;
  padding: 0 20px;
}

.section-style-26 blockquote {
  padding: 20px;
}

.section-style-26 .logo-gallery-row {
  margin-bottom: 10px;
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto 40px auto;
}

.section-style-26 .logo-item {
  padding: 0 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  text-align: center;
}



@media (min-width: 768px) and (max-width: 1200px) {
  .section-style-26 .logo-gallery-row {
      flex-wrap: inherit;
  }
}

@media (max-width: 767px) {
  .section-style-26 {
      padding: 10px 0;
  }
  .section-style-26 .logo-gallery-row {
      display: inline-block;
  }
  .section-style-26 .logo-item {
      padding: 10px 0;
  }
}

/*** Section style 27 ***/

.section-style-27 {
  padding: 8rem 0;
  font-size: 1.8rem;
  background: var(--cta-color);
  color: #fff;
}

.section-style-27 .container {
  display: flex;
  justify-content: space-around;
  padding: 0 2rem;
  margin: 0 auto;
  max-width: 115.5rem;
}

.section-style-27 .text-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
}

.section-style-27 .text-center:nth-child(2) p:last-child {
  margin-left: 70px;
}

.section-style-27 p {
  margin-bottom: 2rem;
}

@media (max-width: 1200px) {
  .section-style-27 .container {
      display: block;
  }
  .section-style-27 h2 {
      margin-left: 0px !important;
  }
  .section-style-27 .section-style-27 p {
      margin-left: 0px !important;
  }
  .section-style-27 {
      padding: 2rem 0;
  }
}

@media (max-width: 767px) {
  .section-style-27 h2 {
    margin-left: 0px !important;
    margin-bottom: 0px;
  }

  .section-style-27 p {
    margin-bottom: 2rem;
    margin-left: 0 !important;
  }

  .section-style-27 .text-center {
    margin: 0 auto;
  }
}

/*** Section style 28 ***/

.section-style-28 {
  min-height: calc(80vh - 124px);
}

.section-style-28 .container {
  margin: 0 auto;
  width: 1100px;
  max-width: 100%;
}

.section-style-28 .text-center {
  text-align: center;
}

.section-style-28 .button {
  min-width: 213px;
  padding: 15px 0px !important;
}

.section-style-28 .btn-group-2 .cta_button:not(last-child) {
  margin-right: 10px;
}

.section-style-28 .download span,
.section-style-28 .button a {
  color: #fff !important;
}

.section-style-28 p {
  text-decoration: none;
  transition: all .23s ease-out;
}

.section-style-28 .btn-group-2 span.button {
  padding: 20px 30px;
  background: var(--cta-color);
  margin: 0 15px 0 0;
}

.section-style-28 .btn-group-2 a {
  color: #fff !important;
}

.section-style-28 hr {
  margin-bottom: 20px;
}

.section-style-28 .btn-group-2 span:nth-child(1) {
  margin-right: 5px;
}

.section-style-28 .btn-group-2 {
  margin-top: 50px;
}

.section-style-28 .btn-group-2 span.line {
  background: #fff;
  position: absolute;
  z-index: -1;
  border: 1px solid var(--cta-color);
  width: 160px;
  height: 60px;
  margin: -16px 15px 0 0;
}

.section-style-28 .btn-group-2 span.line:nth-child(3) {
  background: #fff;
  position: absolute;
  z-index: -1;
  border: 1px solid var(--cta-color);
  width: 200px;
  height: 60px;
  margin-top: -16px;
}

.section-style-28 .content ul {
  list-style: none;
}

.section-style-28 .icon {
  font: normal normal normal 14px/1 FontAwesome;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.section-style-28 .deco1 {
  position: relative;
  bottom: -50px;
  width: 246px;
  height: 245px;
  background: url(https://image.s50.sfmc-content.com/lib/fe4411717564047d751071/m/1/16ca3abb-c1f2-4efc-860b-c133cf0e486b.png);
  background-size: cover;
}

.section-style-28 .deco2 {
  position: relative;
  bottom: -147px;
  width: 197px;
  height: 148px;
  background: url(https://image.s50.sfmc-content.com/lib/fe4411717564047d751071/m/1/412e285d-67b7-4dbe-a77a-ed25f4002fbd.png);
  background-size: cover;
}

.section-style-28 .deco3 {
  position: relative;
  bottom: -98px;
  width: 148px;
  height: 198px;
  background: url(https://image.s50.sfmc-content.com/lib/fe4411717564047d751071/m/1/c9dd5494-f81d-4351-a885-b5ebd0b5fd0b.png);
  background-size: cover;
}

.section-style-28 .iade-mobile:before {
  content: "\f10b";
  font-size: 25px;
}

.section-style-28 .iade-envelope-o:before {
  content: "\f0e0";
  font-size: 25px;
}

.section-style-28 .iade-facebook:before {
  content: "\f09a";
  font-size: 25px;
}

.section-style-28 .iade-twitter:before {
  content: "\f099";
  font-size: 25px;
}

.section-style-28 .iade-linkedin:before {
  content: "\f0e1";
  font-size: 25px;
}

.section-style-28 .iade-youtube:before {
  content: "\f167";
  font-size: 25px;
}

.section-style-28 .fa-instagram:before {
  content: "\f16d";
  font-size: 25px;
}

.section-style-28 .footer-deco {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.section-style-28 > .container {
  margin: 0 auto;
  width: 100%;
  max-width: 1120px;
  padding: 20px 40px 30px 0px;
  min-height: 61.8vh;
}

.section-style-28 h1 {
 color: #2a272a;
 margin-bottom: 20px;
}

.section-style-28 .content ul {
  display: flex;
  padding: 0px;
}

.section-style-28 .content ul a span {
  color: #fff;
}

.section-style-28 .buttons {
 margin: 30px 0px;
}

.section-style-28 ul li:nth-child(1) a {
  margin-left: -10px;
}

.section-style-28 .contenido .content> div:nth-child(1) > div > span:nth-child(1) {
  margin-right: 20px;
}

.section-style-28 .contact-line a {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.section-style-28 .contact-line .icon {
  margin-right: 10px;
}

.section-style-28 .menu {
 list-style: none;
}

.section-style-28 .buttons a {
  margin-bottom: 30px;
}

.section-style-28 span {
 font-weight: 600;
}

.section-style-28 .download,
.section-style-28 .button {
  -webkit-font-smoothing: antialiased;
  cursor: pointer;
  -moz-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  user-select: none;
  display: inline-block;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  background: var(--cta-color);
  border: 2px solid transparent;
  color: #fff;
  font-family: sans-serif;
  height: auto;
  padding: 6px 18px;
  text-shadow: 0px -1px rgb(0,0,0);
  width: fit-content;
  line-height: 1.5em;
  font-weight: extra-bold;
}

.section-style-28 .btn-group-1 {
  display: flex;
  flex-direction: column;
}

.btn-group-1 .button:not(last-child) {
  margin-bottom: 20px;
}

.section-style-28 ul a {
  text-decoration: none;
  width: 45px;
  height: 45px;
  padding: 5px 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-style-28 img {
  max-width: 100%;
  display: block;
  height: auto !important;
  margin-bottom: 30px;
}

.section-style-28 .contenido {
  background-color: #1a1a1a;
  color: #fff;
  font-size: 16px;
}
.section-style-28 .contenido .content.col12 {
  padding: 0 40px;
  margin: 50px 250px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  /*width: 925px;*/
}
.section-style-28 .contenido .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.section-style-28 .contenido .footer-map {
   height: 370px;
   width: 100%;
   max-width: 100%;
   background: round;
   font-size: 0px;
   cursor: pointer;
}

.section-style-28 .contenido .footer-map a {
   display: block;
   height: 370px;
   color: transparent !important;
}
.section-style-28 .contenido .contacts-group span {
  color: #fff;
}

.section-style-28 .contenido .contacts-group span:hover {
  color: #30a1df;
}

.section-style-28 .contenido .footer-contact {
  margin-left: 10%;
}

.section-style-28 .contenido div.content.col12 > div:nth-child(2) p {
  font-size: 24px;
}

.section-style-28 .contenido h3 {
  color: #fff;
  text-align: left;
  font-size: 30px;
  font-weight: 400;
  padding: 0;
  margin: 0 0 10px 0;
}

.section-style-28 .contenido p {
  color: #999;
  min-height: 46px;
  padding-bottom: 2px;
  font-size: 24px;
}

.section-style-28 .contenido .contacts-group {
  padding-top: 20px;
  font-size: 18px;
}

.section-style-28 .contenido .footer a {
  color: #fff;
}

@media (max-width: 767px) {
  .section-style-28 .contenido .footer-map {
     height: 200px;
     background: initial;
     background-size: cover;
     background-position: center;
  }
  .section-style-28 .contenido .col1, .col2, .col3, .col4, .col5, .col6, .col7, .col8, .col9, .col10, .col11, .col12 {
      position: relative;
      padding: 20px 0;
      -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
      flex: 1 1 100%;
      max-width: 100%;
  }
  .section-style-28 .contenido a{
      font-size: 16px;
  }
}

@media (min-width: 320px) and (max-width: 767px) {
  .section-style-28 .btn-group-2 {
      display: flex;
      flex-direction: column;
  }
  .section-style-28 .btn-group-2 .button:nth-child(2) {
      margin-bottom: 20px;
  }
  .section-style-28 .contenido .content.col12 {
    padding: 0 40px;
    margin: 50px 0px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }
  .section-style-28 .contenido .contacts-group {
     display: flex;
     flex-direction: column;
     justify-content: center;
  }
  .section-style-28 .deco1 {
     position: relative;
     bottom: -24px;
     width: 100px;
     height: 100px;
     background: url(https://image.s50.sfmc-content.com/lib/fe4411717564047d751071/m/1/16ca3abb-c1f2-4efc-860b-c133cf0e486b.png);
     background-size: cover;
 }
 
 .section-style-28 .deco2 {
     position: relative;
     bottom: -64px;
     width: 80px;
     height: 60px;
     background: url(https://image.s50.sfmc-content.com/lib/fe4411717564047d751071/m/1/412e285d-67b7-4dbe-a77a-ed25f4002fbd.png);
     background-size: cover;
 }
 
 .section-style-28 .deco3 {
     position: relative;
     bottom: -44px;
     width: 60px;
     height: 80px;
     background: url(https://image.s50.sfmc-content.com/lib/fe4411717564047d751071/m/1/c9dd5494-f81d-4351-a885-b5ebd0b5fd0b.png);
     background-size: cover;
 }
  .section-style-28 .buttons {
        margin: 30px 0px;
        display: flex;
        flex-direction: column;
  }
  .section-style-28 .btn-group-2 {
      display: flex;
      flex-direction: column;
  }
  .section-style-28 .btn-group-2 .button:not(last-child) {
      margin-bottom: 20px;
  }
}

@media (min-width: 320px) and (max-width: 767px) {
    .section-style-28 .btn-group-2 span.line {
      width: 91%;
      height: 53px;
      margin: 11px 15px 0 0;
    }
    .section-style-28 .btn-group-2 span.line:nth-child(3) {
      width: 91%;
      height: 60px;
      margin-top: 83px;
    }
    .section-style-28 .contact-line .icon.iade-mobile {
          margin-left: 7px;
    }
    }

@media (min-width: 375px) and (max-width: 767px) {
    .section-style-28 .btn-group-2 span.line {
      width: 92%;
    }
    .section-style-28 .btn-group-2 span.line:nth-child(3) {
      width: 92%;
    }
}

@media (min-width: 425px) and (max-width: 767px){
    .section-style-28 .btn-group-2 span.line {
      width: 93%;
    }
    .section-style-28 .btn-group-2 span.line:nth-child(3) {
      width: 93%;
    }
}

@media (min-width: 767px) and (max-width: 1024px) {
  .section-style-28 > .container {
      margin: 0 auto;
      width: 100% !important;
      max-width: 1100px;
      padding: 40px 20px !important;
  }
  .section-style-28 .contenido .content.col12 {
      padding: 0 40px;
      margin: 50px 50px;
      display: flex;
      flex-direction: row;
      justify-content: space-between;
  }
  .section-style-28 .btn-group-2 {
      display: flex;
      flex-direction: column;
  }
  .section-style-28 .btn-group-2 .button:not(last-child) {
      margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .section-style-28 .contenido .contacts-group {
    flex-flow: wrap;
    flex-direction: inherit !important;
  }
}

/* SECTION STYLE 29 */

.section-style-29 {
  padding: 60px 40px;
}

.section-style-29 .container {
  margin: 0 auto 0 auto;
  width: 1100px;
  max-width: 100%;
  display: flex;
  align-items: center;
}

.section-style-29 hr {
  margin: 30px 0;
}

.section-style-29 p {
  margin: 20px;
}

.section-style-29 p.title {
  margin-bottom: 20px;
}

.section-style-29 .content {
  margin-bottom: 40px;
  width: 880px;
  margin-right: 50px;
}

.section-style-29 .video {
  width: 560px;
  height: 315px;
}

@media (min-width: 320px) and (max-width: 767px) {
  .section-style-29 .container {
      margin: 0 auto 0 122px;
      width: 1100px;
      max-width: 100%;
      display: flex;
      flex-direction: column;
  }
  .section-style-29 .video {
      width: 100%;
      height: 315px;
  }

  .section-style-29 p:not(.title),
  .section-style-29 span {
      margin-bottom: 20px;
  }
}

@media (min-width: 320px) and (max-width: 1024px) {
  .section-style-29 .container {
      margin: 0 auto;
      width: 1100px;
      max-width: 100%;
      flex-direction: column;
      align-items: flex-start;
  }
  .section-style-29 .video {
      width: auto;
      height: auto;
  }
  .section-style-29 .content {
      width: auto;
      margin-right: 0;
  }
}


/* SECTION STYLE 30 */

.section-style-30 {
    padding: 40px 0px;
}

.section-style-30 .button-container-bottom {
  justify-content: center;
  display: flex;
  margin-top: 65% !important;
  max-width: 100%;
  top: 100px;
}

.section-style-30 .container .titulo {
    font-size: 36px;
    color: #0d833b;
    font-family: 'RealBetisHeadlineWEB-OCHO';
}

.section-style-30 .subtitulo {
    font-family: 'RealBetisWEB-Lt';
    font-size: 16px;
}

.section-style-30 .container .titulo span {
    color: #000;
    font-family: 'RealBetisHeadlineWEB-TRES';
}

.section-style-30 .button-1 {
  color: #fff;
  cursor: pointer;
  max-width: 100% !important;
  opacity: 0.75;
  transition: all 300ms ease-in-out;
  background: transparent;
  margin: 0 10px;
}

.section-style-30 .button-1:before {
  content: "";
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transform: translate(-50%, -50%);
  width: 13px;
  height: 13px;
  background-color: rgba(0,0,0,0.5);
  border-radius: 50%;
  z-index: -99;

}

.section-style-30 .button-2 {
  color: #fff;
  cursor: pointer;
  max-width: 100% !important;
  opacity: 0.75;
  transition: all 300ms ease-in-out;
  background: transparent;
  margin: 0 10px;
}

.section-style-30 .button-2:before {
  content: "";
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transform: translate(-50%, -50%);
  width: 13px;
  height: 13px;
  background-color: rgba(0,0,0,0.5);
  border-radius: 50%;
  z-index: -99;
}

.section-style-30 .button-3 {
  color: #fff;
  cursor: pointer;
  max-width: 100% !important;
  opacity: 0.75;
  transition: all 300ms ease-in-out;
  background: transparent;
  margin: 0 10px;
}

.section-style-30 .button-3:before {
  content: "";
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transform: translate(-50%, -50%);
  width: 13px;
  height: 13px;
  background-color: rgba(0,0,0,0.5);
  border-radius: 50%;
  z-index: -99;
}

.section-style-30 .button-4 {
  color: #fff;
  cursor: pointer;
  max-width: 100% !important;
  opacity: 0.75;
  transition: all 300ms ease-in-out;
  background: transparent;
  margin: 0 10px;
}

.section-style-30 .button-4:before {
  content: "";
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transform: translate(-50%, -50%);
  width: 13px;
  height: 13px;
  background-color: rgba(0,0,0,0.5);
  border-radius: 50%;
  z-index: -99;
}
.section-style-30 .button-1.dot.selected:before,
.section-style-30 .button-2.dot.selected:before,
.section-style-30 .button-3.dot.selected:before,
.section-style-30 .button-4.dot.selected:before{
  background: #000;
}

.section-style-30 .button-container .button {
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  max-width: 100% !important;
  opacity: 0.75;
  transition: all 300ms ease-in-out;
  max-width: 0%;
  top: 470px;
  border: transparent;
}

.section-style-30 .button-container .button-left:before {
  content: "<";
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transform: translate(-50%, -50%);
  width: 25px;
  height: 25px;
  background-color: #a3a3a3;
  border-radius: 50%;
  z-index: -99;
}

.section-style-30 .button-right {
  margin-left: auto;
}

.section-style-30 .button-left {
  margin-right: auto;
}

.section-style-30 .items {
  position: inherit;
  user-select: none;
  width: 100%;
  display: flex;
}

.section-style-30 .items-carrousel {
  position: inherit;
  user-select: none;
  width: 100%;
  display: flex;
}

.section-style-30 .items .item {
  position: absolute;
  height: 460px;
  overflow: hidden;
  z-index: -1;
  opacity: 0;
  max-width: 100%;
  height: auto;
}

.section-style-30 .items-carrousel .item-carrousel {
  position: initial;
  overflow: hidden;
  z-index: -1;
  max-width: 100%;
  height: auto;
  display: none;
}

.section-style-30 .item img {
  width: 100%;
  height: 100%;
}

.section-style-30 .item-carrousel img {
  width: 100%;
  height: 100%;
}

.section-style-30 .item.active {
  opacity: 1;
  z-index: 99;
  width: 100%;
}

.section-style-30 .item-carrousel.active {
  opacity: 1;
  z-index: 99;
  width: 100%;
  display: block;
}

.section-style-30 .item.prev {
  z-index: 2;
  transform: translate(-125%, -50%);
}

.section-style-30 .item-carrousel.prev {
  z-index: 2;
  transform: translate(-125%, -50%);
}

.section-style-30 .items .button-container {
  width: 100%;
  max-width: 100%;
  z-index: 100;
  display: flex;
}

.section-style-30 .items-carrousel .button-container {
  width: 100%;
  max-width: 1220px;
  z-index: 100;
  display: flex;
  position: absolute;
}

.section-style-30 .button-container .button {
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  max-width: 100% !important;
  opacity: 0.75;
  transition: all 300ms ease-in-out;
  max-width: 0%;
  top: 470px;
  background: transparent;
}

.section-style-30 .button-container .button:hover {
  opacity: 1;
}

.section-style-30 .button-container .button-left:before {
  content: "<";
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  top: 50%;
  left: 16.5px;
  transform: translate(-50%, -50%);
  width: 25px;
  height: 25px;
  background-color: #a3a3a3;
  border-radius: 50%;
  z-index: -99;
  margin-top: -8px;
  display: none;
}

.section-style-30 .button-container .button-right:before {
  content: ">";
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  top: 50%;
  right: -1%;
  transform: translate(-50%, -50%);
  width: 25px;
  height: 25px;
  background-color: #a3a3a3;
  border-radius: 50%;
  z-index: -99;
  display: none;
}

.section-style-30 .items:hover .button-container .button-left:before,
.section-style-30 .items:hover .button-container .button-right:before {
  display: flex;
}

.section-style-30 .items-carrousel:hover .button-container .button-left:before,
.section-style-30 .items-carrousel:hover .button-container .button-right:before {
  display: flex;
}

.section-style-30 .text {
display: contents;
position: relative;
background: #fff;
z-index: 99;
}

.section-style-30 .text .center {
z-index: 99;
margin: 0 auto;
text-align: center;
top: 45%;
font-size: 2.4rem;
position: sticky;
text-transform: uppercase;
display: block;
height: 0px;
}

@media (max-width: 767px) {
  .section-style-30 .item img {
    width: 100% !important;
    margin-left: 0%!important;
  }
  .section-style-30 .item-carrousel img {
    width: 100% !important;
    margin-left: 0%!important;
  }
  .section-style-30 .item img {
    width: 79%;
    height: 100%;
    margin-left: 6%;
  }
  .section-style-30 .item-carrousel img {
    width: 79%;
    height: 100%;
    margin-left: 6%;
  }
  .section-style-30 .text .center {
      font-size: 1rem;
  }
  .section-style-30 .button-container .button-right:before {
      display: flex;
   }
  .section-style-30 .button-container .button-left:before {
      display: flex;
   }
  .section-style-30 .button-container-bottom {
      margin-right: 0%;
  }
  .section-style-30 .items-carrousel .button-container {
      max-width: 735px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .section-style-30 .items-carrousel .button-container {
      max-width: 990px;
  }
}


/* RESPONSIVE CUSTOMS BLOCKS */

@media (min-width: 320px) and (max-width: 767px) {
  .col1,
  .col2,
  .col5,
  .col7,
  .col10 {
      width: 100% !important;
      max-width: 100% !important;
  }

  .section-style-16 .square-inline,
  .section-style-27 .container-square {
      width: 100% !important;
  }

  .section-style-8 .container {
      padding: 0 10px;
  }
  
  .section-style-8 img {
      min-width: 240px;
      height: 160px;
  }

  .section-style-16 {
      padding: 100px 10px !important;
  }

  .section-style-9 {
      padding: 0px;
  }

  .container {
      width: 100% !important;
      max-width: 100% !important;
  }
  
  .section-style-15 .table {
        width: 91%;
  }

  .section-style-15 iframe {
        width: 100% !important;
        max-width: 100%;
  }

  .section-style-9 .col10 {
      max-width: 84%;
   }

  .section-style-18 ul {
      padding-left: 0rem; 
  }

  .section-style-18 .col6 {
      margin-left: 0px !important;
      padding: 10px 20px !important;
   }

  .section-style-18 li+ul {
      margin-left: 0px !important;
      padding: 0px !important;
      width: 100% !important;
   }

  .section-style-3 .list-blocks.list-blocks-3, 
  .section-style-3 .list-blocks.list-blocks-4 {
      display: flex;
      flex-direction: column;
  }

  .section-style-3 .list-blocks.list-blocks-4 .list-block-wrapper {
      width: 100%;
  }
  
  .section-style-14 .container .row {
      display: flex;
      flex-direction: column;
  }


  .footer-style-4 .footer-contact{
      padding: 0px 0px 40px 0px;
  }
}

@media (min-width: 767px) {

  iframe {
      width: 100%;
  }

  .section-style-13,
  .section-style-14 {
      padding: 0 10px;
  }

  .section-style-15 ul {
      padding: 10px;
  }

}

@media only screen and (max-width:767px) {
  iframe {
        width: 100% !important;
        max-width: 100%;
  }

  .section-style-18 ul {
      padding-left: 0rem; 
  }

  .section-style-13,
  .section-style-14,
  .section-style-15 ul {
      padding: 0 10px;
  }

  .section-style-27 .container-square {
        width: 23.704255%;
        margin-left: 1%;
  }

  .footer-style-2 .col4 {
      -webkit-box-flex: 1;
      -ms-flex: 1 1 33.33%;
      flex: 1 1 33.33%;
      max-width: 33.33%;
  }

  .footer-style-2 .col8 {
      -webkit-box-flex: 1;
      -ms-flex: 1 1 66.66%;
      flex: 1 1 66.66%;
      max-width: 66.66%;
  }

  .footer-style-1  .text-right {
      text-align: center;
  }

  .footer-style-1  .footer-contact {
      font-size: 18px;
  }

  .footer-style-1 .footer-bottom {
      padding-top: 32px;
  }
  .footer-style-1 .footer-middle .footer-logo {
      margin-right: 0px;
  }
  
  .footer-style-2 .col4 {
      -webkit-box-flex: 1;
      -ms-flex: 1 1 33.33%;
      flex: 1 1 33.33%;
      max-width: 100%;
  }

  .footer-style-2 .footer-map {
      height: 400px;
      min-height: 400px;
  }

  .footer-style-2 .footer-map.col8 {
      width: 100%;
      min-width: 100%;
  }

  .footer-style-3 .container {
      padding: 0;
      max-width: 100%;
  } 

  .footer-style-4 .row {
      display: block;
  }

  .footer-style-4 .footer-contact {
      padding: 0px 0px 40px 0px;
  }

  .footer-style-3 .footer-map,
  .footer-style-4 .footer-map {
      height: 400px;
  }

}

@media (min-width:767px) and (max-width:1024px) {
  .section-style-16 {
      padding: 100px 0px !important;
  }

  .section-style-15 ul {
      padding: 0 10px !important;
  }

  iframe {
      width: 100%;
      max-width: 100%;
  }

  .container {
      width: 100% !important;
      padding: 0 20px !important;
  }
 
  .section-style-18 ul {
      padding-left: 0rem;
  }
}

@media (min-width:1024px) {
  .section-style-13, 
  .section-style-14, 
  .section-style-15 {
      margin: 0 auto;
      width: 100%;
  }
}

@media (min-width:1440px) {
  .section-style-13, 
  .section-style-14, 
  .section-style-15 {
      margin: 0 auto;
      width: 1224px;
  }
}

@media (max-width: 1024px) {
  .footer-style-3 .footer-bottom .left,
  .footer-style-3 .footer-bottom,
  .footer-style-3 .footer-medium .right,
  .footer-style-3 .footer-medium,
  .footer-style-3 .sub-info,
  .footer-style-3 .footer-bottom .right,
  .footer-style-3 .footer-top {
      flex-direction: column;
  }

  .footer-style-3 .footer-bottom {
      padding: 30px 10px;
  }
  
  .footer-style-3 .footer-bottom .right {
      margin-top: 10px;
  }

  .footer-style-3 .bloque1, 
  .footer-style-3 .bloque2,
  .footer-style-3 .bloque3,
  .footer-style-3 .footer-medium .left, 
  .footer-style-3 .footer-medium .right,
  .footer-style-3 .content-image {
      width: 100% !important;
  }


  .footer-style-3 .bloque2, 
  .footer-style-3 .bloque3 {
     margin-top: 10px;
  }

  .text-bottom .sub-info {
    margin: 10px 0px;
  }

  .footer-style-3 .text-bottom select, 
  .footer-style-3 .text-bottom .sub-info input {
      margin-bottom: 15px;
  }
  
  .footer-style-3 .sub-info button {
      margin: 20px 0px;
  }

  .footer-style-3 .footer-medium .right .bloque1, 
  .footer-style-3 .footer-medium .right .bloque2, 
  .footer-style-3 .footer-medium .right .bloque3 {
      margin-top: 15px;
  }
 }

 @media  (min-width:1024px) and (max-width:1350px) {
  .footer-style-3 .content-image {
    margin-left: 46rem;
  }
 }




/* General Form */

.whatsappButton img {
  width: 160px;
  margin-bottom: 10px;
}

.sessions-form-input {
  width: auto !important;
  margin-right: 10px;
}

.workshops-form-input {
  width: auto !important;
  margin-right: 10px;
}

.field-6 {
  align-self: flex-end;
}

.sessions-form label {
  background-color: initial !important;
}

.workshops-form label {
  background: initial !important;
}
.student-form label {
  background: initial !important;
}
.student-form p {
  background: initial !important;
  margin-bottom: 5px;
}
input#marketing_consent {
  max-width: 2rem !important;
}
.more-information label {
  background-color: initial !important;
}


/*Important Changes*/

/*Container*/

.section-style-14 .container {
  margin: 0 auto;
  width: 100%;
  max-width: 1100px;
}

.section-style-11 .container {
  margin: 0 auto;
  max-width: 1000px;
  justify-content: center;
  width: 100%;
}
.section-style-18 .container {
  margin: 0 auto;
  width: 100%;
  max-width: 1100px;
}
.section-style-19 .container {
  margin: 0 auto;
  width: 100%;
  max-width: 1100px;
}

.section-style-20 .container {
  margin: 0 auto;
  width: 100%;
  max-width: 1100px;
  display: flex;
}
.section-style-34 .container {
  margin: 0 auto;
  width: 100%;
  max-width: 1100px;
}

/*responsive*/

@media (max-width: 767px) {
  .section-style-3 .list-blocks.list-blocks-3, .section-style-3 .list-blocks.list-blocks-4 {
      display: block;
  }
  .section-style-3 .list-blocks .list-block-wrapper {
      margin-bottom: 20px;
      width: 100%;
  }
  .section-style-3 .list-blocks.list-blocks-4 .list-block-wrapper {
      width: 100%;
  }
  .section-style-14 .col9 {
      flex: 1 1 100%;
  }
  .col1, .col2, .col3, .col4, .col5, .col6, .col7, .col8, .col9, .col10, .col11, .col12 {
      max-width: 100% !important;
  }
  iframe {
      width: 100%;
  }

  .section-style-20 .container {
      display: block;
  }
}

