/*--------------------------- Color variations ----------------------*/
/* Medium Layout: 1280px */
/* Tablet Layout: 768px */
/* Mobile Layout: 320px */
/* Wide Mobile Layout: 480px */

:root {
    --color-green: #3b677a;
    --color-green-clear: #599db5;
    --color-green-clear-alpha10 : rgba(92, 176, 187, 0.1);
    --color-grey: #3f3f3f;
    --color-grey-clear: #8e8e8e;
    --color-grey-clear2: #e7ebfd;
    --color-grey-clear3: #e2e1dd;
    --color-grey-clear-bg: #f9f9f9;
    --color-grey-line: #696969;
    --color-orange: #f6724e;
    --color-orange-alpha50: rgba(246, 114, 78, .5);
    --color-orange-alpha80: rgba(246, 114, 78, .8);
    --color-status-active: rgb(0,255,0);
}
/* =================================== */
/*  Basic Style 
/* =================================== */
::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #777777;
  font-weight: 300;
}

:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #777777;
  opacity: 1;
  font-weight: 300;
}

::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #777777;
  opacity: 1;
  font-weight: 300;
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #777777;
  font-weight: 300;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #777777;
  font-weight: 300;
}

body {
  margin-top: 110px;
  color: var(--color-grey);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.625em;
  position: relative;
  background-color: var(--color-grey-clear-bg);
}
body.restyle-header {
  margin-top: 0;
}
@media (min-width: 1440px) {
  body {
    margin-top: 86px;
  }
}

ol, ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

figure {
  margin: 0;
}

a {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  color: var(--color-green-1);
}
a {
  word-wrap: break-word; /* versión antigua */
  overflow-wrap: break-word; /* versión moderna */
  white-space: normal;   /* permite los saltos de línea */
}

iframe {
  border: 0;
}

a, a:focus, a:hover {
  text-decoration: none;
  outline: 0;
}
a:hover {
  color: var(--color-orange-1);
}

.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn.focus:active,
.btn:active:focus,
.btn:focus {
  text-decoration: none;
  outline: 0;
}

.card-panel {
  margin: 0;
  padding: 60px;
}

/**
 *  Typography
 *
 **/

h1, h2, h3,
h4, h5, h6 {
  font-family: 'DM Sans', sans-serif;
  color: var(--color-grey);
  line-height: 1em;
  margin-bottom: 0;
  margin-top: 0;
  font-weight: 400;
}

.h1, .h2, .h3,
.h4, .h5, .h6 {
  margin-bottom: 0;
  margin-top: 0;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--color-grey);
}

h1, .h1 {
  font-size: 36px;
}

h2, .h2 {
  font-size: 30px;
}

h3, .h3 {
  font-size: 24px;
}

h4, .h4 {
  font-size: 18px;
}

h5, .h5 {
  font-size: 16px;
}

h6, .h6 {
  font-size: 14px;
  color: var(--color-grey);
}

td, th {
  border-radius: 0px;
}

/**
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    contenteditable attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that are clearfixed.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clear::before, .clear::after {
  content: " ";
  display: table;
}

.clear::after {
  clear: both;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-120 {
  margin-top: 120px;
}

.mt-150 {
  margin-top: 150px;
}

.ml-0 {
  margin-left: 0 !important;
}

.ml-5 {
  margin-left: 5px !important;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-50 {
  margin-left: 50px;
}

.mr-0 {
  margin-right: 0 !important;
}

.mr-5 {
  margin-right: 5px !important;
}

.mr-15 {
  margin-right: 15px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-50 {
  margin-right: 50px;
}

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

.mb-0-i {
  margin-bottom: 0px !important;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-100 {
  margin-bottom: 100px;
}

.pt-0 {
  padding-top: 0px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-150 {
  padding-top: 150px;
}

.pt-170 {
  padding-top: 170px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pr-30 {
  padding-right: 30px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-90 {
  padding-left: 90px;
}

.p-40 {
  padding: 40px;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.text-italic {
  font-style: italic;
}

.text-white {
  color: #fff;
}

.text-black {
  color: #000;
}

.text-strong-black {
  font-weight: 800 !important;
  color: var(--color-grey-1) !important;
}
.text-strong-orange {
  font-weight: 800 !important;
  color: var(--color-orange-1) !important;
}
.text-strong-bg-orange {
  position: relative;
  padding: 0 6px;
  font-weight: 800 !important;
  color: #fff !important;
  background-color: var(--color-orange-1) !important;
  display: inline-block;
}

.transition {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.section-full {
  padding: 100px 0;
}

.section-half {
  padding: 75px 0;
}

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

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

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

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

.inline-flex {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.flex-grow {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.flex-wrap {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-left {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
}

.flex-middle {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}

.flex-right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
}

.flex-top {
  -webkit-align-self: flex-start;
  -moz-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.flex-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}

.flex-bottom {
  -webkit-align-self: flex-end;
  -moz-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
}

.space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}

.space-around {
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  justify-content: space-around;
}

.flex-column {
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.flex-cell {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.display-table {
  display: table;
}

.light {
  color: #fff;
}

.dark {
  color: #222;
}

.relative {
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

.overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.container.fullwidth {
  width: 100%;
}

.container.no-padding {
  padding-left: 0;
  padding-right: 0;
}

.no-padding {
  padding: 0;
}

.section-bg {
  background: #f9fafc;
}

@media (max-width: 767px) {
  .no-flex-xs {
    display: block !important;
  }
}

.row.no-margin {
  margin-left: 0;
  margin-right: 0;
}

.sample-text-area {
  background: #fff;
  padding: 100px 0 70px 0;
}

.text-heading {
  margin-bottom: 30px;
  font-size: 24px;
}

b, sup, sub, u, del {
  color: var(--color-orange-1);
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 14px;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.5em;
}

.typography h1, .typography h2, .typography h3, .typography h4, .typography h5, .typography h6 {
  color: #777777;
}

.button-area {
  background: #fff;
}

.button-area .border-top-generic {
  padding: 70px 15px;
  border-top: 1px dotted #eee;
}

.button-group-area .genric-btn {
  margin-right: 10px;
  margin-top: 10px;
}

.button-group-area .genric-btn:last-child {
  margin-right: 0;
}

.genric-btn {
  display: inline-block;
  outline: none;
  line-height: 40px;
  padding: 0 30px;
  font-size: .8em;
  text-align: center;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.genric-btn:focus {
  outline: none;
}

.genric-btn.e-large {
  padding: 0 40px;
  line-height: 50px;
}

.genric-btn.large {
  line-height: 45px;
}

.genric-btn.medium {
  line-height: 30px;
}

.genric-btn.small {
  line-height: 25px;
}

.genric-btn.radius {
  border-radius: 3px;
}

.genric-btn.circle {
  border-radius: 20px;
}

.genric-btn.arrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.genric-btn.arrow span {
  margin-left: 10px;
}

.genric-btn.default {
  color: var(--color-grey);
  background: #f9f9ff;
  border: 1px solid transparent;
}

.genric-btn.default:hover {
  border: 1px solid #f9f9ff;
  background: #fff;
}

.genric-btn.default-border {
  border: 1px solid #f9f9ff;
  background: #fff;
}

.genric-btn.default-border:hover {
  color: var(--color-grey);
  background: #f9f9ff;
  border: 1px solid transparent;
}

.genric-btn.primary {
  color: #fff;
  background: var(--color-orange-1);
  border: 1px solid transparent;
}

.genric-btn.primary:hover {
  color: var(--color-orange-1);
  border: 1px solid var(--color-orange-1);
  background: #fff;
}

.genric-btn.primary-border {
  color: var(--color-orange-1);
  border: 1px solid var(--color-orange-1);
  background: #fff;
}

.genric-btn.primary-border:hover {
  color: #fff;
  background: var(--color-orange-1);
  border: 1px solid transparent;
}

.genric-btn.success {
  color: #fff;
  background: #4cd3e3;
  border: 1px solid transparent;
}

.genric-btn.success:hover {
  color: #4cd3e3;
  border: 1px solid #4cd3e3;
  background: #fff;
}

.genric-btn.success-border {
  color: #4cd3e3;
  border: 1px solid #4cd3e3;
  background: #fff;
}

.genric-btn.success-border:hover {
  color: #fff;
  background: #4cd3e3;
  border: 1px solid transparent;
}

.genric-btn.info {
  color: #fff;
  background: #38a4ff;
  border: 1px solid transparent;
}

.genric-btn.info:hover {
  color: #38a4ff;
  border: 1px solid #38a4ff;
  background: #fff;
}

.genric-btn.info-border {
  color: #38a4ff;
  border: 1px solid #38a4ff;
  background: #fff;
}

.genric-btn.info-border:hover {
  color: #fff;
  background: #38a4ff;
  border: 1px solid transparent;
}

.genric-btn.warning {
  color: #fff;
  background: #f4e700;
  border: 1px solid transparent;
}

.genric-btn.warning:hover {
  color: #f4e700;
  border: 1px solid #f4e700;
  background: #fff;
}

.genric-btn.warning-border {
  color: #f4e700;
  border: 1px solid #f4e700;
  background: #fff;
}

.genric-btn.warning-border:hover {
  color: #fff;
  background: #f4e700;
  border: 1px solid transparent;
}

.genric-btn.danger {
  color: #fff;
  background: #f44a40;
  border: 1px solid transparent;
}

.genric-btn.danger:hover {
  color: #f44a40;
  border: 1px solid #f44a40;
  background: #fff;
}

.genric-btn.danger-border {
  color: #f44a40;
  border: 1px solid #f44a40;
  background: #fff;
}

.genric-btn.danger-border:hover {
  color: #fff;
  background: #f44a40;
  border: 1px solid transparent;
}

.genric-btn.link {
  color: var(--color-grey);
  background: #f9f9ff;
  text-decoration: underline;
  border: 1px solid transparent;
}

.genric-btn.link:hover {
  color: var(--color-grey);
  border: 1px solid #f9f9ff;
  background: #fff;
}

.genric-btn.link-border {
  color: var(--color-grey);
  border: 1px solid #f9f9ff;
  background: #fff;
  text-decoration: underline;
}

.genric-btn.link-border:hover {
  color: var(--color-grey);
  background: #f9f9ff;
  border: 1px solid transparent;
}

.genric-btn.disable {
  color: var(--color-grey), 0.3;
  background: #f9f9ff;
  border: 1px solid transparent;
  cursor: not-allowed;
}

.generic-blockquote {
  padding: 30px 50px 30px 30px;
  background: #f9f9ff;
  border-left: 2px solid var(--color-orange-1);
}

.progress-table-wrap {
  overflow-x: scroll;
}

.progress-table {
  background: #f9f9ff;
  padding: 15px 0px 30px 0px;
  min-width: 800px;
}

.progress-table .serial {
  width: 11.83%;
  padding-left: 30px;
}

.progress-table .country {
  width: 28.07%;
}

.progress-table .visit {
  width: 19.74%;
}

.progress-table .percentage {
  width: 40.36%;
  padding-right: 50px;
}

.progress-table .table-head {
  display: flex;
}

.progress-table .table-head .serial, .progress-table .table-head .country, .progress-table .table-head .visit, .progress-table .table-head .percentage {
  color: var(--color-grey);
  line-height: 40px;
  text-transform: uppercase;
  font-weight: 500;
}

.progress-table .table-row {
  padding: 15px 0;
  border-top: 1px solid #edf3fd;
  display: flex;
}

.progress-table .table-row .serial, .progress-table .table-row .country, .progress-table .table-row .visit, .progress-table .table-row .percentage {
  display: flex;
  align-items: center;
}

.progress-table .table-row .country img {
  margin-right: 15px;
}

.progress-table .table-row .percentage .progress {
  width: 80%;
  border-radius: 0px;
  background: transparent;
}

.progress-table .table-row .percentage .progress .progress-bar {
  height: 5px;
  line-height: 5px;
}

.progress-table .table-row .percentage .progress .progress-bar.color-1 {
  background-color: #6382e6;
}

.progress-table .table-row .percentage .progress .progress-bar.color-2 {
  background-color: #e66686;
}

.progress-table .table-row .percentage .progress .progress-bar.color-3 {
  background-color: #f09359;
}

.progress-table .table-row .percentage .progress .progress-bar.color-4 {
  background-color: #73fbaf;
}

.progress-table .table-row .percentage .progress .progress-bar.color-5 {
  background-color: #73fbaf;
}

.progress-table .table-row .percentage .progress .progress-bar.color-6 {
  background-color: #6382e6;
}

.progress-table .table-row .percentage .progress .progress-bar.color-7 {
  background-color: #a367e7;
}

.progress-table .table-row .percentage .progress .progress-bar.color-8 {
  background-color: #e66686;
}

.single-gallery-image {
  margin-top: 30px;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: cover !important;
  height: 200px;
}

.list-style {
  width: 14px;
  height: 14px;
}

.unordered-list li {
  position: relative;
  padding-left: 30px;
  line-height: 1.82em !important;
}

.unordered-list li:before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border: 3px solid var(--color-orange-1);
  background: #fff;
  top: 4px;
  left: 0;
  border-radius: 50%;
}

.ordered-list {
  margin-left: 30px;
}

.ordered-list li {
  list-style-type: decimal-leading-zero;
  color: var(--color-orange-1);
  font-weight: 500;
  line-height: 1.82em !important;
}

.ordered-list li span {
  font-weight: 300;
  color: #777777;
}

.ordered-list-alpha li {
  margin-left: 30px;
  list-style-type: lower-alpha;
  color: var(--color-orange-1);
  font-weight: 500;
  line-height: 1.82em !important;
}

.ordered-list-alpha li span {
  font-weight: 300;
  color: #777777;
}

.ordered-list-roman li {
  margin-left: 30px;
  list-style-type: lower-roman;
  color: var(--color-orange-1);
  font-weight: 500;
  line-height: 1.82em !important;
}

.ordered-list-roman li span {
  font-weight: 300;
  color: #777777;
}

.single-input {
  display: block;
  width: 100%;
  line-height: 40px;
  border: none;
  outline: none;
  background: #f9f9ff;
  padding: 0 20px;
}

.single-input:focus {
  outline: none;
}

.input-group-icon {
  position: relative;
}

.input-group-icon .icon {
  position: absolute;
  left: 20px;
  top: 0;
  line-height: 40px;
  z-index: 3;
}

.input-group-icon .icon i {
  color: #797979;
}

.input-group-icon .single-input {
  padding-left: 45px;
}

.single-textarea {
  display: block;
  width: 100%;
  line-height: 40px;
  border: none;
  outline: none;
  background: #f9f9ff;
  padding: 0 20px;
  height: 100px;
  resize: none;
}

.single-textarea:focus {
  outline: none;
}

.single-input-primary {
  display: block;
  width: 100%;
  line-height: 40px;
  border: 1px solid transparent;
  outline: none;
  background: #f9f9ff;
  padding: 0 20px;
}

.single-input-primary:focus {
  outline: none;
  border: 1px solid var(--color-orange-1);
}

.single-input-accent {
  display: block;
  width: 100%;
  line-height: 40px;
  border: 1px solid transparent;
  outline: none;
  background: #f9f9ff;
  padding: 0 20px;
}

.single-input-accent:focus {
  outline: none;
  border: 1px solid #eb6b55;
}

.single-input-secondary {
  display: block;
  width: 100%;
  line-height: 40px;
  border: 1px solid transparent;
  outline: none;
  background: #f9f9ff;
  padding: 0 20px;
}

.single-input-secondary:focus {
  outline: none;
  border: 1px solid #f09359;
}

.default-switch {
  width: 35px;
  height: 17px;
  border-radius: 8.5px;
  background: #f9f9ff;
  position: relative;
  cursor: pointer;
}

.default-switch input {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.default-switch input + label {
  position: absolute;
  top: 1px;
  left: 1px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--color-orange-1);
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.default-switch input:checked + label {
  left: 19px;
}

.primary-switch {
  width: 35px;
  height: 17px;
  border-radius: 8.5px;
  background: #f9f9ff;
  position: relative;
  cursor: pointer;
}

.primary-switch input {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.primary-switch input + label {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.primary-switch input + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border-radius: 8.5px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.primary-switch input + label:after {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.primary-switch input:checked + label:after {
  left: 19px;
}

.primary-switch input:checked + label:before {
  background: var(--color-orange-1);
}

.confirm-switch {
  width: 35px;
  height: 17px;
  border-radius: 8.5px;
  background: #f9f9ff;
  position: relative;
  cursor: pointer;
}

.confirm-switch input {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.confirm-switch input + label {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.confirm-switch input + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border-radius: 8.5px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  cursor: pointer;
}

.confirm-switch input + label:after {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.confirm-switch input:checked + label:after {
  left: 19px;
}

.confirm-switch input:checked + label:before {
  background: #4cd3e3;
}

.primary-checkbox {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  background: #f9f9ff;
  position: relative;
  cursor: pointer;
}

.primary-checkbox input {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.primary-checkbox input + label {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  cursor: pointer;
  border: 1px solid #f1f1f1;
}

.primary-checkbox input:checked + label {
  background: url(../img/elements/primary-check.png) no-repeat center center/cover;
  border: none;
}

.confirm-checkbox {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  background: #f9f9ff;
  position: relative;
  cursor: pointer;
}

.confirm-checkbox input {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.confirm-checkbox input + label {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  cursor: pointer;
  border: 1px solid #f1f1f1;
}

.confirm-checkbox input:checked + label {
  background: url(../img/elements/success-check.png) no-repeat center center/cover;
  border: none;
}

.disabled-checkbox {
  width: 16px;
  height: 16px;
  border-radius: 3px;
  background: #f9f9ff;
  position: relative;
  cursor: pointer;
}

.disabled-checkbox input {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.disabled-checkbox input + label {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  cursor: pointer;
  border: 1px solid #f1f1f1;
}

.disabled-checkbox input:disabled {
  cursor: not-allowed;
  z-index: 3;
}

.disabled-checkbox input:checked + label {
  background: url(../img/elements/disabled-check.png) no-repeat center center/cover;
  border: none;
}

.primary-radio {
  width: 16px;
  height: 16px;
  border-radius: 8px;
  background: #f9f9ff;
  position: relative;
  cursor: pointer;
}

.primary-radio input {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.primary-radio input + label {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid #f1f1f1;
}

.primary-radio input:checked + label {
  background: url(../img/elements/primary-radio.png) no-repeat center center/cover;
  border: none;
}

.confirm-radio {
  width: 16px;
  height: 16px;
  border-radius: 8px;
  background: #f9f9ff;
  position: relative;
  cursor: pointer;
}

.confirm-radio input {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.confirm-radio input + label {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid #f1f1f1;
}

.confirm-radio input:checked + label {
  background: url(../img/elements/success-radio.png) no-repeat center center/cover;
  border: none;
}

.disabled-radio {
  width: 16px;
  height: 16px;
  border-radius: 8px;
  background: #f9f9ff;
  position: relative;
  cursor: pointer;
}

.disabled-radio input {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.disabled-radio input + label {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid #f1f1f1;
}

.disabled-radio input:disabled {
  cursor: not-allowed;
  z-index: 3;
}

.disabled-radio input:checked + label {
  background: url(../img/elements/disabled-radio.png) no-repeat center center/cover;
  border: none;
}

.default-select {
  height: 40px;
}

.default-select .nice-select {
  border: none;
  border-radius: 0px;
  height: 40px;
  background: #f9f9ff;
  padding-left: 20px;
  padding-right: 40px;
}

.default-select .nice-select .list {
  margin-top: 0;
  border: none;
  border-radius: 0px;
  box-shadow: none;
  width: 100%;
  padding: 10px 0 10px 0px;
}

.default-select .nice-select .list .option {
  font-weight: 300;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  line-height: 28px;
  min-height: 28px;
  font-size: 12px;
  padding-left: 20px;
}

.default-select .nice-select .list .option.selected {
  color: var(--color-orange-1);
  background: transparent;
}

.default-select .nice-select .list .option:hover {
  color: var(--color-orange-1);
  background: transparent;
}

.default-select .current {
  margin-right: 50px;
  font-weight: 300;
}

.default-select .nice-select::after {
  right: 20px;
}

.form-select {
  height: 40px;
  width: 100%;
}

.form-select .nice-select {
  border: none;
  border-radius: 0px;
  height: 40px;
  background: #f9f9ff;
  padding-left: 45px;
  padding-right: 40px;
  width: 100%;
}

.form-select .nice-select .list {
  margin-top: 0;
  border: none;
  border-radius: 0px;
  box-shadow: none;
  width: 100%;
  padding: 10px 0 10px 0px;
}

.form-select .nice-select .list .option {
  font-weight: 300;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  line-height: 28px;
  min-height: 28px;
  font-size: 12px;
  padding-left: 45px;
}

.form-select .nice-select .list .option.selected {
  color: var(--color-orange-1);
  background: transparent;
}

.form-select .nice-select .list .option:hover {
  color: var(--color-orange-1);
  background: transparent;
}

.form-select .current {
  margin-right: 50px;
  font-weight: 300;
}

.form-select .nice-select::after {
  right: 20px;
}


.internal-page {
  margin-top: 88px;
}
@media (max-width: 991.98px) {
  .internal-page {
    margin-top: 58px;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Menu
--------------------------------------------------------------*/
/* === NAVBAR GENERAL === */

.navbar {
  width: 100%;
  background: var(--color-grey-clear-bg);
  border: none;
  margin-bottom: 0;
  padding: 20px 0;
  position: fixed;
  top: 0;
  z-index: 1000;
  transition: all 0.5s;
}
.restyle-header .navbar {
  background: transparent;
  box-shadow: none;
}
.header-scrolled .navbar,
.restyle-header .header-scrolled .navbar,
.menu-open .navbar {
  background: var(--color-grey-clear-bg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.075);
}

.navbar-brand {
  color: #3f3f3f;
  font-weight: 500;
  padding: 5px 0;
  position: relative;
  display: flex;
  flex-direction: column;
}

.navbar-brand img,
.navbar-brand svg {
  width: 150px;
  height: auto;
  display: block;  
}
.restyle-logo .navbar-brand svg path,
.restyle-logo .navbar-brand svg rect,
.restyle-logo .navbar-brand svg polygon {
  fill: #e1e0dc; 
}
.restyle-logo .header-scrolled  .navbar-brand svg path,
.restyle-logo .header-scrolled  .navbar-brand svg rect,
.restyle-logo .header-scrolled  .navbar-brand svg polygon {
  fill: var(--color-green);
}


.navbar-brand-text {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: end;
  margin-top: 2px;
}

.navbar-brand-text span {
  display: block;
}

.navbar-brand-text .sublogo-text {
  font-size: 10px;
  line-height: 10px;
  margin-right: 3px;
  color: #757575;
}

.navbar-brand-text img.sublogo {
  width: 47px;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
  .navbar-brand {
    padding: 15px;
    /*flex-direction: column;*/
    /*align-items: flex-start;*/
  }

  .navbar-brand img,
  .navbar-brand svg {
    width: 136px;
  }

  .navbar-brand-text .sublogo-text {
    font-size: 8px;
    line-height: 8px;
    color: #000;
  }

  .navbar-brand-text img.sublogo {
    width: 47px;
  }
}

/* === MENÚ DE NAVEGACIÓN === */
.navbar-nav .nav-link {
  color: #3f3f3f;
  font-family: "Roboto Mono", monospace;
  font-size: 12px;
  font-weight: 500;
  line-height: 15px;
  text-transform: uppercase;
  padding: 15px !important;
  transition: all ease-in-out 0.4s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: var(--color-green-clear);
  background-color: transparent;
}
.navbar-nav .nav-item {
  display: flex;
  align-items: center;
}
.navbar-nav .nav-item.active > .nav-link,
.navbar-nav .nav-item.active > .nav-link:hover,
.navbar-nav .nav-item.active > .nav-link:focus {
  color: var(--color-green-clear);
  background-color: transparent;
}
  .nav-search-wrapper .nav-search {
    padding: 0 0 0 20px;
    position: relative;
  }
  .nav-search-wrapper .nav-search input {
    padding: 6px 20px;
    border: none;
    border-radius: 50px;
  }
    .nav-search-wrapper .nav-search button {
      position: absolute;
      top: 6px;
      right: 5px;
      border: none;
      background: transparent;
    }  
      .nav-search-wrapper .nav-search button i {
        font-size: 18px;
        color: var(--color-grey);
      }
	  @media (max-width: 991.98px) {
		.navbar-nav .nav-link {
			font-size: 15px;
			line-height: 18px;
		}
			.nav-search-wrapper .nav-search {
				width: 100%;
				padding: 0 0 20px 10px;
			}
			.nav-search-wrapper .nav-search input {
				width: 100%;
			}
	  }

/* === BOTÓN DE PERFIL (DROPDOWN) === */
.navbar-nav .appointment-btn {
  display: flex;
  align-items: center;
  margin: 0 0 0 20px;
}
@media (max-width: 991.98px) {
	.navbar-nav .appointment-btn {
		margin: 0 0 0 10px;
	}
}

.navbar-nav .appointment-btn .btn {
  background: var(--color-green);
  border-radius: 50px;
  color: #ffffff;
  font-family: "Roboto Mono", monospace;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 8px 20px;
  position: relative;
}
.navbar-nav .appointment-btn .btn::after {
  display: none !important;
}

.navbar-nav .appointment-btn .btn svg {
  fill: #ffffff;
  position: absolute;
  top: 8px;
  right: 16px;
  height: 20px;
  width: auto;
}

.navbar-nav .appointment-btn .btn:hover,
.navbar-nav .appointment-btn .btn:focus,
.navbar-nav .appointment-btn .btn:active {
  background: #3f3f3f;
  color: #ffffff !important;
}

/* === BOTÓN HAMBURGUESA === */
.navbar-toggler {
  border: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}



.section-gap {
  padding: 120px 0;
}

.section-title {
  padding-bottom: 30px;
}
.section-title.line {
  padding-bottom: 0;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--color-grey-clear);
}

.section-title h2 {
  margin-bottom: 20px;
  font-size: 3.075rem;
  line-height: 3.375rem;
  font-weight: 400;
}
.section-title h3 {
  font-size: 2.075rem;
  line-height: 2.375rem;
  font-weight: 400;
}
@media (max-width: 991.98px) {
	.section-title h2 {
	  margin-bottom: 15px;
	  font-size: 2.075rem;
	  line-height: 2.375rem;
	}
	.section-title h3 {
	  font-size: 1.075rem;
	  line-height: 1.375rem;
	}
}
.section-title p {
  font-size: 16px;
  margin-bottom: 0;
}

.section-sub-title {
  padding: 0 0 0 25px;
  position: relative;
  font-family: "Roboto Mono", monospace;
  font-size: .665rem;
  font-weight: 500;
  line-height: .625rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}
  .section-sub-title::before {
    content: "";
    width: 8px;
    height: 8px;
    display: block;
    background-color: var(--color-grey);
    border-radius: 10px;
    position: absolute;
    top: calc(50% - 4px);
    left: 0;
  }
  .section-bg-dark-grey .section-sub-title::before {
    background-color: #ffffff;
  }
.section-text,
.section-text p {
  font-size: 1.2rem;
  line-height: 1.6rem;
  font-weight: 400;
}
    .section-text.dynamic-text,
    .section-text.dynamic-text p,
	.section-text.dynamic-text p span,
	.section-text.dynamic-text p strong	{
	  font-size: 1.2rem !important;
	  line-height: 1.6rem !important;
	  font-weight: 400 !important;
	  background-color: transparent !important;
	} 
.section-text-spacer {
  max-width: 480px;
  margin-left: 40px;
}
.section-text-spacer-small {
  max-width: 480px;
  margin-left: 20px;
}

@media (max-width: 991.98px) {
  .section-title p br {
    display: none;
  }
  .section-text-spacer,
  .section-text-spacer-small {
    max-width: 100%;
    margin-left: 0;
  }
}

.section-novedades .section-card {
  margin-bottom: 40px;
}
.section-card-header {
  margin-bottom: 10px;
}
.section-card-pro {
  margin-bottom: 30px;
}
.section-card-pro h3 {
  font-size: 20px;
  line-height: 24px;
  text-transform: uppercase;
}
.section-card-pro-marca {
  display: block;
  font-size: .8rem;
  text-transform: uppercase;
  font-family: "Roboto Mono", monospace;
  font-weight: 400;
  margin-bottom: 4px;
}
.section-card-pro-sku {
  text-transform: uppercase;
  font-family: "Roboto Mono", monospace;
  color: var(--color-grey-clear);
}
.section-card-cat-cli-data .section-card-pro-sku {
  color: var(--color-green-clear);
}

.section-card-cat-cli-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flap {
  /*width: calc(100% + 1px);*/
  width: 100%;
  height: 61px;
  position: relative;
  border-radius: 10px 10px 0 0;
  background-color: var(--color-grey-clear2);
  clip-path: polygon(
      0 0, 
      calc(100% - 80px - 16px) 0, /* antes del triángulo */
      calc(100% - 80px) 28px, /* pico del triángulo */
      calc(100% - 80px + 16px) 0, /* después del triángulo */
      100% 0,
      100% 100%, 
      0 100%
    );
}
.flap.vertical {
  width: 61px;
  height: 100%;
  border-radius: 0 10px 10px 0;
  clip-path: polygon(
    0% 0%, 
    100% 0%, 
    100% calc(100% - 80px - 25px),  
    20px calc(100% - 80px),
    100% calc(100% - 55px), 
    100% 100%, 
    0 100%
  );    
}
.flap.simple {
  clip-path: none;
}
.flap.green {
  background-color: var(--color-green);
}
.flap.green-clear {
  background-color: var(--color-green-clear);
}
.flap.grey {
  background-color: var(--color-grey);
}
.flap.grey-clear {
  background-color: var(--color-grey-clear);
}
.flap.grey-clear2 {
  background-color: var(--color-grey-clear2);
}
.flap.grey-clear3 {
  background-color: var(--color-grey-clear3);
}
.flap.grey-clear-bg {
  background-color: var(--color-grey-clear-bg);
}
.flap.white {
  background-color: #ffffff;
}
  .flap-content-text {
    display: flex;
    padding-top: 16px;
    background-color: var(--color-grey-clear2);
  }
  .section-bg-grey .flap-content-text {
    background-color: var(--color-grey-clear-bg);
  }
    .flap-content-number {
      width: 22px;
      height: 22px;
      display: block;
      margin-right: 16px;
      position: relative;
      border-radius: 20px;
      text-align: center;
      background-color: var(--color-grey-clear2);
      color: var(--color-grey);
      font-size: 12px;
      line-height: 22px;
    }
.flap-fx {
  position: relative;
  overflow: hidden;
}
  .flap-fx img {
    position: relative;
    top: 0;
    transition: all 0.3s ease;
  }
  .flap-fx .flap-wrapper {
    position: absolute;
    right: 0;
    left: 0;
    top: 100%;
    transform: translateY(-60px);
    transition: transform 0.3s ease;
  }
  .flap-fx:hover .flap-wrapper {
    transform: translateY(-100%);
  }
  .flap-fx:hover img {
    transform: translateY(-80px);
  }
  .flap-wrapper .flap-title {
    position: absolute;
    bottom: calc(50% - 13px);
    left: 0;
    font-size: 1.2rem;
    line-height: 1.6rem;
    font-weight: 600;
    padding-left: 20px;
    color: var(--color-grey);
  }
  .flap.green .flap-title  {
    color: #ffffff
  }

.cat-home-item .flap-title .logo-marca {
    height: 36px;
    width: auto;
}
.cat-home-item .flap-wrapper .flap-title {
    bottom: calc(50% - 18px);
}

.overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
/*
.banner-first-area {
  background: url(../img/ui/contact.jpg) center;
  background-size: cover;
}

@media (max-width: 1199.98px) {
  .banner-first-area .fullscreen {
    height: 800px !important;
  }
}
*/



.video-left .primary-btn {
  background-color: #222;
  color: #fff;
  border: 1px solid transparent;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.video-left .primary-btn:hover {
  border: 1px solid #222;
  background-color: transparent;
  color: #222;
}

.video-left h6 {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-orange-1);
  font-size: 12px;
  font-weight: 300;
}

.video-left h1 {
  padding-bottom: 20px;
}

.video-left p span {
  color: #000;
  font-weight: 400;
}

@media (max-width: 960px) {
  .video-left {
    margin-bottom: 30px;
  }
}

.video-right {
  background: url(../img/video-bg.png) no-repeat center;
  background-size: cover;
  height: 350px;
  position: relative;
}

.video-right .overlay-bg {
  background-color: rgba(0, 0, 0, 0.78);
}

.video-right .play-btn {
  z-index: 2;
}

@media (max-width: 800px) {
  .video-right {
    margin-top: 100px;
  }
}

.top-course-area {
  background-color: #f9f9ff;
}

.course-right .lnr, .course-left .lnr {
  color: var(--color-orange-1);
  font-size: 30px;
}

.course-right h4, .course-left h4 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.single-course {
  margin-bottom: 40px;
}


/*--------------------------------------------------------------
# Home
--------------------------------------------------------------*/
.home-slider-area {
  margin-top: 0;
  position: relative;
}
.swiper--home-slider .swiper--home-slider-img {
  width: 100%;
  /*height: 680px;
  object-fit: cover;
  object-position: left top;*/ 
}
@media (max-width: 991.98px) {
  /*.home-slider-area {
    margin-top: 50px;
  }*/
  .swiper--home-slider .swiper--home-slider-img {
    /*height: 400px;*/
  }
  .swiper--home-slider .swiper-pagination {
	  display: none !important;
  }
}
.swiper--home-slider .swiper-container-horizontal>.swiper-pagination-bullets, 
.swiper--home-slider .swiper-pagination-custom, 
.swiper--home-slider .swiper-pagination-fraction {
  bottom: 100px;
}
.swiper--home-slider .swiper-pagination-bullet {
  width: 45px;
  height: 12px;
  border-radius: 5px;
  background: var(--color-grey-clear-bg);
  opacity: 1;
}
.swiper--home-slider .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--color-green-clear);
}
.swiper--home-text {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}
  .swiper--home-text .container {
    margin: 0 0 0 100px;
    position: relative;
    top: 0;
    left: -100%;
    opacity: 0;
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -ms-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
    z-index: 10;
  }
    .swiper-slide-active .swiper--home-text .container {
      left: 0;
      opacity: 1;
    }
    .swiper--home-text-box {
      max-width: 600px;
    }
  .swiper--home-text .section-sub-title {
    color: #ffffff;
  }
  .swiper--home-text h1 {
    color: #ffffff;
    font-size: 3.2rem;
    line-height: 3.8rem;
    margin-bottom: 60px;
  }
  .swiper--home-text h1 .text-1 {
    font-weight: 400;
    display: block;
  }
  .swiper--home-text h1 .text-2 {
    font-weight: 400;
    display: block;
  }
  .swiper--home-text h2 {
    color: #ffffff;
    font-size: 1.7rem;
    font-weight: 400;
    line-height: 1.9rem;
  }
  @media (max-width: 991.98px) {
    .swiper--home-slider .swiper-container-horizontal>.swiper-pagination-bullets, 
    .swiper--home-slider .swiper-pagination-custom, 
    .swiper--home-slider .swiper-pagination-fraction {
      bottom: 0;
    }
    .swiper--home-text .container {
      margin: 0 0 0 10px;
    }
    .swiper--home-text h1 {
      font-size: 1.9rem;
      line-height: 1.9rem;
      margin-bottom: 10px;
    }
    .swiper--home-text h2 {
      font-size: 1.2rem;
      line-height: 1.2rem;
    }
  }


.swiper--about {
  /*padding-bottom: 120px;*/
  padding-bottom: 60px;
}
.swiper--about .swiper-pagination {
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--bs-border-color);
}
.swiper--about .swiper-pagination-bullet {
    width: auto;
    height: auto;
    padding: 4px 10px;
    display: inline-block;
    border-radius: 20px;
    opacity: 1;
    background-color: #ffffff;
    border: 1px solid var(--bs-border-color);
    font-size: 14px;
    line-height: 14px;
    position: relative;
}
.swiper--about  .swiper-pagination-bullet-active {
    background-color: var(--color-green-clear);
    border-color: var(--color-green-clear);
    color: #ffffff;
}
  .swiper--about .swiper-pagination-bullet::before {
    content: "";
    width: 1px;
    height: 18px;
    display: block;
    border-left: 1px solid var(--bs-border-color);
    position: absolute;
    top: -26px;
    left: 50%;
  }    
.swiper--about-text {
  padding-top: 15px;
  margin-left: 110px;
}
@media (max-width: 991.98px) {
	.swiper--about-text {
	  margin-left: 0;
	}
	.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
		margin: 0;
	}
	.swiper--about .swiper-pagination-bullet {
		padding: 3px 3px;
		font-size: 10px;
		line-height: 11px;
	}
}
.abount-slider-area .swiper-button-prev::after,
.abount-slider-area .swiper-button-next::after {
  display: none;
}
.abount-slider-area .swiper-button-next, .abount-slider-area .swiper-container-rtl .swiper-button-prev {
    right: -30px;
}
.abount-slider-area .swiper-button-prev, .abount-slider-area .swiper-container-rtl .swiper-button-next {
    left: -30px;
}
.abount-slider-area .swiper-button-prev svg polygon,
.abount-slider-area .swiper-button-next svg polygon {
	fill: #3C687A;
}
	.abount-slider-area .swiper-button-prev:hover svg polygon,
	.abount-slider-area .swiper-button-next:hover svg polygon {
		fill: #599db5;
	}
@media (max-width: 991.98px) {
	.abount-slider-area .swiper-button-prev,
	.abount-slider-area .swiper-button-next {
		display: none;
	}
}


.home-marcas .container .banner-content-home {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.home-marcas .home-marcas-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
	.home-marcas .home-marcas-wrapper a {
	  margin: 0 12px 12px 12px;
	}
	.home-marcas .home-marcas-wrapper a::first-child {
	  margin: 0 12px 12px 0;
	}
	.home-marcas .home-marcas-wrapper a::last-child {
	  margin: 0 0 12px 12px;
	}
	.home-marcas .home-marcas-wrapper img {
	  height: 45.33px;
	  width: auto;
	}
@media (max-width: 991.98px) {
  .home-marcas .container {
    margin-top: 40px;
  }
  .home-marcas .home-marcas-wrapper {
    justify-content: center;
    flex-direction: column;
  }
  	.home-marcas .home-marcas-wrapper img {
	  margin-bottom: 20px;
	}
}
.home-title {
  display: flex;
  align-items: end;
}
.home-title .container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

  .home-title .h3 {
    display: block;
    font-size: 1.9rem;
    color: var(--color-grey-1);
    font-weight: 400;
    /*margin: 0 60px;*/
  }
@media (max-width: 991.98px) {
}
.page-home-banner-area {
  margin: 30px 0;
  padding: 30px 0;
  position: relative;
  z-index: 4;
  display: block;
}
.page-home-banner-area.no-margin {
  margin-bottom: 0;
}
.page-home-banner-area.color-green {
  background-color: var(--color-green-1);
}
  .page-home-banner-area .banner-content-home {
    margin: 0 13px;
  }

.page-home-formtitle-area {
  margin: 20px 0 14px 0;
}
  .page-home-formtitle-area .row {
    margin: 0 13px;
  }
  .page-home-formtitle-area h2 {
    color: var(--color-green-1);
    font-size: 3.6rem;
    font-weight: 800;
    line-height: 3.6rem;
    margin: 0 0 14px 0;
    position: relative;
  }
  .page-home-formtitle-area h2::before{
    content: "";
    display: block;
    width: 100%;
    border-top: 1px solid var(--color-grey-2);
    margin: 0 0 30px 0;
  }
  .page-home-formtitle-area.internal h2::before{
    display: none !important;
  }
  
  .page-home-formtitle-area h4 {
    color: var(--color-green-1);
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.4rem;
    margin: 0 0 6px 0;
  }
  @media (max-width: 991.98px) {
    .page-home-banner-area {
      display: block;
    }
    .page-home-banner-area::before {
      width: 25px;
      top: -40px;
      bottom: -280px;
    }
      .page-home-formtitle-area h2 {
        font-size: 2.6rem;
        line-height: 2.6rem;
      }
  }
  .page-home-text {
    margin-top: -20px;
    margin-bottom: 40px;
  }
    .page-home-text h2 {
      color: var(--color-green-1);
      margin-bottom: 10px;
      font-size: 2.1rem;
      line-height: 2.4rem;
    }
      .page-home-text h2 span {
        display: block;
        margin-bottom: 20px;
      }
      .page-home-text p {
        font-size: 1.1rem;
      }
  

      .page-text-spacer {
        margin-right: 40px;
        margin-left: 40px;
      }




.home-about-area .home-about-right {
  padding-right: 20%;
  padding-left: 4%;
}

.home-about-area .home-about-right h1 {
  margin-bottom: 20px;
}

.home-about-area .home-about-right p span {
  font-weight: 500;
}

.home-about-area .home-about-right .primary-btn {
  color: #fff;
  border: 1px solid #fff;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.home-about-area .home-about-right .primary-btn:hover {
  background: transparent;
  color: var(--color-orange-1);
  border-color: var(--color-orange-1);
}

@media (max-width: 1366px) {
  .home-about-area .home-about-right {
    padding-right: 5%;
    padding-left: 4%;
  }
}

@media (max-width: 800px) {
  .home-about-area .home-about-right {
    margin-top: 40px;
  }
}

.text-clear h2 {
  color: #ffffff !important;
}
.text-clear .section-sub-title::before {
    background-color: #ffffff !important;
}

.section-distribuidores-area {
  background-image: url('../img/ui2/visuar-home_distribuidores@3x.jpg?v=0.0.1');
  background-size: cover;
  background-position: top center;
  color: #fff;
  padding: 3rem 0;
  position: relative;
}
  .section-distribuidores-area .content-box {
    position: relative;
    z-index: 2;
  }
  .section-distribuidores-area .overlay-poligon {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background-color: var(--color-green); 
    clip-path: polygon(0 0, 75% 0, 100% 100%, 0% 100%);
    z-index: 1;
  }

.section-capital-humano {
  background-image: url('../img/ui2/visuar-home_img-capitalhumano-fondo@v3.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 160px 0;
  overflow: hidden;
}
.section-capital-humano .img-col {
  position: relative;
}
.section-capital-humano .content-box-img {
    margin-right: 0;
    margin-left: auto;
    height: 100%;
    min-height: 400px;
    max-width: 480px;
    position: relative;
}
.section-capital-humano .img-col .img-col-top {
  display: flex;
  align-items: flex-end;
  height: 170px;
  position: absolute;
  top: -170px;
  left: 0;
  right: 0;
  background-color: var(--color-grey);
}
.section-capital-humano .img-col .img-col-top::before {
  content: "";
  position: absolute;
  bottom: -35px; /* lo hace sobresalir */
  left: 80px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 35px solid var(--color-grey); /* color del triángulo */
}
.section-capital-humano .img-col .content-box-img::before {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  top: -170px;
  left: -100%;
  bottom: -170px;
  background-color: var(--color-grey);
}
.section-capital-humano .img-col .content-box-img::after {
  content: "";
  display: block;
  height: 170px;
  position: absolute;
  bottom: -170px;
  left: 0;
  right: 0;
  background-color: var(--color-grey);
}
.section-capital-humano .content-box {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  min-height: 400px;
  max-width: 480px;
  background-color: var(--color-grey);
}
.section-capital-humano .content-box-btn {
  margin: 80px 0 60px 0
}
.section-capital-humano .stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}
.section-capital-humano .stat strong {
  display: block;
  font-size: 2rem;
}
.section-capital-humano .stat span {
  font-size: 0.9rem;
  opacity: 0.8;
}
@media (max-width: 991.98px) {
  .section-capital-humano .img-col .bg-img,
  .section-capital-humano .content-box {
    min-height: 300px;
  }
  .section-capital-humano .stats {
    flex-direction: column;
  }
  .section-capital-humano .content-box {
    max-width: 100%;
  }
  .section-capital-humano .count-item {
    margin-bottom: 20px;
  }
  .section-capital-humano .count-item .item-number {
    font-size: 2.4rem;
    line-height: 2.8rem;
  }
  .section-capital-humano .count-item .item-text {
    margin-top: 0;
  }
}

.page-pagination {
  margin-top: 40px;
  margin-bottom: 100px;
}
.page-shared {
  margin-top: 60px;
  margin-bottom: 100px;
}
.shared-wrapper {
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--bs-border-color);
  border-bottom: 1px solid var(--bs-border-color);
}
  .shared-wrapper .shared-title {
    font-size: 1.2rem;
    line-height: 1.6rem;
    font-weight: 400;
  }
  .shared-wrapper .shared-links a,
  .shared-wrapper .shared-links button  {
    margin: 0 0 0 30px;
    font-size: 1.2rem;
    line-height: 1.6rem;
    font-weight: 600;
  }
  .shared-wrapper .shared-links button  {
    border: none !important;
	background-color: transparent !important;
  }








.card-blue {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 15px;
  background-color: var(--color-blue-1);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: 90px;
}
  .card-blue .card-body {
    display: flex;
    flex-direction: column;
  }
  .card-blue.vision {
    background-image: url(../img/ui/icon/vision.svg);
  }
  .card-blue.valores {
    background-image: url(../img/ui/icon/valores.svg);
  }
  .card-blue.mision {
    background-image: url(../img/ui/icon/mision.svg);
  }
  .card-blue h4 {
    padding: 0 0 15px 0;
    font-size: 2rem;
    color: #ffffff;
  }
  .card-blue p {
    padding: 0;
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.5rem;
    color: #ffffff;
  }


/*--------------------------------------------------------------
# Btns
--------------------------------------------------------------*/
.btn-gray {
  background: var(--color-grey);
}

.btn-blue {
  background: var(--color-green);
}

.news-thumb {
  background: #ffffff;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 2px 4px 0 rgba(184, 184, 184, 0.5);
}
.news-thumb img {
  border-radius: 10px 10px 0 0;
}

.news-init {
  padding-bottom: 20px;
}
.pseudo-btn {
	cursor: pointer;
}
.btn-primary {
  color: #fff;
  background-color: var(--color-green);
  border-color: var(--color-green);
  border-radius: 3px;
  border-radius: 50px;
  padding-left: 40px;
  position: relative;
  font-family: "Roboto Mono", monospace;
  text-transform: uppercase;
}
  .btn-primary:hover,
  a:hover .btn-primary {
    color: #fff;
    background-color: var(--color-grey);
    border-color: var(--color-grey);
  }
  .btn-primary:before {
    content: "";
    width: 6px;
    height: 6px;
    display: block;
    background-color: #fff;
    border-radius: 10px;
    position: absolute;
    top: calc(50% - 3px);
    left: 10px;
  }
.btn-success {
    color: #fff;
    background-color: var(--color-green-clear);
    border-color: var(--color-green-clear);
    border-radius: 50px;
    padding-left: 40px;
    position: relative;
    font-family: "Roboto Mono", monospace;
    text-transform: uppercase;
}
  .btn-success:hover,
  a:hover .btn-success  {
      color: #fff;
      background-color: var(--color-grey);
      border-color: var(--color-grey);
  }
  .btn-success:before {
    content: "";
    width: 6px;
    height: 6px;
    display: block;
    background-color: #fff;
    border-radius: 10px;
    position: absolute;
    top: calc(50% - 3px);
    left: 10px;
  }
.btn-success.left-style {
    padding-right: 40px;
    padding-left: 20px;
    text-align: left;
}
  .btn-success.left-style:before {
    left: auto;
    right: 10px;
  }
.btn-secondary {
  color: #fff;
  background-color: var(--color-grey);
  border-color: var(--color-grey);
  border-radius: 3px;
  border-radius: 50px;
  padding-left: 40px;
  position: relative;
  font-family: "Roboto Mono", monospace;
  text-transform: uppercase;
}
  .btn-secondary:hover,
  a:hover .btn-secondary {
    color: #fff;
    background-color: var(--color-green);
    border-color: var(--color-green);
  }
  .btn-secondary:before {
    content: "";
    width: 6px;
    height: 6px;
    display: block;
    background-color: #fff;
    border-radius: 10px;
    position: absolute;
    top: calc(50% - 3px);
    left: 10px;
  }


.btn-clear {
  color: var(--color-grey);
  background-color: var(--color-grey-clear2);
  border-color: var(--color-grey-clear2);
  border-radius: 3px;
  border-radius: 50px;
  padding-left: 40px;
  position: relative;
  font-family: "Roboto Mono", monospace;
  text-transform: uppercase;
}
  .btn-clear:hover {
    color: #fff;
    background-color: var(--color-grey);
    border-color: var(--color-grey);
  }
  .btn-clear.active {
    color: #fff;
    background-color: var(--color-orange);
    border-color: var(--color-orange);
  }
  .btn-clear:before {
    content: "";
    width: 6px;
    height: 6px;
    display: block;
    background-color: var(--color-grey);
    border-radius: 10px;
    position: absolute;
    top: calc(50% - 3px);
    left: 10px;
  }

.btn-warning {
  color: #fff;
  background-color: var(--color-orange);
  border-color: var(--color-orange);
  border-radius: 3px;
  border-radius: 50px;
  padding-left: 40px;
  position: relative;
  font-family: "Roboto Mono", monospace;
  text-transform: uppercase;
}
  .btn-warning:hover,
  .pseudo-btn:hover .btn-warning {
    color: #fff;
    background-color: var(--color-grey);
    border-color: var(--color-grey);
  }

.btn-success-2 {
    color: #fff;
    background-color: var(--color-green-clear);
    border-color: var(--color-green-clear);
    border-radius: 2px;
    position: relative;
    font-family: "Roboto Mono", monospace;
    text-transform: uppercase;
}
  .btn-success-2:hover {
      color: #fff;
      background-color: var(--color-grey);
      border-color: var(--color-grey);
  }  

.btn.simple {
  padding-left: 20px !important;
}
.btn.simple:before {
  display: none !important;
}

.btn.small {
  zoom: .8;
}
.btn.slim {
  zoom: .8;
  padding-top: 0.075rem;
  padding-bottom: 0.075rem;
}

/*--------------------------------------------------------------
# Filter
--------------------------------------------------------------*/
.section-filter {
  display: flex;
  align-items: center;
}
  .section-filter .section-filter-title {
    font-size: 2.075rem;
    line-height: 2.375rem;
    font-weight: 400;
    margin-right: 15px;
  }
  .section-filter .section-filter-list li {
    display: inline-block;
    margin: 0 3px;
  }

/*--------------------------------------------------------------
# Page Styles
--------------------------------------------------------------*/
.page-title-area {
  padding: 0;
  margin: 0 0 50px 0;
  position: relative;
  z-index: 2;
}
  .page-title-area .title {
    padding: 16px 50px 16px 80px;
    margin: 0 64px 0 250px;
    background-color: var(--color-green-2);
    border-radius: 0 0 0 60px;
    position: relative;
  }
    .page-title-area .title::before {
      content: "";
      width: 24px;
      background-color: var(--color-green-2);
      display: block;
      position: absolute;
      top: 24px;
      right: -24px;
      bottom: 0;
    }
    .page-title-area .title::after {
      content: "";
      width: 24px;
      height: 24px;
      background-color: var(--color-violet-1);
      display: block;
      position: absolute;
      top: 0;
      right: -24px;
      clip-path: polygon(0% 0%, 100% 100%, 100% 100%, 0 100%);
    }
    .page-title-area .title h3 {
      color: var(--color-green-1);
      font-size: 2.4rem;
      font-weight: 800;
      line-height: 2.6rem;
    }
  .page-title-area .title-deco {
    width: 250px;
    height: 24px;
    display: block;
    position: absolute;
    top: -24px;
    left: -250px;
  }
    .page-title-area.right .title-deco {
      left: auto;
      right: -250px;
    }
  .page-title-area .title-deco::after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background-color: var(--color-green-1);
    border-radius: 0 0 0 22px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
  }
  .page-title-area.right .title-deco::after {
    border-radius: 0 0 22px 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
  }
  .page-title-area .title-deco::before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background-color: #ffffff;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
  }
  .page-title-area .title-deco.violet::before {
    background-color: var(--color-green-1);
  }
  .page-title-area .title-empty {
    padding: 20px 50px 20px 80px;
    margin: 0 0 0 250px;
    background-color: var(--color-orange-1);
    border-radius: 0 0 0 60px;
    position: relative;
  }
  .page-title-area.right .title-empty {
    padding: 20px 50px 20px 80px;
    margin: 0 250px 0 0;
    border-radius: 0 0 60px 0;
  }
  @media (max-width: 991.98px) {
    .page-title-area {
      margin: 0 0 25px 0;
    }
      .page-title-area .title {
        margin: 0 40px 0 50px;
        padding: 10px 20px 10px 40px;
      }
        .page-title-area .title h3 {
          font-size: 1.6em;
        }
      .page-title-area .title-deco {
        width: 50px;
        height: 18px;
        top: -18px;
        left: -50px;
      }
      .page-title-area.right .title-deco {
        width: 50px;
        height: 18px;
        top: -18px;
        right: -50px;
      }
      .page-title-area .title-empty {
        margin: 0 0 0 50px;
        padding: 10px 20px 10px 40px;
      }
      .page-title-area.right .title-empty {
        margin: 0 50px 0 0;
        padding: 10px 40px 10px 20px;
      }
  }



/*--------------------------------------------------------------
# Banner First Area
--------------------------------------------------------------*/
.banner-first-area,
.banner-second-area {
  margin-top: 0;
  position: relative;
}
.banner-second-area {
  padding-top: 60px;
  background-color: var(--color-grey-clear-bg);
}
.banner-first-area-img {
    width: 100%;
    height: 680px;
    object-fit: cover;
    object-position: center top; 
}
.banner-first-area img {
  display: flex;
  align-items: center;
}
@media (max-width: 991.98px) {
  .banner-first-area {
    margin-top: 0;
    background-size: auto 300px;
    background-position: top center;
  }
  .banner-first-area-img {
    height: 400px;
  }
}
.banner-first-area-item {
  width: 100%;
  padding: 30px 0;
  margin-top: 280px;
  position: relative;
  z-index: 2;
  background-color: var(--color-green-1);
}


.banner-first-area-text {
  position: relative;
  z-index: 2;
}
  .banner-first-area-text h1 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 2.9rem;
    margin-bottom: 12px;
  }
    .banner-first-area-text h2 {
      color: #ffffff;
      font-size: 1.3rem;
      font-weight: 400;
      font-style: italic;
      line-height: 1.7rem;
      margin: -10px auto 30px 40px;
    }
    .banner-first-area-text ul {
      margin: 20px 20px 0 300px;
    }
      .banner-first-area-text ul li {
        margin: 4px 0;
      }
        .banner-first-area-text ul li a {
          margin: 4px 0;
          color: #ffffff;
          font-size: 1.5rem;
          text-transform: uppercase;
        }
          .banner-first-area-text ul li a i {
            padding-right: 6px;
            opacity: .5;
            font-size: 14px;
            position: relative;
            top: -3px;
          }
          .banner-first-area-text ul li a:hover {
            font-weight: 600;
          }
            .banner-first-area-text ul li a:hover i {
              opacity: 1;
            }
            .banner-first-area-text ul li.active a {
              color: var(--color-orange-1);
            }
        @media (max-width: 991.98px) {
          .banner-first-area-text h1 {
            font-size: 1.5rem;
            line-height: 1.9rem;
          }
          .banner-first-area-text h2 {
            font-size: 1rem;
          }
          .banner-first-area-text h2 {
            margin: -10px auto 30px 0px;
          }
          .banner-first-area-text ul {
              margin: 20px 20px 0 20px;
          }
        }

        /*Nosotros*/
        .page-about .banner-first-area {
          height: 450px;
          margin-bottom: 0;
        }
        @media (max-width: 991.98px) {
          .page-about .banner-first-area {
            height: 280px;
          }
        }

        /*Catálogo*/
        .page-catalogue .banner-first-area {
          margin-bottom: 30px;
        }
          .page-catalogue .banner-first-area.no-bg {
            background-image: none !important;
          }
            .page-catalogue .banner-first-area.no-bg .banner-first-area-item {
              margin-top: 0;
            }
            .page-catalogue .banner-first-area .banner-first-area-image.image-cover-wrapper {
              display: flex;
              align-items: center;
              justify-content: center;
            }
            .page-catalogue .banner-first-area .banner-first-area-image .image-cover {
              width: inherit;
              position: relative;
              top: inherit;
              left: inherit;
            }
            @media (max-width: 991.98px) {
              /*.page-catalogue .banner-first-area.no-bg .banner-first-area-item {
                margin-top: 58px;
              }*/
              .page-catalogue .banner-first-area .banner-first-area-image.image-cover-wrapper {
                display: none;
              }
            }

        .page-catalogue .banner-first-area-text h1 span span {
          font-size: 2.5rem;
          font-weight: 800;
          line-height: 2.9rem;
          margin-bottom: 12px;
          text-transform: uppercase;
        }
        .page-catalogue .banner-first-area-text h2 {
          color: #ffffff;
          font-size: 1.3rem;
          font-weight: 400;
          font-style: normal;
          line-height: 1.7rem;
          margin: -10px auto 30px 40px;
          text-transform: uppercase;
        }
        .page-catalogue .banner-first-area-text ul {
          margin: 20px 20px 0 40px;
        }
          .page-catalogue .banner-first-area-text ul li a {
            text-transform: inherit;
          }
          @media (max-width: 991.98px) {
            .banner-first-area-text ul li a {
              margin: 4px 0 10px 0;
              font-size: 1.2rem;
            }
              .banner-first-area-text ul li a i {
                top: -1px;
              }
            .page-catalogue .banner-first-area-text ul {
              margin: 20px 20px 0 0;
            }
            .page-catalogue .banner-first-area-text h2 {
              margin: -10px auto 30px 0;
            }
          }

.banner-first-area-image {
  position: relative;
}
  .banner-first-area-image .image-cover {
    width: 130%;
    position: absolute;
    top: -30%;
    left: -20px;
  }
    .banner-first-area-image img {
      width: 100%;
    }
@media (max-width: 991.98px) {
  .banner-first-area-image .image-cover {
      width: 100%;
      position: relative;
      top: 0;
      left: 0px;
  }
}


/*--------------------------------------------------------------
# Contact Form
--------------------------------------------------------------*/
.contact-form-area {
  padding-bottom: 60px;
} 
  .contact-form-area form .form-group {
    padding-bottom: 10px;
  }
  .contact-form-area form .form-control,
  .contact-form-area form textarea {
    padding: 20px 8px;
    border: none;
    font-family: "Roboto Mono", monospace;
    font-weight: 400;
    color: var(--color-green-1);
    font-size: 1.075rem;
    background-color: transparent;
    border-top: 1px solid var(--bs-border-color);
    border-radius: 0;
  }
  .contact-form-area form textarea {
    height: 220px;
  }
  .contact-form-area form .form-control::placeholder {
    font-size: 1.075rem;
    font-family: "Roboto Mono", monospace;
    font-weight: 400;
  }
  .contact-form-area form .form-control::-ms-input-placeholder { /* Edge 12 -18 */
    font-size: 1.075rem;
    font-family: "Roboto Mono", monospace;
    font-weight: 400;
  }
  .contact-form-area form .text-label {
    margin: 0 20px 0 0;
    font-size: 1.075rem;
    font-weight: 600;
  }
  .contact-form-social {
    margin-top: 30px;
  }
    .contact-form-social li {
      display: inline-block;
    }
      .contact-form-social li a {
        display: inline-block;
        color: #ffffff;
        margin-right: 14px;
      }
        .contact-form-social li a i {
          font-size: 24px;
        }
        .contact-form-social li a:hover {
          color: var(--color-orange-1);
        }
@media (max-width: 991.98px) {
  .contact-form-area {
    margin: 0;
  }
    .contact-form-area form {
      margin: 50px 0 30px 0;
    }
    .contact-form-area form .text-label {
      margin: 0;
      text-align: right;
      display: block;
    }
      .contact-form-area form .btn {
        margin: 10px 13px 0 auto;
        display: block;
      }
}


/*--------------------------------------------------------------
# Staff Area
--------------------------------------------------------------*/
.page-staff-text {
  margin-top: 50px;
  padding-bottom: 50px;
  position: relative;
}
  .page-staff-text::before {
    content: "";
    display: block;
    width: 50px;
    position: absolute;
    top: -200px;
    bottom: 0;
    left: 0;
    background-color: var(--color-orange-1);
    border-radius: 0 90px 0 0;
    z-index: 4;
  }
  @media (max-width: 991.98px){
    .page-staff-text::before {
      width: 25px;
      top: -90px;
    }
  }

  .page-staff-text h2 {
    color: var(--color-green-1);
    margin-bottom: 10px;
    font-size: 2.1rem;
    line-height: 2.4rem;
  }
    .page-staff-text h2 span {
      display: block;
      margin-bottom: 20px;
    }
  @media (max-width: 991.98px) {
    .page-staff-text h2 {
      font-size: 1.6rem;
      line-height: 1.8rem;
    }
  }
  .page-staff-text p {
    font-size: 1.1rem;
  }
  .contact-form-area.staff {
    background-color: var(--color-grey-1);
    border-radius: 0;
    margin: 0;
  }
  .contact-form-area.staff form {
    margin: 30px 40px 30px 40px; 
  }
  .contact-form-area.staff .submit-wrapper {
    margin: 0 40px 30px 40px; 
  }
  .contact-form-area.staff h2 {
    color: var(--color-green-1);
    font-size: 2.2rem;
    line-height: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
  }

  .file-chosen {
    padding: 4px 32px 4px 12px;
    margin-bottom: 10px;
    border: 1px solid var(--color-grey-3);
    border-radius: 40px;
    display: none;
    position: relative;
  }
    .file-chosen.loaded {
      display: inline-block;
    }
    .file-clean {
      position: absolute;
      right: 10px;
      font-size: 22px;
      color: var(--color-orange-1);
      cursor: pointer;
    }



/*--------------------------------------------------------------
# File Upload
--------------------------------------------------------------*/
/*Custom fileupload*/
.drag-and-drop-zone {
  min-height: 100px;
  padding: 20px 20px;
  margin: 0 0 20px 0;
  border: 2px dashed var(--color-violet-1);
  border-radius: 5px;
  background: white;
  text-align: center;
}
@media (max-width: 991.98px) {
  .drag-and-drop-zone {
    display: none;
  }
}
  .drag-and-drop-zone > div {
    margin: 20px 0;
    font-size: 20px;
    line-height: 20px;
    color: #ccc;
  }
  .fileupload-buttonbar .table-striped {
    background: #f3f3f3;
  }
  .template-upload {
    width: 100%;
  }
  .file-preview {
    width: 80px;
    vertical-align: middle !important;
  }
  .file-filename {
    width: 100px;
    vertical-align: middle !important;
    
  }
    .file-filename p {
      width: 100px;
      margin: 5px 0;
      white-space: nowrap;
      text-overflow: ellipsis;
      overflow: hidden;
    }
  .file-filesize {
    width: 120px;
    vertical-align: middle !important;
  }
    .file-filesize .progress {
      background-color: #eee;
    }
  .file-filebutton {
    vertical-align: middle !important;
    text-align: right;
  }  
    .file-filebutton .btn {
      margin: 2px 0;
      font-size: 12px;
    } 
  .temp-display-none {
      display: none !important;
  }
  .attach-conainer .temp-display-none {
    display: none !important;
  }
  .attach-conainer .fade.in {
    opacity: 1;
  }
  .progress-bar {
    color: var(--color-orange-1);
    background-color: var(--color-orange-1);
  }
  .lead-recommend-note {
    text-align: center;
  }
  

/*--------------------------------------------------------------
# Call to Action
--------------------------------------------------------------*/
.call-to-action-area {
  padding: 50px 0;
  background: url(../img/ui/call-to-action.jpg) no-repeat left center #ffffff;
  background-size: contain;
  position: relative;
}
.call-to-action-area.home,
.call-to-action-area.services {
  background: none;
}
  .single-call-to-action-widget {
    text-align: right;
    padding: 70px 0;
    margin-right: 50px;
  }
    .single-call-to-action-widget h2 {
      color: var(--color-green-1);
      margin-bottom: 10px;
      font-size: 1.9rem;
      line-height: 2.4rem;
    }
@media (max-width: 991.98px) {
  .call-to-action-area {
    background: url(../img/ui/call-to-action-mobile.jpg) no-repeat left top #ffffff;
    background-size: cover;
  }
    .call-to-action-area::before {
      content: "";
      width: 20px;
      height: 80px;
      top: 40px;
      right: 0;
    }
    .single-call-to-action-widget {
      padding: 80px 0 40px 0;
      margin-right: 20px;
    }
      .single-call-to-action-widget h2 {
        font-size: 1.6rem;
        line-height: 2.1rem;
      }
        .single-call-to-action-widget h2 br {
          display: none;
        }
}




/*--------------------------------------------------------------
# Newsletter
--------------------------------------------------------------*/
.newsletter-area {
  background-color: var(--color-green-1);
  padding: 30px 0;
}
.style-2 .newsletter-area {
  background-color: transparent;
  margin-bottom: 30px;
}
.single-newsletter-widget {
  display: flex;
  align-items: center;
  padding: 6px 10px 6px 40px;
}
.single-newsletter-title p {
  color: #ffffff;
  margin: 0 20px 0 0;
  font-size: 1.2rem;
  font-weight: 600;
}
  .single-newsletter-title p strong {
    font-weight: 800;
  }
.single-newsletter-widget input[type='text'],
.single-newsletter-widget input[type='email'] {
  border: none;
  font-weight: 300;
  background-color: var(--color-green-2);
  color: #ffffff;
  border-radius: 0;
  font-size: 1rem;
  font-weight: 600;
  padding: 6px calc(1.5em + 0.75rem) 6px 18px;
}
.single-newsletter-widget input[type='text']::placeholder,
.single-newsletter-widget input[type='email']::placeholder {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
}
.single-newsletter-widget input[type='text']::-ms-input-placeholder,
.single-newsletter-widget input[type='email']::-ms-input-placeholder { /* Edge 12 -18 */
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
}
.single-newsletter-widget .btn-default {
  background-color: var(--color-green-2);
  color: #ffffff;
  border-radius: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.single-newsletter-form {
  margin-right: 30px;
  position: relative;
}
  .single-newsletter-form .invalid-feedback {
    position: absolute;
    bottom: -30px;
    z-index: 5;
  }
@media (max-width: 991.98px) {
  .single-newsletter-widget {
    display: block;
    padding-bottom: 30px;
    border-radius: 0 0 0 50px;
  }
  .single-newsletter-form {
    margin-right: 5px;
  }
  .single-newsletter-title p {
    margin: 10px 0 10px 0;
  }
  .single-newsletter-form .invalid-feedback {
    bottom: -24px;
  }
}

.contact-title {
  padding: 120px 0 0 140px;
  position: relative;
}
.contact-title::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-top: 80px solid #ffffff;
  position: absolute;
  top: 0;
  margin-left: 35px;
}
  .contact-title h2 {
    font-size: 3.2rem;
    line-height: 3rem;
    color: #ffffff;
    text-transform: uppercase;
  }
  .contact-title h3 {
    font-size: 3.2rem;
    line-height: 3rem;
    color: #ffffff;
  }
@media (max-width: 991.98px) {
  .contact-title {
    padding: 120px 0 0 0;
    position: relative;
  }
    .contact-title h2 {
      font-size: 2.8rem;
      line-height: 2.5rem;
    }
    .contact-title h3 {
      font-size: 2.8rem;
      line-height: 2.5rem;
    }
}

.section-spacer-top {
  padding-top: 60px;
}
.section-spacer-bottom {
  padding-bottom: 60px;
}
.section-spacer-bottom-large {
  padding-bottom: 120px;
}
.section-spacer {
  padding: 60px 0;
}
.section-bg-white {
  background-color: #ffffff;
}
.section-bg-grey {
  background-color: var(--color-grey-clear-bg);
}
.section-bg-dark-grey {
  background-color: var(--color-grey);
  color: #ffff;
}
.section-bg-triangle-grey {
  background-color: var(--color-grey-clear-bg);
  position: relative;
}
  .section-bg-triangle-grey::before {
    content: "";
  }
.section-bg-triangle-bottom {
  position: relative;
}
  .section-bg-triangle-bottom:before {
    content: "";
    position: absolute;
    bottom: -28px; /* lo hace sobresalir */
    left: 25px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-top: 28px solid var(--color-grey-clear); /* color del triángulo */
  }
  .section-bg-grey .section-bg-triangle-bottom:before {
    border-top: 28px solid var(--color-grey-clear-bg);
  }
  .section-bg-grey-clear2 .section-bg-triangle-bottom:before {
    border-top: 28px solid var(--color-grey-clear2);
  }
  .section-bg-grey-clear3 .section-bg-triangle-bottom:before {
    border-top: 28px solid var(--color-grey-clear3);
  }
.section-bg-grey-clear2 {
  background-color: var(--color-grey-clear2);
}
.section-bg-grey-clear3 {
  background-color: var(--color-grey-clear3);
}
.section-border-radius-top {
  border-radius: 10px 10px 0 0;
}
.section-page-triangle-bottom {
  position: relative;
}
  .section-page-triangle-bottom:before {
    content: "";
    position: absolute;
    bottom: -28px; /* lo hace sobresalir */
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-top: 28px solid var(--color-grey-clear); /* color del triángulo */
  }
  .section-page-triangle-bottom.left:before {
    left: 100px;
  }
  .section-page-triangle-bottom.grey-clear:before {
    border-top-color: var(--color-grey-clear-bg);
  }


.count-flex {
  display: flex;
  justify-content: space-between;
}
.count-item .item-number {
  font-size: 3.4rem;
  line-height: 3.8rem;
  min-width: 100px;
  display: inline-block;
}
.count-item .item-text {
    font-size: 1.2rem;
    display: block;
    margin-top: 10px;
}

.page-somos-area-links {
  margin-top: 20px;
}  
@media (max-width: 991.98px) {
  .page-somos-area-links {
    text-align: center;
  } 
  .page-somos-area-links .btn-custom {
    padding: 8px 20px;
    margin: 5px 0; 
  }
  .page-somos-area-image > div {
    margin-bottom: 20px;
  }
  .page-somos-area-image img {
    height: 260px;
  }
}








.grid-layout-about {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: auto auto;
  gap: 10px;
}
.grid-layout-about .item {
  display: flex;
  align-items: center;
  justify-content: center;
}
  .grid-layout-about .item .data {
	height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 3px;
  }
    .grid-layout-about .item .data .flap-wrapper {
      position: absolute;
      right: 0;
      left: 0;
      bottom: 0;
	  transition: all .3s ease;
    }
	
.grid-layout-about .item .data a:hover .flap-wrapper {
	bottom: -20px;
}
/* Posiciones */
.grid-layout-about .a {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}
.grid-layout-about .b {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}
.grid-layout-about .cd-container {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 768px) {
  .grid-layout-about .item .data {
	  width: 100%;
	  height: auto;
  }
  .grid-layout-about .grid-layout {
    display: flex;
    flex-direction: column;
  }
  .grid-layout-about .cd-container {
    display: flex;
    flex-direction: column;
  }
  .grid-layout-about .a { order: 3; margin-top: 10px;}
  .grid-layout-about .b { order: 1; margin-bottom: 10px;}
  .grid-layout-about .cd-container { order: 2; }
  .grid-layout-about .a img { 
	width: 100%;
    height: 250px;
    object-fit: cover;	
  }
  .grid-layout-about .b img  { 
    height: 250px;
    object-fit: cover;	
  }
	.grid-layout-about .a,
	.grid-layout-about .b,
	.grid-layout-about .c,
	.grid-layout-about .d  {
		grid-column: none;
		grid-row: none;
	  }
  .grid-layout-about {
	display: flex;
	flex-direction: column;
    grid-template-columns: none;
    gap: 0;
  }
	.grid-layout-about .flap {
		bottom: -1px;
	}
}



.clientes-count {
  margin: 20px 0 150px 0;
}


/*--------------------------------------------------------------
# Destinos
--------------------------------------------------------------*/
.page-destinos-area {
  margin-top: -90px;
  margin-bottom: 60px;
  padding-top: 40px;
  position: relative;
  z-index: 1;
  background-color: var(--color-green-1);
}
  .page-destinos-area h2 {
    font-size: 2.8rem;
    line-height: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin: 50px 20px;
  }
  .page-destinos-area .page-card-image {
    margin-bottom: 70px;
  }
  .card-destacados-text {
    padding-right: 70px;
    padding-left: 70px;
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
    .card-destacados-text h3 {
      font-size: 2.8rem;
      line-height: 3rem;
      font-weight: 800;
      text-transform: uppercase;
      color: #ffffff;
    }
@media (max-width: 991.98px) {
  .page-destinos-area {
    margin-top: -45px;
  }
    .card-destacados-text {
      padding-right: 30px;
      padding-left: 30px;
    }
    .page-destinos-area h2 {
      font-size: 2.4rem;
      line-height: 2.6rem;
    }
      .card-destacados-text h3 {
        font-size: 2.2rem;
        line-height: 2.7rem;
      }
}

.grey-image,
.grey-imge img {
  filter: grayscale(100%);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer {
  /*padding-top: 80px;*/
  background-color: #ffffff;
}
footer h4 {
  padding-bottom: 5px;
}
footer a {
  color: var(--color-grey);
}
  footer a:hover {
    color: var(--color-green);
  }
.footer-brand {
  padding: 20px 0;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);
}
    .footer-thumb h4 {
      font-size: 1.125rem;
      margin: 0 0 30px 0;
      padding: 0;
      font-weight: 600;
      position: relative;
    }
    .footer-thumb h4::before {
      content: "";
      width: 10px;
      display: block;
      border-bottom: 2px solid var(--color-grey);
      position: absolute;
      left: 0;
      bottom: -10px;
    }
    .footer-thumb ul {
    }

footer .copyright {
  padding: 40px 0;
  background-color: var(--color-grey-clear-bg);
}
  footer .copyright-text p {
    padding: 0;
    margin: 0;
  }





.whole-wrap {
  background-color: #fff;
}

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

.generic-banner .height {
  height: 600px;
}

@media (max-width: 767.98px) {
  .generic-banner .height {
    height: 400px;
  }
}

.generic-banner .generic-banner-content h2 {
  line-height: 1.2em;
  margin-bottom: 20px;
}

@media (max-width: 991.98px) {
  .generic-banner .generic-banner-content h2 br {
    display: none;
  }
}

.generic-banner .generic-banner-content p {
  text-align: center;
  font-size: 16px;
}

@media (max-width: 991.98px) {
  .generic-banner .generic-banner-content p br {
    display: none;
  }
}

.generic-content h1 {
  font-weight: 600;
}

.about-generic-area {
  background: #fff;
}

.about-generic-area p {
  margin-bottom: 20px;
}

.white-bg {
  background: #fff;
}

.section-top-border {
  padding: 70px 0;
  border-top: 1px dotted #eee;
}

.switch-wrap {
  margin-bottom: 10px;
}

.switch-wrap p {
  margin: 0;
}

.section-trayectoria-area {

}
.section-trayectoria-area .count {
  margin-top: 60px;
}
@media (max-width: 991.98px) {
	.section-trayectoria-area .count .count-item {
	  text-align: center;
	  margin-bottom: 35px;
	}
	.section-trayectoria-area .count-item .item-number {
		font-size: 2.4rem;
		line-height: 2.8rem;
	}
	.section-trayectoria-area .count-item .item-text {
		margin-top: 0px;
	}
}

.section-fabrica-area {

}


/*--------------------------------------------------------------
# Soporte
--------------------------------------------------------------*/
.soporte-list-type {
  background-color: rgba(0, 0, 0, 0.1);
}
.soporte-list-type-title {
  padding: 100px 10px 20px 10px;
}
  .soporte-list-type-title.sticky-top {
    z-index: 1;
  }
.soporte-list-item {
  display: flex;
  margin-top: 30px;
  margin-bottom: 20px;
  padding-top: 10px;
  border-top: 1px solid var(--bs-border-color);
}
.soporte-group .col-md-12:first-child .soporte-list-item {
  margin-top: 0;
}
.soporte-list-item .marca-logo {
  flex: 0 0 60%;  /* No crecer, no encoger, ancho fijo del 30% */
  width: 60%;
}
  .soporte-list-item .marca-logo img {
    height: 45px;
    width: auto;
  }

  .soporte-list-item .soporte-tlite {
    font-size: 1.2rem;
    line-height: 1.6rem;
    font-weight: 400;
  }
  .soporte-list-item a {
    font-size: 1.2rem;
    line-height: 1.6rem;
    font-weight: 400;
    color: var(--color-green-clear);
  }
  .soporte-list-item .section-text {
    margin-bottom: 0;
  }
  .section-text.dynamic-text a,
  .section-text.dynamic-text p a  {
    font-size: 1.2rem !important;
    line-height: 1.6rem !important;
    font-weight: 400 !important;
    color: var(--color-green-clear) !important;
  }
@media screen and (max-width:991px){
	.soporte-list-item {
		flex-direction: column;
	}
}


/*--------------------------------------------------------------
# Productos catalogo categorías Title
--------------------------------------------------------------*/
.section-catalogue-title {
  margin-top: 30px;
  margin-bottom: 40px;
}
  .section-catalogue-title .catalogue-title-h1 {
    position: relative;
    text-align: center;
  }
    .section-catalogue-title .catalogue-title-h1::before {
      content: "";
      width: 100%;
      display: block;
      border-top: 2px solid var(--color-green-1);
      position: absolute;
      top: 50%;
      left: 0;
    }
    .section-catalogue-title .catalogue-title-h1 h1 {
      padding: 10px 40px 5px 40px;
      display: inline-block;
      font-size: 2rem;
      color: var(--color-green-1);
      background-color: #ffffff;
      position: relative;
      z-index: 1;
    }
    @media (max-width: 991.98px) {
      .section-catalogue-title .catalogue-title-h1 h1 {
        font-size: 1.8rem;
        line-height: 1.9rem;
      }
    } 

.catalogue-title-marcas ul {
  text-align: center;
}
  .catalogue-title-marcas ul li {
    margin: 10px 20px;
  }
  .catalogue-title-marcas ul li,
  .catalogue-title-marcas ul li a {
    display: inline-block;
  }
  .catalogue-title-marcas ul img {
    width: auto;
    height: 25px;
    filter: invert(0.6);
  }

/*--------------------------------------------------------------
# Productos catalogo categorías
--------------------------------------------------------------*/
.page-catalogue-category .banner-first-area {
  height: 400px;
  margin: 0;
}
@media (max-width: 991.98px) {
  .page-catalogue-category .banner-first-area {
    height: 100px;
  }
} 
.cat-card-col {
  margin-bottom: 20px;
}
.cat-card {
  height: 100%;
  min-height: 210px;
  border-radius: 10px;
  display: flex;
}
.cat-card-image {
  border-radius: 10px;
}
  .cat-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 10px 0 0 10px;
  }
.cat-card-body {
  padding: 20px 20px 60px 20px;
  border-radius: 0 10px 10px 0;
  background-color: var(--color-green-1);
  color: #ffffff;
  position: relative;
}
.cat-card-logo {
  margin-bottom: 10px;
} 
  .cat-card-logo img {
    width: auto;
    height: 10px;
    display: block;
  }
.cat-card-title {
  width: 200px;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 1rem;
  text-transform: uppercase;
}
.cat-card-list {

}
  .cat-card-list li {
    font-size: .8rem;
    line-height: 1rem;
  }
.cat-card-btn {
  position: absolute;
  bottom: 0;
  left: 0;
}
  .cat-card-btn a {
    margin: 10px 10px 20px -30%;
  }
  .cat-card-btn a.btn.btn-secondary {
    padding: 6px 25px;
    font-size: .9rem;
    line-height: .9rem;
    font-weight: 700;
    z-index: 1;
    background-color: var(--color-grey-4);
    color: var(--color-green-1);
  }

/*--------------------------------------------------------------
# Productos
--------------------------------------------------------------*/
.section-catalogue {
  margin-bottom: 50px;
}
.pro-card {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}
  .pro-card-image {
    margin-bottom: 10px;
  }
    .pro-card-image img {
      width: 100%;
      height: 250px;
      object-fit: cover;
    }
  @media (max-width: 991.98px) {
    .pro-card {
      margin-bottom: 50px;
    }
    .pro-card-image img {
      height: 220px;
    }
  } 
  .pro-card-title {
    min-height: 40px;
    margin-bottom: 5px;
    font-size: 1rem;
    line-height: 1.2rem;
    font-weight: 600;
    color: var(--color-green-1);
  }
  .pro-card-ref {
    font-size: .8rem;
    margin-bottom: 10px;
  }
    .pro-detail-slider {
      width: 100%;
      position: relative;
      display: flex;
      align-items: stretch;
    }  
    .pro-detail-slider .swiper {
      width: 100%;
      height: 100%;
      margin-left: auto;
      margin-right: auto;
    } 
    .pro-detail-slider .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    } 
    .pro-detail-slider .swiper-slide {
      background-size: cover;
      background-position: center;
    } 
    .swiper-pro-wrapper {
      width: 80%;
      margin-left: 20%;
      padding-left: 1rem;
    }
    .swiper-pro {
      height: 100%;
      overflow: hidden;
      border: 1px solid #e3e3e8;
      border-radius: 4px;
      position: relative;
    }
    .swiper-pro-controls {
      width: 100%;
      position: absolute;
      top: calc(50% - 22px);
    }
    .swiper-pro-controls .swiper-button-next,
    .swiper-pro-controls .swiper-button-prev {
      color: #7d7d7d;
    }
    .swiper-pro-controls .swiper-button-next::after,
    .swiper-pro-controls .swiper-button-prev::after {
      font-size: 18px;
    }
    .swiper-pro-controls .swiper-button-prev {
      left: 0;
      right: auto;
    }
    .swiper-pro-controls .swiper-button-next {
      right: 0;
      left: auto;
    }  
    .pro-detail-slider .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    } 
    .swiper-pro-thumb-wrapper {
      width: 20%;
      box-sizing: border-box;
      padding: 0;
      overflow: hidden;
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
    }  
    .swiper-pro-thumb {
      width: 100%;
      height: inherit;
      box-sizing: border-box;
      padding: 0;
      overflow: hidden;
    } 
    .swiper-pro-thumb .swiper-slide {
      width: 100%;
      height: 100px !important;
      border: 1px solid #e3e3e8;
      border-radius: 4px;
      overflow: hidden;
    } 
    @media (max-width: 991.98px) {
      .swiper-pro-thumb .swiper-slide {
        height: 60px !important;
      } 
    } 
    .swiper-pro-thumb .swiper-slide img {
      opacity: 0.4;
    } 
    .swiper-pro-thumb .swiper-slide-thumb-active {
      border: 1px solid var(--color-green-1);
    }  
    .swiper-pro-thumb .swiper-slide-thumb-active img {
      opacity: 1;
    } 
    .swiper-pro-thumb-controls.swiper-button-next,
    .swiper-pro-thumb-controls.swiper-button-prev {
      color: #7d7d7d;
      text-align: center;
      width: 100%;
    } 
    .swiper-pro-thumb-controls.swiper-button-next.swiper-button-disabled,
    .swiper-pro-thumb-controls.swiper-button-prev.swiper-button-disabled {
      opacity: 0;
    } 
    .swiper-pro-thumb-controls.swiper-button-next::after,
    .swiper-pro-thumb-controls.swiper-button-prev::after {
      font-size: 18px;
    } 
    .swiper-pro-thumb-controls.swiper-button-next::after {
      transform: rotate(90deg);
    }  
    .swiper-pro-thumb-controls.swiper-button-prev::after {
      transform: rotate(90deg);
    }  
    .swiper-pro-thumb-controls.swiper-button-prev {
      top: 12px;
      right: 0;
      bottom: auto;
      left: 0;
      background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
      /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    } 
    .swiper-pro-thumb-controls.swiper-button-next {
      top: auto;
      right: 0;
      bottom: 0;
      left: 0;
      background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
      /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    }
.pro-detail-card {
  margin-left: 90px;
}
@media (max-width: 991.98px) {
  .pro-detail-card {
    margin-left: 0;
  }
}
  .pro-detail-card-title {
    margin-bottom: 5px;
    font-size: 1.6rem;
    line-height: 1.9rem;
    font-weight: 600;
    color: var(--color-green-1);
  }
  .pro-detail-card-ref {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  .pro-detail-card-description,
  .pro-detail-card-description p {
    font-size: 1rem;
    line-height: 1.6rem;
  }
  .pro-detail-card-description {
    margin-bottom: 10px;
  }
  .pro-detail-card-price {
    margin: 0 0 20px 0;
  }
    .pro-detail-card-price span {
      padding: 4px 8px;
      display: inline-block;
      font-size: 1.2rem;
      color: #ffffff;
      background-color: var(--color-green-1);
    }
      .pro-detail-card-price span strong {
        font-weight: 600;
      }
      .pro-detail-card-description h2 {
        text-transform: uppercase;
        color: var(--color-green-1);
        font-size: 1.7rem;
      }
      @media (max-width: 991.98px) {
        .pro-detail-card-description h2 {
          font-size: 1.4rem;
        }
      }

  .pro-detail {
    margin-top: 30px;
  }
  .pro-detail-title {
    margin-bottom: 15px;
    font-size: 1.4rem;
    line-height: 1.6rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-green-1);
  }
  .pro-detail-text {
    font-size: .9rem;
    line-height: 1.4rem;
  }

/*--------------------------------------------------------------
# Section Fábrica Area
--------------------------------------------------------------*/


.ul-list {
  margin: 20px 0 20px 5px;
}
  .ul-list li {
    position: relative;
    margin-left: 40px;
    padding: 0 0 25px 0;
    font-size: 1.1rem;
  }
    .ul-list li:before {
      content: '';
      height: 25px;
      width: 25px;
      display: inline-block;
      border-radius: 50%;
      background-color: #ffffff;
      border: 4px solid var(--color-green-1);
      position: absolute;
      left: -40px;
      z-index: 1;
    }

    .alert-msj {
      padding: 40px;
      background-color: var(--color-grey-4);
    }
      .alert-msj p {
        font-size: 1.2rem;
        font-weight: 800;
        margin-top: .5rem;
        margin-bottom: .5rem;
        color: var(--color-blue-1);
      }


.mision-valores-item p {
  text-align: center;
  font-size: 1rem;
}
.mision-valores-item ul {
  text-align: center;
  font-size: 1rem;
}      


/*--------------------------------------------------------------
# Section Contacto Area
--------------------------------------------------------------*/
.section-contactenos {
  margin: 40px 0;
}
.contactenos-form-title {

}


/*--------------------------------------------------------------
# Footer WhatsApp
--------------------------------------------------------------*/
.call-to-whatsapp {
  position: fixed;
  right: 0;
  bottom: 0;
  margin: 0 14px 22px 0;
  z-index: 100;
}
  .call-to-whatsapp a {
    width: 48px;
    height: 48px;
    display: inline-block;
    color: #ffffff;
    background: var(--color-green-1);
    text-align: center;
    border-radius: 48px;
    -webkit-border-radius: 48px;
    -moz-border-radius: 48px;
    -ms-border-radius: 48px;
    -o-border-radius: 48px;
    -webkit-box-shadow: 0px 1px 12px 2px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 1px 12px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 1px 12px 2px rgba(0, 0, 0, 0.2);
  }
    .call-to-whatsapp a:hover {
      background-color: var(--color-green-2);
    }
    .call-to-whatsapp a i {
      font-size: 28px;
      line-height: 48px;
      position: relative;
      top: -1px;
    }


/*--------------------------------------------------------------
# Loader
--------------------------------------------------------------*/
#ftco-loader,
#ftco-loader-part {
    position: fixed;
    width: 96px;
    height: 96px;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-box-shadow: 0px 24px 64px rgba(0, 0, 0, 0.24);
    box-shadow: 0px 24px 64px rgba(0, 0, 0, 0.24);
    border-radius: 16px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.2s ease-out, visibility 0s linear 0.2s;
    -o-transition: opacity 0.2s ease-out, visibility 0s linear 0.2s;
    transition: opacity 0.2s ease-out, visibility 0s linear 0.2s;
    z-index: 1000;
}
#ftco-loader-part {
    position: absolute;
}
#carWrapper {
    position: relative;
}

#ftco-loader.fullscreen,
#ftco-loader-part.fullscreen {
    padding: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    background-color: #fff;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

#ftco-loader.show,
#ftco-loader-part.show {
    -webkit-transition: opacity 0.4s ease-out, visibility 0s linear 0s;
    -o-transition: opacity 0.4s ease-out, visibility 0s linear 0s;
    transition: opacity 0.4s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

#ftco-loader .circular,
#ftco-loader-part .circular {
    -webkit-animation: loader-rotate 2s linear infinite;
    animation: loader-rotate 2s linear infinite;
    position: absolute;
    left: calc(50% - 24px);
    top: calc(50% - 24px);
    display: block;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

#ftco-loader .path,
#ftco-loader-part .path {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    -webkit-animation: loader-dash 1.5s ease-in-out infinite;
    animation: loader-dash 1.5s ease-in-out infinite;
    stroke-linecap: round;
}

@-webkit-keyframes loader-rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes loader-rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes loader-dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -136px;
    }
}

@keyframes loader-dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -136px;
    }
}

/*reCaptcha*/
.re-captcha-error .invalid-feedback {
  display: block;
}
/**/



.main-timeline{
  position: relative;
}
.main-timeline:before{
  content: '';
  height: 100%;
  width: 2px;
  border-right: 2px dashed #c4d2e2;
  transform: translateX(-50%);
  position: absolute;
  left: 50%;
  top: 0;
}
.main-timeline:after{
  content: '';
  display: block;
  clear: both;
}
.main-timeline .timeline{
  width: 50.05%;
  display:inline-block;
  float: left;
  position: relative;
  z-index: 1;
}
.main-timeline .timeline:before,
.main-timeline .timeline:after{
  content: '';
  background-color: var(--color-green-1);
  height: 20px;
  width: 20px;
  border-radius: 50%;
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  right: -10px;
}
.main-timeline .timeline:before {
  background-color: #ffffff;
  border: 4px solid var(--color-green-1);
  z-index: 2;
}
.main-timeline .timeline:after{
  content: '';
  background-color: #ffffff;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  border: 1px solid var(--color-green-1);
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  right: -10px;
}
.main-timeline .timeline:after{
  height: 2px;
  width: 80px;
  border-radius: 0;
  right: 0;
}
.main-timeline .timeline-content{
  text-align: right;
  min-height: 155px;
  padding: 20px 150px 15px 12px;
  display:block;
}
.main-timeline .timeline-content:hover{ text-decoration: none; }
.main-timeline .timeline-year{
  color: #ffffff;
  background-color: var(--color-green-1);
  font-size: 1.2rem;
  font-weight: 800;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 80px;
  transform: translateY(-50%);
  position: absolute;
  right: 60px;
  top: 50%;
  z-index: 1;
}
.main-timeline .title{
  color: var(--color-green-1);
  font-size: .85em;
  font-weight: 800;
  line-height: 1.1rem;
  text-transform: uppercase;
  margin: 0 0 5px;
}
.main-timeline .description{
  color: #101010;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 1px;
  margin: 0;
}
.main-timeline .timeline:nth-child(even){ float: right; }
.main-timeline .timeline:nth-child(even):before{
  right: auto;
  left: -10px;
}
.main-timeline .timeline:nth-child(even):after{
  right: auto;
  left: 0;
}
.main-timeline .timeline:nth-child(even) .timeline-content{
  padding: 20px 12px 15px 150px;
  text-align: left;
}
.main-timeline .timeline:nth-child(even) .timeline-year{
  right: auto;
  left: 60px;
}
/*
.main-timeline .timeline:nth-child(5n+2):before,
.main-timeline .timeline:nth-child(5n+2):after{
  background-color: #934666;
}
.main-timeline .timeline:nth-child(5n+2) .timeline-year{
  color: #934666;
  border-color: #934666;
}
.main-timeline .timeline:nth-child(5n+2) .title{ color: #934666; }
.main-timeline .timeline:nth-child(5n+3):before,
.main-timeline .timeline:nth-child(5n+3):after{
  background-color: #1CA685;
}
.main-timeline .timeline:nth-child(5n+3) .timeline-year{
  color: #1CA685;
  border-color: #1CA685;
}
.main-timeline .timeline:nth-child(5n+3) .title{ color: #1CA685; }
.main-timeline .timeline:nth-child(5n+4):before,
.main-timeline .timeline:nth-child(5n+4):after{
  background-color: #F05386;
}
.main-timeline .timeline:nth-child(5n+4) .timeline-year{
  color: #F05386;
  border-color: #F05386;
}
.main-timeline .timeline:nth-child(5n+4) .title{ color: #F05386; }
*/
@media screen and (max-width:990px){
  .main-timeline {
    margin-left: 10px;
  }
  .main-timeline .timeline-year{ right: 30px; }
  .main-timeline .timeline-content{ padding: 15px 160px 15px 15px; }
  .main-timeline .timeline:nth-child(even) .timeline-year{ left: 30px; }
  .main-timeline .timeline:nth-child(even) .timeline-content{ padding: 15px 15px 15px 160px; }
  .main-timeline .timeline-year{
    font-size: 1.5rem;
  }
}
@media screen and (max-width:767px){
  .main-timeline:before{
      transform: translateX(0);
      left: -1px;
  }
  .main-timeline .timeline{
      width: 100%;
      margin-bottom: 60px;
  }
  .main-timeline .timeline:before,
  .main-timeline .timeline:after,
  .main-timeline .timeline:nth-child(even):before,
  .main-timeline .timeline:nth-child(even):after{
      transform: translateY(0);
      top: 14px;
  }

  .main-timeline .timeline:before,
  .main-timeline .timeline:after{
      right: auto;
      left: -12px;
  }
  .main-timeline .timeline:after{ left: 0; }
  .main-timeline .timeline:after,
  .main-timeline .timeline:nth-child(even):after{
      width: 50px;
      top: 25px;
  }
  .main-timeline .timeline .timeline-content,
  .main-timeline .timeline:nth-child(even) .timeline-content{
      text-align: left;
      padding: 70px 10px 10px 20px;
  }
  .main-timeline .timeline .timeline-year,
  .main-timeline .timeline:nth-child(even) .timeline-year{
      line-height: 40px;
      height: 50px;
      width: 120px;
      border-width: 5px;
      transform: translateY(0);
      top: 0;
      left: 45px;
  }
}

.form .invalid-feedback {
  color: #ffd0d0;
}
.form .form-mostrar-texto {
  color: #dddddd;
}

.link-style-visuar {
  font-size: 1rem;
  font-weight: 800;
}

.form-control:focus {
  border-color: rgba(57, 103, 123, .25);
  box-shadow: 0 0 0 .25rem rgba(57, 103, 123, .25);
}
	
/*Pro Card Status*/
.pro-card-status {
  margin: 10px;
  position: absolute;
  top: 0;
  left: 0;
}
  .pro-card-status .item {
    display: block;
    margin-bottom: 10px;
    border: 1px solid #cccccc;
    border-radius: 3px;
    padding: 3px 6px;
    font-size: 13px;
    line-height: 13px;
    font-weight: 800;
    color: var(--color-green-1);
    text-transform: uppercase;
  }
    .pro-card-status .item.new {
      border-color: var(--color-blue-1);
      color: var(--color-blue-1);
    }
    .pro-card-status .item.promo {
      border-color: var(--color-orange-1);
      color: var(--color-orange-1);
    }
/**/

/*Toolbar*/
.section-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
  .section-toolbar .form-control,
  .section-toolbar .btn {
    height: 42px;
    border-radius: 0;
  }
  .section-toolbar .btn-outline-secondary {
    border-color: var(--bs-border-color);
  }
    .section-toolbar .btn-outline-secondary i {
      color: var(--color-green-1);
    }
    .section-toolbar .btn-outline-secondary:hover {
      background-color: var(--color-orange-1);
      border-color: var(--color-orange-1);
    }
      .section-toolbar .btn-outline-secondary:hover i {
        color: #ffffff;
      }
    .section-toolbar .product-search-container {
      min-width: 400px;
    }
/*.product-toolbar-item {
  margin: 0 20px;
}*/
@media screen and (max-width:990px){
  .section-toolbar {
    display: block;
  }
  .product-toolbar-item {
    margin: 0 0 20px 0;
  }
  .section-toolbar .product-search-container {
    min-width: 100%;
  }
}
.product-sorting {
  display: inline-block;
  position: relative;
  z-index: 10;
}

.product-sorting > li {
  display: inline-block;
  position: relative;
  width: 185px;
  height: 42px;
  line-height: 40px;
  cursor: pointer;
  border: solid 1px #ecedee;
  padding-left: 20px;
  padding-right: 7px;
  margin-right: 16px;
}
@media screen and (max-width:990px){
  .product-sorting {
    display: block;
  }
    .product-sorting > li {
      width: 100%;
      margin-right: 0;
    }
}
.product-sorting_container_bottom .product-sorting>li {
  width: 144px;
  margin-right: 0px;
  padding-right: 12px;
}

.product-sorting_container_bottom .product-sorting li span:nth-child(2) {
  margin-left: 24px;
}

.product-sorting li i {
  float: right;
  line-height: 40px;
  color: #51545f;
}

.product-sorting li ul {
  display: block;
  position: absolute;
  right: 0;
  top: 120%;
  margin: 0;
  width: 100%;
  background: #FFFFFF;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  box-shadow: 0 15px 25px rgba(63, 78, 100, 0.15);
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: all 0.3s ease;
}

.product-sorting>li:hover ul {
  visibility: visible;
  opacity: 1;
  top: calc(100% + 1px);
}

.product-sorting li ul li {
  display: block;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
}

.product-sorting li ul li span {
  display: block;
  height: 40px;
  line-height: 40px;
  border-bottom: solid 1px #dddddd;
  color: var(--color-green-1);
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: all 0.3s ease;
  
}
  .product-sorting li ul li .active span {
    font-weight: 800;
  }
  .product-sorting li ul li .active span::before {
    content: "";
    display: block;
    border-left: 2px solid var(--color-green-1);
    color: var(--color-green-1);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
  }

.product-sorting li ul li span:hover {
  color: var(--color-orange-1);
}

.product-sorting li ul li:last-child span {
  border-bottom: none;
}

.product-sorting li span:nth-child(2) {
  margin-left: 71px;
}



.social-body {
  position: relative;
}
.social-body .social-body-resize {
  position: relative;
  margin: -80px 80px 0 80px;
}
  .social-body .social-body-text {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
  }
  .social-body img {
    width: 100%;
  }

  .social-body .social-body-text {
    display: flex;
    flex-wrap: nowrap;
  }
    .social-body .social-body-title {
      flex: 0 0 50%; 
      padding: 20px;
    }
    .social-body .social-body-title h3 {    
      color: #fff;
    }
      .social-body .social-body-title h3 span {
        display: block;
      }
        .social-body .social-body-title h3 span.x2 {
          font-size: 8rem;
          line-height: 8rem;
        }
        .social-body .social-body-title h3 span.x1 {
          font-size: 3rem;
          line-height: 3rem;
        }
      .social-body .social-body-p {
        padding: 40px;
        font-size: 1rem;
        font-weight: 400;
        color: #fff;
      }
      .social-body .social-body-p strong {
        display: block;
        font-weight: 800;
      }


.section-calltoaction-area {
    background-image: url(../img/ui2/visuar-nosotros_samsung-school@2x.jpg);
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 4.8rem 0;
}

.responsabilidad-footer {
  margin-top: 40px;
}
  .responsabilidad-footer h3 {
    margin-bottom: 15px;
    font-size: 2.1rem;
    text-align: center;
    color: var(--color-green-1);
  }
.responsabilidad-footer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.responsabilidad-footer-link .d-grid {
  width: calc(100% - 270px);
}
  .responsabilidad-footer-link .btn {
    background-color: var(--color-orange-1);
    color: #fff;
    border-radius: 50px;
  }
  .responsabilidad-footer-link .icon-wrapper {
    padding: 10px;
    display: inline-block;
  }

  .certificaciones-header .calidad-text-ui {
    display: flex;
  }
    .certificaciones-header .calidad-text-ui ul:first-child {
      margin-right: 40px;
    }

.calidad-text p {
  font-size: 1.2rem;
  line-height: 1.5rem;
  color: #000;
  margin-bottom: 25px;
}
  .calidad-text h3 {
    font-size: 1.2rem;
    line-height: 1.5rem;
    margin-bottom: 30px;
  }
.calidad-text .alert-black {
  margin-top: 30px;
  padding: 20px;
  background-color: var(--color-grey-1);
  color: #fff;
  font-size: 1rem;
  line-height: 1.2rem;
  font-weight: 800;
}
.calidad-text p strong {
  font-weight: 800;
}    

.page-card-spacer-image {
  display: flex;
  align-items: flex-end;
}
  .page-card-spacer-image .content {
    width: 170px;
  }
    .page-card-spacer-image .content img {
      width: 100%;
    }
  .page-card-spacer-image .spacer-image-line {
    width: 100%;
    height: 10px;
    display: block;
    background-color: #376286;
  }
  .page-card-spacer-image .spacer-image-title {
    display: block;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 800;
    margin: 10px;
    color: #000;
  }
    .page-card-spacer-image .spacer-image-title strong {
      display: block;
    }
  .page-card-spacer-image .spacer-image-ri {
    display: block;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
  }

.page-com-ind-last .bg {
  background-color: var(--color-grey-1);
  background-image: url(../img/bg-textura-visuar.png);
  background-position: top right;
  background-size: 86px;
  background-repeat: repeat;
  margin: 60px 0 0 0;
  padding: 40px 0;
  position: relative;
  z-index: 2; 
}
.page-com-ind-last .complejo-header .calidad-text {
  color: #fff;
}
.page-com-ind-last .complejo-item-title h1, 
.page-com-ind-last .complejo-item-title h2 {
  color: #fff;
}
.page-com-ind-last .complejo-item-title h1 strong, 
.page-com-ind-last .complejo-item-title h2 strong {
  color: #fff;
}
.page-com-ind-last .complejo-item-title .year {
  color: var(--color-grey-1);
  text-shadow: 2px 2px 0px #fff, -2px -2px 0px #fff, 2px -2px 0px #fff, -2px 2px 0px #fff;
}
.page-com-ind-last .complejo-footer ul {
  color: #fff;
}


.cat-home-item {
  position: relative;
  margin-bottom: calc(3rem * .5);
}
.cat-home-item .cat-btn {
  margin: 20px 0 0 30px;
  position: absolute;
  top: 0;
  left: 0;
}
.cat-home-item .flap-wrapper {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
}

.row.cat-row>* {
    padding-right: calc(var(--bs-gutter-x) * .25);
    padding-left: calc(var(--bs-gutter-x) * .25);
    margin-bottom: calc(var(--bs-gutter-x) * .5);
}
.cat-marcas-item {
  position: relative;
  border-radius: 5px;
}
  .cat-marcas-item .cat-btn {
    margin: 20px;
    position: absolute;
    top: 40%;
    right: 0;
  }
  .cat-marcas-item .cat-btn .btn {
    text-transform: inherit !important;
  }

.cat-marcas-logo img {
  height: 40px;
}

.pro-cat-header-banner {
  width: 100%;
  height: 450px;
  display: flex;
}
  @media only screen and (max-width : 768px) {
	.pro-cat-header-banner {
	  flex-direction: column;
	}
  }
.pro-cat-header-banner .pro-info {
  display: flex;
  align-items: center;
  justify-content: end;
  background-color: var(--color-green);
  flex: 0 0 36%;
  position: relative;
}
.pro-cat-header-banner .pro-info .flap-wrapper {
  position: absolute;
  top: 0;
  right: -60px;
  bottom: 0;
}
  @media only screen and (max-width : 768px) {
	.pro-cat-header-banner .pro-info {
	  flex-direction: column;
	  align-items: start;
	}
	.pro-cat-header-banner .pro-info .flap-wrapper {
	  display: none !important;
	}
  }
.pro-cat-header-banner .pro-info-text {

}
  .pro-cat-header-banner .pro-info-text h1 {
    color: #ffffff;
    font-size: 2.9rem;
	margin-left: 50px;
  }
  @media only screen and (max-width : 768px) {
	  .pro-cat-header-banner .pro-info-text h1 {
		font-size: 1.7rem;
        margin-left: 30px;
        line-height: 1.9rem;
        margin-bottom: 20px;
	  }
  }
  .pro-cat-header-banner .pro-info-text p {
    width: 200px;
    color: #ffffff;
    font-size: 1.075rem;
	margin-left: 50px;
  }
.pro-cat-header-banner .pro-image {
  flex: 1;
}
.pro-cat-header-banner .pro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.filter-group {
  padding: 20px;
  background-color: #ffffff;
  border-radius: 5px;
}
.filter-item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--bs-border-color);
}
.filter-item:last-child {
  border-bottom: none
}
.filter-parent-link {
  text-transform: uppercase;
  font-family: "Roboto Mono", monospace;
  display: block;
}
.filter-parent-link i {
  position: relative;
  transition: all .5s;
}
.filter-parent-link.collapsed i {
  transform: rotate(180deg);
}
.filter-options ul {
  margin: 20px 0 0 0;
}
.filter-options ul li label {
  display: flex;
  width: 100%;
  align-items: center;
  margin-bottom: 5px;
  cursor: pointer;
}
  .filter-options ul li label.title {
    text-transform: uppercase;
  }
.filter-options ul li input[type=radio] {
  margin-right: 10px;
}

.box-filter-list {
	margin: 0 0 15px 0;
	display: flex;
}
@media only screen and (max-width : 768px) {
	.box-filter-list {
		flex-direction: column;
	}
}
	.box-order {
		display: flex;
		align-items: center;
		margin: 0 0 0 auto;
	}
		.box-order .box-title {
			margin: 0 6px;
      font-family: "Roboto Mono", monospace;
      text-transform: uppercase;
		}
		.box-order .nice-select {
			min-width: 200px;
      border-color: #ffffff;
      border-radius: 30px;
		}


.filter-group .accordion-item {
    border: none !important;
} 
.accordion .filter-options ul {
  margin-top: 0;
  border-bottom: 1px solid var(--bs-border-color);
} 
.filter-options .accordion-header label {
    display: flex;
    width: 100%;
    align-items: center;
    margin-bottom: 5px;
    cursor: pointer;
    text-transform: uppercase;
}
.filter-options .accordion-header label input[type=radio] {
    margin-right: 10px;
}
.accordion.child .accordion-body {
  padding-top: 0;
}
.accordion.child .accordion-body ul li {
  margin-bottom: 6px;
}
.filter-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--bs-border-color);
}

.btn-group-flex {
  display: flex;
  align-items: center;
  gap: 10px
}
  .btn-group-flex .btn-flex-100 {
    flex: 1;
  }
  .btn-group-flex .btn-flex-icon {
    width: 60px;
    text-align: center;
  }


/*Detalle producto*/
.product-detail {
  margin-bottom: 40px;
}
.product-gallery img {
  width: 100%;
  border-radius: 6px;
  object-fit: contain;
}
.thumbs-swiper {
  height: 520px; /* mismo alto que la imagen grande */
}
  .thumbs-swiper img {
    height: 100%;
  }
.thumbs-swiper .swiper-slide {
  cursor: pointer;
  opacity: 0.6;
  border: 1px solid #ffffff;
  background-color: #ffffff;
  margin-bottom: 10px;
}
.thumbs-swiper .swiper-slide-thumb-active {
  opacity: 1;
  border-color: var(--color-grey-clear);
}

.product-info .product-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}

.product-short-desc {
  font-weight: 500;
  color: #444;
}

.product-meta {
  margin: 20px 0;
  border-top: 1px solid var(--color-grey-clear);
  border-bottom: 1px solid var(--color-grey-clear);
}
  .product-meta .meta-row {
    padding: 14px 0;
    display: flex;
    justify-content: space-between;
    font-family: "Roboto Mono", monospace;
    text-transform: uppercase;
    font-size: 14px;
    border-bottom: 1px solid var(--color-grey-clear);
  }
  .product-meta .meta-row:last-child {
    border-bottom: none;
  }

.btn-group .btn {
  margin-right: 10px;
}

.btn-orange {
  background: #ff5722;
  color: #fff;
  border-radius: 30px;
  padding: 8px 20px;
  text-decoration: none;
  font-weight: bold;
}

.btn-blue {
  background: #0096c7;
  color: #fff;
  border-radius: 30px;
  padding: 10px 24px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 20px;
}

.product-note {
  font-size: 14px;
  color: #555;
  margin-top: 15px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
}

.product-info-wrapper {
  margin-left: 60px;
}
.product-info-wrapper h1 {
    margin-bottom: 20px;
    font-size: 2.675rem;
    line-height: 2.675rem;
    font-weight: 400;
	text-transform: uppercase;
}
@media (max-width: 960px) {
  .product-info-wrapper {
    margin-left: 0;
  }
}

/* Contenedor principal del slider */
.product-gallery .swiper.main-swiper  {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.product-gallery .swiper.thumbs-swiper {
  overflow: hidden;
}

.product-note {
  margin-top: 40px;
  margin-bottom: 20px;
  display: flex;
}
.svg-icon {
  width: 40px;
  height: auto;
}
  a .svg-icon {
    width: 20px;
    height: auto;
  }
  .svg-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .product-note .svg-icon {
    margin-right: 20px;
  }

.pro-info-esp-item {
  border-bottom: 1px solid var(--color-grey-clear);
}
.pro-info-esp-item:first-child {
  border-top: 1px solid var(--color-grey-clear);
}
.pro-info-esp-title a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pro-info-esp-title {
  padding: 15px 0;
}
.pro-info-esp-title .number {
  font-size: 1rem;
  margin-right: 50px;
}
.pro-info-esp-title .text {
  font-size: 1.5rem;
  line-height: 1.5rem;
}
.pro-info-esp-title .btn-icon {
  display: block;
  font-size: 20px;
  line-height: 30px;
  color: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  text-align: center;
  background-color: var(--color-orange);
  transition: all .2s ease;
  transform: rotate(45deg);

}
.pro-info-esp-title .collapsed .btn-icon {
  transform: rotate(0deg);
}
  .pro-info-esp-title .btn-icon i {
    line-height: 30px;
    padding: 0;
    margin: 0;
  }
.pro-info-esp-data {
  font-size: 1.1rem;
  line-height: 1.6rem;
  margin-bottom: 30px;
}

/*New ModalAlert*/
.swal2-close:focus {
    box-shadow: none !important;
}

.swal2-styled.swal2-confirm {
    background-color: var(--color-green-clear) !important;
}

.swal2-styled.swal2-confirm:focus {
    box-shadow: 0 0 0 3px var(--color-green-clear-alpha10) !important;
}

.swal2-icon.swal2-info {
    border-color: var(--color-green-clear) !important;
    color: var(--color-green-clear) !important;
}

.swal2-login-facebook-error ul {
	list-style-type: disc;
	list-style-position: outside;
	padding-left: 1.5rem;
	margin: 1rem 0;
	text-align: left;
}
	.swal2-login-facebook-error ul li {
		margin-bottom: 0.5rem;
		list-style-type: disc;
	}
/*Preloader customizado*/
.swal2-container #ftco-loader {
    position: relative;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    top: 45px;
}
.swal2-custom-loader .swal2-loader {
  animation: none !important;
  border: none !important;
  width: auto !important;
  height: auto !important;
}
/**/

.pro-cat-detalle-slide {
  position: relative;
  padding-bottom: 15px;
}
.pro-cat-detalle-slide .swiper-container-horizontal>.swiper-pagination-bullets, 
.pro-cat-detalle-slide .swiper-pagination-custom, 
.pro-cat-detalle-slide .swiper-pagination-fraction {
  bottom: -10px;
}
.pro-cat-detalle-slide .swiper-container-horizontal>.swiper-pagination-bullets, 
.pro-cat-detalle-slide .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  border-radius: 5px;
  background: var(--color-grey-clear);
  opacity: 1;
}
.pro-cat-detalle-slide .swiper-pagination-bullet-active {
  width: 55px;
  opacity: 1;
  background: var(--color-grey-clear);
}

.section-interactive-banner {

}
.interactive-zone-container {
  position: relative;
}
.interactive-zone-container .interactive-zone-image {
  width: 100%;
  height: auto;
  min-height: 400px;
  display: block; 
  object-fit: cover;
}
.interactive-zone-container .interactive-zone-items {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.interactive-zone-container .interactive-zone-items .zone-item {
  position: absolute;
  
  padding-top: 40px;
}

.interactive-zone-container .interactive-zone-items .zone-item-content {
  background-color: #ffffff;
  border: 1px solid var(--bs-border-color);
  border-radius: 10px;
  padding: 10px;
  height: auto !important;
  transition: all .3s ease;
}

/* Quitamos la animación tipo cortina */
.interactive-zone-container .collapse {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Cuando está visible */
.interactive-zone-container .collapse.show {
  display: block;
  opacity: 1;
}

  .zone-item-btn {
    position: absolute;
    top: 0;
    left: 0;
    margin-bottom: 40px;
  }
  .zone-item-btn .btn-icon {
    display: block;
    font-size: 20px;
    line-height: 30px;
    color: #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 30px;
    text-align: center;
    background-color: var(--color-orange);
    transition: all .2s ease;
    transform: rotate(0deg);
    margin-left: auto;
  }
  .zone-item-btn .btn-icon i {
    line-height: 30px;
    padding: 0;
    margin: 0;
  }
  .zone-item-btn .btn-icon:hover {
    transform: rotate(45deg);
  } 

  .conteiner-triangle {
    height: 100%;
    padding: 50px 30px;
    border-radius: 3px;
    background-color: #ffffff;
    position: relative;
    margin-bottom: 10px;
  }
  .conteiner-triangle-top-left {
    position: relative;
  }
  .conteiner-triangle-top-left::before {
    content: "";
    position: absolute;
    top: 0;
    left: 45px;
    transform: translateX(-50%);
    width: 0px;
    height: 0px;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-top: 28px solid var(--color-grey-clear-bg);
}
.conteiner-triangle .section-title {
  padding: 0;
}
.conteiner-triangle .section-title h4 {
  font-size: 2.075rem;
  line-height: 2.375rem;
  font-weight: 400;
}
.dist-item .dist-item-icon {
  padding-bottom: 30px;
  text-align: center;
  border-bottom: 1px solid var(--bs-border-color);
}
.dist-item .dist-item-icon .icon-svg img {
  width: 80px;
  height: auto;
}
.dist-item-text {
  padding: 5px 20px 20px 20px;
}
.dist-item h4 {
  min-height: 74px;
  font-size: 2.075rem;
  line-height: 2.275rem;
  font-weight: 400;
  margin: 0 0 10px 0;
  position: relative;
}
  .dist-item h4 small {
    position: absolute;
    left: -20px;
    font-size: .8rem;
    font-weight: 300;
    margin: 0 20px 0 0;
  }
  .dist-item p {
    font-size: 1.2rem;
    line-height: 1.6rem;
    font-weight: 400;
  }
  
  .border-radius {
	  border-radius: 5px;
  }
  
  .interactive-zone-container.clientes-activos .card-body {
	  text-align: left;
	  color: var(--color-grey);
  }
    .interactive-zone-container.clientes-activos .card-body p {
	  font-size: 1.2rem;
	  margin-top: 5px;
	}
	.interactive-zone-container.clientes-activos .rgo-marker .marker-btn {
		color:  var(--color-grey);
		background-color: var(--color-grey-clear-bg);
	}
     
	 
/* 8 columnas en pantallas grandes */
@media (min-width: 1200px) {
  .col-lg-2-4 {
    flex: 0 0 auto;
    width: 12.5%; /* 100 / 8 = 12.5 */
  }
}
.logos-grid img {
	padding: 15px;
}

.dynamic-text-content {
  color: var(--color-grey) !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  font-weight: 300 !important;
  line-height: 20px !important;
}
.dynamic-text-content p {
  color: var(--color-grey) !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  font-weight: 300 !important;
  line-height: 20px !important;
  margin-bottom: 0 !important;
  background-color: transparent !important;
}
.dynamic-text-content font {
  color: var(--color-grey) !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  font-weight: 300 !important;
  line-height: 20px !important;
  margin-bottom: 0 !important;
  background-color: transparent !important;
}

@media screen and (max-width:991px){
	.rgo-interactive-markers .info-box {
		width: auto !important;
		left: 35px !important;
	}
		.rgo-interactive-markers .info-box h5 {
			font-size: 0.85rem !important;
		}
		.interactive-zone-container.clientes-activos .card-body {
			padding: 10px;
		}
			.interactive-zone-container.clientes-activos .card-body p {
				font-size: 1.0rem;
				margin-top: 5px;
			}
}
@media screen and (max-width:990px){
	.page-fabrica .flap-fx {
		margin-bottom: 30px;
	}
}

.js--clipboard {
  all: unset; /* resetea todo el estilo heredado */
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  color: inherit; /* hereda el color del texto circundante */
}

.js--clipboard i {
  font-size: 1rem;
  transition: transform .2s ease, color .2s ease;
}
.shared-links .js--clipboard i {
  font-size: inherit;
  margin-right: 4px;
}

.js--clipboard:hover i {
  transform: scale(1.1);
  color: #007bff; /* opcional: color al pasar el mouse */
}

.copyright .credits img {
    opacity: 0.6;
    margin: 10px 10px 0 10px;
}