@import url('fonts.css');
@import url('variables.css');
@import url('buttons.css');
@import url('footer.css');

/*--------------------------------------------------------------
# Estilos general
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--white-color);
  font-family: var(--default-font);
  font-size: var(--base-font-size);
}

a {
  text-decoration: none;
  transition: 0.3s;
  color: inherit;
}

a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--default-color);
  font-family: var(--default-font);
}

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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  max-width: 1420px;
}

h1 {
  font-size: clamp(60px, 5vw, 40px);
}

h2 {
  font-size: clamp(41px, 5vw, 28px);
}

h3 {
  font-size: clamp(26px, 5vw, 22px);
}

h4 {
  font-size: clamp(24px, 5vw, 19px);
}

h5 {
  font-size: clamp(22px, 5vw, 16px);
}

body.no-scroll {
  overflow: hidden;
  /* Disable scroll */
}

ul {
  list-style-position: inside;
  margin: 0;
  padding: 0;
  margin-bottom: 1.5rem;
}

ul li {
  margin-bottom: 1rem;
}


/*--------------------------------------------------------------
# Header nenu nav
--------------------------------------------------------------*/
.header,
#header {
  color: var(--secondtext-color);
  padding: 30px 0;
  height: auto;
  transition: all 0.3s ease-in-out;
  z-index: 997;
  transform: translateY(0);
  border-radius: 0px 0px 24px 24px;
  /* background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.26) 15%, rgba(102, 102, 102, 0.00) 85%);*/
  transition: background-color 0.3s ease;

  &.hide {
    transform: translateY(-100%);
    transition: all 0.3s ease-in-out;
  }

  &.show {
    transform: translateY(0);
    transition: all 0.3s ease-in-out;
  }

  &.sticky-top {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1020;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);

  }

  .navbar {
    padding-left: 1.5rem;
    padding-right: 1.5rem;

    .container {
      padding: 0;
    }

  }

  .navbar-brand {
    margin-left: .5rem;
    margin-right: .5rem;
    display: inline-block;
    width: 300px;
    height: 60px;
    background: url(../img/e-voluciona-logo.svg) left center no-repeat;
  }

  .tools {

    .claim {
      margin-right: 2rem;
      display: inline-block;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      transition: background-color 0.3s ease, color 0.3s ease;
      padding: 5px 10px;
      border-radius: 4px;

      a {
        color: var(--white-color);
        font-family: var(--font-semibold-600);
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
      }

      &::before {
        content: '';
        position: absolute;
        top: 0;
        left: -99%;
        width: 100%;
        height: 100%;
        background-color: var(--white-color);
        transition: left 0.3s ease-in-out;
        z-index: -1;
      }

      &:hover {
        a {
          color: var(--primary-color);
        }

        &::before {
          left: 0;
        }

      }

    }

    .btn-search:hover svg .trazo {
      stroke: var(--secondary-color);
    }

    .dropdown {
      button.dropdown-toggle {
        background-color: transparent;
        color: var(--white-color);
        padding: 10px;
        border: solid 1px transparent;
        border-radius: 5px;
        cursor: pointer;
        font-size: 16px;
        text-align: left;
        min-width: auto;
        display: flex;
        align-items: center;
        gap: 10px;

        span {
          display: block;
          border-radius: 50%;
          width: 22px;
          height: 22px;
          background-size: cover;
          background-repeat: no-repeat;
          background-position: center center;
        }

        &:hover {
          background-color: var(--lightgrey-color);
        }

      }

      .dropdown-menu {
        background-color: var(--white-color);
        border: 1px solid var(--mediumgrey-color);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        width: auto !important;
        min-width: max-content;
        padding: 0;
        border: none;
        box-shadow: none;

        .dropdown-item {
          padding: 10px;
          cursor: pointer;
          display: flex;
          align-items: center;
          gap: 10px;
          white-space: nowrap;
          padding: 0.5rem 1rem;

          span {
            display: block;
            border-radius: 50%;
            width: 22px;
            height: 22px;
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center center;
          }

          &:hover {
            background-color: var(--lightgrey-color);
          }

        }

      }

    }

  }

  &.header-scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: ease .3s;

    .navbar-brand {
      margin-left: .5rem;
      margin-right: .5rem;
      display: inline-block;
      width: 300px;
      height: 60px;
      background: url(../img/e-voluciona-logo-color.svg) left center no-repeat;
    }

    .tools {

      .claim {

        a {
          color: var(--secondary-color);
        }

        &::before {
          background-color: var(--secondary-color);
        }

        &:hover {
          a {
            color: var(--white-color);
          }

        }

      }

      .btn-search svg .trazo {
        stroke: var(--secondary-color);
      }

      .btn-search:hover svg .trazo {
        stroke: var(--default-color);
      }

      .dropdown {
        button {
          span {
            color: var(--secondary-color);
          }

          svg path {
            stroke: var(--secondary-color);
          }

        }

      }

    }

  }

  &.changeColor {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: ease .3s;

    .navbar-brand {
      margin-left: .5rem;
      margin-right: .5rem;
      display: inline-block;
      width: 300px;
      height: 60px;
      background: url(../img/e-voluciona-logo-color.svg) center center no-repeat;
    }

    .tools {

      .claim {

        a {
          color: var(--secondary-color);
        }

        &::before {
          background-color: var(--secondary-color);
        }

        &:hover {
          a {
            color: var(--white-color);
          }

        }

      }

      .btn-search svg .trazo {
        stroke: var(--secondary-color);
      }

      .btn-search:hover svg .trazo {
        stroke: var(--default-color);
      }

      .dropdown {
        button {
          span {
            color: var(--secondary-color);
          }

          svg path {
            stroke: var(--secondary-color);
          }

        }

      }

    }

  }

}


/*--------------------------------------------------------------
# hero interiores
--------------------------------------------------------------*/
.heroint2 {
  background-repeat: no-repeat;
  background-size: cover;
  height: 448px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;

  .title {
    color: #FFF;
    text-align: center;
    font-family: var(--font-semibold-600);
    font-size: clamp(40px, 2vw + 1rem, 65px);
    font-style: normal;
    font-weight: 600;
    line-height: 60px;
  }

}


/*--------------------------------------------------------------
# breadcrubms
--------------------------------------------------------------*/
section.breadcrumbs {
  .container {
    padding: 10px 1.8rem;

    .row {
      margin-bottom: 0 !important;

      div[class*="col-md-"] {
        padding-left: 0;
      }
    }
  }

  nav {
    .breadcrumb {
      .breadcrumb-item {
        a {
          color: var(--tertiary-color);
          font-family: var(--font-medium-500);
          font-size: 16px;
          font-style: normal;
          font-weight: 500;
          line-height: 22px;

          &:hover {
            color: #009CAB;
            text-decoration: underline;
          }

        }

        &.active {
          color: #009CAB;
          font-size: 16px;
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis;
          line-height: 1.85;
        }

      }

    }

  }

  .breadcrumb-item+.breadcrumb-item::before {
    content: "|";
  }

}

/*--------------------------------------------------------------
# menu flotante nav
--------------------------------------------------------------*/
nav.floating-menu {
  position: fixed;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background-color: var(--primary-color);
  border-radius: 100px;
  padding: 1px 50px 1px 1px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  width: auto;

  .floating-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;

    li {
      position: relative;
      margin-bottom: 0;
    }

    .floating-menu-item {
      display: flex;
      flex-direction: row;
      align-items: center;
      text-decoration: none;
      color: var(--white-color);
      transition: color 0.3s ease;
      text-wrap: nowrap;
      font-size: 15px;

      &:hover {
        color: var(--color-negro50);
        font-family: var(--font-bold-700);
        font-weight: 700;
      }

      &:focus {
        outline: none;
        color: var(--color-negro50);
        font-family: var(--font-bold-700);
        font-weight: 700;
      }

      &.is-active {
        span {
          color: var(--color-negro50);
          font-family: var(--font-bold-700);
          font-weight: 700;
        }
      }

      .floating-menu-icon {
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        transition: ease .3s;
        display: flex;
        width: 64px;
        height: 58px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        border-radius: 100px;
        padding: 16px 20px;
        background-color: #00A4B6;

        .floating-menu-text {
          font-size: 0.875rem;
          font-family: var(--font-medium-500);
          font-weight: 500;
        }

      }

      &:hover .floating-menu-icon svg #ico-home,
      &:focus .floating-menu-icon svg #ico-home {
        fill: var(--color-negro50);
      }

      &.is-active .floating-menu-icon svg #ico-home {
        fill: var(--color-negro50);
      }

      &.is-active,
      &.is-active span {
        color: var(--color-negro50);
      }

      span+svg {
        margin-left: 6px;
        transform: rotate(180deg);
      }

    }

    .has-submenu.active span+svg {
      transform: rotate(0deg);
    }

  }

  /* submenu */
  .submenu {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    border-radius: 15px 15px 0 0;
    padding: 15px;
    margin-bottom: 18px;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, max-height 0.3s ease, transform 0.3s ease;
    transform-origin: bottom center;
    transform: translateX(-50%) translateY(10px);
    z-index: 990;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);

    &.show {
      opacity: 1;
      visibility: visible;
      max-height: 300px;
      transform: translateX(-50%) translateY(0);
    }

    .submenu-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;

      .submenu-item {
        line-height: 1.15;

        a {
          color: var(--white-color);
          text-decoration: none;
          font-family: var(--font-medium-500);
          font-size: 0.875rem;
          display: block;
          padding: 8px 12px;
          border-radius: 8px;
          transition: color 0.3s ease;

          &:hover {
            color: var(--color-negro50);
            font-family: var(--font-bold-700);
            font-weight: 700;
          }

          &.is-active {
            color: var(--color-negro50);
            font-family: var(--font-bold-700);
            font-weight: 700;
          }

        }

      }

    }

  }

}


/*--------------------------------------------------------------
#  menu flotante nav Mobile
--------------------------------------------------------------*/
nav.floating-menu-mobile {
  display: none;

  .btn-menu {
    position: fixed;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    border-radius: 100px;
    color: var(--white-color);
    padding: 1px 30px 1px 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 1001;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;

    span.texto {
      color: var(--white-color);
      text-align: center;
      font-family: var(--font-regular-400);
      font-size: 17px;
      font-style: normal;
      font-weight: 400;
      line-height: 18px;
    }

    i {
      border-radius: 100px;
      width: 64px;
      height: 58px;
      display: flex;
      padding: 16px 20px;
      background-color: #00aec1;

      &.bi-list::before {
        font-size: 30px;
        margin-left: -4px;
        margin-bottom: -4px;
      }

      &.bi-x::before {
        font-size: 40px;
        display: flex;
        align-content: center;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        margin-left: -9px;
      }

    }

  }

  /* Menu expandible */
  .expand-menu {
    position: fixed;
    bottom: -10vh;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #388fa0;
    overflow: hidden;
    transition: height 0.4s ease-in-out;
    z-index: 1000;
    color: var(--white-color);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 2rem;

    &.expanded {
      height: 99vh;
    }

    .floating-menu-list {
      list-style: none;
      padding: 0;
      margin: 0;
      padding: 20px;

      .floating-menu-item {
        display: flex;
        align-items: center;
        color: var(--white-color);
        text-decoration: none;
        padding: 10px 0;

        .floating-menu-text {
          color: var(--white-color);
          font-family: var(--font-regular-400);
          font-size: 19px;
          font-style: normal;
          font-weight: 400;
          line-height: 26px;
        }

        &.is-active {
          span {
            color: var(--secondary-color);
          }

        }

      }

    }

    .submenu {
      padding-left: 10px;

      .submenu-list {
        list-style: none;
        padding: 0;
        margin: 0;

        .submenu-item {
          display: flex;
          flex-direction: row;
          flex-wrap: nowrap;
          align-content: center;
          align-items: flex-start;
          justify-content: flex-start;

          a {
            padding-left: 5px;
            display: block;
            color: white;
            text-decoration: none;
            padding: 5px 8px;
            font-size: 0.9em;

            span {
              color: var(--white-color);
              font-family: var(--font-regular-400);
              font-size: 17px;
              font-style: normal;
              font-weight: 400;
              line-height: 20px;
            }

            &.is-active {
              span {
                color: var(--secondary-color);
              }

            }

          }

        }

      }

    }

  }

  hr.hrmenu {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .menu-mobile-footer {
    display: flex;
    align-items: center;
    gap: 20px;
  }

}

/*--------------------------------------------------------------
# Page Interiores Blank
--------------------------------------------------------------*/
section.emptyheader {
  width: 100%;
  height: auto;
  flex-shrink: 0;
  padding: 6rem 0 1rem 0;
}

section.page-content {
  width: 100%;
  height: auto;
  flex-shrink: 0;
  padding: 2rem 1.5rem 4rem;

  .title {
    color: #4D61AB;
    font-family: var(--font-semibold-600);
    font-size: clamp(2.925rem, 3vw + 1.75rem, 3.75rem);
    font-style: normal;
    font-weight: 600;
    line-height: 64px;
    margin-bottom: 1.2rem;
  }

  .subtitleh2 {
    font-size: clamp(2.375rem, 2vw + 1.5rem, 3rem);
    margin-bottom: 1rem;
  }

  .subtitleh3 {
    font-size: clamp(1.875rem, 2vw + 1.5rem, 2.5rem);
    margin-bottom: .8rem;
  }

}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--primary-color);
  border: solid 1px var(--primary-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;

  i {
    font-size: 24px;
    color: var(--white-color);
    line-height: 0;
  }

  &:hover {
    background-color: var(--white-color);
    border: solid 1px var(--primary-color);
  }

  &:hover i {
    color: var(--primary-color);
  }

  &.active {
    visibility: visible;
    opacity: 1;
    bottom: 55px;
  }

}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--white-color);
  transition: all 0.6s ease-out;

  &:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid var(--white-color);
    border-color: var(--primary-color) transparent var(--primary-color) transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1.5s linear infinite;
  }

}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


/*--------------------------------------------------------------
# Search Overlay Div
--------------------------------------------------------------*/
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(148, 148, 148, 0.85);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;

  &.active {
    opacity: 1;
    visibility: visible;
  }

  .search-overlay__header {
    .search-overlay__close {
      position: absolute;
      top: 2rem;
      right: 2rem;
      background: none;
      border: none;
      cursor: pointer;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;

      &::before,
      &::after {
        content: '';
        position: absolute;
        width: 2px;
        height: 24px;
        background-color: var(--white-color);
        transform-origin: center;
        transition: ease .3s;
      }

      &::before {
        transform: rotate(45deg);
      }

      &::after {
        transform: rotate(-45deg);
      }

      &:hover:before,
      &:hover::after {
        background-color: var(--secondary-color);
      }

    }

  }

  .search-overlay__content {
    width: 100%;
    max-width: 800px;
    padding: 2rem;
    position: relative;

    .search-overlay__form {
      display: flex;
      gap: 1rem;
      width: 100%;

      .search-overlay__input {
        flex: 1;
        padding: 0.4rem 1.2rem;
        font-size: 1.25rem;
        outline: none;

        border-radius: 100px;
        background: var(--color-gris-claro);
        border: 2px solid var(--color-gris-claro);
        color: var(--color-gris-oscuro);
        transition: ease .3s;

        &:focus {
          border: 2px solid var(--primary-color);
        }

      }

    }

  }

}


/*--------------------------------------------------------------
# lightbox video youtube
--------------------------------------------------------------*/
#lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 2, 10, 0.97);
  backdrop-filter: blur(15px);
  opacity: 0;
  z-index: 99999;
  transition: .3s ease;

  &.lightbox-fade-in {
    opacity: 1;
  }

  &.lightbox-fade-out {
    opacity: 0;
  }

  #lightbox-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--white-color);
    cursor: pointer;
    transition: .3s ease;
    cursor: pointer;

    &hover i {
      color: var(--primary-color);
    }

  }

  #lightbox-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 990px;
  }

  #youtubeIframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }

}


/* estilos editor */
.text-align-left {
  text-align: left;
}

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

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

.politica-de-privacidad-page a {
  color: var(--primary-color);
}

.politica-de-privacidad-page a:hover {
  text-decoration: underline;
}


/*--------------------------------------------------------------
# user login
--------------------------------------------------------------*/
.login-wrapper {

  .img-login {
    width: 100%;
    text-align: center;
    margin: 0 auto 2rem auto;
  }

  .input-wrapper {
    margin-bottom: 1.4rem;
  }

  .form-checkboxes {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    gap: 6px;

    label {
      margin-right: 10px;
    }

  }

  .user-login-form {
    border: solid 2px var(--secondary-color);
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 3rem;
    border-radius: var(--border-radius24);

    label {
      display: block;
      width: 100%;
      margin-bottom: 5px;
      font-family: var(--font-semibold-600);
      font-size: 18px;
      color: var(--color-negro70);
    }

    input[type="text"],
    input[type="password"] {
      display: block;
      width: 100%;
      margin-bottom: 1rem;
      border: solid 1px var(--secondary-color);
      padding: 5px 10px;
      font-family: var(--font-regular-400);
      font-size: 18px;
      color: var(--color-negro70);
    }

    input[type="submit"] {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
      color: var(--white-color);
      border-radius: 50px;
      font-family: var(--font-regular-400);
      font-style: normal;
      font-weight: 400;
      text-decoration: none;
      cursor: pointer;
      transition: .3s ease;

      height: 48px;
      padding: 10px 38px;
      gap: 8px;
      font-size: 18px;
      line-height: 140%;

      background: var(--color-primary-default);
      color: var(--white-color);
      border: solid 1px var(--color-primary-default);

      margin-top: 1rem;

      left: 59%;
      position: relative;

    }

    input[type="submit"]:hover {
      background: var(--color-primary-hover);
      border: solid 1px var(--color-primary-hover);
    }

    input[type="submit"]:active {
      background: var(--color-primary-active);
      border: solid 1px var(--color-primary-active);
    }

    input[type="submit"]:disabled {
      background: var(--color-primary-disabled);
      border: solid 1px var(--color-primary-disabled);
      cursor: not-allowed;
    }

  }

}

main>.form-content {
  padding: 0;
  margin: 0;
  margin-top: -10px;
}


/* form contact */
.form-content-knowus {

  margin-top: 4rem;

  .login-wrapper {
    .img-login {
      display: none;
    }
  }

  .container-fluid {
    background-color: var(--color-negro70);
    color: var(--white-color);
    padding: 5rem;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
  }

  .container {
    .row {
      align-content: flex-start;
      flex-direction: row;
      align-items: flex-start;
    }

    .get-to-know-us-section {
      background-color: #4A4A4A;
      color: var(--white-color);
      padding: 4rem 0;
      overflow: hidden;
    }

    .form-knowus-left {
      padding-right: 2rem;

      .title {
        color: var(--white-color);
        font-size: clamp(2.5rem, 3vw + 1.75rem, 3.75rem);
        font-style: normal;
        font-weight: 600;
        line-height: 1.2;
        margin-bottom: 1.5rem;
      }

      .description-text {
        color: var(--white-color);
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
        text-wrap: balance;
      }

      .btn-join {
        background-color: #6a5acd;
        color: var(--white-color);
        border: none;
        border-radius: 50px;
        padding: 10px 25px;
        font-weight: 500;
        transition: background-color 0.3s ease, transform 0.2s ease;
        text-decoration: none;
        display: inline-flex;
        align-items: center;

        i {
          margin-left: 0.5rem;
        }

        &:hover {
          background-color: #5849b0;
        }

      }

    }

    .form-knowus-element {

      .form-label {
        color: #cccccc;
        margin-bottom: 0.3rem;
        font-size: 0.9rem;
      }

      .prospects-label {
        color: #cccccc;
        display: block;
      }

      .form-control {
        background-color: var(--white-color);
        color: #212529;
        border: 1px solid #ced4da;
        border-radius: 8px;
        padding: 12px 15px;
        box-shadow: none;
        width: 100%;

        &:focus {
          border-color: var(--primary-color);
          box-shadow: 0 0 0 0.2rem rgba(var(--primary-rgb), 0.25);
        }

        &::placeholder {
          color: #6c757d;
          opacity: 1;
        }

      }

      .form-check-label {
        color: #e0e0e0;
        font-size: 0.9rem;
        padding-left: 0.25rem;
        cursor: pointer;
      }

      .form-check-input {
        border-radius: 4px;
        border: 1px solid #adb5bd;
        background-color: var(--white-color);
        cursor: pointer;

        &:checked {
          background-color: var(--primary-color);
          border-color: var(--primary-color);
        }

        &:focus {
          box-shadow: 0 0 0 0.2rem rgba(var(--primary-rgb), 0.25);
          border-color: var(--primary-color);
        }

      }

      .form-check-inline {
        margin-right: 0.75rem;
      }

      .invalid-feedback {
        color: #ffbaba;
      }


      .form-control.is-invalid {
        border-color: #ffbaba;
      }

      &.was-validated .form-control:invalid {
        border-color: #ffbaba;
      }

      &.was-validated .form-control:invalid~.invalid-feedback,
      &.was-validated .form-select:invalid~.invalid-feedback,
      &.was-validated .form-check-input:invalid~.invalid-feedback {
        display: block;
      }

    }

  }

}

p.required {
  font-size: 14px;
}

span.asterisco {
  color: var(--primary-color);
  font-size: 18px;
}


/* Responsive Styles */
@media (max-width: 1200px) {}

@media (max-width: 1024px) {

  section.emptyheader {
    padding: 7rem 0 1rem 0;
  }

  .form-content-knowus {
    .container {
      .form-knowus-left {
        .title {
          font-size: 52px;
        }

      }

    }

  }

}

@media (max-width: 992px) {

  .header,
  #header {

    padding: 15px 0;

    .navbar-brand {
      width: 200px;
      height: 60px;
      background-size: 90%;
    }

    &.changeColor {
      .navbar-brand {
        width: 200px;
        height: 60px;
        background-size: 90%;
      }

    }

    &.header-scrolled {
        .navbar-brand {
            width: 200px;
            height: 60px;
            background-size: 90%;
        }
    }

  }


  .heroint2 {
    height: 330px;

    .title {
      line-height: 45px;
    }

  }

  .form-content-knowus {
    .container {
      .form-knowus-left {
        padding-right: 0;
        text-align: center;
      }

      .form-knowus-right {
        margin-top: 2rem;
      }

      .form-knowus-element {
        .text-end {
          text-align: center !important;
        }

      }

      .prospects-group {
        .d-flex {
          justify-content: center;
        }

      }

    }

  }

}

@media (max-width: 768px) {

  .gap-3 {
      gap: .5rem !important;
  }

  .header,
  #header {
    .btn-medium {
        height: 40px;
        padding: 7px 16px;
        gap: 5px;
        font-size: 16px;
        line-height: 1;
    }
  }

  .header,
  #header {

    padding: 15px 0;

    .navbar-brand {
      width: 150px;
      height: 60px;
      background-size: 90%;
    }

    &.changeColor {
      .navbar-brand {
        width: 150px;
        height: 60px;
        background-size: 90%;
      }

    }

     &.header-scrolled {
        .navbar-brand {
            width: 150px;
            height: 60px;
            background-size: 90%;
        }
    }   

  }

  .submenu {
    min-width: 300px;
  }

  .form-content-knowus {
    .container-fluid {
      padding: 2.5rem 2rem;

    }

  }

  .accordion-button {
    position: relative;
    display: flex;
    align-items: flex-start !important;
    line-height: 1.1 !important;
    font-size: 29px !important;
  }



}

@media (max-width: 600px) {

  .header,
  #header {

    padding: 5px 0;

    .navbar {
      padding-left: 0;
      padding-right: 0;

      .navbar-brand {
        width: 190px;
        height: 60px;
        background-size: 100%;
      }

      .tools {
        .claim {
          margin-right: 0;
        }

        .btn-search,
        .dropdown,
        .btn-contacto-content .btn {
          display: none;
        }

      }

    }

  }

  nav.floating-menu {
    display: none;
  }

  nav.floating-menu-mobile {
    display: block;
  }

  .heroint2 {
    height: 290px;
  }

  section.breadcrumbs {
    .container {
      padding-left: 1.5rem;
      padding-right: 1.5rem;
    }

  }

}

@media (max-width: 560px) {

  ul li {
    margin-bottom: 5px;
  }

  nav.floating-menu {
    padding: 1px 25px 1px 1px;
    border-radius: 0;

    .floating-menu-list {
      gap: 12px;

      .floating-menu-item {
        span {
          font-size: 14px;
        }

      }

    }

  }

  .header,
  #header {
    padding: 10px;
  }

  section.emptyheader {
    padding: 4rem 0 1rem 0;
  }

  section.breadcrumbs {
    nav {
      padding-left: 10px;
    }
  }

}

@media (max-width: 480px) {

  section.emptyheader {
    padding: 3rem 0 1rem 0;
  }

  .header,
  #header {
    .navbar {
      .navbar-brand {
        width: 130px;
        height: 40px;
        background-size: 98%;
      }

    }

    .tools {
      .claim {
        padding: 0px 10px;

        a {
          font-size: 14px;
        }

      }

    }

  }

  .search-overlay {
    .search-overlay__content {
      .search-overlay__form {
        flex-direction: column;
        align-items: flex-end;

        .search-overlay__input {
          width: 100%;
        }

        buttom {
          max-width: 180px;
        }

      }

    }

  }

  nav.floating-menu-mobile {
    .expand-menu {
      &.expanded {
        height: 95vh;
      }

      .floating-menu-list {
        list-style: none;
        padding: 0;
        margin: 0;
        padding: 10px;

        .floating-menu-item {

          padding: 5px 0;
        }

        li {
          margin-bottom: 5px;
        }

      }

      .submenu {
        .submenu-list {
          .submenu-item {
            margin-bottom: 0px;
          }

        }

      }

    }

  }

  .form-content-knowus {
    .container {
      .form-knowus-left {
        .title {
          font-size: 45px;
        }
      }
    }
  }

  .header,
  #header {
    z-index: 990;

    &.sticky-top {
      z-index: 990;
    }

    &.changeColor {
      z-index: 990;
    }

  }

}

@media (max-width: 420px) {

  nav.floating-menu-mobile {
    .expand-menu {
      padding: 1.5rem;

      &.expanded {
        height: 95vh;
      }

      .floating-menu-list {
        .floating-menu-item {
          .floating-menu-text {
            font-size: 18px;
            line-height: 1;
          }

        }

      }

      .submenu {
        .submenu-list {
          .submenu-item {
            a {
              padding-left: 8px !important;
            }
          }

        }

      }

    }

  }

  section.page-content {
    padding: 0rem;

    .title {
      font-size: 43px;
      line-height: 1.2;
      margin-bottom: 1.2rem;
    }

    .subtitleh2 {
      font-size: 37px;
      line-height: 1.1;
    }

  }

  section.breadcrumbs {
    .container {
      .row {
        margin-bottom: 0 !important;
      }
    }

    nav {
      .breadcrumb {
        ol {
          margin-bottom: 0;
        }
      }
    }

  }

}

@media (max-width: 414px) {

  nav.floating-menu-mobile {
    .floating-menu-list {

      max-height: 50vh;
      overflow: scroll;

    }

  }

}


@media (max-width: 320px) {

  .header,
  #header {
    .navbar {
      .navbar-brand {
        width: 120px;
        height: 30px;
        background-size: 98%;
      }

      .btn-contacto-content a {
        display: none;
      }

    }

  }

  .heroint2 {
    height: 280px;

    .title {
      line-height: 45px;
      font-size: 35px;
      line-height: 1.2;
    }

  }

}