* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

* {
  page-break-inside: avoid;
  page-break-after: avoid;
  page-break-before: avoid;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  line-height: 1.15;
}

body,
html {
  height: 100%;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.card-bg {
  filter: blur(8px);
  -webkit-filter: blur(8px);

  height: 100%;

  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  position: fixed;
  left: 0;
  right: 0;
  z-index: 1;
  display: block;
}

.card-container {
  width: 100%;
  background-repeat: no-repeat repeat-y;
  background-position: center top;
  background-size: 100%;
  padding-top: 60px;
  max-width: 610px;
  position: relative;
}

.card-container.domain {
  width: 100%;
  margin: 0 auto;
  border: 1px solid rgba(0, 0, 0, 0.65);
  background-size: contain;
  z-index: 2;
  height: auto;
}

@media (max-width: 600px) {
  .card-container.domain {
    position: relative;
  }
}

@media (min-width: 601px) {
  .card-container.domain {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
  }
}

.logo {
  margin: 0 20px;
}

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

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

.logo.left {
  text-align: left;
}

.logo img {
  max-width: 100%;
  height: auto;
}

.profile {
  margin-bottom: 70px;
  text-align: center;
  padding: 10px;
  margin-top: 84px;
  position: relative;
}

.profile .photo {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  margin: auto;
  margin-top: -64px;
  margin-bottom: 20px;
  background-size: cover;
}

.profile h2 {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 30px;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.profile p {
  font-weight: normal;
  font-size: 24px;
  line-height: 1.5;
  margin: 0;
}

.profile.has-photo {
  display: table;
  width: 100%;
  vertical-align: middle;
}

.profile.has-photo .photo {
  position: absolute;
  top: 10px;
  left: 5px;
}

.profile.has-photo.left .photo {
  right: 5px;
  left: auto;
}

.profile.has-photo.right .info {
  padding-right: 148px;
  padding-left: 0;
}

.profile.has-photo.right .info h2,
.profile.has-photo.right .info p {
  padding-right: 10px;
}

.profile.has-photo.left .info h2,
.profile.has-photo.left .info p {
  padding-left: 10px;
}

.profile.has-photo .info {
  padding-left: 148px;
  display: table-cell !important;
  vertical-align: middle;
  height: 148px !important;
}

.profile.left .photo,
.profile.right .photo {
  margin-top: 0;
  margin-right: 20px;
  display: inline-block;
  width: 128px;
  vertical-align: middle;
}

.profile.left .info,
.profile.right .info {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  text-align: left;
}

.profile.right .photo {
  margin-right: 0;
  margin-left: 0;
}

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

.lead {
  padding: 10px;
  text-align: center;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  margin: 0 20px;
  margin-top: 60px;
  text-align: center;
  justify-content: center;
}

.buttons a {
  display: inline-block;
  text-align: center;
  padding: 17px 10px;
  font-size: 26px;
  border-radius: 12px;
  background-color: rgba(0, 0, 0, 0.4);
  background-size: cover;
  background-repeat: repeat;
  background-position: center;
  color: #fff;
  text-decoration: none;
  margin-bottom: 5%;
  margin-right: 5%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.buttons-rounded.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;

  margin: 0 20px;
  margin-top: 60px;
}

.buttons-rounded.row.center {
  text-align: center;
  justify-content: center;
}

.buttons-rounded.row.right {
  text-align: right;
  justify-content: flex-end;
}

.buttons-rounded.column {
  display: -ms-flexbox;
  display: flex;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;

  margin: 0 20px;
  margin-top: 60px;
}

.buttons-rounded.column a:not(:first-child) {
  margin-top: 20px;
}

.buttons-rounded.column.left {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  justify-content: flex-start;
}

.buttons-rounded.column.center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.buttons-rounded.column.right {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.buttons-rounded a {
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;

  text-align: center;
  font-size: 20px;
  color: #fff;
  text-decoration: none;
  word-wrap: break-word !important;
  overflow-wrap: break-word;

  border-radius: 50%;

  background-color: rgba(0, 0, 0, 0.4);
  background-size: cover;
  background-repeat: repeat;
  background-position: center;
}

.buttons-rounded.row a {
  margin: 10px;
}

.buttons-rounded.row a.large .icon {
  margin-top: 58px;
}

.buttons-rounded.row a.small .icon {
  margin-top: 38px;
}

.buttons-rounded .label {
  min-width: 0px;
}

.buttons-rounded .icon {
  margin: 28% 0 15px 0;
  display: block;
  font-size: 42px;
}

.buttons a.small {
  width: 155px;
}

.buttons a.medium {
  width: 165px;
}

.buttons a.large {
  width: 200px;
}

.buttons a.extra_large {
  width: 90% !important;
}

.buttons-rounded .small {
  display: inline-block !important;
  width: 155px;
  height: 155px;
}

.buttons-rounded .medium {
  width: 165px;
  height: 165px;
}

.buttons-rounded .large {
  display: inline-block !important;
  width: 200px;
  height: 200px;
}

.buttons-rounded .extra_large {
  display: inline-block !important;
  width: 270px;
  height: 270px;
  margin: 11px !important;
}

.buttons-column {
  display: table-caption !important;
}

.buttons-row {
  display: block !important;
}

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

.buttons-left {
  text-align: start;
}

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

.buttons-column.buttons-center {
  position: relative;
  left: 180px;
}

.buttons-column.buttons-left {
  position: relative;
  left: 10px;
}

.buttons-column.buttons-right {
  position: relative;
  left: 315px;
}

.buttons a {
  margin-right: auto;
}

.buttons a .icon {
  margin-bottom: 15px;
  display: block;
  font-size: 42px;
}

.buttons a .icon.without-label {
  margin-bottom: 0px;
}

.icon.phone::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f879';
}
.icon.whatsapp::before {
  font-family: 'Font Awesome 5 Brands';
  content: '\f232';
}
.icon.contact::before {
  font-family: 'Font Awesome 5 Free';
  content: '\f2bb';
}
.icon.email::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f0e0';
}
.icon.site::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f57d';
}
.icon.blog::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f09e';
}
.icon.virtual_store::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f07a';
}
.icon.address::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f279';
}
.icon.link::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f35d';
}
.icon.instagram::before {
  font-family: 'Font Awesome 5 Brands';
  content: '\f16d';
}
.icon.facebook::before {
  font-family: 'Font Awesome 5 Brands';
  content: '\f082';
}
.icon.twitter::before {
  font-family: 'Font Awesome 5 Brands';
  content: '\f099';
}
.icon.youtube::before {
  font-family: 'Font Awesome 5 Brands';
  content: '\f167';
}
.icon.linkedin::before {
  font-family: 'Font Awesome 5 Brands';
  content: '\f08c';
}
.icon.pinterest::before {
  font-family: 'Font Awesome 5 Brands';
  content: '\f0d2';
}
.icon.telegram::before {
  font-family: 'Font Awesome 5 Brands';
  content: '\f3fe';
}
.icon.tiktok::before {
  font-family: 'Font Awesome 5 Brands';
  content: '\e07b';
}
.icon.app_store::before {
  font-family: 'Font Awesome 5 Brands';
  content: '\f36f';
}
.icon.google_play::before {
  font-family: 'Font Awesome 5 Brands';
  content: '\f3ab';
}

.products {
  margin-top: 20px;
}

.product {
  padding: 40px;
  background-color: rgba(0, 0, 0, 0.65);
  margin-bottom: 8px;
  color: #fff;
  word-break: break-word;
}

.product-inner .image {
  width: 150px;
  margin-right: 20px;
  display: inline-block;
}

.product-inner .image img {
  width: 100%;
}

.product-inner .details {
  display: inline-block;
  vertical-align: top;
  width: 100%;
}

.product-inner .details p {
  font-size: 30px;
  margin-top: 10px;
}

.product-inner.position-center .image {
  display: block;
  margin-right: 0;
  margin-bottom: 20px;
}

.product-inner.position-center.size-normal .image {
  width: 370px;
  margin-left: auto;
  margin-right: auto;
}

.product-inner.position-left.size-normal .details,
.product-inner.position-right.size-normal .details {
  width: 345px;
}

.product-inner.position-left.size-large .details,
.product-inner.position-right.size-large .details {
  width: 245px;
}

.product-inner.position-right .image {
  margin-right: 0;
  margin-left: 20px;
}

.product-inner.position-center.size-large .image {
  width: 100%;
}

.product-inner.position-left.size-large .image,
.product-inner.position-right.size-large .image {
  width: 250px;
}

.product .description {
  margin-top: 10px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.product a {
  font-size: 30px;
  color: #fff;
  border-radius: 7px;
  text-decoration: none;
  text-align: center;
  display: block;
  padding: 15px;
  margin-top: 20px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.videos {
  margin-top: 40px;
  margin-bottom: 40px;
  word-break: break-word; /* new */
}

.videos a {
  text-decoration: none;
}

.video {
  padding: 40px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 7px;
  margin-bottom: 30px;
  color: #fff;
  display: block;
}

.video:last-of-type {
  margin-bottom: 0;
}

.video .icon {
  font-size: 30px;
  margin-right: 20px;
  display: inline-block;
}

.video .title {
  display: inline-block;
  vertical-align: top;
  line-height: 34px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.video-description {
  margin-bottom: 10px;
  padding: 10px;
  margin-top: -5px;
}

.video-cover {
  display: block;
  margin-bottom: 30px;
}

.video-cover.with-description {
  margin-bottom: 0px;
}

.video-cover .title {
  vertical-align: top;
  line-height: 26px;
  color: #fff;
  text-align: center;
  padding: 7px 10px;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  background-color: rgba(0, 0, 0, 0.4);
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: inherit; /* new */
}

.video-cover .cover {
  position: relative;
}

.video-cover .cover img {
  width: 100%;
  height: auto;
}

.video-cover .icon {
  position: absolute;
  color: #fff;
  padding: 20px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 20px;
  text-align: center;
}

.video-cover .icon.with-description {
  height: calc(100% - 4px);
}

.video-cover .icon .icon-inner {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  border: 2px solid #fff;
  font-size: 30px;
  padding: 12px 14px;
  text-align: center;
  display: inline-block;
  margin-top: 30%;
}

.video-cover .icon .icon-inner span {
  margin-left: 3px;
}

.banner {
  text-align: center;
  padding: 20px 0;
}

.banner img {
  max-width: 100%;
  width: auto;
}

.banner a {
  display: inline-block;
}

.mb-0 {
  margin-bottom: 0;
}

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

.qrcode {
  display: inline-block;
}

.qrcode img {
  width: 150px;
  height: 150px;
}

.footer-text-box {
  position: absolute;
  bottom: 0;

  text-align: center;
  padding: 8px 10px;
  width: 300px;

  word-break: break-word;
}

.footer-text-box.left {
  border-radius: 0 10px 0 0;

  left: 0;
}

.footer-text-box.center {
  border-radius: 10px 10px 0 0;
  margin-left: auto;
  margin-right: auto;

  left: 0;
  right: 0;
}

.footer-text-box.right {
  border-radius: 10px 0 0 0;

  right: 0;
}

.footer-link {
  cursor: pointer;
  text-decoration: none;
}

/* Products Wrapper */

.products-wrapper-container {
  padding-bottom: 20px;
  text-align: center;
  justify-content: center;
}

.products-wrapper-container.chunk-1 .product {
  width: 609px;
  min-width: 609px;
  max-width: 609px;
}

.products-wrapper-container.chunk-1 .product a {
  width: 329px;
  margin: auto;
  margin-top: 20px;
}

.products-wrapper-container.chunk-2 .product {
  width: 304.5px;
  min-width: 304.5px;
  max-width: 304.5px;
}

.products-wrapper-container.chunk-3 .product {
  width: 203px;
  min-width: 203px;
  max-width: 203px;
}

.products-wrapper-container .chunk-3 a {
  width: 163px;
}

.products-wrapper-container .product {
  display: table-cell;
  padding: 20px;
  text-align: left;
}

.products-wrapper-container .product h2 {
  font-size: 22px;
}

.products-wrapper-container .product a {
  font-size: 20px;
}

.products-wrapper-container .product p,
.products-wrapper-container .product .description {
  font-size: 18px;
}

.products-wrapper-container .product .product-inner.position-left .image {
  margin: 0;
  display: inline-block;
}

.products-wrapper-container .product .product-inner.position-center .image {
  margin: 0 auto;
  display: block;
}

.products-wrapper-container .product .product-inner.position-center.size-normal .image,
.products-wrapper-container .product .product-inner.position-right.size-normal .details {
  width: 150px;
}

.chunk-1 .product .product-inner.position-right.size-normal .image {
  margin-left: 400px;
}

.chunk-1 .product .product-inner.position-center.size-normal .image {
  margin-left: 200px;
}

.chunk-1 .product .product-inner.position-left.size-normal .image {
  margin-left: 20px;
}

.chunk-1 .product .product-inner.position-center.size-large .image {
  margin-left: 100px;
}

.chunk-1 .product .product-inner.position-right.size-large .image {
  margin-left: 200px;
}

.chunk-1 .product .size-large .image {
  width: 350px !important;
}

.chunk-2 .product .size-large .image {
  width: 250px !important;
}

.chunk-3 .product .size-large .image {
  width: 100% !important;
}

.chunk-3 .product .position-left .image,
.chunk-2 .product .position-left .image {
  margin-left: 0px !important;
}

.chunk-3 .product .position-center .image,
.chunk-2 .product .position-center .image {
  margin-left: 10px !important;
}

.chunk-3 .product .position-right .image,
.chunk-2 .product .position-right .image {
  margin-left: 20px !important;
}

.height-fixed-false {
  height: auto !important;
}

.products-wrapper-container .product .product-inner.position-left .image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.products-wrapper-container .product .product-inner.position-center .image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.products-wrapper-container .product .product-inner.position-right .image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Products Wrapper */

/* Audio Example */
.audio-wrapper {
  width: 100%;
}

.audio-wrapper img {
  margin: 0 0 10px 23px;
}
/* Audio Example */
