/** Open Sans **/
/** Light */
@font-face {
  font-family: "Open Sans";
  font-weight: 300;
  src: url("https://d28dhcwclph1gf.cloudfront.net/css_common/propios/fonts/Open_Sans/OpenSans-Light.woff2");
  font-style: light;
  font-display: swap;
}

/** Regular */
@font-face {
  font-family: "Open Sans";
  font-weight: 400;
  src: url("https://d28dhcwclph1gf.cloudfront.net/css_common/propios/fonts/Open_Sans/OpenSans-Regular.woff2");
  font-style: regular;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  font-weight: 600;
  src: url("https://d28dhcwclph1gf.cloudfront.net/css_common/propios/fonts/Open_Sans/OpenSans-SemiBold.woff2");
  font-style: semibold;
  font-display: swap;
}

/** Bold */
@font-face {
  font-family: "Open Sans";
  font-weight: 700;
  src: url("https://d28dhcwclph1gf.cloudfront.net/css_common/propios/fonts/Open_Sans/OpenSans-Bold.woff2");
  font-style: bold;
  font-display: swap;
}

/** Montserrat Alternates **/
/** Light */
@font-face {
  font-family: "Montserrat Alternates";
  font-weight: 300;
  src: url("https://d28dhcwclph1gf.cloudfront.net/css_common/propios/fonts/Montserrat_Alternates/MontserratAlternates-Light.ttf");
  font-style: light;
  font-display: swap;
}

/** Regular */
@font-face {
  font-family: "Montserrat Alternates";
  font-weight: 400;
  src: url("https://d28dhcwclph1gf.cloudfront.net/css_common/propios/fonts/Montserrat_Alternates/MontserratAlternates-Regular.ttf");
  font-style: regular;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat Alternates";
  font-weight: 600;
  src: url("https://d28dhcwclph1gf.cloudfront.net/css_common/propios/fonts/Montserrat_Alternates/MontserratAlternates-SemiBold.ttf");
  font-display: swap;
}

/** Bold */
@font-face {
  font-family: "Montserrat Alternates";
  font-weight: 700;
  src: url("https://d28dhcwclph1gf.cloudfront.net/css_common/propios/fonts/Montserrat_Alternates/MontserratAlternates-Bold.ttf");
  font-style: bold;
  font-display: swap;
}

* {
  font-family: "Open Sans";
}

.montserrat {
  font-family: 'montserrat Alternates', sans-serif;
}

.openSans {
  font-family: 'Open Sans', sans-serif;
}

.montserratOriginal {
  font-family: 'montserrat', sans-serif;
}

.text {
  font-size: 1rem;
  font-weight: 400;
}

.text.title {
  font-size: 3.2rem;
}

.text.size-xxl {
  font-size: 4.5rem;
}

.text.size-xl2 {
  font-size: 3rem;
}

.text.size-xl {
  font-size: 2.5rem;
}

.text.size-l {
  font-size: 2.2rem;
}

.text.size-md2 {
  font-size: 2rem;
}

.text.size-md {
  font-size: 1.8rem;
}

.text.size-sm2 {
  font-size: 1.5rem;
}

.text.size-sm {
  font-size: 1.2rem;
}

.text.size-s {
  font-size: 1.1rem;
}

.text.size-xs {
  font-size: .8rem;
}

.text.semibold {
  font-weight: 600;
}

.text.bold {
  font-weight: 700;
}

.text.medium {
  font-weight: 500;
}

.text.light {
  font-weight: 400;
}

.text.capital {
  text-transform: capitalize;
}

.text.uppercase {
  text-transform: uppercase;
}

.text.italic {
  font-style: italic;
}

.text.underline {
  text-decoration: underline !important;
}

.text.through {
  text-decoration: line-through;
}

.text.elipsis {
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  text-align: left;
  word-wrap: break-word;
}

.text.elipsis-two-lines {
  display: block;
  display: -webkit-box;
  max-width: 100%;
  max-height: 4rem;
  margin: 0 auto;
  line-height: 1;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 2rem;
  margin-top: 1px;
}

.text.break-word {
  overflow-wrap: break-word;
}

.text.text-shadow {
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
}

.text.text-shadow-white {
  text-shadow: 3px 3px 3px rgba(255, 255, 255, 0.3);
}

.text.text-white {
  color: #fff;
}

.text.text-gray {
  color: #808080;
}

.text.text-darkGray {
  color: #707070;
}

.text.text-black {
  color: #000;
}

.text.text-red, .text.alert-error {
  color: #fa225b;
}

.text.text-blue {
  color: #7a89ab;
}

.text.text-green, .text.alert-success {
  color: #62A215;
}

.text.text-darkGreen {
  color: #053a05;
}

.text.text-classonlive-green {
  color: #62A215;
}

.text.text-classonlive-orange {
  color: #FF751A;
}

.text.text-classonlive-gray {
  color: #424e4f;
}

.text.text-blog-gray {
  color: #cccccc;
}

.text.center {
  text-align: center;
}

.text.left {
  text-align: left;
}

.text.right {
  text-align: right;
}

.modal .modal-dialog {
  max-width: 600px;
  margin: 30px auto;
  height: 100%;
  top: 2rem;
  min-width: 50%;
}

.modal .modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.modal .modal-header .modal-title {
  width: 100%;
}

.modal .modal-header.column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.modal .center {
  text-align: center;
}

.modal .modal-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.modal .modal-footer a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.modal .modal-footer .btn {
  border: 0px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  letter-spacing: 1px;
}

.modal .modal-footer .btn-orange {
  background: #FF751A;
}

.modal .modal-footer .btn-orange:hover {
  background: #f46200;
}

.modal .modal-footer .btn-outline-secondary {
  border: 1px solid transparent;
  border-color: #6c757d;
}

/*loader principal*/
#backg {
  background: #b0c4de repeat scroll;
  /* These three lines are for transparency in all browsers. */
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  opacity: .5;
  height: 10000px;
  left: 0;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 999;
}

#loader {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 999990;
  width: 100px;
  height: 100px;
  margin: -75px 0 0 -75px;
  border: 16px solid #fff;
  border-radius: 50%;
  border-top: 16px solid #00de00;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/* Add animation to "page content" */
.animate-bottom {
  position: relative;
  -webkit-animation-name: animatebottom;
  -webkit-animation-duration: 1s;
  animation-name: animatebottom;
  animation-duration: 1s;
}

@-webkit-keyframes animatebottom {
  from {
    bottom: -100px;
    opacity: 0;
  }
  to {
    bottom: 0px;
    opacity: 1;
  }
}

@keyframes animatebottom {
  from {
    bottom: -100px;
    opacity: 0;
  }
  to {
    bottom: 0;
    opacity: 1;
  }
}

/*fin loader*/
.loader {
  background: white repeat scroll;
  /* These three lines are for transparency in all browsers. */
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  opacity: 1;
  height: 100%;
  left: 0;
  margin: 0;
  padding: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99998;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.cssload-loader {
  z-index: 99999;
  display: block;
  height: 6em;
  width: 6em;
  background-color: #338899;
  border-radius: 4.5em 4.5em 4.5em 4.5em;
  -o-border-radius: 4.5em 4.5em 4.5em 4.5em;
  -ms-border-radius: 4.5em 4.5em 4.5em 4.5em;
  -webkit-border-radius: 4.5em 4.5em 4.5em 4.5em;
  -moz-border-radius: 4.5em 4.5em 4.5em 4.5em;
  box-shadow: inset 0 0 0 0.5em #eceae0;
  -o-box-shadow: inset 0 0 0 0.5em #eceae0;
  -ms-box-shadow: inset 0 0 0 0.5em #eceae0;
  -webkit-box-shadow: inset 0 0 0 0.5em #eceae0;
  -moz-box-shadow: inset 0 0 0 0.5em #eceae0;
  background: linear-gradient(-45deg, #B3B3B3, #B3B3B3 50%, #CCCCCC 50%, #CCCCCC);
  background: -moz-linear-gradient(-45deg, #B3B3B3, #B3B3B3 50%, #CCCCCC 50%, #CCCCCC);
  background-blend-mode: multiply;
  border-top: 5px solid #B3B3B3;
  border-left: 5px solid #B3B3B3;
  border-bottom: 5px solid #CCCCCC;
  border-right: 5px solid #CCCCCC;
  animation: cssload-roto 1.15s infinite linear;
  -o-animation: cssload-roto 1.15s infinite linear;
  -ms-animation: cssload-roto 1.15s infinite linear;
  -webkit-animation: cssload-roto 1.15s infinite linear;
  -moz-animation: cssload-roto 1.15s infinite linear;
}

.cssload-loader.classonlive {
  background-color: #338899;
  border-radius: 4.5em 4.5em 4.5em 4.5em;
  -o-border-radius: 4.5em 4.5em 4.5em 4.5em;
  -ms-border-radius: 4.5em 4.5em 4.5em 4.5em;
  -webkit-border-radius: 4.5em 4.5em 4.5em 4.5em;
  -moz-border-radius: 4.5em 4.5em 4.5em 4.5em;
  box-shadow: inset 0 0 0 0.5em #eceae0;
  -o-box-shadow: inset 0 0 0 0.5em #eceae0;
  -ms-box-shadow: inset 0 0 0 0.5em #eceae0;
  -webkit-box-shadow: inset 0 0 0 0.5em #eceae0;
  -moz-box-shadow: inset 0 0 0 0.5em #eceae0;
  background: linear-gradient(-45deg, #00C900, #00C900 50%, #01DE01 50%, #01DE01);
  background: -moz-linear-gradient(-45deg, #00C900, #00C900 50%, #01DE01 50%, #01DE01);
  background-blend-mode: multiply;
  border-top: 5px solid #00C900;
  border-left: 5px solid #00C900;
  border-bottom: 5px solid #01DE01;
  border-right: 5px solid #01DE01;
}

@keyframes cssload-roto {
  0% {
    -webkit-transform: rotateZ(0deg);
            transform: rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateZ(360deg);
            transform: rotateZ(360deg);
  }
}

@-webkit-keyframes cssload-roto {
  0% {
    -webkit-transform: rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateZ(360deg);
  }
}

.container-loader-square {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.loader-square {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 33% 33% 33%;
      grid-template-columns: 33% 33% 33%;
  grid-gap: 2px;
  width: 80px;
  height: 80px;
  border: 0;
}

.loader-square > div {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  background: #2c3e50;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-animation: loaderSquare 2s infinite linear;
          animation: loaderSquare 2s infinite linear;
}

.loader-square > div:nth-of-type(1), .loader-square > div:nth-of-type(5), .loader-square > div:nth-of-type(9) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.loader-square > div:nth-of-type(4), .loader-square > div:nth-of-type(8) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.loader-square > div:nth-of-type(2), .loader-square > div:nth-of-type(6) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.loader-square > div:nth-of-type(3) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

@-webkit-keyframes loaderSquare {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  80% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}

@keyframes loaderSquare {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  80% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}

.calendar-container {
  position: relative;
}

.calendar-container .container-loader-square {
  position: absolute;
  top: 3%;
  left: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.8);
  width: 100%;
  height: 97%;
}

@media (max-width: 767px) {
  .modal-dialog {
    width: calc(100% - 20px);
  }
}

ul, li, a {
  text-decoration: none !important;
  list-style: none;
}

.customText, .note-editor {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  width: 100%;
}

.customText ul, .note-editor ul {
  text-decoration: inherit !important;
  list-style: disc;
  margin-top: 0;
  margin-bottom: 10px;
}

.customText ol, .note-editor ol {
  display: block;
  list-style-type: decimal;
  -webkit-margin-before: 1em;
          margin-block-start: 1em;
  -webkit-margin-after: 1em;
          margin-block-end: 1em;
  -webkit-margin-start: 0px;
          margin-inline-start: 0px;
  -webkit-margin-end: 0px;
          margin-inline-end: 0px;
  -webkit-padding-start: 40px;
          padding-inline-start: 40px;
  margin-top: 0;
  margin-bottom: 10px;
}

.customText li, .note-editor li {
  display: list-item;
  text-align: -webkit-match-parent;
  text-decoration: inherit !important;
  list-style: inherit !important;
  padding: inherit !important;
  padding-left: 0 !important;
}

.note-toolbar {
  position: relative;
  z-index: inherit !important;
}

a {
  cursor: pointer;
}

.elipsis {
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  text-align: left;
}

p {
  margin: 0;
  padding: 0;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  height: 100%;
  width: 100%;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
}

@media (max-width: 767px) {
  html {
    font-size: 10px;
    height: auto;
  }
  html body {
    height: auto;
  }
}

@media (max-width: 1024px) {
  html {
    font-size: 10px;
  }
}

@media (max-width: 1280px) {
  html {
    font-size: 10px;
  }
}

body.noscroll {
  overflow: hidden;
}

.btn-classonlive {
  background-color: #00bc00;
  border: 0px;
  border-radius: 8px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  letter-spacing: 1px;
  height: 50px;
}

.btn-classonlive:hover {
  background-color: #00de00;
  color: #fff;
  border: 0px;
}

.btn-orange {
  background: #FF751A;
}

.btn-orange:hover {
  background: #f46200;
}

.btn {
  outline: none;
  border-radius: 3px !important;
  cursor: pointer;
}

.btn:focus {
  outline: none;
}

.btn.btn-green {
  background: #62A215 !important;
  color: #fff;
}

.btn.btn-green:hover {
  opacity: .8;
}

.btn.btn-orange {
  background: #FF751A;
  color: #fff;
}

.btn.btn-orange:hover {
  opacity: .8 !important;
}

.btn.btn-line-green {
  background: #fff;
  color: #62A215;
  border: 2px solid #62A215;
}

.btn.btn-line-green:hover {
  background: #62A215;
  color: #fff;
}

.btn.btn-line-orange {
  background: #fff;
  color: #FF751A;
  border: 2px solid #FF751A;
}

.btn.btn-line-orange:hover {
  background: #FF751A;
  color: #fff;
}

.btn.btn-grey {
  color: #1b1d1e !important;
  background: #758789 !important;
  color: white !important;
}

.btn.btn-white {
  color: #1b1d1e !important;
  background: white !important;
  border: 1px solid #1b1d1e !important;
}

.btn.btn-white:hover {
  background: lightgray !important;
}

.panel-default > .panel-heading, .panel {
  background-color: #e6e6e6;
  border: 0 none;
  -webkit-box-shadow: none;
          box-shadow: none;
  position: initial !important;
  top: 35px !important;
}

.note-popover {
  display: none;
}

.btn-sm {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}

.note-editor.note-frame .note-editing-area .note-editable {
  padding: 10px;
  overflow: auto;
  color: #000;
  word-wrap: break-word;
  background-color: #fff;
}

.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: 400;
  line-height: 1.42857143;
  color: #333;
  white-space: nowrap;
}

a {
  color: #808080;
}

a.active {
  font-weight: 700;
}

a:hover {
  color: #000;
}

.btn-free,
.btn-register {
  border: 2px solid #FF751A;
  border-radius: 8px;
  height: 35px;
  padding-left: 15px;
  padding-right: 15px;
  /*margin-left: 10px;
    margin-right: 15px;*/
  background-color: #FF751A;
  margin: 0 auto;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  cursor: pointer;
  -webkit-appearance: none;
}

.btn-free:hover,
.btn-register:hover {
  opacity: .8 !important;
  border: 2px solid #FF751A;
  color: white;
}

.btn-free:focus,
.btn-register:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.btn-register {
  border: 2px solid #62A215;
  background-color: #62A215;
}

.btn-register:hover {
  border: 2px solid #62A215;
}

.menu {
  color: #777;
  background-color: #fff;
  -webkit-box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.2);
  padding: 0.2em 1.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  font-weight: 600;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  left: 0;
  /* Posicionamos la cabecera al lado izquierdo */
  top: 0;
  /* Posicionamos la cabecera pegada arriba */
  position: fixed;
  z-index: 20;
  width: 100%;
}

@media (max-width: 1024px) {
  .menu {
    display: none;
  }
}

.menu .link {
  margin: 10px;
  font-size: 1.5rem;
  color: #808080;
}

.menu .link.active {
  font-weight: 700;
}

.menu .logo_header {
  width: auto;
  height: 50px;
}

.menu .link-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 75%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.menu .link-container .link {
  color: #777;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  margin: 13px;
}

.menu .link-container .link:hover {
  color: #333;
  text-decoration: none;
  font-weight: 600;
  text-decoration: none;
}

.menu .link-container .link.active {
  font-weight: 800;
  color: #62A215 !important;
}

.menu .link-container .iniciasesion {
  text-align: right;
}

.menu .link-container .iniciasesion a {
  margin: 1em;
  color: #777;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  margin: 13px;
}

.menu .link-container .iniciasesion a .icon {
  font-size: 1.5em;
  padding-right: 5px;
}

.menu .link-container .miPanelLink {
  margin: 1em;
}

.menuresponsive {
  display: none;
}

.menuresponsive .logo-menu {
  width: 40%;
}

.menuresponsive .logo-menu img {
  width: 100%;
  height: auto;
}

@media (max-width: 1024px) {
  .menuresponsive {
    color: #777;
    background-color: #fff;
    -webkit-box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.2);
            box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.2);
    padding: 0.5em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    left: 0;
    /* Posicionamos la cabecera al lado izquierdo */
    top: 0;
    /* Posicionamos la cabecera pegada arriba */
    position: fixed;
    z-index: 20;
    width: 100%;
  }
  .menuresponsive .links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 1rem;
  }
  .menuresponsive .links .pruebagratis {
    margin-right: 1rem;
  }
}

.listmenu {
  display: none;
}

@media (max-width: 1024px) {
  .listmenu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 1em;
    -webkit-transition: translateY 2s ease;
    transition: translateY 2s ease;
    -webkit-transform: translateY(3%);
            transform: translateY(3%);
    background-color: #fff;
    background-color: #fff;
    -webkit-box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.2);
            box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.2);
    left: 0px;
    top: 45px;
    position: fixed;
    z-index: 18;
    width: 100%;
  }
  .listmenu a {
    color: #777;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 13px;
  }
  .listmenu a:hover {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    text-decoration: none;
  }
  .listmenu div {
    margin: 10px;
  }
  .listmenu button {
    border: 1px solid #62A215;
    border-radius: 8px;
    font-size: 15px;
    height: 35px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 15px;
    background-color: #62A215;
  }
  .listmenu button a {
    color: #fff;
  }
  .listmenu.close {
    display: none;
    -webkit-transition: translateY 2s ease;
    transition: translateY 2s ease;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    /*transform: translateY(0%);
                transition: transform 340ms ease;*/
  }
}

@media (max-width: 400px) {
  .listmenu {
    top: 35px !important;
    max-height: 450px;
    overflow: scroll;
  }
}

@media (min-width: 401px) and (max-width: 800px) {
  .listmenu {
    top: 39px;
    max-height: 200px;
    overflow: scroll;
  }
}

.iconmenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.iconmenu .mdi {
  margin-right: 5px;
}

.btn-access {
  height: 35px;
  background-color: rgba(0, 0, 0, 0);
  border: 2px solid #FF751A;
  border-radius: 8px;
  color: #FF751A;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0;
}

.btn-access:hover {
  background: #FF751A;
  color: white !important;
}

.miPanelOption {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 2rem;
}

@media (max-width: 1024px) {
  .miPanelOption {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.check-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1rem;
}

.check-box .acceptTerminos {
  margin-right: 1rem;
}

.btn-green {
  background-color: #62A215;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  width: auto;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.btn-green:hover {
  opacity: .8;
}

#register-modal .btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1rem;
}

#footer {
  padding-top: 60px;
  width: 100%;
  background: #fff;
  padding-bottom: 0;
}

#footer.footer-line {
  border-top: 2px solid rgba(0, 0, 0, 0.1);
}

#footer #footerTop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#footer #footerTop .info-section {
  width: 20%;
}

@media (max-width: 768px) {
  #footer #footerTop {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  #footer #footerTop .info-section {
    width: 50%;
    margin-bottom: 20px;
  }
}

#footer #footerTop .title-footerTop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#footer #footerTop .links {
  padding-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#footer #footerTop .links .link {
  color: #424e4f;
  margin-bottom: 1rem;
}

#footer #footerTop .links a {
  cursor: pointer;
}

#footer #footerTop .links a:hover {
  color: #62A215;
  text-decoration: none;
}

#footer #footerTop .footer-follow .rrss-link {
  color: #A2A2A2;
}

#footer #footerTop .footer-follow .rrss-link:hover {
  opacity: .8;
}

#footer #footerTop .footer-follow .rrss-link.facebook {
  color: #3C5A99;
}

#footer #footerTop .footer-follow .rrss-link.twitter {
  color: #1691DB;
}

#footer #footerTop .footer-follow .rrss-link.instagram {
  color: #C13584;
}

#footer #footerTop .footer-follow .rrss-link.youtube {
  color: #FF0000;
}

#footer .banner-section {
  width: 100%;
}

#footer .banner-section a {
  width: 100%;
  height: 100%;
}

#footer .banner-section .banner {
  width: 100%;
  height: auto;
}

#footer #footerDown {
  margin-top: 55px;
  margin-bottom: 55px;
  padding-top: 15px;
  text-align: left;
  border-top: 1px solid #424e4f;
}

#footer #footerDown .nomSection {
  margin-bottom: 2rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#footer #footerDown .medios {
  width: 100%;
  margin-top: 1rem;
}

#footer #footerDown .medios .logos-notice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#footer #footerDown .medios .logos-notice .logo-notice {
  width: 16%;
}

@media (max-width: 767px) {
  #footer #footerDown .medios .logos-notice {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #footer #footerDown .medios .logo-notice {
    width: 35% !important;
  }
}

#footer #footerDown .supports-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 767px) {
  #footer #footerDown .supports-logo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #footer #footerDown .supports-logo .text {
    margin-bottom: 1rem;
    text-align: center;
  }
  #footer #footerDown .supports-logo img {
    height: 100px;
    width: auto;
    margin-bottom: 1rem;
  }
  #footer #footerDown .supports-logo img:last-child {
    margin-bottom: 0;
  }
  #footer #footerDown .supports-logo .startup {
    height: 40px;
  }
}

#creditshome {
  padding: 1.2rem;
  margin-top: 20px;
  background-color: #4D4D4D;
}

#cookies-message {
  display: block;
  background-color: #E6E6E6;
  border-top: 1px solid #ECECEC;
  position: fixed;
  height: 50px;
  overflow: hidden;
  z-index: 1002;
  -webkit-transition: left 0.4s cubic-bezier(0.94, 0.06, 0.32, 0.95) 0s;
  transition: left 0.4s cubic-bezier(0.94, 0.06, 0.32, 0.95) 0s;
  bottom: 0;
  width: 100%;
}

#cookies-message .cookies-content {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #000;
  text-align: center;
  padding-top: 10px;
}

#cookies-message .cookies-content p a {
  color: #1b1d1e;
  font-weight: 600;
  text-decoration: underline;
}

#cookies-message .cookies-content p,
#cookies-message .cookies-content button {
	display: inline-block;
}

#cookies-message .cookies-content .btn-outline-orange {
	height: 35px;
  margin-left: 35px;
}

.closeX {
  margin-left: 40px;
  color: #1b1d1e;
}

@font-face {
  font-family: "Antre";
  src: url("/css_common/propios/fonts/Antre/antre.otf") format("opentype");
  font-display: swap;
}

.row {
  margin: 0;
}

section {
  padding-top: 3%;
  padding-bottom: 2%;
}

.section_info {
  padding: 2em 1em;
  margin-top: 2%;
}

.section_info.bg {
  background: #f2f0f1;
}

.section_info .title_section {
  width: 100%;
  text-align: center;
  margin-top: 4em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.section_info .title_section .mdi {
  margin-right: 5px;
}

@media (max-width: 1024px) {
  .section_info .title_section {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .section_info .title_section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.section_info .content_section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .section_info .content_section {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }
  .section_info .content_section .col-md-5 {
    max-width: 100%;
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    margin-top: 10px;
    padding: 30px;
  }
}

.hidden-xs {
  display: block;
}

.visible-xs {
  display: none;
}

.hidden-sm {
  display: none;
}

@media (max-width: 1024px) {
  .hidden-xs {
    display: none !important;
  }
  .visible-xs {
    display: block !important;
  }
  .hidden-sm {
    display: inline !important;
  }
}

.swiper-container {
  width: 100%;
  height: 100%;
}

.typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.btn-outline-orange {
  background-color: rgba(0, 0, 0, 0);
  border: 2px solid #FF751A;
  border-radius: 8px;
  color: #FF751A;
  cursor: pointer;
  width: auto;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.btn-outline-orange:hover {
  background-color: #FF751A;
  border: 2px solid #FF751A;
  border-radius: 8px;
  color: #fff;
}

.btn-outline-green {
  background-color: rgba(0, 0, 0, 0);
  border: 2px solid #62A215;
  border-radius: 8px;
  color: #62A215;
  cursor: pointer;
  width: auto;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.btn-outline-green:hover {
  background-color: #62A215;
  border: 2px solid #62A215;
  border-radius: 8px;
  color: #fff;
}

.btn-green {
  background-color: #62A215;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  width: auto;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.btn-green:hover {
  opacity: .8;
}

#header-page {
  /*fixed*/
  background-size: cover;
  background-color: #000;
  position: relative;
  text-align: left;
  padding-top: 12%;
  padding-bottom: 7%;
}

#header-page #title {
  margin: 0 auto;
  text-align: left;
  width: 100%;
  float: left;
}

#header-page #title .animation-title .special-letter {
  font-family: 'Antre';
  font-weight: lighter;
}

#header-page #title .btn-container {
  margin-top: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#header-page #title .btn-container .btn:first-child {
  margin-right: 1rem;
}

#header-page #title .btn-container .btn {
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 1024px) {
  #header-page {
    padding-bottom: 30px;
    padding: 15% 0;
    padding-left: 15px;
    padding-right: 15px;
    text-align: center;
  }
  #header-page .visible-xs {
    padding: 0;
    margin-bottom: 30px;
  }
}

#values {
  padding: 7rem 0;
  margin-bottom: 3em;
  background: #E6E6E6;
}

#values .section_classonlive {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#values .content_classonlive {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 1rem;
}

#values .content_classonlive .textoClassonlive {
  text-align: center;
}

#values .content_classonlive .btn-green {
  margin-top: 1rem;
}

#values .content_classonlive #video video {
  width: 100%;
}

@media (max-width: 767px) {
  #values .content_classonlive #video {
    margin-bottom: 2rem;
  }
}

.business-swiper {
  width: 100%;
  padding: 20px;
  margin-bottom: 20px;
  margin-bottom: 0;
}

.business-swiper .swiper-title {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.business-swiper .swiper-container {
  height: 200px;
}

@media (max-width: 767px) {
  .business-swiper {
    height: 400px;
  }
}

.business-swiper .swiper-slide {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.section_imp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.section_imp .title_section {
  margin-bottom: 20px;
}

.section_imp .events {
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.section_imp .events .event {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 3em;
  width: calc(100% / 5);
}

.section_imp .events .event .icon {
  margin-right: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 1024px) {
  .section_imp .events {
    width: 100%;
  }
  .section_imp .events .event {
    width: calc(50% - 1rem);
  }
}

@media (max-width: 767px) {
  .section_imp .events {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.section_imp .btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.section_imp .btn-container .btn-free {
  margin: 0;
  margin-right: 1rem;
}

.section_imp .btn-container .event-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.section_imp .btn-container .event-btn .btn {
  height: 50px;
}

@media (max-width: 767px) {
  .section_imp .btn-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section_imp .btn-container .btn-free {
    margin: 0;
    margin-bottom: 1rem;
  }
}

.withoutComplications {
  padding-bottom: 2em 1em;
}

.infographic {
  width: 100%;
  height: 200px;
  background: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.infographic .element {
  width: calc(20% - 5px);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.infographic .element:after {
  content: "";
  position: absolute;
  left: 50%;
  height: 2px;
  width: 100%;
  top: 36%;
  background: #fff;
}

.infographic .element:last-child:after {
  content: "";
  position: absolute;
  left: 50%;
  height: 0;
  width: 0;
  top: 36%;
  background: #fff;
}

.infographic .element .element-graph {
  position: relative;
  height: 50px;
  width: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}

.infographic .element .element-graph:before {
  content: "";
  position: absolute;
  left: 0;
  width: 50px;
  height: 50px;
  top: 0;
  background: #fff;
  -webkit-box-shadow: inset 0 0 0 0.3125em #fff;
          box-shadow: inset 0 0 0 0.3125em #fff;
  border-radius: 50%;
  z-index: 2;
  -webkit-transition: .3s;
  transition: .3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  color: #62A215;
  font-size: 1rem;
}

.infographic .element .element-graph .text {
  width: 50px;
  z-index: 9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 767px) {
  .infographic {
    display: none;
  }
}

.section_unlimited .title_section {
  margin: 5% 0;
  margin-top: 0;
}

.section_unlimited .unlimited {
  border: solid 2px #E8E2E2;
  border-radius: 1em;
  padding: 1em;
}

@media (max-width: 767px) {
  .section_unlimited .unlimited {
    margin-bottom: 10px;
  }
}



.helpme {
  padding-bottom: 5%;
}

.helpme .help {
  text-align: center;
  margin-top: 5%;
}

.helpme .btnHelp {
  background-color: rgba(255, 255, 255, 0);
  border: 2px solid #656464;
  border-radius: 4px;
  color: #272727;
  margin-left: 0px;
  cursor: pointer;
  height: 45px;
  margin-top: 5%;
}

.helpme .medium {
  font-weight: 600;
}

.helpme .btn-send {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.functions {
  margin-top: 30px;
}

.functions .blq_elements {
  width: 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 10px 0;
}

.functions .blq_elements .mdi {
  margin-right: 5px;
}

@media (max-width: 767px) {
  .functions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .functions .blq_elements {
    width: 100%;
  }
}

.btn_our_list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
}

.testimonials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.testimonials .title_section {
  margin-bottom: 30px;
}

.testimonials .testimonials-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media (max-width: 767px) {
  .testimonials .testimonials-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .testimonials .testimonials-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.testimonials .testimonials-content .testimonial {
  width: 25%;
  min-height: 480px;
  background: #fff;
  -webkit-box-shadow: 3px 3px 10px rgba(128, 128, 128, 0.5);
          box-shadow: 3px 3px 10px rgba(128, 128, 128, 0.5);
  padding: 40px;
  overflow: hidden;
  border-radius: 10px;
}

@media (max-width: 767px) {
  .testimonials .testimonials-content .testimonial {
    width: 90%;
    margin-bottom: 20px;
    min-height: auto;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .testimonials .testimonials-content .testimonial {
    width: 90%;
    margin-bottom: 20px;
    min-height: auto;
  }
}

.testimonials .testimonials-content .testimonial:nth-child(2) {
  margin: 0 5%;
}

@media (max-width: 767px) {
  .testimonials .testimonials-content .testimonial:nth-child(2) {
    margin: 0;
    margin-bottom: 20px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .testimonials .testimonials-content .testimonial:nth-child(2) {
    margin: 0;
    margin-bottom: 20px;
  }
}

.testimonials .testimonials-content .testimonial .testimonial-header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.testimonials .testimonials-content .testimonial .testimonial-header .testimonial-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
}

.testimonials .testimonials-content .testimonial .testimonial-header .testimonial-img .img {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.testimonials .testimonials-content .testimonial .testimonial-header .testimonial-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.testimonials .testimonials-content .testimonial .testimonial-content {
  border-top: 1px solid #707070;
  margin-top: 15px;
  padding-top: 10px;
}

.cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 8rem;
}

.cta .btn {
  width: 100%;
  border: 0;
  height: auto;
}

#cta {
  padding: 8% 0;
  background: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  #cta {
    padding: 10px;
  }
  #cta .text {
    text-align: center;
  }
}

#cta .formCTA {
  width: 50%;
  margin: 0 auto;
  margin-top: 1rem;
}

@media (max-width: 767px) {
  #cta .formCTA {
    width: 80%;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  #cta .formCTA {
    width: 80%;
  }
}

#cta .form-control {
  height: 50px;
}

#cta .form-inline .form-control {
  width: 100%;
  border: solid 1px #00bc00;
  border-radius: 5px;
}

#cta .alignButtonCTA {
  text-align: left;
}

#cta .btnHomeCTA {
  width: 100%;
  background-color: #00bc00;
  height: 50px;
  margin-right: 0px;
  border: none;
  border-radius: 5px;
}

#cta .btnHomeCTA:hover {
  background-color: #008D00;
}

#cta .accept-checkbox {
  margin-top: 10px;
}

.recibidoPhone {
  padding: 10px;
}

.classonliveNumbers {
  width: 100%;
  background: #EEB501;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2rem 1rem;
}

.classonliveNumbers .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.classonliveNumbers .title .img-container {
  width: 50%;
}

.classonliveNumbers .title .img-container img {
  width: 100%;
}

@media (max-width: 767px) {
  .classonliveNumbers .title .img-container {
    width: 25%;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .classonliveNumbers .title {
    max-width: 100%;
    width: 100%;
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    padding-top: 1rem;
  }
  .classonliveNumbers .title .img-container {
    width: 10%;
  }
}

.classonliveNumbers .num {
  width: 220px;
  height: 220px;
  margin-right: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background: transparent;
  border-radius: 50%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem;
}

.classonliveNumbers .num:last-child {
  margin-right: 0;
}

@media (max-width: 767px) {
  .classonliveNumbers .num {
    width: auto;
    height: auto;
    margin-bottom: 1rem;
    width: calc(50% - 1rem);
    height: auto;
  }
}

@media (max-width: 1024px) {
  .classonliveNumbers {
    margin-top: 1rem;
  }
  .classonliveNumbers .num {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: calc(50% - 1rem);
    height: auto;
  }
}

#yourAcademy {
  padding-top: 0;
}

#yourAcademy .section_info {
  margin-top: 0;
}

#newadd .content_section {
  margin-top: 2rem;
}

#newadd .circle {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 4px solid #62A215;
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0 0 10px lightgrey;
          box-shadow: 0 0 10px lightgrey;
  -webkit-transition: cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media (max-width: 767px) {
  #newadd .circle {
    width: 200px;
    height: 200px;
    margin-bottom: 1.2rem;
  }
  #newadd .circle:last-child {
    margin-bottom: 0;
  }
}

@media (min-width: 767px) and (max-width: 1024px) {
  #newadd .circle {
    width: 200px;
    height: 200px;
    margin: 1rem 0;
  }
}

#newadd .circle:hover {
  background: #62A215;
  color: #fff;
}

@media (max-width: 1024px) {
  .section_classonlive {
    padding: 2rem;
  }
}


.videosContainer {
  display: flex;
  padding-left: 5rem !important;
  padding-right: 5rem !important;
}

@media (max-width: 1024px) {
  .videosContainer {
    display: inherit;
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }
}

.videoContainer {
  width: 50%;
}

@media (max-width: 1024px) {
  .videoContainer {
    width: 100%;
  }
}