@font-face {
  font-family: 'Oswald';
  src: url("../fonts/Oswald-Bold.woff") format("woff"),
       url('../fonts/Oswald-Bold.woff2') format('woff2');;
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Oswald';
  src: url("../fonts/Oswald-Regular.woff") format("woff"),
       url('../fonts/Oswald-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Oswald';
  src: url("../fonts/Oswald-Medium.woff") format("woff"),
       url('../fonts/Oswald-Medium.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Oswald';
  src: url("../fonts/Oswald-ExtraLight.woff") format("woff"),
       url('../fonts/Oswald-ExtraLight.woff2') format('woff2');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Oswald';
  src: url("../fonts/Oswald-Light.woff") format("woff"),
       url('../fonts/Oswald-Light.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}


:root {
  --color-primary: #11a9ff; 
}


body {
  line-height: 1.2;
  font-size: 15px;
  color: #5c5c77;
  font-family: 'Oswald', sans-serif;
}

p {
  color: #5c5c77;
  font-size: 15px;
  line-height: 1.9;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #1e1e4b;
  font-weight: 700;
  line-height: 1.2;
}

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

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

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

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

@media (max-width: 575px) {

  h6,
  .h6 {
    font-size: 14px;
  }
}

.btn {
  font-size: 18px;
  text-transform: capitalize;
  padding: 12px 40px;
  border-radius: 0;
  font-weight: 500;
  border: 0;
  position: relative;
  z-index: 1;
  transition: .2s ease;
  overflow: hidden;
}

.btn::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  bottom: 0%;
  /* border: 1px solid #228379; */
  border: none !important;
  z-index: -1;
  transition: transform .2s ease-in-out;
  transform-origin: top;
  transform: scaleY(0);
}

.btn:focus {
  outline: 0;
  box-shadow: none !important;
}

.btn:active {
  box-shadow: none;
}

.btn:hover::before {
  transform: scaleY(1);
  transform-origin: bottom;
}

.btn-sm {
  font-size: 14px;
  padding: 10px 35px;
}


.btn-primary {
  background: transparent;
  color: #fff;
  border-radius: 2px;
  border: 2px solid #7cc1fb;
}

.btn-primary::before {
  background: #fff;
  border-color: #10a2f5;
}

.btn-primary:active {
  background: #05c8ff !important;
  color: #05c8ff;
  border-color: #10a2f5;
}

.btn-primary:active::before {
  height: 80%;
}

.btn-primary:hover {
  background: #05c8ff;
  color: #000;
  border-color: #10a2f5;
}


body {
  background-color: #fff;
  overflow-x: hidden;
}

::-moz-selection {
  background: #ffcd6e;
  color: #fff;
}

::selection {
  background: #ffcd6e;
  color: #fff;
}

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

img {
  vertical-align: middle;
  border: 0;
}

a {
  color: #05c8ff;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a,
button,
select {
  cursor: pointer;
  transition: .2s ease;
}

h4 {
  transition: .2s ease;
}

.section {
  padding-top: 90px;
  padding-bottom: 90px;
  background: white;
  position: relative;
}

.section-title {
  margin-bottom: 30px;
}


.navigation {
  position: absolute;
  transition: .2s ease;
}

.navbar {
  z-index: 2;
}

.navbar-nav li {
  margin: 0 5px;
  position: relative;
}

.navbar-nav li>a {
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  font-size: 15px;
}

.navbar-nav li>a:hover {
  text-transform: uppercase;
  font-weight: 600;
  color: #05c8ff;
}

.navbar-nav li>a:active,
.navbar-nav li>a:focus {
  color: #05c8ff;
}

.navbar-nav li::before {
  position: absolute;
  left: 0;
  bottom: -30px;
  height: 6px;
  width: 100%;
  content: "";
  background: #05c8ff;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .3s ease;
}

.navbar-nav li:hover::before,
.navbar-nav li.active::before {
  transform: scaleY(1);
  transform-origin: bottom;
}

.navbar-light .navbar-nav .navbar-nav li a {
  color: #fff;
}

link:focus,
.navbar-light .navbar-nav .navbar-nav li a:hover {
  color: #05c8ff;
}

.navbar-light .navbar-nav .active>.navbar-nav li>a,
.navbar-light .navbar-nav .navbar-nav li>a.active,
.navbar-light .navbar-nav .navbar-nav li>a.show,
.navbar-light .navbar-nav .show>.navbar-nav li>a {
  color: #05c8ff;
}

.navbar-expand-lg .navbar-nav .navbar-nav li>a {
  padding: 40px 0px;
}

.navbar-brand img {
  height: 90px;
}

.nav-bg {
    background-color: rgb(0 0 0 / 85%);
    backdrop-filter: blur(8px);
    transition: 0.3s ease-in-out;
}

@media (max-width: 991px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 20px;
  }
}

.navbar .dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  color: #000000;
}

.navbar .dropdown-menu {
    box-shadow: none;
    top: 35px;
    padding: 10px 25px;
    border-radius: 5px;
    display: block;
    visibility: hidden;
    transition: .3s ease;
    opacity: 0;
    transform: translateY(0px);
    background: #fff;
    text-align: center;
    right: 0px;
    border: 1px solid #ececec;
}

.navbar .dropdown-menu a {
  color: #000;
}

.navbar .dropdown-menu::before {
  background: #000;
  display: none
}


@media (max-width: 991px) {
  .navbar .dropdown-menu {
    display: none;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transform-origin: unset;
  }
}

.navbar .dropdown-menu.show {
  visibility: hidden;
}

@media (max-width: 991px) {
  .navbar .dropdown-menu.show {
    visibility: visible;
    display: block;
  }
}

.navbar .dropdown-item {
  position: relative;
  color: #1e1e4b;
  transition: .2s ease;
}

@media (max-width: 991px) {
  .navbar .dropdown-item {
    text-align: center;
  }
}

.navbar .dropdown-item:not(:last-child) {
  margin-bottom: 10px;
}

.navbar .dropdown-item:hover {
  color: #05c8ff;
  background: transparent;
}

.menu-item-has-children:hover>.sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.sub-menu {
  box-shadow: 0px 3px 9px 0px rgb(0 0 0 / 65%);
  top: 100%;
  padding: 10px 0;
  border-radius: 5px;
  display: block;
  visibility: hidden;
  transition: .3s ease;
  opacity: 0;
  transform: translateY(20px);
  background: #fff;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 999;
  width: 200px;
  margin-top: 4px;
}

.sub-menu li>a {
  color: #000;
  font-size: 12px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.sub-menu li {
  padding: 5px 12px;
  text-align: left;
  border-bottom: 1px solid #e3e3e3;
}

.sub-menu li>a:hover {
  color: #4091bf;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.sub-menu li::before {
  display: none;
}

.overlay-banner {
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #1a1a37;
  opacity: .8;
}

.blur-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: blur(20px);
  z-index: -1;
}

.blur-content{
  z-index: 3;
}

.blur-content h1 {
  color: #fff;
  text-transform: uppercase;
  font-size: 30px;
  margin-bottom: 0px;
}

.blur-content p {
  color: #11a9ff;
  font-size: 20px;
  margin-bottom: 0px;
  font-weight: 600;
}

.page-title-section-f {
  padding: 130px 0 80px;
}

.input-wrapper {
  position: relative;
}

.input-wrapper button {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}

.form-control {
  height: 60px;
  background: #fff;
  border-radius: 0;
  padding-left: 25px;
  margin-bottom: 15px;
}

.form-control:focus {
  border-color: #05c8ff;
  box-shadow: none;
}

.bg-footer {
  background-color: #000711 !important;
}

.footer {
  border-color: #171b21 !important;
  padding-top: 90px;
}

.list-unstyled li {
  color: #adadad;
  margin-bottom: 10px;
}

.list-unstyled li>a {
  color: #adadad;
}

.list-unstyled li>a:hover {
  color: #05c8ff;
}

.national-item {
  position: relative;

  overflow: hidden;
  height: 350px;
}

.national-item img {
  transition: 0.5s;
}

.national-item:hover img {
  transform: scale(1.2);
}

.national-item .national-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 0px 60px;
  background: rgb(26 26 26);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.national-item:hover .national-content {
  cursor: pointer;
  ;
}

.national-item:hover .national-plus-icon {
  opacity: 1;
}

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

.national-info h5 {
  font-size: 25px;
  padding-top: 0px;
  margin-top: 13px;
}

.national-info p {
  font-weight: 100;
  color: #b3b3b3 !important;
  margin-bottom: 0px;
}

.national-plus-icon {
  transform-origin: center;
  transition: transform 0.3s ease;
}

.national-item:hover .national-plus-icon {
  transform: scale(1.1);
}

.national-item:hover .national-plus-icon {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.national-info h5,
.national-info p {
  transition: none !important;
}

.destination .destination-img {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.destination .destination-img .destination-overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  z-index: 3;
  transition: 0.5s;
}

.destination-overlay {
  width: 100%;
  display: flex;
  justify-content: center;
}

.destination .nav-item {
  padding: 0 0 20px 0;
}

.destination .nav-item a.active {
  background: var(--bs-primary) !important;
}

.destination .nav-item a.active span {
  color: var(--bs-white) !important;
}

.destination .destination-img:hover .destination-overlay {
  bottom: 35px;

}

.destination .destination-img img:hover {
  transform: scale(1.2);
}

.destination .destination-img:hover {
  background: rgba(19, 53, 123, 0.4);
}

.destination .destination-img img {
  transition: 0.5s;
}

.destination .destination-img .destination-overlay-content {
  position: absolute;
  bottom: 10%;
  left: 0;
  z-index: 3;
  transition: 0.5s;
  text-align: center;
  width: 100%;
}

.destination .destination-img:hover .destination-overlay-content {
  bottom: 20%;
}

.destination-img {
  padding: 0px;
}

.booking {
  background: linear-gradient(rgb(0 0 0 / 72%), rgb(0 0 0 / 54%)), url(../img/fondo/fondo-02.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;

}

.text-yellow {
  color: #05c8ff;
  font-size: 30px;
}

.overlay-c {
  position: relative;
}

.overlay-c::before {
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(181deg, rgb(3 36 39 / 86%) 0%, rgb(0 7 17 / 84%) 71% 71%);

  opacity: .9;
}

.text-yellow-c {
  color: #fff;
  font-size: 33px;
  font-weight: 900;

}

.blog-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.blog-title h1 {
  text-align: center;
  color: #5fc4fd;
  font-size: 22px;
  text-transform: uppercase;
}

.blog-title h2 {
  text-align: center;
  color: #ffffff;
  font-weight: 900;
  font-size: 45px;
  text-transform: uppercase;
}

.blog-title p {
  text-align: center;
  width: 70%;
  color: #ababab;
  margin-bottom: 30px;
}

.overlay-banner {
  position: relative;
}

.overlay-banner::before {
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(261deg, rgb(0 0 8) 0%, rgb(0 0 8 / 78%) 71%);
  opacity: .9;
}

.text-slog {

  font-size: 55px;
  margin-top: -25px;
}


::-webkit-scrollbar {
  width: 8px;
  height: 5px;
}

::-webkit-scrollbar-thumb {
  background: #000711;
  border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
  background: #000711;
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb:active {
  background-color: #000711;
}

::-webkit-scrollbar-track {
  background: #ffffff;
  border-radius: 0px;
}

::-webkit-scrollbar-track:hover,
::-webkit-scrollbar-track:active {
  background: #ffffff;
}

.swiper {
  height: 80vh;
  position: relative;
}

.swiper-slide {
  position: relative;
  height: 100%;
}

.hero-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(1.2);
  transition: transform 8s ease;
}

.overlay-black {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgb(1 41 49 / 68%);
  z-index: 2;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 15%;
  transform: translateY(-50%);
  z-index: 3;
  text-align: left;
}

.hero-super {
  font-size: 60px;
  font-weight: 900;
  margin-bottom: 60px;
  text-transform: uppercase;
  line-height: 0px;
}

.hero-sub {
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 35px;
  text-transform: uppercase;
  color: #5fc4fd !important;
  line-height: 0px;
}

.hero-slogan {
  font-size: 55px;
  font-weight: 500;
}

.swiper-slide-active .hero-img {
  transform: scale(1);
}

.offcanvas-header {
  background: #000000;
}

.offcanvas {
  background-color: rgb(0 0 0 / 68%);
}

.offcanvas-body {
  margin-top: 30px;
}

.offcanvas-body ul {
  text-align: start !important;
}

.offcanvas-body ul li {
  margin-bottom: 10px;
}

.offcanvas-body li::before {
  display: none !important;
}

.navbar-light .navbar-toggler-icon {
  background-image: url("/img/ml-nav-movil.png");
}

.btn-close {
  background-image: url("/img/ml-nav-closed.png") !important;
}

.navbar-light .navbar-toggler {
    border-color: transparent !important;
}

.btn-close-white {
  filter: none !important;
}

.btn-close {
  box-sizing: inherit;
  width: 30px;
  height: 30px;
  padding: .25em .25em;
  color: #000;
  border: 0;
  border-radius: .25rem;
  opacity: 1;
  background: transparent;
}


.text-form h1 {
  font-size: 45px;
  color: #5fc4fd;
}

.text-form p {
  font-size: 42px;
  font-weight: 100;
  color: #11a9ff;
  margin-top: -25px;
}

.feacture-section {
  background: #01060e;
}

.feature-content {
  position: relative;
  z-index: 2;
}

.destination-overlay-content h1 {
  color: #5fc4fd;
  font-size: 30px;
  font-weight: 600;
}

.product-card {
  background: url(../img/01.png) no-repeat;
  background-position: bottom right;
  border-radius: 30px 30px 0 30px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.product-card .images-block {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
}

@media (max-width: 991px) {
  .product-card .images-block {
    height: 224px;
    margin-bottom: 0;
  }
}

.product-card .images-block .detail-img {
  width: 100%;
}

.product-card-slider {
  display: flex;
  justify-content: center;
}

.product-card .cart-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #5fc4fd;
  border-radius: 20px;
  padding: 10px;
}

.product-section-p {
  text-align: center;
  color: #2095d7;
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 0px;
}

.produt-section h1 {
  font-weight: 900;
  font-size: 45px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.product-card h1 a {
  color: #1e1e4b;
  font-size: 35px;
}

.product-card p {
  font-weight: 200;
  font-size: 17px;
}

.floatWapp {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  left: 20px;
  background-color: #7acf4a;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  z-index: 100;
  transition: 0.3s all;
}

.floatWapp:hover {
  color: #FFF;
  transform: scale(1.08);
  transition: 0.3s all;
}

.floatWapp svg {
  margin-top: 10px;
}

.floatWapp:after,
.floatWapp:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  border-radius: 50%;
  width: 100%;
  height: 100%;
  border: 1px solid #7acf4a;
  animation-name: popupBtn;
  animation-duration: 1.8s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes popupBtn {
  0% {
    transform: scale(1);
    opacity: .6
  }

  50% {
    transform: scale(1.6);
    opacity: .3
  }

  to {
    transform: scale(2.2);
    opacity: 0
  }
}

.social-rrss {
  position: fixed;
  display: flex;
  flex-direction: column;
  top: 50%;
  right: 0;
  margin-bottom: 10px;
  width: 195px;
  z-index: 9999;
}

.social-rrss a {
  text-decoration: none;
  font-weight: bold;
  padding: 0.6em;
  margin: 3px 0px;
  text-align: left;
  transform: translateX(150px);
  transition: all 0.5s;
  display: flex;
}

.book {
  color: #fff;
  border-radius: 10px 0px 0px 10px;
}

.icon {
  margin-right: 5px;
}

.book p {
  color: #fff;
  margin-bottom: 0px;
}

.social-rrss a i {
  margin-right: 20px;
  width: 30px;
  height: 30px;
  background: #fff;
  text-align: center;
  line-height: 30px;
  border-radius: 100%;
}

.social-rrss>a:hover {
  transform: translateX(0px);
  color: white;
}

.distributors-section {
  background: #012940;
  padding-top: 50px;
  padding-bottom: 50px;
}

.cta-new {
  display: flex;
}

.cta-new-cont h1 {
  color: #fff;
  font-size: 45px;
  margin-bottom: 0px;
  text-transform: uppercase;
}

.cta-new-cont h1 strong {
  color: #5fc4fd;
}

.cta-new-cont p {
  color: #fff;
  margin-bottom: 0px;
  font-size: 19px;
  font-weight: 200;
}

.btn-cta-new {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.btn-cta-new a {
  font-size: 25px !important;
}

.menu-item {
  margin-bottom: 5px;
}

.menu-item a {
  color: #fff;
  font-weight: 200;
  font-size: 17px;
}

.menu-item a:hover {
  color: #05c8ff;

}

.navbar-light .navbar-nav .nav-link {
  color: rgb(255 255 255);
}

.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .show>.nav-link {
  color: #11a9ff;
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
  color: #11a9ff;
}

.card-product {
  background: #ececf2;
  border-radius: 35px !important;
  position: relative;
  overflow: hidden;
  height: 431px;
}

.card-product h6 {
  font-size: 25px;
  padding-bottom: 3px;
  margin-top: 3px !important;
}

.card-product h6 a {
  color: #004675;
}

.price-btnadd span {
  font-weight: 100;
  font-size: 14px;
}

.card-concern {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 0;
  justify-content: flex-start;
  z-index: 2;
  pointer-events: none; 
}

.btn-eye {
  color: #fff;
  background-color: #00abe9;
  border-color: #212529;
  border-radius: 0px 20px 20px 0px !important;
  padding: 6px 20px !important;
  position: relative;
  left: -100%;
  transition: left 0.3s ease-in-out;
  z-index: 3;
  pointer-events: auto; 
}

.card-product:hover .btn-1 {
  left: 0;
}

.card-product:hover .btn-2 {
  left: 0;
  transition-delay: 0.1s; 
}

.card-product:hover .btn-3 {
  left: 0;
  transition-delay: 0.2s;
}

.card-product:hover .btn-eye {
  left: 0;
}

.owl-carousel .owl-item img {
  display: block;
  width: auto !important;
}

.filters-container {
  background: #0f283f;
  padding: 20px;
  border-radius: 8px;
}

.filter-section {
  margin-bottom: 10px;
  padding-bottom: 15px;
  border-bottom: 1px solid #51647f;
}

.filter-section:last-child {
  border-bottom: none;
  margin-bottom: 20px;
}

.filter-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.filter-item {
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 4px 0;
}

.filter-item:hover {
  color: #1976d2;
}

.filter-checkbox {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  cursor: pointer;
  accent-color: #1195e1;
}

.filter-label {
  flex: 1;
  font-size: 15px;
  color: #fff3f3;
  font-weight: 100;
}

.filter-count {
  font-size: 14px;
  color: #fff3f3;
  margin-left: 8px;
}

.btn-clear-filters {
  width: 100%;
  padding: 12px;
  background-color: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  color: #666;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-clear-filters:hover {
  background-color: #e8e8e8;
  color: #333;
}


@media (max-width: 768px) {
  .filters-container {
    padding: 15px;
  }

  .filter-title {
    font-size: 16px;
  }

  .filter-label {
    font-size: 14px;
  }
}

.filters-container.loading {
  opacity: 0.6;
  pointer-events: none;
}

.about-text h1 {
  font-size: 25px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-text p {
  text-align: justify;
  font-weight: 100;
  font-size: 17px;
  line-height: 25px;
}

.target-about {
  display: flex;
  align-items: flex-start;
  margin-top: 30px;
}

.target-about-text h1 {
  font-size: 25px;
  margin-bottom: 0px;
  color: #5dc0fd;
}

.target-about-text p {
  font-weight: 100;
  line-height: 25px;
  margin-bottom: 0px;
}

.target-about-text {
  margin-left: 10px;
}

.form-text h1 {
  font-size: 35px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 900;
}

.form-text strong {
  color: #33a8eb;
}

.form-text p {
  text-align: center;
  font-size: 18px;
  font-weight: 100;
}

.invalid-feedback {
  margin-top: -10.5px !important;
  margin-bottom: 12px !important;
}

.btn-sec {
  background: #012940;
  color: #ffffff;
  border-radius: 2px;
  border: 2px solid #012940;
}

.btn-sec:hover {
  background: #ffffff;
  color: #012940 !important;
  border-radius: 2px;
  border: 2px solid #012940;
}

.btn-sec-w {
  background: #7acf4a;
  color: #ffffff;
  border-radius: 2px;
  border: 2px solid #7acf4a;
}

.btn-sec-w:hover {
  background: #ffffff;
  color: #7acf4a;
  border-radius: 2px;
  border: 2px solid #7acf4a;
}

.btn-solitar {
  background: #589d31;
  color: #ffffff;
  border-radius: 2px;
  border: 2px solid #589d31;
}

.btn-solitar:hover {
  background: #ffffff;
  color: #012940;
  border-radius: 2px;
  border: 2px solid #012940;
}


.btn-solitar-w {
  background: #447726;
  color: #ffffff;
  border-radius: 2px;
  border: 2px solid #447726;
}

.btn-solitar-w:hover {
  background: #ffffff;
  color: #012940;
  border-radius: 2px;
  border: 2px solid #012940;
}



.btn-outline-primary {
  border: 2px solid #012940;
  color: #012940;
}

.btn-outline-primary:hover {
  border: 2px solid #012940;
  color: #fff;
  background: #012940;
}

.bg-primary {
  background: #012940 !important;
}

.breadcrumb-item.active {
  color: #ffffff !important;
}

.breadcrumb-item a {
  color: #10bfff !important;
}

.product-main-image {
  background: #ECECF2;
  border-radius: 20px;
}

.product-main-image img {
  display: block;
  margin: auto;
}

.single-product-content {
  background-color: #000711;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.single-product-content h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: #fff;
  text-transform: uppercase;
  font-weight: 900;
  text-align: center;
}

.single-product-content .price {
  font-size: 1.5rem;
  font-weight: 600;
}

.single-product-content .stock-status {
  font-size: 1rem;
}

.single-product-content p {
  color: #d9d9d9;
}

.single-product-form p strong {
  color: #fff;
}

.product-specifications h5 {
  color: #45bcff;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 1rem;
}

.product-specifications ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.product-specifications li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.25rem 0;
  font-size: 0.95rem;
}

.product-specifications li strong {
  color: #ffffff;
  font-weight: 600;
}

.product-specifications li span {
  color: #b7b7b7;
}

.single-product-descrip h1 {
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 900;
}

.single-product-descrip p {
  font-size: 17px;
  font-weight: 100;
}

.btn-primary:active {
    background: #ffffff !important;
    color: #012940 !important;
    border-color: #012940 !important;
}

.btn-check:focus+.btn-primary, .btn-primary:focus {
    color: #012940 !important;
    background-color: #ffffff !important;
    border-color: #012940 !important;
    box-shadow: 0 0 0 .25rem rgba(49, 132, 253, .5);
}

.distributor-card {
    transition: all 0.3s ease-in-out;
    border-radius: 1rem;
    background-color: #012940;
}

.distributor-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.distributor-title{
    text-transform: uppercase;
    margin-top: 10px;
    color: #fff;
}

.badge-primary{
    background: #398ab7;
    color: #fff !important;
    font-size: 13px;
    font-weight: 100;
}

.card-descrip-text p{
  margin-bottom: 0px ;
}

.footer-title strong{
  color: #05c8ff; 
}

.zoom-container {
    position: relative;
    display: inline-block;
    overflow: hidden;
}
.zoom-container img {
    max-width: 100%;
    border-radius: 10px;
}
#zoom-lens {
position: absolute;
    width: 800px;
    height: 800px;
    display: none;
    pointer-events: none;
    background-repeat: no-repeat;
    background-size: 300% auto;
}

.accordion-item {
    background-color: transparent !important;
    border: none !important;
}

.link-mobil a{
  color:#fff;
      font-size: 15px;
    text-transform: uppercase;
}

.link-mobil a:focus, .link-mobil a:hover {
    color: #11a9ff !important;
}

.acordion-mobil{
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 700;
    background-color: transparent !important;
    color: #fff !important;
}


.accordion-button::after {
    filter: invert(1) !important;
}

.accordion-button:not(.collapsed)::after {
    filter: none !important;
}

.accordion-button:focus {
    z-index: 3;
    border-color: transparent !important;
    outline: 0;
    box-shadow: none !important;
}

.mobil-li li a{
  text-align: start !important;
  padding-left: 29px;
  text-transform: uppercase;
  font-size: 14px;
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.07);
    cursor: pointer;
     transition: transform 0.3s ease;
}


.features-section{
display: grid; 
grid-template-columns: repeat(auto-fit, 
minmax(300px, 1fr)); 
gap: 20px; 
margin-top:15%
}

.section-category{
display: grid; 
grid-template-columns: repeat(auto-fit, 
minmax(300px, 1fr)); 
  gap: 0px;
}


@media (max-width: 767px) {
  .slick-current{
  width: 369px;
}
.cta-new{
      flex-direction: column;
}
.text-form p{
  line-height: 49px;
    margin-top: 0px !important;
}

.img-about img {
  width: 100% !important;
}
.filters-container{
  display: none !important;
}
  #zoom-lens {
        display: none !important;
    }
}


@media (max-width: 767px) and (orientation: landscape) {
    .slick-current{
  width: 369px;
}
.cta-new{
      flex-direction: column;
}
.text-form p{
  line-height: 49px;
    margin-top: 0px !important;
}
.img-about img {
  width: 100% !important;
}
  #zoom-lens {
        display: none !important;
    }
}


@media (min-width: 768px) and (max-width: 1024px) {
.img-about img {
  width: 100% !important;
}
.filters-container{
  display: none !important;
}
  #zoom-lens {
        display: none !important;
    }
        .features-section{
display: flex !important; 

}
.section-category{
display: flex !important; 
}
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .img-about img {
  width: 100% !important;
}
  #zoom-lens {
        display: none !important;
    }

}

@media (min-width: 1025px) {
 
}


.dropdown-shop {
  background: transparent;
    border: none;
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
    display: none;
}

.offcanvas.show {
    height: 100vh !important;
}

    .mobile-cart-content {
        border-radius: 1.5rem;
    }
    
    .mobile-cart-item {
        transition: all 0.2s ease;
    }
    
    .mobile-cart-item:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    
    .mobile-cart-overlay {
        animation: fadeIn 0.2s ease-out;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    .mobile-cart-body::-webkit-scrollbar {
        width: 4px;
    }
    
    .mobile-cart-body::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 2px;
    }
    
    .mobile-cart-body::-webkit-scrollbar-thumb {
        background: #c1c1c1;
        border-radius: 2px;
    }
    
    .mobile-cart-body::-webkit-scrollbar-thumb:hover {
        background: #a8a8a8;
    }

    .product-card {
    position: relative;
    overflow: visible;
}

.card-concern-floating {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.product-card:hover .card-concern-floating {
    opacity: 1;
    transform: translateX(0);
}

.btn-floating {
width: 50px;
    height: 50px;
    border-radius: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-floating:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.btn-floating.btn-1 {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
}

.btn-floating.btn-2 {
    background: #012940;
}

.btn-floating.btn-3 {
    background: #7acf4a;
}

.btn-floating img,
.btn-floating svg {
    width: 20px;
    height: 20px;
}


@media (max-width: 768px) {
    .card-concern-floating {
        opacity: 1;
        transform: translateX(0);
        top: 10px;
        right: 10px;
    }
    
    .btn-floating {
        width: 35px;
        height: 35px;
    }
    
    .btn-floating img,
    .btn-floating svg {
        width: 16px;
        height: 16px;
    }
}

    .search-container {
        position: relative;
    }

    .search-dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border: 1px solid #ddd;
        border-top: none;
        border-radius: 0 0 0.375rem 0.375rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        max-height: 400px;
        overflow-y: auto;
        z-index: 1050;
        margin-top: 2px;
        animation: slideDown 0.2s ease-out;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .search-result-img {
        width: 50px;
        height: 50px;
        -o-object-fit: cover;
           object-fit: cover;
        border-radius: 0.25rem;
    }

    .list-group-item {
        border-left: none;
        border-right: none;
        transition: all 0.2s;
        cursor: pointer;
    }

    .list-group-item:first-child {
        border-top: none;
    }

    .list-group-item:hover {
        background-color: #f8f9fa;
    }

    .input-group {
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

.livewire-search-placeholder {
    position: absolute;
    inset: 0;
    visibility: hidden;
}

.tooltip-wp {
  visibility: hidden;
  width: 220px;
  background-color: #4CAF50;
  color: #fff;
  text-align: left;
  padding: 12px;
  border-radius: 5px;
  position: absolute;
  bottom: 80px;
  left: 0px;
  z-index: 1;
  font-size: 14px;
}

.tooltip-wp::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 10%;
  margin-left: -8px;
  border-width: 8px;
  border-style: solid;
  border-color: #4CAF50 transparent transparent transparent;
}

.floatWapp:hover .tooltip-wp {
  visibility: visible;
}

.title-features{
  font-size: 25px;
}

.footer-title{
  font-size: 20px;
}