/*--------------------------------------------------------------
>>> FONTS
----------------------------------------------------------------*/

@font-face {
  font-family: "NimbusSanL";
  src: url("fonts/nimbus-sanl-regular.otf") format("opentype");
}
@font-face {
  font-family: "NimbusSanL";
  src: url("fonts/nimbus-sanl-regular-italic.otf") format("opentype");
  font-style: italic;
}
@font-face {
  font-family: "NimbusSanL";
  src: url("fonts/nimbus-sanl-bold.otf") format("opentype");
  font-weight: bold;
}
@font-face {
  font-family: "NimbusSanL";
  src: url("fonts/nimbus-sanl-bold-italic.otf") format("opentype");
  font-weight: bold;
  font-style: italic;
}

*,
body {
  font-family: "NimbusSanL", "Open Sans", sans-serif;
}

h1,
.h1 {
  font-size: 2.5rem;
  font-weight: 600;
}

h2,
.h2 {
  font-size: 2.125rem;
  font-weight: 600;
}

h3,
.h3 {
  font-size: 1.875rem;
  font-weight: 600;
}

h4,
.h4 {
  font-size: 1.75rem;
  font-weight: 600;
}

h5,
.h5 {
  font-size: 1.375rem;
  font-weight: 600;
}

h6,
.h6 {
  font-size: 1.25rem;
  font-weight: 600;
}

.h7 {
  font-size: 1.125rem;
  font-weight: 600;
}

@media (max-width: 992px) {
  h3,
  .h3 {
    font-size: 1.375rem;
  }
}

/*--------------------------------------------------------------
>>> BOOTSTRAP FIXES
----------------------------------------------------------------*/

.post,
.page {
  margin: 0px;
}

a {
  color: #ccc;
  text-decoration: none;
}
.compensate-for-scrollbar {
  margin-right: 0px !important;
}
.disable-container .container {
  padding: 0px !important;
}
ul.breadcrumb {
  margin-bottom: 30px;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea,
select {
  margin: 5px 0px;
  padding: 9px 15px;
  border-radius: 5px;
}
.form-select {
  padding: 9px 15px;
  border-radius: 5px;
}
textarea.form-control {
  margin: 5px 0px 15px 0px;
  min-height: 115px;
}
.container-fluid {
  --bs-gutter-x: 0;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #ccc;
  background-color: transparent;
}
.nav-tabs {
  border: none;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  border-color: transparent;
  background: transparent;
}
.nav-tabs .nav-link {
  border: none;
}
.nav-tabs .nav-link {
  margin-bottom: 0px;
  font-weight: 400;
}
.tab-content {
  padding: 30px 0px;
}
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  color: var(--main-20);
  font-weight: 600;
}
.nav-tabs .nav-link.active {
  font-weight: 600;
}

/*--------------------------------------------------------------
>>> BOOTSTRAP REWRITE
----------------------------------------------------------------*/

header .offcanvas ul li {
  padding-bottom: 0px;
}
header .offcanvas ul li {
  text-align: center;
  margin-bottom: 15px;
  border-bottom: 1px solid #3e3a39;
}
header .offcanvas ul li a {
  width: 100%;
  padding-bottom: 15px;
  position: relative;
  top: 1px;
}
header .offcanvas ul li a {
  color: #fff;
}

[class^="hover-"] {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hover-underline {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}

.hover-underline::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  bottom: 0;
  background: var(--main-20);
  height: 2px;
  -webkit-transition-property: right;
  transition-property: right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.hover-underline:hover::before,
.hover-underline:focus::before,
.hover-underline:active::before {
  right: 0;
}

.form-control,
.form-select {
  border-radius: 5px !important;
}
label {
  font-weight: 600;
}
form h3 {
  margin-top: 30px !important;
}
form button,
form input[type="button"],
form input[type="reset"],
form input[type="submit"] {
  width: fit-content;
  border-radius: 30px;
  font-weight: 600;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-color: transparent;
  border: 2px solid #ccc;
  color: #fff;
  transition: all 0.5s ease;
  padding: 15px 30px;
  background: #ccc;
  min-width: 150px;
}
.nav-tabs button {
  padding: 15px 60px;
  text-align: center;
  color: #333436;
  font-weight: 600;
  position: relative;
  bottom: -4px;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: #ccc;
  border-bottom: 4px solid #ccc;
}
.nav-tabs {
  border-bottom: 4px solid #ccc;
}

header .btn-close {
  opacity: 0.75;
  margin-left: auto;
}
header i.bi-x-lg::before {
  color: #fff;
  font-size: 1.25rem;
}

/*--------------------------------------------------------------
>>> CF7 FIXES
----------------------------------------------------------------*/

span.form-control {
  padding: 0px;
  margin: 15px 0px;
}
.wpcf7-list-item.first {
  margin-left: 0px !important;
}
.wpcf7 form .wpcf7-response-output {
  font-size: 0.85rem;
  border: none !important;
  margin: 0px;
  border: 0px;
  margin-bottom: 15px;
}
footer .wpcf7 form .wpcf7-response-output {
  color: #fff;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
}

form label.error {
  margin: 5px 0px 10px 0px;
}

/*--------------------------------------------------------------
>>> GLOBAL CLASSES
----------------------------------------------------------------*/

a {
  text-decoration: none;
}
a:visited {
  color: #ccc;
}
a:focus {
  outline: none;
}

a,
button {
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

ol li::marker {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ccc;
}

.pt-30 {
  padding-top: 30px;
}
.pb-30 {
  padding-bottom: 30px;
}
.py-30 {
  padding: 30px 0px !important;
}
.pt-50 {
  padding-top: 50px;
}
.pb-50 {
  padding-bottom: 50px;
}
.py-50 {
  padding: 50px 0px;
}
.pt-100 {
  padding-top: 100px;
}
.pb-100 {
  padding-bottom: 100px;
}
.py-100 {
  padding: 100px 0px;
}

.mt-15 {
  margin-top: 15px;
}
.mb-15 {
  margin-bottom: 15px;
}
.my-15 {
  margin: 15px 0px !important;
}
.mt-30 {
  margin-top: 30px;
}
.mb-30 {
  margin-bottom: 30px;
}
.my-30 {
  margin: 30px 0px !important;
}
.mt-50 {
  margin-top: 50px;
}
.mb-50 {
  margin-bottom: 50px;
}
.my-50 {
  margin: 50px 0px !important;
}
.mt-100 {
  margin-top: 100px;
}
.mb-100 {
  margin-bottom: 100px;
}
.my-100 {
  margin: 100px 0px;
}

.pr-0 {
  padding-right: 0px !important;
}
.pl-0 {
  padding-left: 0px !important;
}
@media screen and (max-width: 992px) {
  .pr-0 {
    padding-right: 12px !important;
  }
  .pl-0 {
    padding-left: 12px !important;
  }
}

.pos-relative {
  position: relative;
}

ul.list-inline {
  margin-left: 0px;
  padding-left: 0px;
  list-style: none;
}
ul.list-inline li {
  display: inline-block;
}

b,
strong {
  font-weight: 600;
}

.w-400 {
  font-weight: 400 !important;
}
.w-600 {
  font-weight: 600 !important;
}
.w-600 {
  font-weight: 600 !important;
}

.input-search {
  position: relative;
}
.input-search i {
  position: absolute;
  top: 14px;
  right: 12px;
}
.input-search input {
  padding-right: 35px;
}

.bg-gray {
  background: #ccc;
}

.tab-content a:not(.btn) {
  text-decoration: underline;
}
.tab-content article a {
  text-decoration: none;
}

.circle-img {
  border-radius: 50%;
  object-fit: cover;
}

.prf-0 {
  padding-right: 0px !important;
}
.plf-0 {
  padding-left: 0px !important;
}

/*--------------------------------------------------------------
>>> BUTTONS
----------------------------------------------------------------*/

.btn {
  width: fit-content;
  padding: 20px 65px;
  color: var(--main-20);
  font-weight: 600;
  position: relative;
  border: none;
  background: #fff;
}
.btn:visited {
  color: var(--main-20);
}
.btn:focus {
  color: var(--main-20);
}
.btn {
  padding: 15px 55px;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.25);
  margin-bottom: 7px;
}
.btn:before {
  content: " ";
  width: 6px;
  height: 36px;
  position: absolute;
  top: 0px;
  left: 24px;
  background: var(--main-20);
}
.btn:after {
  content: " ";
  width: 6px;
  height: 36px;
  position: absolute;
  bottom: 0px;
  right: 24px;
  background: var(--main-20);
}
.btn:hover {
  color: #fff;
  background: var(--dark-20);
}
.btn:hover:before {
  background: #fff;
}
.btn:hover:after {
  background: #fff;
}

.btn.btn-center {
  margin: 10px auto;
}

.btn-product {
  background: var(--main-20);
  color: #fff;
}
.btn-product:visited {
  color: #fff;
}
.btn-product:focus {
  color: #fff;
}
.btn-product:hover {
  background: var(--dark-20);
}
.btn-product:before {
  background: #fff;
}
.btn-product:after {
  background: #fff;
}

.btn.btn-dark {
  background: #000;
}
.btn.btn-dark:hover {
  background: var(--dark-20);
}

input[type="submit"] {
  background: transparent !important;
  border: none !important;
  padding: 0px !important;
  width: 100% !important;
  text-align: center;
}
.wpcf7-spinner {
  display: none;
}
span.btn.btn-product {
  padding: 21px 45px;
}

/*--------------------------------------------------------------
>>> TABLES
----------------------------------------------------------------*/

.table {
  margin: 30px 0px;
}
thead th {
  font-size: 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.35);
  padding: 15px !important;
}
tbody th,
tbody td {
  border: 1px solid rgba(0, 0, 0, 0.35);
  padding: 15px !important;
}

/*--------------------------------------------------------------
>>> PAGINATION
----------------------------------------------------------------*/

.wp-pagenavi .pages {
  display: none;
}
.wp-pagenavi {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0px 0px 70px 0px;
}
.wp-pagenavi a,
.wp-pagenavi span {
  display: inline-block;
  width: 30px;
  height: 30px;
  padding: 4px !important;
  color: #000;
  background: transparent;
  font-size: 0.9em;
  margin-bottom: 10px;
  border-radius: 3px;
  margin-right: 10px !important;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid #ececec;
}
.wp-pagenavi span.current:hover {
  transform: translateY(0px);
}

.wp-pagenavi a:hover,
.wp-pagenavi span:hover {
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
>>> LOAD MORE
----------------------------------------------------------------*/

@-webkit-keyframes enter {
  0% {
    opacity: 0;
    top: -10px;
  }
  5% {
    opacity: 1;
    top: 0px;
  }
  50.9% {
    opacity: 1;
    top: 0px;
  }
  55.9% {
    opacity: 0;
    top: -10px;
  }
}
@keyframes enter {
  0% {
    opacity: 0;
    top: -10px;
  }
  5% {
    opacity: 1;
    top: 0px;
  }
  50.9% {
    opacity: 1;
    top: 0px;
  }
  55.9% {
    opacity: 0;
    top: -10px;
  }
}
@-moz-keyframes enter {
  0% {
    opacity: 0;
    top: -10px;
  }
  5% {
    opacity: 1;
    top: 0px;
  }
  50.9% {
    opacity: 1;
    top: 0px;
  }
  55.9% {
    opacity: 0;
    top: -10px;
  }
}
.loader {
  left: 50%;
  top: 50%;
  margin-left: -27.5px;
  margin-top: -27.5px;
}
.square {
  background: #ccc;
  width: 15px;
  height: 15px;
  float: left;
  top: -10px;
  margin-right: 5px;
  margin-top: 5px;
  position: relative;
  opacity: 0;
  -webkit-animation: enter 6s infinite;
  animation: enter 6s infinite;
}
.enter {
  top: 0px;
  opacity: 1;
}
.square:nth-child(1) {
  -webkit-animation-delay: 1.8s;
  -moz-animation-delay: 1.8s;
  animation-delay: 1.8s;
}
.square:nth-child(2) {
  -webkit-animation-delay: 2.1s;
  -moz-animation-delay: 2.1s;
  animation-delay: 2.1s;
}
.square:nth-child(3) {
  -webkit-animation-delay: 2.4s;
  -moz-animation-delay: 2.4s;
  animation-delay: 2.4s;
  background: rgba(0, 0, 0, 0.3);
}
.square:nth-child(4) {
  -webkit-animation-delay: 0.9s;
  -moz-animation-delay: 0.9s;
  animation-delay: 0.9s;
}
.square:nth-child(5) {
  -webkit-animation-delay: 1.2s;
  -moz-animation-delay: 1.2s;
  animation-delay: 1.2s;
}
.square:nth-child(6) {
  -webkit-animation-delay: 1.5s;
  -moz-animation-delay: 1.5s;
  animation-delay: 1.5s;
}
.square:nth-child(8) {
  -webkit-animation-delay: 0.3s;
  -moz-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
.square:nth-child(9) {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.clear {
  clear: both;
}
.last {
  margin-right: 0;
}
.loader {
  min-height: 100px;
}
#load-animation {
  position: absolute;
  top: 400px;
  left: calc(50% - 50px);
}

/*--------------------------------------------------------------
>>> REWRITE NORMALIZE
----------------------------------------------------------------*/

ul,
ol {
  margin-left: 15px;
  padding-left: 0px;
  margin-bottom: 10px;
}

/*--------------------------------------------------------------
>>> HEADER
----------------------------------------------------------------*/

header {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 9;
}
header #navbarToggleMenu {
  background: #000;
  padding: 30px;
  color: #fff;
  max-width: 300px;
  margin-left: auto;
  position: relative;
}
header #navbarToggleMenu ul {
  list-style: none;
  margin-left: 0px;
  padding-left: 0px;
}
header #navbarToggleMenu ul li {
  text-align: center;
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
header #navbarToggleMenu ul li a {
  color: #fff;
}
header {
  margin-top: 30px;
  padding: 0 60px;
}
header .offcanvas {
  background: #000;
  padding: 30px;
  color: #fff;
}
header .offcanvas ul {
  list-style: none;
  margin-left: 0px;
  padding-left: 0px;
}

.offcanvas-btn {
  font-size: 2rem;
  color: #fff;
}
.cards p.post-cat {
  background: var(--main-20);
  color: #fff;
  display: block;
  margin-bottom: 15px;
  border-radius: 5px;
  padding: 5px 10px;
  width: fit-content;
  font-size: 0.875rem;
}
.header.light .date-container {
  position: relative;
  display: block;
  border-radius: 7px;
  background: #fff;
  text-align: center;
  overflow: hidden;
  box-shadow: 3px 3px 10px rgba(138, 16, 2, 0.3);
}
.header.light .date-container h2 {
  font-size: 2rem;
  color: var(--main-20);
  margin-bottom: 0px;
  padding: 7px 3px;
  font-weight: 600;
  margin: 5px;
}
.header.light .date-container h3 {
  display: block;
  width: 100%;
  font-size: 7px;
  background: var(--main-20);
  color: #fff;
  margin-bottom: 0px;
  padding: 5px;
}
header .offcanvas ul li i {
  font-size: 0.875rem;
  margin-left: 10px;
  position: relative;
  top: -2px;
}
.header .h6 {
  font-weight: 400;
}
@media screen and (max-width: 992px) {
  header .offcanvas-btn img {
    filter: invert(100%);
  }
}

@media screen and (max-width: 992px) {
  header {
    margin-top: 0px;
    padding: 0 15px;
    background: #000;
    padding-top: 20px;
    padding-bottom: 15px;
  }
}

/*--------------------------------------------------------------
>>> FOOTER
----------------------------------------------------------------*/

footer a,
footer a:visited {
  color: #fff;
}
footer p {
  font-size: 15px;
  margin-bottom: 0px;
}
footer .figure-container p {
  margin-top: 40px;
  margin-bottom: 20px;
}
footer ul.inline-list li {
  margin-right: 25px;
}
footer .btn {
  padding: 13px 60px;
  min-width: 100%;
}
footer .wpcf7-not-valid-tip {
  position: relative;
  top: -3px;
  /* color: #FFF; */
  color: var(--main-10);
}

.dfooter {
  position: absolute;
  bottom: 0px;
  z-index: 1;
}
.figure-container {
  background: #ccc;
  padding: 40px 30px 20px 30px;
  color: #fff;
  height: 240px;
  position: relative;
  top: -30px;
  clip-path: polygon(0 0, 100% 0%, 75% 100%, 0 100%, 0% 50%);
}

.copyright {
  padding: 10px;
  position: relative;
  top: 20px;
}
.copyright p {
  margin-bottom: 0px;
  font-size: 0.875rem;
}
.copyright a {
  text-decoration: underline;
  font-size: 0.875rem;
}
.form-footer {
  padding-top: 50px;
}
.btn.btn-small {
  padding: 12px 50px;
}
.swiper article.product {
  top: 20px;
  padding: 5px 5px 45px 5px;
}
.triangle-container {
  bottom: -47px;
}
.product-swiper.swiper:before {
  content: " ";
  width: 150px;
  height: 100%;
  display: block;
  position: absolute;
  z-index: 2;
  top: 0px;
  left: 0px;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 10%,
    rgba(255, 255, 255, 0) 100%
  );
}
.product-swiper.swiper:after {
  content: " ";
  width: 150px;
  height: 100%;
  display: block;
  position: absolute;
  z-index: 2;
  top: 0px;
  right: 0px;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    270deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 10%,
    rgba(255, 255, 255, 0) 100%
  );
}
#footer-form {
  position: relative;
  overflow: hidden;
}
#pre-footer {
  position: relative;
  margin-bottom: -245px;
}
.figure-container {
  z-index: 3;
}
#pre-footer .figure-container p {
  margin-top: 20px;
  margin-bottom: 20px;
}
#pre-footer p {
  font-size: 15px;
}
#pre-footer a,
#pre-footer a:visited {
  color: #fff;
}
#pre-footer ul.inline-list li {
  margin-right: 25px;
}
.form-footer {
  margin-bottom: 50px;
}
footer .col-2 {
  position: relative;
}
footer .col-lg-5 img {
  position: absolute;
  top: 7px;
  left: 15px;
}
.caps {
  text-transform: uppercase;
}
.close-line {
  position: absolute;
  display: block;
  width: 15px;
  height: 70px;
  background: #0462a6;
  bottom: 0px;
  left: 0px;
  z-index: 9;
}
#pre-footer p {
  color: #fff;
}
.figure-container i {
  font-size: 1.75rem;
}
.figure-container ul {
  margin-left: 15px;
}
.figure-container ul li {
  margin-right: 15px;
}
footer {
  background: url(../img/bg-desktop.svg) no-repeat bottom right;
  background-size: auto;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  padding: 30px 0px;
}
footer p,
footer a {
  color: #fff;
}
#float-buttons {
  position: fixed;
  top: 33vh;
  right: 15px;
  z-index: 2;
}
#float-buttons ul {
  margin-left: 0px;
  padding-left: 0px;
  list-style: none;
  padding-top: 0px;
  padding-bottom: 15px;
  background: #ccc;
}
#float-buttons ul li {
  display: block;

  width: 45px;
  height: 45px;
  text-align: center;
  padding: 7px;
}
#float-buttons ul li a {
  color: #fff;
}
#float-buttons ul li a i {
  font-size: 1.75rem;
}

#sendOk i.bi-check-circle {
  color: var(--main-20);
  font-size: 4rem;
}
#sendOk h3 {
  color: var(--main-20);
  font-size: 2rem;
  font-weight: 600;
}
.modal-body {
  padding: 60px;
}
.modal .btn-close i {
  color: var(--main-20);
}
.modal .btn-close {
  background: none;
  position: absolute;
  top: 15px;
  right: 30px;
  opacity: 1;
  width: 30px;
  height: 30px;
}

footer .form-control {
  font-size: 0.9375rem;
}
footer label {
  font-size: 0.75rem;
}

footer input[type="submit"] {
  font-size: 0.9375rem;
}

@media screen and (max-width: 992px) {
  footer {
    background: url(../img/bg-mobile.svg) no-repeat bottom right;
    background-size: auto;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    padding-top: 150px;
  }
  footer form {
    padding-bottom: 150px;
  }
  #pre-footer {
    top: -50px;
    margin-top: 110px;
    margin-bottom: -210px;
  }
}

/*--------------------------------------------------------------
>>> GLOBAL ELEMENTS
----------------------------------------------------------------*/

.container {
  position: relative;
}
.line-left {
  display: block;
  position: relative;
  padding-left: 10px;
  font-weight: 400;
}
.line-left:after {
  content: " ";
  display: block;
  width: 5px;
  height: 37px;
  background: #ccc;
  position: absolute;
  top: 1px;
  left: -10px;
}
section p span {
  padding-left: 10px;
  font-size: 1.125rem;
}
section article p {
  padding-left: 0px;
}
.swiper-button-next::after,
.swiper-rtl .swiper-button-prev::after {
  display: none;
}
.swiper-button-prev::after,
.swiper-rtl .swiper-button-next::after {
  display: none;
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: -40px;
  z-index: 2;
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: -40px;
  z-index: 2;
}
.swiper-button-next i,
.swiper-button-prev i {
  font-size: 2.5rem;
  color: var(--main-20);
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--neutral-30);
  opacity: 1;
  border: none;
}
.swiper-pagination-bullet-active {
  width: 40px;
  height: 10px;
  background: var(--main-20);
  border-radius: 7px;
  border: none;
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 0px;
}

@media screen and (max-width: 992px) {
  .swiper-button-next,
  .swiper-rtl .swiper-button-prev {
    display: none;
  }
  .swiper-button-prev,
  .swiper-rtl .swiper-button-next {
    display: none;
  }
  .line-left:after {
    top: -5px;
  }
}

/*--------------------------------------------------------------
>>> SINGLES
----------------------------------------------------------------*/

.header.high.single {
  justify-content: end;
}
.text.single img {
  display: block;
  margin: 30px auto;
}
.text.single h2 {
  font-size: 1.25rem;
}
section.text.single p {
  padding-left: 0px;
}
.share h3 {
  font-size: 1rem;
}

@media screen and (max-width: 992px) {
  .header.single h1 {
    margin: 0px 0px;
    display: block;
    width: 100%;
    padding-bottom: 10px;
  }
  .header.single-post h1 {
    border-bottom: 1px solid var(--main-10);
  }
}

/*--------------------------------------------------------------
>>> ARTICLE ELEMENTS
----------------------------------------------------------------*/

article.product img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  margin-bottom: -40px;
  z-index: 3;
  position: relative;
}
article.product .description .row:not(:last-child):nth-child(2n + 1) {
  background: #f9f9f9;
}
article.product .triangle-body {
  filter: drop-shadow(0px 5px 3px rgba(50, 50, 0, 0.3));
  position: relative;
  z-index: 2;
}
article.product .triangle-body .triangle-shape {
  clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
  background: white;
  padding: 50px 25px 60px 25px;
  z-index: 2;
  position: relative;
}

@media screen and (max-width: 992px) {
  .grid-cards article.product {
    margin-bottom: 50px;
  }
}

article.post img {
  min-height: 285px;
  object-fit: cover;
}
article.post .article-content {
  margin-right: 15px;
  margin-left: 15px;
  background: rgba(255, 255, 255, 0.7);
  padding: 30px 25px 15px 25px;
  border-radius: 7px;
  position: relative;
  top: -100px;
  backdrop-filter: blur(7px);
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.15);
  margin-bottom: -100px;
}
article.post .date-container {
  position: relative;
  top: -45px;
  display: block;
  border-radius: 7px;
  background: #fff;
  text-align: center;
  overflow: hidden;
  box-shadow: 3px 3px 10px rgba(138, 16, 2, 0.3);
  margin-bottom: -45px;
}
article.post h1 {
  font-size: 1.25rem;
  color: var(--main-20);
  margin-bottom: 0px;
  position: relative;
  top: -10px;
}
article.post h2 {
  font-size: 1.625rem;
  color: var(--main-20);
  margin-bottom: 0px;
  padding: 7px 3px;
  font-weight: 600;
}
article.post h3 {
  display: block;
  width: 100%;
  font-size: 7px;
  background: var(--main-20);
  color: #fff;
  margin-bottom: 0px;
  padding: 5px;
}
article.post a {
  font-weight: 600;
  color: var(--main-20);
  text-decoration: underline;
}

/*--------------------------------------------------------------
>>> SINGLES
----------------------------------------------------------------*/

.text-text .table-text p {
  margin-bottom: 10px;
}
a.int-btn,
a.ext-btn {
  display: block;
  color: var(--main-20);
  padding: 30px 60px 20px 60px;
  width: fit-content;
  margin-bottom: 30px;
  text-decoration: none !important;
  font-size: 1.25rem;
  font-weight: 600;
  background: #fff;
}

@media screen and (max-width: 480px) {
  a.int-btn,
  a.ext-btn {
    padding: 30px 30px 20px 30px;
  }
}

.tabs.overlap a.int-btn:visited,
.tabs.overlap a.ext-btn:visited {
  color: var(--main-20);
}

.int-btn {
  margin-left: auto;
  clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%);
  border-radius: 0px 0px 0px 3px;
}
.ext-btn {
  margin-right: auto;
  clip-path: polygon(0 0, 100% 20%, 100% 100%, 0% 100%);
  border-radius: 0px 0px 3px 0px;
}

a.int-btn.current,
a.ext-btn.current {
  background: var(--main-20);
  color: #fff;
}

.tabs.overlap a.int-btn.current:visited,
.tabs.overlap a.ext-btn.current:visited {
  color: #fff;
}

.shape-shadow {
  filter: drop-shadow(0px 3px 3px rgba(50, 50, 0, 0.25));
}

.form.form-triangle .form-container {
  display: block;
  position: relative;
  padding: 40px 100px 30px 100px;
  background: #fff;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.15);
}

.form.form-triangle .form-container:after {
  content: " ";
  display: block;
  position: absolute;
  left: 0px;
  top: calc(50% - 175px);
  width: 80px;
  height: 350px;
  background: var(--main-10);
  clip-path: polygon(0 0, 0% 100%, 100% 80%);
}

@media screen and (max-width: 992px) {
  .form.form-triangle .form-container {
    padding: 25px;
  }
  .form.form-triangle .form-container:after {
    display: none;
  }
}

.accordion-button::after {
  filter: invert(75%) sepia(100%) saturate(1000%) brightness(0.45)
    hue-rotate(310deg);
}

a.download {
  position: relative;
  display: block;
  padding-left: 30px;
  width: fit-content;
}
a.download:hover {
  color: var(--main-20);
}
.tabs.overlap a.download:visited {
  color: #000;
}
.tabs.overlap a.download:visited:hover {
  color: var(--main-20);
}
a.download i {
  position: absolute;
  top: -2px;
  left: 0px;
  font-size: 1.25rem;
}

.text.text-text h5 {
  font-weight: 400;
}
.text-text.single .col-lg-4 {
  margin-bottom: 50px;
  padding-right: 30px;
  padding-left: 30px;
}

/* home carousel */
@media (min-width: 768px) {
  .home .carousel .text-container h1,
  .home .carousel .text-container .triangle-lin {
    max-width: 261px;
  }

  .home .carousel .text-container p {
    max-width: 235px;
  }

  .home .gallery {
    margin-top: 80px;
  }

  /* galery block */
  .grid-2 .grid-cards {
    grid-template-columns: repeat(2, 590px);
    /* grid-template-rows: repeat(2, 460px); */
  }

  .grid-2 .grid-cards a.fancybox {
    height: 100%;
  }

  .grid-2 .grid-cards img {
    /* height: 100% !important; */
    max-height: 300px;
  }

  /* card product */
  article.product img {
    /* width: 327px;
    height: 190px; */
    width: 360px;
    height: 225px;
    object-fit: cover;
  }

  /* postventa banner */
  .header.high {
    height: 480px;
  }
  .header.h-560 {
    height: 560px !important;
  }
}
