body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background-position: top left;
  background-repeat: no-repeat;
  padding: 0px;
  margin: 0px;
  color: #0c1118;
  background: #fff;
  line-height: 1.4em;
}
.capriola {
  font-family: 'Capriola', Arial, Helvetica, sans-serif;
}
#debug {
  position: fixed;
  width: 600px;
  opacity: 0.8;
  filter: alpha(opacity=80);
  background-color: #333333;
  color: #FFFFFF;
  border: 1px solid #666666;
  padding: 10px;
  z-index: 1000;
  top: 10px;
  left: 10px;
}
div.content {
  margin: 0 auto 0 auto;
  width: 1150px;
  text-align: left;
}
@media only screen and (max-width: 1279px) {
  div.content {
    width: 960px;
  }
}
@media only screen and (max-width: 1023px) {
  div.content {
    max-width: 100%;
    width: 100%;
    padding: 0px 20px;
  }
}
header {
  padding: 20px 0px;
  background: #59a5d8;
  color: #fff;
}
header svg {
  width: 20px;
  height: 20px;
}
header div.cols {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header div.cols div.logo {
  width: 170px;
}
header div.cols div.logo img {
  width: 170px;
  height: 48px;
}
header div.cols div.logo svg {
  display: none;
}
@media only screen and (max-width: 500px) {
  header div.cols div.logo {
    width: 150px;
  }
}
header div.cols div.menu {
  text-transform: uppercase;
  font-size: 12px;
}
header div.cols div.menu a {
  transition: 0.3s;
  display: inline-block;
}
header div.cols div.menu a.higlighted {
  background-color: #fff;
  padding: 8px 16px;
  border-radius: 5px;
  color: #59a5d8;
  animation: heartbeat 2s infinite;
}
header div.cols div.menu a:not(:last-child) {
  margin-right: 40px;
}
@media only screen and (max-width: 1023px) {
  header div.cols div.menu a:not(:last-child) {
    margin-right: 30px;
  }
}
@media only screen and (max-width: 767px) {
  header div.cols div.menu a:not(:last-child) {
    margin-right: 20px;
  }
}
header div.cols div.menu a.active {
  font-weight: bold;
}
header div.cols div.menu a:hover {
  transform: scale(1.2);
}
header div.cols div.menu a.flag {
  margin-right: 10px;
}
header div.cols div.menu a.flag img {
  width: 20px;
  height: 15px;
}
header div.cols div.menu a.flag.last-child {
  margin-right: 0px;
}
header div.cols div.menu-toggler {
  display: none;
}
@media only screen and (max-width: 767px) {
  header {
    padding: 10px 0px;
  }
  header div.cols div.menu,
  header div.cols div.account {
    display: none;
  }
  header div.cols div.menu-toggler {
    display: block;
    padding: 20px;
    cursor: pointer;
  }
}
@media only screen and (max-width: 767px) {
  header.active {
    top: 0px;
    left: 0px;
    position: fixed;
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    z-index: 2;
    background-color: #fff;
  }
  header.active div.content {
    background: #fff;
    margin: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    padding: 20px;
    background-color: #59a5d8;
  }
  header.active div.content div.menu-toggler {
    display: none;
  }
  header.active div.content div.menu {
    display: block;
    text-align: center;
    flex-grow: 1;
    flex-direction: column;
    justify-content: center;
    display: flex;
  }
  header.active div.content div.menu a {
    display: block;
    margin: 0px;
    font-size: 20px;
  }
  header.active div.content div.menu a:not(:last-child) {
    margin-bottom: 30px;
  }
  header.active div.content div.account {
    display: block;
    width: 100%;
  }
  header.active div.content div.account .button {
    width: 100%;
    padding: 2em;
  }
  header.active div.content div.logo {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
  }
  header.active div.content div.logo img {
    width: 150px;
  }
  header.active div.content div.logo svg {
    display: block;
    cursor: pointer;
  }
}
footer {
  background-color: #59a5d8;
  color: #fff;
  padding: 50px 0px;
}
footer span {
  display: inline-block;
}
footer div.cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 1023px) {
  footer div.cols {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 1279px) {
  footer div.cols {
    gap: 20px;
  }
}
@media only screen and (max-width: 500px) {
  footer div.cols {
    grid-template-columns: 1fr;
  }
}
footer div.cols div.logo {
  font-size: 16px;
  font-weight: bold;
}
footer div.cols div.logo img {
  width: 170px;
  height: 48px;
}
footer div.cols div.title {
  margin-bottom: 20px;
  font-weight: bold;
}
footer div.cols div.social svg {
  background-color: #fff;
  color: #59a5d8;
  width: 30px;
  height: 30px;
  padding: 5px;
  line-height: 30px;
  text-align: center;
  margin-right: 10px;
  transition: 0.3s;
}
footer div.cols div.social svg:hover {
  background: #59a5d8;
  color: #fff;
}
footer div.copyright {
  text-align: center;
}
.button {
  display: inline-block;
  background: #ccc;
  color: #fff;
  text-transform: uppercase;
  line-height: 1em;
  padding: 1em 2em;
  border-radius: 20px;
  font-size: 12px;
  transition: 0.3s;
  border: 0px;
  text-align: center;
}
.button.primary {
  background: #59a5d8;
}
.button.secondary {
  background: #fff;
  color: #59a5d8;
}
.button.white {
  background: #fff;
  color: #59a5d8;
}
.button.bordered {
  background: transparent;
  color: #59a5d8;
  border: 1px solid #59a5d8;
}
.button:hover {
  opacity: 0.8;
}
.button.neutral {
  cursor: default;
}
.button.neutral * {
  cursor: default;
}
.button.neutral:hover {
  opacity: 1;
}
.button svg {
  margin-right: 0.5em;
  cursor: pointer;
  width: 10px;
  height: 10px;
}
div.cols_50 {
  display: flex;
}
@media only screen and (max-width: 767px) {
  div.cols_50 {
    flex-direction: column;
  }
}
div.col_50 {
  width: 50%;
  padding-left: calc(100vw/2 - 1150px/2);
  padding-right: calc(100vw/2 - 1150px/2);
}
@media only screen and (max-width: 1279px) {
  div.col_50 {
    padding-left: calc(100vw/2 - 960px/2);
    padding-right: calc(100vw/2 - 960px/2);
  }
}
@media only screen and (max-width: 1023px) {
  div.col_50 {
    padding: 0px 20px;
  }
}
@media only screen and (max-width: 767px) {
  div.col_50 {
    padding: 0px 15px;
    width: 100%;
  }
}
div.col_50.padded_all {
  padding: calc(100vw/2 - 1150px/2);
}
@media only screen and (max-width: 1279px) {
  div.col_50.padded_all {
    padding: calc(100vw/2 - 960px/2);
  }
}
@media only screen and (max-width: 1023px) {
  div.col_50.padded_all {
    padding: 20px;
  }
}
div.form_std label {
  display: block;
  margin-top: 20px;
}
div.form_std input[type=email],
div.form_std input[type=text],
div.form_std input[type=password] {
  width: 100%;
  background: transparent;
  border: 1px solid #ddd;
  font-size: 14px;
  font-family: inherit;
  margin-bottom: 0px;
  padding: 10px;
  border-radius: 5px;
  margin-top: 10px;
}
div.form_std input[type=email]::placeholder,
div.form_std input[type=text]::placeholder,
div.form_std input[type=password]::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
div.form_std textarea {
  width: 100%;
  background: transparent;
  border: 1px solid #ddd;
  font-size: 14px;
  color: inherit;
  font-family: inherit;
  margin-bottom: 0px;
  padding: 10px;
  border-radius: 5px;
  height: 150px;
  margin-top: 10px;
}
div.form_std textarea::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
div.form_std button i {
  transition: 0.3s;
}
div.form_std button:hover i {
  margin-left: 10px;
}
div.form_std .camp.checkbox {
  display: flex;
  margin: 20px 0px;
  align-items: flex-start;
  font-size: 14px;
}
div.form_std .camp.checkbox input {
  flex-shrink: 0;
  margin-top: 5px;
}
div.form_std .camp.checkbox label {
  margin-top: 0px;
  margin-left: 10px;
  cursor: pointer;
}
div.form_std .camp.checkbox label a {
  font-weight: bold;
}
div.form_std div.thanks {
  font-weight: bold;
  text-align: center;
  margin-top: 50px;
  font-size: 30px;
}
div.form_std div.wbutton {
  text-align: right;
}
div.form_std div.error {
  color: #ff0000;
  margin-top: 20px;
}
div.form_std div.link {
  text-align: center;
  margin-top: 40px;
}
div.form_std div.camps50 {
  display: flex;
}
div.form_std div.camps50 > div {
  width: calc(33.33% - 10px);
}
div.form_std div.camps50 > div:not(:last-child) {
  margin-right: 20px;
}
@media only screen and (max-width: 500px) {
  div.form_std div.camps50 {
    flex-direction: column;
  }
  div.form_std div.camps50 > div {
    width: 100%;
  }
  div.form_std div.camps50 > div:first-child {
    margin-right: 0px;
  }
}
.font-big {
  font-size: 30px;
}
.contained {
  max-width: 400px;
  margin: 0 auto;
  padding: 0px 20px;
  text-align: center;
}
h1,
h2 {
  font-size: inherit;
  font-weight: inherit;
}
.block_title {
  text-align: center;
  font-size: 30px;
  padding-bottom: 30px;
  line-height: 1.4em;
}
@media only screen and (max-width: 500px) {
  .block_title {
    font-size: 25px;
    padding-bottom: 20px;
  }
}
.block_title.sub {
  text-align: inherit;
  font-size: 25px;
}
.banner_cookies {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  position: fixed;
  bottom: 0px;
  z-index: 1000;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  font-size: 12px;
}
.banner_cookies div.cont {
  background: #fff;
  max-width: 90%;
  padding: 20px;
}
.banner_cookies div.checks {
  margin-top: 10px;
  display: none;
}
.banner_cookies div.batn {
  text-align: right;
  margin-top: 10px;
}
.banner_cookies div.batn a {
  margin-bottom: 5px;
}
.banner_cookies label {
  margin-right: 20px;
  cursor: pointer;
}
.banner_cookies label[disabled] {
  cursor: default;
}
.banner_cookies label:last-child {
  margin-right: 0px;
}
#link_aceptar {
  display: none;
}
@keyframes heartbeat {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(0.9);
  }
  40% {
    transform: scale(1);
  }
  60% {
    transform: scale(0.9);
  }
  80% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
/* latin-ext */
@font-face {
  font-family: 'Capriola';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/capriola/v8/wXKoE3YSppcvo1PDlk_1JeEAn38zjdk.woff2) format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Capriola';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/capriola/v8/wXKoE3YSppcvo1PDlk_7JeEAn38z.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v27/KFOlCnqEu92Fr1MmSU5fCRc4AMP6lbBP.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v27/KFOlCnqEu92Fr1MmSU5fABc4AMP6lbBP.woff2) format('woff2');
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v27/KFOlCnqEu92Fr1MmSU5fCBc4AMP6lbBP.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v27/KFOlCnqEu92Fr1MmSU5fBxc4AMP6lbBP.woff2) format('woff2');
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v27/KFOlCnqEu92Fr1MmSU5fCxc4AMP6lbBP.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v27/KFOlCnqEu92Fr1MmSU5fChc4AMP6lbBP.woff2) format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v27/KFOlCnqEu92Fr1MmSU5fBBc4AMP6lQ.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v27/KFOlCnqEu92Fr1MmWUlfCRc4AMP6lbBP.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v27/KFOlCnqEu92Fr1MmWUlfABc4AMP6lbBP.woff2) format('woff2');
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v27/KFOlCnqEu92Fr1MmWUlfCBc4AMP6lbBP.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v27/KFOlCnqEu92Fr1MmWUlfBxc4AMP6lbBP.woff2) format('woff2');
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v27/KFOlCnqEu92Fr1MmWUlfCxc4AMP6lbBP.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v27/KFOlCnqEu92Fr1MmWUlfChc4AMP6lbBP.woff2) format('woff2');
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/roboto/v27/KFOlCnqEu92Fr1MmWUlfBBc4AMP6lQ.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
html {
  scroll-behavior: smooth;
}
* {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0px;
  padding: 0px;
  position: relative;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -moz-osx-font-smoothing: grayscale;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased !important;
}
img {
  border: 0px;
  vertical-align: middle;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
a * {
  cursor: pointer;
}
button {
  cursor: pointer;
}
a:hover {
  text-decoration: none;
}
div.clear {
  clear: both;
}
*:focus {
  outline: none;
}
.aw {
  font-family: 'FontAwesome';
}
input.submit {
  -webkit-appearance: none;
}
.cv {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
strong {
  font-weight: bold;
}
.only-mobile,
.only-little-mobile,
.only-tablet,
.only-mobile-inline,
.only-little-mobile-inline,
.only-tablet-inline {
  display: none !important;
}
.hidden-desktop {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .only-tablet {
    display: block;
  }
  .only-tablet-inline {
    display: inline;
  }
  .only-desktop {
    display: none;
  }
  .hidden-desktop {
    display: block;
  }
  .hidden-tablet {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .only-mobile {
    display: block !important;
  }
  .only-mobile-inline {
    display: inline !important;
  }
  .hidden-mobile {
    display: none;
  }
  .visible-mobile {
    display: block;
  }
}
@media only screen and (max-width: 500px) {
  .hidden-little-mobile {
    display: none;
  }
  .only-little-mobile {
    display: block !important;
  }
  .only-little-mobile-inline {
    display: inline-block !important;
  }
}
#cookies_window {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.7);
  text-align: center;
}
#cookies_window a {
  color: #999;
}
#cookies_window div.close {
  position: absolute;
  background-color: #fff;
  color: #333;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.7);
  width: 25px;
  height: 25px;
  line-height: 25px;
  border-radius: 50%;
  right: -10px;
  top: -10px;
  cursor: pointer;
}
#cookies_window div.window {
  display: block;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
  width: 400px;
  max-width: 90%;
  box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.3);
  background-color: #fff;
}
#cookies_window div.window div.tit {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 10px;
}
#cookies_window div.window div.buttons {
  margin-top: 20px;
}
/*div.slider {
		div.arrows {
			opacity: 0;
			transition: 0.3s;
			position: absolute;
			z-index: 2;
			width: 100%;
			div {
				padding: 10px;
				position: absolute;
				background-color: #fff;
				cursor: pointer;
				opacity: 0.8;
				transition: 0.3s;

			 	&.next {
			 		right: 0px;
			 	}
			 	&:hover {
			 		opacity: 1;
			 	}
			}
		}
		&:hover div.arrows {
			opacity: 1;
		}
		div.paginator {
			position: absolute;
			z-index: 2;
			width: 100%;
			text-align: center;
			bottom: 10px;
			cursor: pointer;
			color: #fff;
			div {
				display: inline-block;
				opacity: 0.5;
				transition: 0.3s;
				margin-right: 4px;
				&:hover {
					opacity: 0.8;
				}
				&.active {
					opacity: 1;
				}
				&:last-child {
					margin-right: 0px;
				}
			}
		}
		div.slides {
			height: 100%;
			div.slide {
				opacity: 0;
				position: absolute;
				width: 100%;
				height: 100%;
				transition: 0.5s;

				&.visible {
					opacity: 1;
				}
			}
		}
	}*/
section.home div.block_title.animated {
  opacity: 0;
  transform: translateX(-200px);
  transition-delay: 0.5s;
  transition: 0.5s;
}
section.home div.block_title.animated.visible-partial {
  opacity: 1;
  transform: translateX(0);
}
section.home div.block_header {
  padding: 0px;
  height: calc(100vh - 88px);
  background-image: url(../img/home/header.webp);
  background-size: cover;
  background-position: -1000px 0;
  background-color: #fff;
  transition: 1s;
  background-color: #59a5d8;
  display: flex;
  align-items: center;
  color: #fff;
}
section.home div.block_header div.textos {
  text-align: right;
}
section.home div.block_header div.textos div {
  font-size: 30px;
  font-weight: bold;
  margin: 20px 0px;
}
section.home div.block_header div.textos img.logo {
  width: 250px;
  height: 193px;
  opacity: 0;
  transform: scale(1.5);
  transition: 0.5s;
}
section.home div.block_header div.textos a.store img {
  width: 150px;
  height: 44px;
}
section.home div.block_header div.textos div.claim,
section.home div.block_header div.textos a {
  opacity: 0;
  transition: 0.5s;
}
section.home div.block_header div.textos div.claim {
  transition-delay: 0.8s;
}
section.home div.block_header div.textos a {
  transition-delay: 1s;
}
section.home div.block_header.in {
  background-position: top right;
}
section.home div.block_header.in div.textos img.logo {
  opacity: 1;
  transform: scale(1);
}
section.home div.block_header.in div.textos div.claim,
section.home div.block_header.in div.textos a {
  opacity: 1;
}
@media only screen and (max-width: 500px) {
  section.home div.block_header {
    height: auto;
    padding: 60px 0px 80px 0px;
    background-image: none;
  }
  section.home div.block_header div.textos {
    text-align: center;
  }
  section.home div.block_header div.textos img.logo {
    width: auto;
  }
  section.home div.block_header div.textos div {
    font-size: 20px;
  }
}
section.home div.block_enterprise {
  background-image: url(../img/home/enterprise.webp);
  background-size: cover;
  background-position: center;
  background-color: #59a5d8;
}
section.home div.block_enterprise div.transparent {
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 80px 0px;
}
@media only screen and (max-width: 767px) {
  section.home div.block_enterprise div.transparent {
    padding: 80px 0px;
  }
}
section.home div.block_enterprise div.transparent div.content {
  text-align: center;
}
section.home div.block_screenshots {
  height: 500px;
  background-image: url(../img/home/mockup.webp);
  background-size: cover;
  background-position: center;
  background-color: #59a5d8;
}
@media only screen and (max-width: 500px) {
  section.home div.block_screenshots {
    height: 400px;
  }
}
section.home div.block_faqs {
  padding: 80px 0px;
}
@media only screen and (max-width: 767px) {
  section.home div.block_faqs {
    padding: 80px 0px;
  }
}
section.home div.block_faqs div.q {
  font-weight: bold;
}
section.home div.block_faqs div.a:not(:last-child) {
  margin-bottom: 20px;
}
section.home div.block_faqs div.q,
section.home div.block_faqs div.a {
  opacity: 0;
  transition: 0.3s;
  transition-delay: 0.5s;
}
section.home div.block_faqs div.q.visible,
section.home div.block_faqs div.a.visible {
  opacity: 1;
}
section.home div.block_quienes {
  padding: 80px 0px;
  color: #fff;
  background-color: #59a5d8;
  font-size: 16px;
}
@media only screen and (max-width: 500px) {
  section.home div.block_quienes {
    padding: 50px 0px;
  }
}
section.home div.block_quienes div.block_title {
  margin-bottom: 30px;
}
section.home div.block_quienes p:not(:last-child) {
  margin-bottom: 10px;
}
section.home div.block_quienes div.text {
  opacity: 0;
  transition: 0.5s;
  transition-delay: 0.5s;
}
section.home div.block_quienes div.text.visible-partial {
  opacity: 1;
}
section.home div.block_quienes div.wbutton {
  text-align: center;
  margin-top: 30px;
}
section.home div.block_quienes div.wbutton a {
  opacity: 0;
  transition: 0.5s;
  transition-delay: 0.5s;
  transform: scale(1.5);
}
section.home div.block_quienes div.wbutton a.visible {
  opacity: 1;
  transform: scale(1);
}
section.home div.block_contacta {
  padding: 80px 0px;
  background-color: #f9f9f9;
}
@media only screen and (max-width: 500px) {
  section.home div.block_contacta {
    padding: 50px 0px;
  }
}
section.home div.block_contacta div.cols {
  display: flex;
}
section.home div.block_contacta div.cols div.datos {
  width: 25%;
  flex-shrink: 0;
}
section.home div.block_contacta div.cols div.datos svg {
  width: 15px;
  vertical-align: middle;
  margin-right: 5px;
}
@media only screen and (max-width: 767px) {
  section.home div.block_contacta div.cols {
    flex-direction: column;
  }
  section.home div.block_contacta div.cols div.datos {
    width: 100%;
  }
}
section.home div.block_contacta div.g-recaptcha {
  margin-top: 20px;
}
div.block_destacados {
  padding: 80px 0px;
  box-shadow: inset 0px 0px 30px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 500px) {
  div.block_destacados {
    padding: 50px 0px;
  }
}
div.block_destacados div.cols-tips {
  display: flex;
  align-items: center;
}
div.block_destacados div.cols-tips div.tips-left,
div.block_destacados div.cols-tips div.tips-right {
  width: 50%;
  flex-shrink: 0;
  text-align: center;
}
div.block_destacados div.cols-tips div.tips-left {
  padding-right: 40px;
}
div.block_destacados div.cols-tips div.tips-right {
  padding-left: 40px;
}
div.block_destacados div.cols-tips svg {
  width: 30px;
  height: 30px;
}
div.block_destacados div.cols-tips div.tips-img img {
  opacity: 0;
  transition: 1.5s;
  transition-delay: 0.5s;
}
div.block_destacados div.cols-tips div.tips-img img.visible-partial {
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  div.block_destacados div.cols-tips {
    align-items: flex-start;
  }
  div.block_destacados div.cols-tips div.tips-img {
    display: none;
  }
  div.block_destacados div.cols-tips div.tips-left,
  div.block_destacados div.cols-tips div.tips-right {
    width: 50%;
    text-align: left;
    padding: 0px;
  }
  div.block_destacados div.cols-tips div.tips-left {
    padding-right: 15px;
  }
  div.block_destacados div.cols-tips div.tips-right {
    padding-left: 15px;
  }
}
@media only screen and (max-width: 500px) {
  div.block_destacados div.cols-tips {
    flex-direction: column;
  }
  div.block_destacados div.cols-tips div.tips-left,
  div.block_destacados div.cols-tips div.tips-right {
    width: 100%;
    padding: 0px;
  }
}
div.block_destacados div.tips {
  margin-top: 40px;
}
div.block_destacados div.tips div.icon {
  color: #59a5d8;
  font-size: 30px;
}
div.block_destacados div.tips div.icon svg {
  opacity: 0;
  transition: 0.5s;
  transition-delay: 0.5s;
  transform: scale(1.5);
}
div.block_destacados div.tips div.icon svg.right {
  transition-delay: 0.8s;
}
div.block_destacados div.tips div.icon svg.visible {
  opacity: 1;
  transform: scale(1);
}
div.block_destacados div.tips div.tit {
  font-size: 20px;
  font-weight: bold;
  color: #59a5d8;
  margin: 10px 0px;
  opacity: 0;
  transition: 0.5s;
  transition-delay: 0.8s;
}
div.block_destacados div.tips div.tit.visible {
  opacity: 1;
}
div.block_destacados div.tips div.txt {
  opacity: 0;
  transition: 0.5s;
  transition-delay: 0.8s;
}
div.block_destacados div.tips div.txt.visible {
  opacity: 1;
}
div.block_destacados div.tips div.tip:not(:last-child) {
  margin-bottom: 30px;
}
div.block_funcionalidades {
  padding: 80px 0px;
}
@media only screen and (max-width: 500px) {
  div.block_funcionalidades {
    padding: 50px 0px;
  }
}
div.block_funcionalidades .block_title {
  padding-bottom: 0px;
}
div.block_funcionalidades .block_subtitle {
  text-align: center;
  padding-bottom: 30px;
}
div.block_funcionalidades div.more div.more_text,
div.block_funcionalidades div.more div.less_link {
  display: none;
}
div.block_funcionalidades div.more.more_shown div.more_text {
  display: block;
}
div.block_funcionalidades div.more.more_shown div.less_link {
  display: inline-block;
}
div.block_funcionalidades div.more.more_shown div.more_link {
  display: none;
}
div.block_funcionalidades div.more div.more_link,
div.block_funcionalidades div.more div.less_link {
  cursor: pointer;
  padding: 0.5em 1em;
  margin-top: 10px;
}
div.block_funcionalidades div.more div.more_text {
  display: none;
}
div.block_funcionalidades div.cols-tips {
  display: flex;
  align-items: center;
}
div.block_funcionalidades div.cols-tips div.tips-left,
div.block_funcionalidades div.cols-tips div.tips-right {
  width: 40%;
  flex-shrink: 0;
}
div.block_funcionalidades div.cols-tips div.tips-left {
  padding-right: 40px;
  text-align: right;
}
div.block_funcionalidades div.cols-tips div.tips-right {
  padding-left: 40px;
}
div.block_funcionalidades div.cols-tips svg {
  width: 30px;
  height: 30px;
}
div.block_funcionalidades div.cols-tips div.tips-img img {
  opacity: 0;
  transition: 1.5s;
  transition-delay: 0.5s;
}
div.block_funcionalidades div.cols-tips div.tips-img img.visible-partial {
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  div.block_funcionalidades div.cols-tips {
    align-items: flex-start;
  }
  div.block_funcionalidades div.cols-tips div.tips-img {
    display: none;
  }
  div.block_funcionalidades div.cols-tips div.tips-left,
  div.block_funcionalidades div.cols-tips div.tips-right {
    width: 50%;
    text-align: left;
    padding: 0px;
  }
  div.block_funcionalidades div.cols-tips div.tips-left {
    padding-right: 15px;
  }
  div.block_funcionalidades div.cols-tips div.tips-right {
    padding-left: 15px;
  }
}
@media only screen and (max-width: 500px) {
  div.block_funcionalidades div.cols-tips {
    flex-direction: column;
  }
  div.block_funcionalidades div.cols-tips div.tips-left,
  div.block_funcionalidades div.cols-tips div.tips-right {
    width: 100%;
    padding: 0px;
  }
}
div.block_funcionalidades div.tips {
  margin-top: 40px;
}
div.block_funcionalidades div.tips div.icon {
  color: #59a5d8;
  font-size: 30px;
}
div.block_funcionalidades div.tips div.icon svg {
  opacity: 0;
  transition: 0.5s;
  transition-delay: 0.5s;
  transform: scale(1.5);
}
div.block_funcionalidades div.tips div.icon svg.right {
  transition-delay: 0.8s;
}
div.block_funcionalidades div.tips div.icon svg.visible {
  opacity: 1;
  transform: scale(1);
}
div.block_funcionalidades div.tips div.tit {
  font-size: 20px;
  font-weight: bold;
  color: #59a5d8;
  margin: 10px 0px;
  opacity: 0;
  transition: 0.5s;
  transition-delay: 0.8s;
}
div.block_funcionalidades div.tips div.tit.visible {
  opacity: 1;
}
div.block_funcionalidades div.tips div.txt {
  opacity: 0;
  transition: 0.5s;
  transition-delay: 0.8s;
}
div.block_funcionalidades div.tips div.txt.visible {
  opacity: 1;
}
div.block_funcionalidades div.tips div.tip:not(:last-child) {
  margin-bottom: 30px;
}
div.block_logos {
  background-color: #fff;
  padding: 80px 0px 70px 0px;
}
@media only screen and (max-width: 500px) {
  div.block_logos {
    padding: 50px 0px 40px 0px;
  }
}
div.block_logos .block_title {
  padding-bottom: 0px;
}
div.block_logos .block_subtitle {
  text-align: center;
  padding-bottom: 30px;
}
div.block_logos.dark {
  background-color: #59a5d8;
  color: #fff;
  margin-bottom: 50px;
}
div.block_logos div.logos {
  text-align: center;
}
div.block_logos div.logos span.logo {
  transition: 0.3s;
  opacity: 0;
  transform: scale(2);
  display: inline-block;
}
div.block_logos div.logos span.logo.visible-partial {
  opacity: 1;
  transform: scale(1);
}
div.block_logos div.logos span.logo:nth-child(50) {
  transition-delay: 25000ms;
}
div.block_logos div.logos span.logo:nth-child(49) {
  transition-delay: 24500ms;
}
div.block_logos div.logos span.logo:nth-child(48) {
  transition-delay: 24000ms;
}
div.block_logos div.logos span.logo:nth-child(47) {
  transition-delay: 23500ms;
}
div.block_logos div.logos span.logo:nth-child(46) {
  transition-delay: 23000ms;
}
div.block_logos div.logos span.logo:nth-child(45) {
  transition-delay: 22500ms;
}
div.block_logos div.logos span.logo:nth-child(44) {
  transition-delay: 22000ms;
}
div.block_logos div.logos span.logo:nth-child(43) {
  transition-delay: 21500ms;
}
div.block_logos div.logos span.logo:nth-child(42) {
  transition-delay: 21000ms;
}
div.block_logos div.logos span.logo:nth-child(41) {
  transition-delay: 20500ms;
}
div.block_logos div.logos span.logo:nth-child(40) {
  transition-delay: 20000ms;
}
div.block_logos div.logos span.logo:nth-child(39) {
  transition-delay: 19500ms;
}
div.block_logos div.logos span.logo:nth-child(38) {
  transition-delay: 19000ms;
}
div.block_logos div.logos span.logo:nth-child(37) {
  transition-delay: 18500ms;
}
div.block_logos div.logos span.logo:nth-child(36) {
  transition-delay: 18000ms;
}
div.block_logos div.logos span.logo:nth-child(35) {
  transition-delay: 17500ms;
}
div.block_logos div.logos span.logo:nth-child(34) {
  transition-delay: 17000ms;
}
div.block_logos div.logos span.logo:nth-child(33) {
  transition-delay: 16500ms;
}
div.block_logos div.logos span.logo:nth-child(32) {
  transition-delay: 16000ms;
}
div.block_logos div.logos span.logo:nth-child(31) {
  transition-delay: 15500ms;
}
div.block_logos div.logos span.logo:nth-child(30) {
  transition-delay: 15000ms;
}
div.block_logos div.logos span.logo:nth-child(29) {
  transition-delay: 14500ms;
}
div.block_logos div.logos span.logo:nth-child(28) {
  transition-delay: 14000ms;
}
div.block_logos div.logos span.logo:nth-child(27) {
  transition-delay: 13500ms;
}
div.block_logos div.logos span.logo:nth-child(26) {
  transition-delay: 13000ms;
}
div.block_logos div.logos span.logo:nth-child(25) {
  transition-delay: 12500ms;
}
div.block_logos div.logos span.logo:nth-child(24) {
  transition-delay: 12000ms;
}
div.block_logos div.logos span.logo:nth-child(23) {
  transition-delay: 11500ms;
}
div.block_logos div.logos span.logo:nth-child(22) {
  transition-delay: 11000ms;
}
div.block_logos div.logos span.logo:nth-child(21) {
  transition-delay: 10500ms;
}
div.block_logos div.logos span.logo:nth-child(20) {
  transition-delay: 10000ms;
}
div.block_logos div.logos span.logo:nth-child(19) {
  transition-delay: 9500ms;
}
div.block_logos div.logos span.logo:nth-child(18) {
  transition-delay: 9000ms;
}
div.block_logos div.logos span.logo:nth-child(17) {
  transition-delay: 8500ms;
}
div.block_logos div.logos span.logo:nth-child(16) {
  transition-delay: 8000ms;
}
div.block_logos div.logos span.logo:nth-child(15) {
  transition-delay: 7500ms;
}
div.block_logos div.logos span.logo:nth-child(14) {
  transition-delay: 7000ms;
}
div.block_logos div.logos span.logo:nth-child(13) {
  transition-delay: 6500ms;
}
div.block_logos div.logos span.logo:nth-child(12) {
  transition-delay: 6000ms;
}
div.block_logos div.logos span.logo:nth-child(11) {
  transition-delay: 5500ms;
}
div.block_logos div.logos span.logo:nth-child(10) {
  transition-delay: 5000ms;
}
div.block_logos div.logos span.logo:nth-child(9) {
  transition-delay: 4500ms;
}
div.block_logos div.logos span.logo:nth-child(8) {
  transition-delay: 4000ms;
}
div.block_logos div.logos span.logo:nth-child(7) {
  transition-delay: 3500ms;
}
div.block_logos div.logos span.logo:nth-child(6) {
  transition-delay: 3000ms;
}
div.block_logos div.logos span.logo:nth-child(5) {
  transition-delay: 2500ms;
}
div.block_logos div.logos span.logo:nth-child(4) {
  transition-delay: 2000ms;
}
div.block_logos div.logos span.logo:nth-child(3) {
  transition-delay: 1500ms;
}
div.block_logos div.logos span.logo:nth-child(2) {
  transition-delay: 1000ms;
}
div.block_logos div.logos span.logo:nth-child(1) {
  transition-delay: 500ms;
}
div.block_logos div.logos img {
  max-height: 40px;
  max-width: 120px;
  margin: 0px 20px 20px 20px;
}
div.block_logos div.logos img:hover {
  opacity: 0.6;
}
div.block_logos div.logos img.height {
  max-height: 70px;
}
div.block_logos div.articles {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
div.block_logos div.articles div.article {
  width: calc(33% - 20px);
  margin-bottom: 40px;
  padding: 20px;
}
div.block_logos div.articles div.article:hover {
  border-radius: 8px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}
div.block_logos div.articles div.article div.img {
  margin-bottom: 20px;
  text-align: center;
}
div.block_logos div.articles div.article div.img img {
  object-fit: contain;
  height: 80px;
  width: 150px;
  border-radius: 5px;
}
div.block_logos div.articles div.article h2 {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 10px;
  line-height: 1.3em;
}
div.block_logos div.articles div.article div.extract {
  margin-bottom: 20px;
}
div.block_logos div.articles div.article div.link {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  div.block_logos div.articles {
    flex-direction: column;
  }
  div.block_logos div.articles div.article {
    width: 100%;
    margin-bottom: 40px;
  }
  div.block_logos div.articles div.article:last-child {
    margin-bottom: 0px;
  }
}
div.clients-carousel-wrapper {
  margin-top: 20px;
  margin-bottom: 30px;
  height: 300px;
  overflow: auto;
  padding-top: 10px;
}
div.clients-carousel-wrapper div.clients-carousel {
  width: 10000px;
  padding-left: 10px;
  min-width: 100%;
  text-align: center;
}
div.clients-carousel-wrapper div.clients-carousel a.client {
  display: inline-block;
  width: 300px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 20px;
  margin-right: 30px;
  height: 260px;
  vertical-align: top;
}
div.clients-carousel-wrapper div.clients-carousel a.client:last-child {
  margin-right: 0px;
}
div.clients-carousel-wrapper div.clients-carousel a.client div.logo {
  text-align: center;
}
div.clients-carousel-wrapper div.clients-carousel a.client img {
  width: auto;
  max-height: 50px;
}
div.clients-carousel-wrapper div.clients-carousel a.client div.name {
  font-weight: bold;
  text-align: center;
}
div.clients-carousel-wrapper div.clients-carousel a.client div.stars {
  color: orange;
  text-align: center;
  font-size: 22px;
}
div.clients-carousel-wrapper div.clients-carousel a.client div.text {
  margin-top: 12px;
  text-align: left;
}
div.block_precios {
  background-color: #fff;
  padding: 80px 0px 70px 0px;
}
div.block_precios div.block_title {
  padding-bottom: 10px;
}
div.block_precios div.content {
  text-align: center;
}
div.block_precios div.precios {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  div.block_precios div.precios {
    flex-direction: column;
    align-items: center;
  }
}
div.block_precios div.precios div.precio {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 40px 80px;
  transition: 0.3s;
  background: #fff;
}
div.block_precios div.precios div.precio:hover {
  transform: scale(1.1);
  z-index: 2;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 1279px) {
  div.block_precios div.precios div.precio {
    padding: 40px 60px;
  }
}
@media only screen and (max-width: 1023px) {
  div.block_precios div.precios div.precio {
    padding: 30px;
  }
}
@media only screen and (max-width: 767px) {
  div.block_precios div.precios div.precio {
    padding: 20px;
    margin-bottom: 20px;
    width: 100%;
    max-width: 400px;
  }
}
div.block_precios div.precios div.precio div.tit {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 20px;
}
div.block_precios div.precios div.precio div.importe span {
  font-weight: bold;
  font-size: 20px;
}
div.block_precios div.precios div.precio div.txt {
  margin: 20px 0px;
}
@media only screen and (max-width: 500px) {
  div.block_precios {
    padding: 50px 0px 40px 0px;
  }
}
div.block_slider .wbutton {
  text-align: center;
  margin-top: 10px;
}
div.block_slider .pricing {
  margin-bottom: 30px;
}
div.block_slider input[type="range"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  background: #eef1f6;
  border-radius: 3px;
  height: 6px;
  width: 100%;
  margin-top: 15px;
  margin-bottom: 15px;
  outline: none;
}
div.block_slider input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  background-color: #59a5d8;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2212%22%20height%3D%228%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M8%20.5v7L12%204zM0%204l4%203.5v-7z%22%20fill%3D%22%23FFFFFF%22%20fill-rule%3D%22nonzero%22%2F%3E%3C%2Fsvg%3E");
  background-position: center;
  background-repeat: no-repeat;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  height: 36px;
  width: 36px;
}
div.block_slider input[type="range"]::-moz-range-thumb {
  background-color: #59a5d8;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2212%22%20height%3D%228%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M8%20.5v7L12%204zM0%204l4%203.5v-7z%22%20fill%3D%22%23FFFFFF%22%20fill-rule%3D%22nonzero%22%2F%3E%3C%2Fsvg%3E");
  background-position: center;
  background-repeat: no-repeat;
  border: 0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  height: 36px;
  width: 36px;
}
div.block_slider input[type="range"]::-ms-thumb {
  background-color: #59a5d8;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2212%22%20height%3D%228%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M8%20.5v7L12%204zM0%204l4%203.5v-7z%22%20fill%3D%22%23FFFFFF%22%20fill-rule%3D%22nonzero%22%2F%3E%3C%2Fsvg%3E");
  background-position: center;
  background-repeat: no-repeat;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  height: 36px;
  width: 36px;
}
div.block_slider input[type="range"]::-moz-focus-outer {
  border: 0;
}
div.block_slider .pricing-slider {
  max-width: 280px;
  margin: 0 auto;
}
div.block_slider .form-slider span {
  display: block;
  font-weight: 500;
  text-align: center;
  margin-bottom: 16px;
}
div.block_slider .pricing-slider {
  margin-bottom: 48px;
}
div.block_slider .pricing-slider {
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
div.block_slider .pricing-slider input {
  width: 100%;
}
div.block_slider .pricing-slider .pricing-slider-value {
  position: absolute;
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  color: #909cb5;
  margin-top: 8px;
  --thumb-size: 36px;
}
div.block_slider .pricing-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-right: -12px;
  margin-left: -12px;
  margin-top: -12px;
}
div.block_slider .pricing-item {
  flex-basis: 280px;
  max-width: 280px;
  box-sizing: content-box;
  padding: 24px;
}
div.block_slider .pricing-item-inner {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  height: 100%;
  padding: 24px;
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: 0.3s;
  background: #fff;
}
div.block_slider .pricing-item-inner:hover {
  transform: scale(1.1);
  z-index: 2;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1);
}
div.block_slider .pricing-item-title {
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  margin-bottom: 20px;
}
div.block_slider .pricing-item-price {
  display: inline-flex;
  align-items: baseline;
  font-size: 20px;
}
div.block_slider .pricing-item-price-amount {
  font-size: 36px;
  line-height: 48px;
  font-weight: 500;
  color: #191e2a;
}
div.block_slider .pricing-item-features-list {
  list-style: none;
  padding: 0;
}
div.block_slider .pricing-item-features-list li {
  margin-bottom: 0;
  padding: 14px 0;
  position: relative;
  display: flex;
  align-items: center;
  opacity: 0.3;
}
div.block_slider .pricing-item-features-list li.is-checked {
  margin-bottom: 0;
  padding: 14px 0;
  position: relative;
  display: flex;
  align-items: center;
  opacity: 1;
}
div.block_slider .pricing-item-features-list li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: block;
  height: 1px;
  background: #e9ecf8;
}
div.block_slider .pricing-item-features-list li::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  margin-right: 12px;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%2011h14v2H5z%22%20fill%3D%22%239298B8%22%20fill-rule%3D%22nonzero%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  -webkit-box-ordinal-group: 0;
  order: -1;
}
div.block_slider .pricing-item-features-list li.is-checked::after {
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill-rule%3D%22nonzero%22%20fill%3D%22none%22%3E%3Ccircle%20fill%3D%22%2359a5d8%22%20cx%3D%2212%22%20cy%3D%2212%22%20r%3D%2212%22%2F%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M10.5%2012.267l-2.5-1.6-1%201.066L10.5%2016%2017%209.067%2016%208z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
#whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  max-width: calc(100% - 40px);
}
#whatsapp div.toggler {
  text-align: right;
}
#whatsapp div.toggler div {
  display: inline-block;
  background-color: #fff;
  border-radius: 50%;
  height: 70px;
  width: 70px;
  text-align: center;
  line-height: 70px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: 0.3s;
}
#whatsapp div.toggler div:hover {
  transform: scale(1.1);
}
#whatsapp div.toggler svg {
  width: 40px;
  margin-top: 10px;
}
#whatsapp div.win {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  width: 350px;
  max-width: 100%;
  display: none;
  opacity: 0;
  margin-bottom: 0px;
  transition: 0.3s;
}
#whatsapp div.win.display {
  display: block;
}
#whatsapp div.win.visible {
  opacity: 1;
  margin-bottom: 15px;
}
#whatsapp div.win div.head {
  color: #fff;
  background: #095e54;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
#whatsapp div.win div.head div.clos {
  text-align: right;
  font-weight: bold;
  font-size: 20px;
  line-height: 1em;
  opacity: 0.5;
  position: absolute;
  width: 100%;
  padding: 10px;
  cursor: pointer;
  z-index: 5;
}
#whatsapp div.win div.head div.person {
  display: flex;
  padding: 20px;
  align-items: center;
}
#whatsapp div.win div.head div.person div.img {
  position: relative;
}
#whatsapp div.win div.head div.person span {
  display: inline-block;
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: #4ad504;
  border-radius: 50%;
  right: 0px;
  bottom: 0px;
  border: 1px solid #095e54;
  z-index: 10;
}
#whatsapp div.win div.head div.person img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
#whatsapp div.win div.head div.person div.data {
  margin-left: 20px;
}
#whatsapp div.win div.head div.person div.name {
  font-weight: bold;
  line-height: 1em;
}
#whatsapp div.win div.head div.person div.status {
  line-height: 1em;
  margin-top: 0.4em;
  font-size: 0.8em;
  position: relative;
  z-index: 2;
}
#whatsapp div.win div.chat {
  background-color: #e6ddd4;
  position: relative;
}
#whatsapp div.win div.chat img.pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
}
#whatsapp div.win div.chat div.pad {
  padding: 20px;
}
#whatsapp div.win div.chat div.bubble {
  background-color: #fff;
  display: inline-block;
  position: relative;
  border-radius: 5px;
  padding: 10px 10px 5px 10px;
  font-size: 14px;
}
#whatsapp div.win div.chat div.bubble .text {
  margin-bottom: 5px;
}
#whatsapp div.win div.chat div.bubble .text strong {
  color: rgba(0, 0, 0, 0.4);
  font-weight: bold;
}
#whatsapp div.win div.chat div.bubble .time {
  font-size: 11px;
  text-align: right;
}
#whatsapp div.win div.chat div.bubble div.loading {
  display: none;
}
#whatsapp div.win div.chat div.bubble div.loading svg {
  width: 40px;
  height: 30px;
  opacity: 0.5;
}
#whatsapp div.win div.chat div.bubble.loading div.loading {
  display: block;
}
#whatsapp div.win div.chat div.bubble.loading div.text {
  display: none;
}
#whatsapp div.win div.chat div.bubble.loading div.time {
  display: none;
}
#whatsapp div.win div.foot {
  background-color: #fff;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  display: flex;
  padding: 10px;
  align-items: center;
}
#whatsapp div.win div.foot input {
  background: transparent;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: none;
  -webkit-transition: ease-out 0.2s;
  transition: ease-out 0.2s;
  color: #646464;
  margin-bottom: 0px;
  padding: 5px;
  border-radius: 2px;
  font-size: 14px;
}
#whatsapp div.win div.foot svg {
  width: 20px;
  cursor: pointer;
  opacity: 0.3;
  margin-left: 5px;
}
section.legal h2 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-top: 20px;
}
section.legal div.text {
  margin-bottom: 40px;
}
section.legal div.text p {
  margin-bottom: 10px;
}
section.legal div.text p:last-child {
  margin-bottom: 0px;
}
section.legal li {
  list-style: none;
}
div.block_blog {
  padding: 80px 0px;
}
@media only screen and (max-width: 500px) {
  div.block_blog {
    padding: 50px 0px;
  }
}
div.block_blog div.articles {
  display: flex;
  justify-content: space-between;
}
div.block_blog div.articles div.article {
  width: calc(33% - 20px);
}
div.block_blog div.articles div.article div.img {
  margin-bottom: 20px;
}
div.block_blog div.articles div.article div.img img {
  object-fit: cover;
  height: 150px;
  width: 100%;
  border: 1px solid #f9f9f9;
  border-radius: 5px;
}
div.block_blog div.articles div.article h2 {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 10px;
  line-height: 1.3em;
}
div.block_blog div.articles div.article div.extract {
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  div.block_blog div.articles {
    flex-direction: column;
  }
  div.block_blog div.articles div.article {
    width: 100%;
    margin-bottom: 40px;
  }
  div.block_blog div.articles div.article:last-child {
    margin-bottom: 0px;
  }
}
div.block_blog div.btn {
  text-align: center;
  margin-top: 40px;
}
section.article div.header img {
  height: 50vh;
  width: 100%;
  object-fit: cover;
}
section.article div.detail {
  background: #f9f9f9;
}
section.article div.detail h1 {
  font-size: 30px;
  margin-bottom: 1em;
  line-height: 1.3em;
}
section.article div.detail div.extract {
  line-height: 1.5em;
  margin-bottom: 2em;
}
section.article div.detail div.extract a {
  color: #59a5d8;
}
section.article div.detail div.text p,
section.article div.detail div.text div {
  margin-bottom: 1em;
}
section.article div.detail div.text p:last-child,
section.article div.detail div.text div:last-child {
  margin-bottom: 0px;
}
section.article div.detail div.text a {
  color: #59a5d8;
}
section.article div.detail div.text ul {
  margin-bottom: 2em;
}
section.article div.detail div.text ul li {
  margin-left: 1em;
}
section.article div.detail div.content {
  padding-top: 50px;
  padding-bottom: 50px;
}
section.blog div.article {
  margin: 60px 0px;
}
section.blog div.article img {
  height: 50vh;
  width: 100%;
  object-fit: cover;
  margin-bottom: 40px;
  border: 1px solid #f9f9f9;
  border-radius: 5px;
}
section.blog div.article h2 {
  font-size: 30px;
  margin-bottom: 30px;
  line-height: 1.3em;
}
section.blog div.article div.extract {
  font-size: 20px;
  line-height: 1.3em;
  margin-bottom: 20px;
}
section.blog div.article div.text {
  margin-bottom: 20px;
}
section.p404 div.content {
  text-align: center;
  padding: 100px 0px;
  font-size: 20px;
}
html.game {
  min-height: 100%;
  background-color: #59a5d8;
  background-image: url(../img/game/back.jpg);
}
html.game body {
  background: rgba(0, 0, 0, 0.2);
  min-height: 100vh;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
}
section.game {
  color: #fff;
  padding: 40px 0px;
}
section.game #points {
  position: absolute;
  font-size: 12px;
  right: 20px;
  top: 10px;
}
section.game #loading {
  position: absolute;
  width: 100%;
  text-align: center;
  margin-top: 90px;
}
section.game .logo {
  text-align: center;
}
section.game .logo img {
  max-width: 50%;
  width: 200px;
  margin-bottom: 40px;
}
section.game #game {
  position: relative;
  width: 100%;
  height: 200px;
  border-bottom: 2px solid #555;
  background: #fff;
  border-radius: 20px;
  background-image: url(../img/game/terra.png);
  background-repeat: repeat-x;
  background-position-y: bottom 6px;
  font-family: "Courier New";
  color: #666;
  font-weight: bold;
}
section.game #game.ground {
  animation: ground 2s linear infinite;
}
section.game #dino {
  position: absolute;
  bottom: 4px;
  left: 50px;
  width: 41px;
  height: 47px;
  background-image: url(../img/game/dinosaur.png);
  background-position: -849px 0px;
  background-size: auto;
}
section.game #dino.dead {
  transform: rotate(-110deg);
  bottom: -2px;
}
section.game #form {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 100%;
  height: 160px;
  text-align: center;
}
section.game #form.hidden {
  display: none;
}
section.game #form .box {
  width: 300px;
  font-size: 12px;
  line-height: 1.2em;
}
section.game #form .box .title {
  margin-bottom: 5px;
}
section.game #form .box input,
section.game #form .box button {
  font-family: "Courier New";
  color: #666;
  font-weight: bold;
  padding: 5px;
  font-size: 12px;
}
section.game #scores {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 100%;
  height: 90%;
}
section.game #scores.hidden {
  display: none;
}
section.game #scores .scroll {
  max-height: 140px;
  overflow: auto;
}
section.game #scores .scroll .nick {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  padding-right: 10px;
}
section.game #scores div.table {
  width: 170px;
  max-width: 80%;
  font-size: 12px;
  line-height: 1.2em;
}
section.game #scores div.table strong {
  display: block;
  margin: 10px 0px;
  text-align: center;
}
section.game #scores div.table div.score {
  display: flex;
  justify-content: space-between;
}
section.game .obstacle {
  position: absolute;
  bottom: 2px;
  width: 16px;
  height: 35px;
  background-image: url(../img/game/dinosaur.png);
  background-position: -229px 0px;
  background-size: auto;
}
section.game .jump {
  animation-name: jump, run;
  animation-duration: 0.7s, 0.2s;
  animation-timing-function: ease-out, steps(2);
  animation-iteration-count: 1, infinite;
}
@keyframes jump {
  0% {
    bottom: 2px;
  }
  50% {
    bottom: 100px;
  }
  100% {
    bottom: 0;
  }
}
section.game .run {
  animation: run 0.2s steps(2) infinite;
}
@keyframes run {
  0% {
    background-position: -937px 0px;
  }
  100% {
    background-position: -1025px 0px;
  }
}
@keyframes ground {
  from {
    background-position-x: 0;
  }
  to {
    background-position-x: -1200px;
  }
}
