@font-face {
  font-family: "standard";
  src: url("fonts/Poiret.ttf");
  font-display: swap;
}
@font-face {
  font-family: "light";
  src: url("fonts/JosefinSans-Light.ttf");
  font-display: swap;
}
@font-face {
  font-family: "regular";
  src: url("fonts/JosefinSans-Regular.ttf");
  font-display: swap;
}
@font-face {
  font-family: "medium";
  src: url("fonts/JosefinSans-SemiBold.ttf");
  font-display: swap;
}
@font-face {
  font-family: "bold";
  src: url("fonts/JosefinSans-Bold.ttf");
  font-display: swap;
}
html {
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}
*::before, *::after {
  transition: 0.1s linear;
}

body {
  font-family: "regular";
  background-color: #fff;
  margin: 0px;
  padding: 0px;
}

ul {
  margin: 0;
  padding: 0;
}
ul li {
  margin: 0;
  padding: 0;
  display: block;
  list-style-type: none;
}

.btn {
  transition: color 0.1s linear, background-color 0.1s linear, border-color 0.1s linear, box-shadow 0.1s linear !important;
}

.sticky-top {
  position: sticky !important;
  top: 0px;
}

.btn,
a {
  box-shadow: none;
  outline: none !important;
}
.btn:focus,
a:focus {
  box-shadow: none;
  outline: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong,
b {
  font-family: "bold";
  margin: 0px;
}

a {
  text-decoration: none !important;
}

select:focus,
input:focus,
button:focus {
  box-shadow: none !important;
}

.wrapper {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.form-check-input:checked {
  background-color: #000;
  border-color: #000;
}

.btn {
  padding: 15px 20px;
  border: none !important;
  font-size: 14px;
  text-transform: uppercase;
  background-color: transparent;
  border-radius: 0px;
  white-space: nowrap;
  font-family: bold;
}
.btn:hover {
  background-color: #fff;
  box-shadow: inset 0 0 0 2px #fff;
  color: #000;
}
.btn.btn-outline {
  color: #fff;
}
.btn.btn-outline:hover {
  background-color: #fff;
  box-shadow: inset 0 0 0 2px #fff;
  color: #000;
}
.btn.btn-default {
  color: #000;
  background-color: #fff;
}
.btn.btn-default:hover {
  background-color: #000;
  color: #fff;
}

.title {
  color: #000;
  font-size: calc(2vw + 1em);
  text-transform: uppercase;
  margin: 0 0 40px;
  font-family: "light";
  line-height: calc(0.5vw + 1em);
  padding: 0 5vw;
}
.title span {
  font-family: "bold";
}

.nav-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 30px;
}
.nav-pills a {
  background-color: transparent;
  padding: 5px 10px;
  font-size: 16px;
  color: #000000 !important;
  font-family: bold;
  text-transform: uppercase;
  opacity: 0.75;
  position: relative;
  transition: 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@media (max-width: 991px) {
  .nav-pills a {
    font-size: 11px;
    padding: 5px 5px;
  }
}
.nav-pills a:hover {
  opacity: 1;
}
.nav-pills a::after {
  content: "";
  height: 10px;
  width: 10px;
  background-color: #000;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 10px);
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  transition: 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@media (max-width: 991px) {
  .nav-pills a::after {
    height: 7px;
    width: 7px;
  }
}
.nav-pills a.active {
  opacity: 1;
  background-color: transparent !important;
}
.nav-pills a.active::after {
  opacity: 1;
  top: 90%;
}

.pagination {
  display: inline-flex;
  margin-top: 30px;
  align-items: center;
}
.pagination a {
  color: #000;
  font-family: regular;
  padding: 10px;
  font-size: 18px;
}
.pagination a.num {
  opacity: 0.6;
}
.pagination a.active {
  opacity: 1;
  font-family: bold;
  font-size: 22px;
}
.pagination a i {
  font-size: 22px;
  position: relative;
  top: 2px;
}

.bulleted-list {
  margin: 0 0 30px;
}
.bulleted-list li {
  display: block;
  position: relative;
  padding-left: 20px;
  letter-spacing: 0.5px;
  font-size: 16px;
  font-family: light;
  margin: 5px 0px;
}
.bulleted-list li a {
  font-family: medium;
  color: #000;
}
.bulleted-list li::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 7px;
  height: 8px;
  width: 8px;
  background-color: #000;
  border-radius: 7px;
}

.alert.fade.in {
  opacity: 1;
}

.menu {
  position: fixed;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  padding: 100px 5vw;
  background-color: rgb(0, 0, 0);
  z-index: 1200;
  visibility: hidden;
  transform: scale(0.96);
  visibility: hidden;
  opacity: 0;
  transition: 0.15s cubic-bezier(0.28, 0.79, 1, 0.87);
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1199px) {
  .menu {
    padding: 100px 5vw 50px;
  }
}
.menu.vin {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.menu a {
  display: inline-block;
  width: auto;
  max-width: 240px;
  padding: 12px 0px;
  font-size: 13px;
  font-family: bold;
  text-transform: uppercase;
  color: #fff;
  transition: 0.13s cubic-bezier(0.47, 0, 0.745, 0.715);
  position: relative;
  min-width: 240px;
}
.menu a::before {
  content: "";
  position: absolute;
  opacity: 0;
  border: 1.5px solid rgba(255, 255, 255, 0.4392156863);
  border-radius: 50px;
  height: 30px;
  width: 100%;
  top: 48%;
  transform: translateY(-50%);
  left: 0;
  bottom: auto;
  transition: 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: -1;
}
.menu a.active, .menu a:hover {
  color: #fff;
}
.menu a.active::before, .menu a:hover::before {
  background-color: rgba(0, 0, 0, 0.5333333333);
  opacity: 1;
}
@media (max-width: 1199px) {
  .menu a {
    width: 100%;
  }
}
.menu span {
  display: inline-block;
  width: 100%;
  padding: 12px 0px;
  font-size: 13px;
  display: block;
  font-family: "standard";
  text-transform: uppercase;
  color: #fff;
  transition: 0.13s cubic-bezier(0.47, 0, 0.745, 0.715);
}
@media (max-width: 1199px) {
  .menu span {
    width: 100%;
  }
}
.menu .dropLinks {
  position: relative;
  background-color: #000;
  padding: 15px 10px;
  top: 100%;
  left: 0px;
  min-width: 100%;
  min-width: auto;
  display: flex;
  flex-direction: column;
  transform-origin: top;
  transform: rotateX(90deg);
  visibility: hidden;
  transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.menu .dropLinks a {
  padding: 5px 15px;
  width: 100%;
  white-space: nowrap;
}

.searchPallet {
  max-height: 100%;
  overflow-y: auto;
  position: fixed;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  padding: 100px 5vw 30px;
  background-color: #fff;
  z-index: 1200;
  visibility: hidden;
  transform: scale(0.96);
  visibility: hidden;
  opacity: 0;
  transition: 0.15s cubic-bezier(0.28, 0.79, 1, 0.87);
}
.searchPallet::-webkit-scrollbar {
  width: 8px;
  background-color: transparent;
  position: absolute;
}
.searchPallet::-webkit-scrollbar-thumb {
  border-radius: 15px;
  background: #000;
  border: none;
}
.searchPallet::-webkit-scrollbar-track {
  background-color: transparent;
}
.searchPallet.sin {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.searchPallet h4 {
  margin: 10px 0;
  font-family: bold;
}
.searchPallet .form-group {
  margin-bottom: 15px;
}
.searchPallet .form-group label {
  font-size: 14px;
  margin-top: 0px;
  font-family: medium;
  color: #000;
  letter-spacing: 0.5px;
  cursor: pointer;
}
.searchPallet .form-group > label {
  font-family: bold;
  font-size: 16px;
  margin: 5px 0;
}
.searchPallet .form-group .form-control {
  border: 1px solid #e4e4e4;
  border-radius: 0px;
  font-size: 16px;
  background-color: #f5f5f5;
  font-family: regular;
}
.searchPallet .checksGrid {
  margin-top: 10px;
  display: grid;
  grid-template: auto/repeat(auto-fit, minmax(160px, 1fr));
  grid-column-gap: 10px;
  grid-row-gap: 5px;
}
.searchPallet .checksGrid > label {
  grid-column: 1/-1;
  font-family: bold;
  font-size: 16px;
  margin: 5px 0 3px !important;
}
.searchPallet .checksGrid input[type=checkbox] {
  cursor: pointer;
}
.searchPallet .checksGrid .span2 {
  grid-column: auto/span 2;
}
.searchPallet .rangesGrid {
  margin-top: 10px;
  display: grid;
  grid-template: auto/repeat(auto-fit, minmax(320px, 1fr));
  grid-column-gap: 10px;
  grid-row-gap: 5px;
}
.searchPallet .rangesGrid label {
  font-family: bold;
  font-size: 16px;
  margin: 5px 0 3px !important;
}
.searchPallet .rangesGrid label .text-warning {
  color: rgb(253, 105, 0) !important;
  font-family: medium;
  border: none !important;
  outline: none !important;
  padding: 0px 5px;
}
.searchPallet .ui-widget.ui-widget-content {
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  background: #f5f5f5;
  height: 10px;
  width: calc(100% - 18px);
  margin: 0 auto;
}
.searchPallet .ui-state-default,
.searchPallet .ui-widget-content .ui-state-default {
  background: #000;
  border: 1px solid #000;
  border-radius: 10px;
  height: 16px;
  width: 15px;
  top: -4px;
}
.searchPallet .btn-default.solid {
  background-color: #000;
  color: #fff;
  height: 50px;
  min-width: 200px;
  margin-top: 20px;
}

.header {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 1280;
  padding: 15px 0;
  background-color: transparent;
  transition: 0.15s cubic-bezier(0.28, 0.79, 1, 0.87);
}
.header.inner-h {
  background-color: rgb(0, 0, 0);
  backdrop-filter: blur(0px);
  padding: 0px 0;
}
.header.inner-h .brand img {
  max-height: 90px;
}
@media (max-width: 1500px) {
  .header.inner-h .brand img {
    max-height: 82px;
  }
}
@media (max-width: 1199px) {
  .header.inner-h .brand img {
    max-height: 72px;
  }
}
@media (max-width: 767px) {
  .header.inner-h .brand img {
    max-height: 64px;
  }
}
.header.scrolled {
  background-color: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(10px);
  padding: 0px 0;
}
@media (max-width: 767px) {
  .header.scrolled {
    padding: 10px 0;
  }
}
.header.scrolled .brand img {
  max-height: 70px;
}
@media (max-width: 1500px) {
  .header.scrolled .brand img {
    max-height: 62px;
  }
}
@media (max-width: 1199px) {
  .header.scrolled .brand img {
    max-height: 54px;
  }
}
@media (max-width: 767px) {
  .header.scrolled .brand img {
    max-height: 45px;
  }
}
.header.dark {
  background-color: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(10px);
  padding: 0px 0;
}
.header.dark .brand img {
  max-height: 70px;
}
@media (max-width: 1500px) {
  .header.dark .brand img {
    max-height: 62px;
  }
}
@media (max-width: 1199px) {
  .header.dark .brand img {
    max-height: 54px;
  }
}
@media (max-width: 767px) {
  .header.dark .brand img {
    max-height: 45px;
  }
}
.header .btn-toggle {
  border: none;
  box-shadow: none;
  padding: 0;
  width: 33px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  font-size: 16px;
}
@media (min-width: 1661px) {
  .header .btn-toggle {
    display: none;
  }
}
.header .btn-toggle .line {
  height: 1.5px;
  width: 23px;
  background-color: #fff;
  position: relative;
  transition: 0.15s cubic-bezier(0.28, 0.79, 1, 0.87);
}
.header .btn-toggle .line::before {
  content: "";
  position: absolute;
  right: 0px;
  top: -8px;
  height: 2px;
  width: 18px;
  background-color: #fff;
}
.header .btn-toggle .line::after {
  content: "";
  position: absolute;
  right: 0px;
  top: 7px;
  height: 2px;
  width: 18px;
  background-color: #fff;
}
.header .btn-toggle:hover .line {
  background-color: #000;
}
.header .btn-toggle:hover .line::before {
  background-color: #000;
  width: 15px;
}
.header .btn-toggle:hover .line::after {
  background-color: #000;
  width: 20px;
}
.header .btn-toggle.active .line {
  transform: rotate(45deg);
}
.header .btn-toggle.active .line::before {
  transform: rotate(-90deg);
  width: 20px;
  top: 0px;
}
.header .btn-toggle.active .line::after {
  width: 20px;
  display: none;
}
.header .btn-search .fal {
  min-width: 22px;
  text-align: center;
}
.header .btn-search.d-none {
  margin-left: auto;
  margin-right: 10px;
}
@media (max-width: 1660px) {
  .header .btn-search.d-none {
    display: inline-flex !important;
  }
}
.header .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 5vw;
}
.header .brand img {
  transition: 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: auto;
  max-height: 90px;
}
@media (max-width: 1500px) {
  .header .brand img {
    max-height: 82px;
  }
}
@media (max-width: 1199px) {
  .header .brand img {
    max-height: 72px;
  }
}
@media (max-width: 767px) {
  .header .brand img {
    max-height: 54px;
  }
}
@media (max-width: 1660px) {
  .header .navs {
    display: none;
  }
}
.header .navs a {
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  padding: 30px 8px;
  position: relative;
  font-family: regular;
  display: inline-flex;
  transition: 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 10;
}
@media (max-width: 1500px) {
  .header .navs a {
    font-size: 12px !important;
  }
}
.header .navs a::before {
  content: "";
  position: absolute;
  opacity: 0;
  border: 1.5px solid rgba(255, 255, 255, 0.4392156863);
  border-radius: 50px;
  height: 30px;
  width: 100%;
  top: 48%;
  transform: translateY(-50%);
  left: 0;
  bottom: auto;
  transition: 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: -1;
}
.header .navs a.active, .header .navs a:hover {
  color: #fff;
}
.header .navs a.active::before, .header .navs a:hover::before {
  background-color: rgba(0, 0, 0, 0.5333333333);
  opacity: 1;
}
.header .btn-search {
  color: #fff;
  font-size: 20px;
  padding: 0px;
  position: relative;
  display: inline-flex;
  transition: 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: #d60059;
  width: 33px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  font-size: 16px;
}
@media (max-width: 1500px) {
  .header .btn-search {
    font-size: 17px !important;
  }
}
.header .drop {
  position: relative;
  display: inline-flex;
}
.header .drop:hover > a::before {
  left: 3px;
  opacity: 1;
}
.header .drop:hover > a::after {
  right: 3px;
  opacity: 1;
}
.header .drop:hover .dropLinks {
  transform: rotateX(0deg);
  visibility: visible;
}
.header .dropLinks {
  position: absolute;
  background-color: #000;
  padding: 15px 10px;
  top: 100%;
  left: 0px;
  min-width: 100%;
  min-width: auto;
  display: flex;
  flex-direction: column;
  transform-origin: top;
  transform: rotateX(90deg);
  visibility: hidden;
  transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.header .dropLinks a {
  padding: 7px 15px;
  width: 100%;
  white-space: nowrap;
}
.header .btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.header .btns .btn {
  width: 100%;
}

.inner-h + div {
  padding-top: 80px;
}
@media (max-width: 1199px) {
  .inner-h + div {
    padding-top: 71px;
  }
}

.footer {
  background-color: #000;
  padding: 65px 0 0;
}
.footer .wrapper {
  padding: 0px 5vw;
}
.footer h4 {
  font-family: medium;
  font-size: 18px;
  color: #fff;
  margin: 0px 0px 15px;
}
.footer .finfo .f-logo {
  text-decoration: none;
}
.footer .finfo .f-logo img {
  height: 72px;
  width: auto;
  margin-bottom: 20px;
}
.footer .finfo .f-logo h3 {
  color: #fff;
  font-family: "standard";
  font-size: 28px;
  letter-spacing: -3px;
  text-transform: uppercase;
}
.footer .finfo p {
  font-size: 12px !important;
  color: #ccc;
  font-family: light;
  margin: 0 0 15px;
  letter-spacing: 1px;
}
.footer .finfo .social {
  margin: 30px 0;
}
@media (max-width: 1199px) {
  .footer .finfo .social {
    margin: 15px 0;
  }
}
.footer .finfo .social a {
  text-decoration: none;
  color: #e4e4e4;
  font-size: 18px;
}
.footer .finfo .social a:hover {
  color: #fff;
}
.footer .finfo .social a ~ a {
  margin-left: 15px;
}
.footer .copy {
  text-align: center;
  background-color: #d60059;
  border-top: 1px solid #111;
  padding: 15px 0;
  margin-top: 50px;
  letter-spacing: 1px;
  font-family: regular;
  font-size: 12px;
  color: #fff !important;
}
.footer .copy p {
  margin: 0;
  font-family: regular;
  font-size: 12px;
  color: #fff !important;
}
@media (max-width: 1199px) {
  .footer .quick-links {
    margin-bottom: 20px;
  }
}
.footer .quick-links a {
  display: inline-block;
  width: 100%;
  font-family: regular;
  color: #a4a4a4;
  font-size: 15px;
  text-decoration: none;
  transition: 0.15s ease;
  position: relative;
  padding-left: 15px;
}
.footer .quick-links a::before {
  content: "\f105";
  font-family: "Font Awesome 5 Pro";
  font-weight: 500;
  position: absolute;
  top: -1px;
  left: 0;
  color: #d60059;
}
.footer .quick-links a ~ a {
  margin-top: 10px;
}
.footer .quick-links a:hover {
  color: #fff;
}

.tapes {
  margin-bottom: 20px;
}
.tapes p {
  font-size: 14px !important;
  color: #909090;
  margin: 0 0 15px;
  padding-right: 50px;
}
.tapes .d-flex {
  gap: 15px;
  flex-wrap: wrap;
}
.tapes img {
  max-height: 76px;
  width: auto;
}

.carousel .carousel-inner {
  padding-bottom: 10px;
}

.form-group .d-flex {
  flex-wrap: wrap;
}

.electricblaze-state-mounted .WrapperStyled-eULAtf.lhiHmy {
  box-shadow: none;
}

.electricblaze-state-mounted p {
  margin-top: 12px;
  text-transform: none;
  line-height: 1.3;
}

.showcase .electricblaze-state-mounted p {
  font-family: regular !important;
  font-size: 15px !important;
  margin: 0 0 0px !important;
  padding: 10px 0px 0 !important;
}

.electricblaze-state-mounted .Ercae {
  font-family: "regular";
  font-size: 15px;
}

.cc-banner.cc-theme-edgeless .cc-message {
  margin-left: 0;
}

.cc-banner.cc-window,
.cc-window.cc-floating {
  color: #fff !important;
  background-color: #d60059 !important;
  line-height: 1;
  padding: 10px;
}

.cc-window.cc-floating {
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0px;
  bottom: 0;
}

.cc-window.cc-floating .cc-compliance {
  flex: 0;
}

.cc-floating.cc-theme-edgeless .cc-message {
  margin: 0;
}

.cc-window.cc-floating .cc-btn,
.cc-banner.cc-theme-edgeless .cc-btn {
  margin: 0;
  padding: 0;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #000000;
  max-width: 100px;
  min-width: 100px;
}

.cc-banner.cc-window .cc-link,
.cc-window.cc-floating .cc-link {
  color: #fff;
  opacity: 1;
  font-family: regular;
  text-transform: uppercase;
  font-size: 14px;
}

@media (max-width: 780px) {
  .cc-floating.cc-theme-edgeless .cc-message {
    margin: 20px 20px 15px;
  }
  .cc-window.cc-floating .cc-btn {
    width: 100%;
    max-width: 100%;
  }
  .cc-window.cc-floating .cc-compliance {
    flex: 1;
  }
}