* {
    padding: 0;
    /* border: 1px solid yellow; */
    margin: 0;
    box-sizing: border-box;
}
:root {
    --first-color:#313F41;
    --second-color:#2292A4;
    --third-color:#4cb963;
    --fourth-color:#D3D4D9;
    --white-color:#F2F4FF;
    --black-color:#111313;

    --main-gradient:linear-gradient(180deg, #313F41 0%, #111313 97.39%);
    --second-gradient: linear-gradient(95deg, #313F41 34%, #2292A4 227.85%);
}

/*==================================== GENERAL STYLES START ==================================*/
/*==================================== GENERAL STYLES END ==================================*/

/*==================================== GENERAL STYLES START ==================================*/
body {
    font-family: 'Montserrat' , sans-serif;
    background-color: var(--black-color);
}
h1 {
    background: var(--second-gradient);
    font-weight: 700;
    /* font-style: italic; */
    transform: skewX(-10deg);
    border-radius: 10px;
    width: fit-content;
    padding: 10px 30px;
    font-size: 30px;
    margin-bottom: 0;
    margin: auto;
}
h2 {
    font-weight: 700;
    font-size: 26px;
}
h3 {
    font-size: 16px;
    font-weight: 700;
    font-style: italic;
    color: var(--white-color)
}
a {
    text-decoration: none;
    color: var(--white-color);
}
ul li, ol li{
    font-size: 16px;
    font-weight: 300;
}
section {
    position: relative;
}
main {
    overflow: hidden;
}
/*==================================== GENERAL STYLES END ==================================*/

/*==================================== BUTTONS STYLES START ==================================*/
.btnPrimary {
    background-color: var(--third-color);
    border: 1px solid var(--white-color);
    color: var(--white-color);
    font-size: 14px;
    font-weight: 500 ;
    width: fit-content;
    padding: 6px 20px;
    border-radius: 6px;
    transition: all .15s ease-in-out;
}

.btnSecond{
    background-color: transparent;
    border: 1px solid var(--white-color);
    color: var(--white-color);
    font-size: 14px;
    font-weight: 500 ;
    width: fit-content;
    padding: 6px 20px;
    border-radius: 6px;
    transition: all .15s ease-in-out;
}

.btnPrimary:hover {
    background-color: var(--first-color);
}

.btnSecond:hover {
    background-color: var(--third-color);
}

#coaching .btnPrimary {
    width: 100%;
 }
 #coaching .btnSecond {
    width: 100%;
}

#coaching .btnSecond:hover {
    background-color: var(--third-color);
}


.btnPrimary.btnSocial2{
    padding: 6px 6px;
}

.flexbox {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 80;
    right: 0px;
    z-index: 3;
  }
  
@media (max-width:991px){
    .flexbox {
        top: 80;
        right: 48px;
    }
}

@media (max-width:499px){
    .cardProductInfo{
        padding: 0px 30px 0px 30px;
    }
}

  .fav-btn {
    display: none;
    height: 100%;
    justify-content: center;
    align-items: center;
  }
  
  @keyframes favme-anime {
    0% {
      opacity: 1;
      font-size: 25px;
      -webkit-text-stroke-color: transparent;
    }
    25% {
      opacity: 2.6;
      color: #FFF;
      font-size: 25px;
      -webkit-text-stroke-width: 1px;
      -webkit-text-stroke-color: #DC3232;
    }
    75% {
      opacity: 2.6;
      color: #FFF;
      font-size: 25px;
      -webkit-text-stroke-width: 1px;
      -webkit-text-stroke-color: #DC3232;
    }
    100% {
      opacity: 1;
      font-size: 25px;
      -webkit-text-stroke-color: transparent;
    }
  }

  .favme {
    display: block;
    font-size: 25px;
    width: auto;
    height: auto;
    cursor: pointer;
    box-shadow: none;
    transition: all 0.2s ease;
    color: #CBCDCE;
    margin: 0;
  }
  .favme.active {
    color: #DC3232;
  }
  .favme.is_animating {
    animation: favme-anime 0.3s;
  }
/*==================================== BUTTONS STYLES END ==================================*/

.navMain {
    position: fixed;
    z-index: 100;
    padding-top: 30px;
    padding-bottom: 30px;
    animation: navMain .5s ease-in-out forwards;
}
.navMain .navContacto {
    display: none;
}
@keyframes navMain {
    0% {
        opacity: 0;
        transform: translateY(-100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}
.navMain.sticky {
    position: fixed;
    padding-top: 0px;
    padding-bottom: 0px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    animation: navMainSticky 1s ease-in-out forwards;
}
.navMain.sticky .logoHero {
    width: 150px;
    padding: 10px;
}
.navMain.sticky .navContacto {
    display: block;
}
.navMain.sticky .navMenuContainer {
    justify-content: end!important;
}
.navMain.sticky .contactoBtnHero {
    display: none!important;
}
@keyframes navMainSticky {
    0% {
        opacity: 0;
        transform: translateY(-100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}
.menu {
    position: absolute;
    z-index: 10;
    justify-content: end;
    padding: 0;
}
.navMain.sticky .menu {
    margin-top: 9px;
}
.menu .nav-link {
    font-family: 'Montserrat';
    font-style: italic;
    color: var(--white-color);
    font-size: 14px;
    border-bottom: 2px solid transparent;
    font-weight: 400;
    transition: all .5s ease-in-out;
}
.menu .nav-link:hover, .menu .nav-link.active {
    color: var(--white-color);
    border-bottom: 2px solid var(--white-color);
    font-weight: 700;
}
.menu .navbar-toggler {
    width: 30px;
    height: 30px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--white-color);
}
.menu .navbar-toggler:focus, .menu .navbar-toggler:focus-visible {
    box-shadow: none;
    outline: none;
}
.menu .navbar-toggler i {
    color: var(--white-color);
}

@media (max-width:991px) {
    .menu .nav-link {
        text-align: end;
    }
    .menu #navbarNav {
        margin-top: 10px;
        background: var(--main-gradient);
        padding: 6px 20px;
        border-radius: 10px;
        z-index: 20;
    }
}

/*==================================== HOME STYLES START ==================================*/
#home {
    /* height: 850px; */
    background: var(--main-gradient);
    position: relative;
    z-index: 2;
    padding: 20px 0 30px;
}

.backHero {
    position: absolute;
    bottom: -30%;
    left: -50%;
    width: 80%;
    opacity: .04;
    z-index: -1;
}
.logoHero {
    max-width: 100%;
    width: 200px;
}

.gridHeroContent {
    position: absolute;
    z-index: 10;
    left: 30px;
    font-style: italic;
    color: var(--white-color);
    padding-bottom: 100px;
    transition: all .5s ease-in-out;
}
.gridHeroContent .titleHero {
    font-size: 50px;
    font-weight: 900;
    line-height: normal;
}
.gridHeroContent .subtitleHero {
    font-weight: 500;
    margin-top: 10px;
    position: relative;
}
.gridHeroContent .subtitleHero::after {
    position: absolute;
    content: url(../img/bar.svg);
    bottom: -22px;
    left: 0;
}

@media (max-width:767px) {
    .gridHeroContent {
        padding-bottom: 0;
    }
}
@media (max-width:399px) {
    .gridHeroContent {
        left: 10px;
    }
    .gridHeroContent .titleHero {
        font-size: 36px;
        font-weight: 900;
        line-height: normal;
    }
}
.gridHero {
    padding: 0 0px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

  .gridHero video {
    max-width: 100%;
    object-fit: cover;
    height: 800px;
    width: 100%;
    mask: url(../img/herobackmask.png) no-repeat;
    mask-size: 100% 800px;
    filter: brightness(70%);
  }
  
  @media (max-width: 991px) {
    .gridHero video {
        height: 800px;
        mask: url(../img/herobackmasklg.png) no-repeat;
        mask-size: 100% 800px;
    }
  }
  @media (max-width: 767px) {
    .gridHero img {
        mask-size: 100% 200px;
        height: 200px;
    }
    .gridHero video {
        height: 600px;
        mask: url(../img/herobackmaskmd.png) no-repeat;
        mask-size: 100% 600px;
    }
  }
  @media (max-width: 575px) {
    .gridHero img {
        mask-size: 100% 150px;
        height: 150px;
    }
    .gridHero video {
        height: 600px;
        mask: url(../img/herobackmasksm.png) no-repeat;
        mask-size: 100% 600px;
    }
  }
  @media (max-width: 450px) {
    .gridHero video {
        height: 600px;
        mask: url(../img/herobackmaskxs.png) no-repeat;
        mask-size: 100% 600px;
    }
  }

    .contactHero {
        display: flex;
        flex-direction: column;
        justify-content: end;
        margin-bottom: 160px;
        color: var(--white-color);
    }
    @media (max-width: 575px) {
        .contactHero {
            margin-bottom: 80px;
        }
    }
  .contFormHero {
    position: absolute;
    bottom: 0;
    padding-right: 60px;
    padding-bottom: 50px;
    z-index: 5;
  } 
  @media (max-width: 1199px) {
    .contFormHero {
        padding-bottom: 40px;
    }
  }
  .titleFormHero {
    font-weight: 700;
    font-style: italic;
    color: var(--white-color);
    font-size: 30px;
    margin-bottom: 20px;
    line-height: 30px;
  }
  .formHero {
    width: 100%;
    display: flex;
    background-color: var(--white-color);
    border-radius: 6px;
  }
  .formHero input {
    width: 100%;
    border-radius: 6px 0 0 6px;
    border: none;
    padding: 4px 10px;
  }
  .contactoBtnHero {
    position: absolute;
    right: 0;
    padding-left: 5rem; 
  }
  .contactoBtnHero .btnPrimary {
    width: 100%;
    display: flex;
    justify-content: center;
  }
/*==================================== HOME STYLES END ==================================*/

/*==================================== COACHING STYLES START ==================================*/
#coaching {
    padding-top: 100px;
    padding-bottom: 100px;
    color: var(--white-color);
}
.tableCoachingPlan th {
    padding: 6px 10px;
    text-align: center;
    border-right: .5px solid var(--white-color);
}
.tableCoachingPlan th:last-child {
    border: none;
}
.tableCoachingPlan th p {
    font-weight: 300;
}
.tableCoachingPlan th h5 {
    font-weight: 700;
    font-style: italic;
    color: var(--third-color);
}
.tableCoachingPlan td {
    padding: 12px 16px;
    border-right: .5px solid var(--white-color);
}
.tableCoachingPlan td:last-child {
    border: none;
}
.tableCoachingPlan .check {
    text-align: center;
    font-size: 20px;
}
.tableCoachingPlan .check.checkGreen {
    color: var(--third-color);
}

.planesxp{
    border: .5px  solid var(--white-color);
    border-radius: 6px;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-bottom: 30px;
}

.cardBody {
    display: flex;
    height: 100%;
    flex-direction: column;
    padding: 20px 0 40px;
    text-align: center;
    margin-top: 30px;
  }

/* .planesxp2{
    border: .5px  solid var(--white-color);
    border-radius: 6px;
    background-color: var(--third-color);
    height: auto;
} */

@media (max-width:768px){
    .tablewrappers{
        position: relative;
        z-index: 1;
        margin: auto;
        overflow: scroll;
    }
}

.negapadding{
    margin: -10px;
}

.coachingPlanBox p {
    font-weight: 300;
    font-size: 16px;
}

.coachingPlanBox h2 {
    font-size: 30px;
}

.coachingPlanBox h5 {
    font-weight: 700;
    font-style: italic;
    color: var(--third-color);
}
.coachingPlanBox td {
    padding: 12px 16px;
    border-right: .5px solid var(--white-color);
}
.coachingPlanBox .check {
    text-align: center;
    font-size: 20px;
}
.coachingPlanBox .check.checkGreen {
    color: var(--third-color);
}
/*==================================== COACHING STYLES END ==================================*/

/*==================================== SERVICIOS STYLES START ==================================*/
#servicios {
    color: var(--white-color);
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
}
.derecha, .izquierda, .suplemento{
    position: absolute;
    width: 100px;
    height: auto;
    z-index: 3;
    top: 0;
}
.derecha{
    right: 0px;
    transform: translateX(25px);
}
.izquierda{
    left: 0px;
    transform: translateX(-25px);
}

@media (max-width:991px){
    .derecha{
        transform: translate(30px, -60px);
    }
    .izquierda{
        transform: translate(-30px, -50px);
    }
}
.serviceImgCont {
    padding: 20px;
    position: relative;
}
.serviceImgCont img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.serviceImgCont .slashes {
    position: absolute;
    width: 100px;
    height: auto;
    z-index: 3;
    top: 0;
    right: -10px;
}
.serviceImgCont .dots {
    position: absolute;
    width: 100px;
    height: auto;
    z-index: 3;
    bottom: 0;
    left: -10px;
    border-radius: 0px;
}

#servicios .serviceImgCont img:nth-child(3) {
    filter: grayscale(100%);
    transition: all .5s ease-in-out;
}

#servicios .serviceImgCont img:nth-child(3):hover {
    filter: grayscale(0%);
}

.serviceImgContAbs {
    width: 150px;
    height: auto;
}
/*==================================== SERVICIOS STYLES END ==================================*/

/*==================================== PRODUCTOS STYLES START ==================================*/
#productos {
    color: var(--white-color);
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
}
.cardProductInfo p {
    margin-bottom: 0;
}
.productPrice {
    color: var(--third-color);
    font-size: 18px;
    font-weight: 600;
}
.productPrice .divisa {
    font-size: 14px;
}
.productName {
    font-weight: 600;
}
.cardProductInfo .btnPrimary {
    width: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
    margin-top: 16px;
}
.cardProductHeader {
    position: relative;
    margin-bottom: 20px;
    display: flex;
}
.cardProductHeaderImg {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .5s ease-in-out;
}
.cardProductHeaderImg .imgProduct {
    width: 100%;
    height: auto;
    z-index: 2;
    position: relative;
    transform: rotate(-14deg);
}
.backProductAnimR {
    position: absolute;
    z-index: 1;
    width: 0px;
    transform: translate(0px, 0px);
    transition: all .5s ease-in-out;
}
.cardProductHeaderImg:hover .backProductAnimR {
    width: 150px;
    transform: translate(40px, -20px);
}
.backProductAnimL {
    position: absolute;
    z-index: 1;
    width: 0px;
    transform: translate(0px, 0px);
    transition: all .5s ease-in-out;
}
.cardProductHeaderImg:hover .backProductAnimL {
    width: 150px;
    transform: translate(-40px, 20px);
}
.cardProductHeader .btnFavorite {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fourth-color);
    background-color: transparent;
    border: none;
    top: 20px;
    right: 20px;
}
/*==================================== PRODUCTOS STYLES END ==================================*/

/*==================================== CARRUSEL PRODUCTOS STYLES START ==================================*/
#productos_ {
    position: relative;
}
.swiper {
    width: 100%;
    height: auto;
  }
  .cardProductInfo p {
    color: var(--white-color);
  }
  /* .swiper .swiper-slide:nth-child(even) {
    background-color: var(--third-color);
  }
  .swiper .swiper-slide:nth-child(odd) {
    background-color: var(--second-color);
  } */
   .swiper-button-prev, .swiper-button-next {
    color: var(--white-color);
    font-size: 20px;
   }
   .swiper-button-prev:after, .swiper-button-next::after {
    display: none;
   }
   .swiper-pagination {
    position: relative;
    margin-top: 20px;
   }
   .swiper-pagination-bullet {
    background-color: var(--third-color);
    opacity: .5;
    transition: all .5s ease-in-out;
   }
   .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
   }
/*==================================== CARRUSEL PRODUCTOS STYLES END ==================================*/
  

/*==================================== CONTACTO STYLES START ==================================*/
#contacto {
    color: var(--white-color);
    padding-top: 48px;
    padding-bottom: 100px;
}

@media (max-width:575px) {
    #contacto {
        padding-top: 50px;
    }
}

#contacto input, .contacto select {
    width: 100%;
    padding: 6px 10px!important;
    border: none;
    border-radius: 4px!important;
    margin-bottom: 14px;
    color: var(--black-color)!important;
}
#contacto input[type="date"] {
    width: 100% !important;
    min-width: 100%!important;
  }
#contacto label {
    display: flex;
    gap: 6px;
    padding: 6px 10px;
}
.formsContactCont {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
/* .formsContactCont::after {
    position: absolute;
    content: '';
    width: 1px;
    height: 110%;
    background-color: var(--white-color);
} */
@media (max-width:991px){
    .formsContactCont::after{
        display: none;
    }
    .Contactcol{
        display: block;
        padding-bottom: 48px;
        /* border-bottom: 1px solid var(--fourth-color); */
    }
}

#contacto .form-check{
    display: inline-flex;
}

.FormLabels .radioconfig{
    margin: auto;
    width: none;
}

#contacto .form-check input{
    width: auto;
    margin-bottom: 0;
}


.contacto select {
    width: 100%;
    padding: 6px 10px!important;
    border: none;
    border-radius: 4px!important;
    margin-bottom: 14px;
    color: var(--black-color)!important;
}

.contacto {
    color: var(--white-color);
    padding-top: 100px;
    padding-bottom: 100px;
}
@media (max-width:575px) {
    #contacto {
        padding-top: 50px;
    }
}

.contacto input {
    width: 100%;
    padding: 6px 10px!important;
    border: none;
    border-radius: 4px!important;
    margin-bottom: 14px;
    color: var(--black-color)!important;
}

.contacto label {
    display: flex;
    gap: 6px;
    padding: 6px 10px;
}

.contacto {
    .form-check{
        display: inline-flex;
    }
}

.contacto .form-check input{
    width: auto;
    margin-bottom: 0;
}


select:-internal-select-author-button {
    background-color: #4cb963;
}


.animCuerda, .animShaker, .animPesas{
    position: absolute;
    width: 100px;
}
.contactoImgCont {
    padding: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 450px;
}
 .elmtServ {
    position: absolute;
    height: 100px;
    z-index: 1;
 }
 .elmtServ.animGuy {
    height: 100%;
 }
 .elmtServ.animCuerda {
    bottom: -30px;
    z-index: 2;
 }
 .elmtServ.animPesas {
    right: 10%;
    top: 100px;
 }
 .elmtServ.animShaker {
    left: 10%;
    top: 100px;
 }
.contactoImgCont .slashes {
    position: absolute;
    width: 100px;
    height: auto;
    z-index: 3;
    top: 0;
    right: -10px;
}
.contactoImgCont .dots {
    position: absolute;
    width: 100px;
    height: auto;
    z-index: 3;
    bottom: 0;
    left: -10px;
    border-radius: 0px;
}

.contacto.modal-dialog{
    padding-bottom: 0px;
    padding-top: 0px;
    pointer-events: all;
}

/*==================================== CONTACTO STYLES END ==================================*/

/*==================================== PREFOOTER STYLES START ==================================*/
.grid {
    padding: 0 20px;
}
.grid img, .grid video {
    mask: url(../img/maskfooter.png) no-repeat;
    mask-size: 100% 300px;
    max-width: 100%;
    /* display: block;
    aspect-ratio: 1; */
    object-fit: cover;
    height: 300px;
    width: 100%;
  }
  
  /* .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 30ch), 1fr));
    gap: 5vmax;
    width: min(80ch, 100%);
    margin-inline: auto;
  } */

  @media (max-width: 767px) {
    .grid img, .grid video {
        mask-size: 100% 200px;
        height: 200px;
    }
  }
  @media (max-width: 575px) {
    .grid img, .grid video {
        mask-size: 100% 150px;
        height: 150px;
    }
  }
/*==================================== PREFOOTER STYLES END ==================================*/

/*==================================== FOOTER STYLES END ==================================*/
footer {
    margin-top: 30px;
}
footer .bttmFooter {
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: var(--third-color);
    color: var(--white-color);
}
footer .bttmFooter p {
    margin-bottom: 0;
    font-size: 14px;
}
footer .bttmFooter a {
    color: var(--white-color);
    font-size: 14px;
    text-decoration: none;
}
.footerlist {
    display:flex;
    /* justify-content: end; */
    gap: 10px;
    list-style: none;
    padding: 0;
}
.footerlistright {
    padding-left: 0;
    text-align: right;
    list-style: none;
    font-size: 16px;
    font-weight: 300;
}
.wrapper {
    width: 100%;
}
.navegar {
    display: inline;
    flex-wrap: wrap;
}
.containerresponsive {
    width: 100%;
}
.row-bottom-margin {
    margin-bottom:20px;
}
/* .menufooter .container-fluid{ */
    /* flex-direction: column; */
    /* display: block; */
/* } */
/* [type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
    transform:rotate(0deg)!important;
} */
/* .menufooter .navbar-toggler:not(.collapsed){
    transform:rotate(0deg);
    transition: all .5s ease-in-out;
}
.menufooter .navbar-toggler{
    transform: rotate(0deg)!important;
    color: var(--white-color);
    transition: all .5s ease-in-out;
}
.menufooter .navbar-toggler.collapsed{
    transform: rotate(-180deg);
    color: var(--white-color);
    transition: all .5s ease-in-out;
} */
.menufooter .navbar-toggler.collapsed{
    transform: rotate(0deg);
    color: var(--white-color);
    transition: all .35s ease-in-out;
}
.menufooter .navbar-toggler:not(.collapsed){
    transform:rotate(-180deg);
    color: var(--white-color);
    transition: all .35s ease-in-out;
}
.menufooter .navbar-toggler:focus{
    outline: none;
    box-shadow: none;
}
.menufooter .nav-link {
    color: var(--white-color);
    padding: 0;
}
.menufooter .navbar-nav {
    display: list-item;
}
/* @media only screen and (min-width: 357px){
    .wrapper {
        width: 600px;
        margin: 0 auto;
        padding-left: 20px;
        padding-right: 20px;
    }
} */
/*==================================== FOOTER STYLES START ==================================*/

/*==================================== MODALS STYLES END ==================================*/
#Modals .modal-content{
    background-color: var(--black-color);
}

.btnClose{
    color: var(--white-color);
    background-color: transparent;
    box-sizing:content-box;
    border: 0;
    font-size: 25px;
    opacity: .5;
}

#Modals .modal{
    --bs-modal-width: none;
}

#Modals h4{
    font-size: 26px;
    color: var(--white-color);
}

#Modals h2{
    font-size: 30px;
    color: var(--third-color);
}

#Modals p{
    color: var(--white-color);
}

.modal-dialog .slashes, .dots{
    position: absolute;
    z-index: 3;
    width: 100px;
    height: auto;
}


.modal-dialog{
    .slashes{
        right: -22px;
        top: -22px;
    } 
    .dots{
        left: -22px;
        bottom: -22px;
    }
}


/*==================================== PRODUCTS STYLES ==================================*/
#homeprod {
    /* background: var(--main-gradient); */
    /* height: 850px; */
    position: relative;
    padding: 150px 0 30px;
    color: var(--white-color);
}

.contprod{
    margin-bottom: 30px;
}

.headprod{
    position: relative;
    z-index: 5;
}

#homeprod .catprod button{
    color: var(--white-color);
    background-color: transparent;

}

#homeprod .nav-tabs .active{
    color: var(--third-color);
    background-color: transparent;
    font-weight: 700;
}

#homeprod .nav-tabs .nav-link:hover{
    border: none;
}

#homeprod .nav-tabs{
    --bs-nav-tabs-border-width: transparent;
    --bs-nav-tabs-border-color:transparent;
    display: flex;
    flex-direction: column;
}

@media (max-width:991px){
    #homeprod .nav-tabs{
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }
}

#homeprod .nav-tabs .nav-link{
    font-size: 16px;
}

#homeprod .nav-tabs .active{
    --bs-nav-tabs-border-width: transparent;
    --bs-nav-tabs-border-color:transparent;
    font-size: 20px;
}

#homeprod .tab-content>.active{
    display: flex;
}

#homeprod .productsect{
    padding: 10px;
    margin-bottom: 50px;
}

.cardProductHeaderImg .imgProductdos {
    width: 100%;
    height: auto;
    z-index: 2;
    position: relative;
}

@media (max-width:575px) {
    .cardProductHeaderImg .imgProduct {
        width: 70%;
    }
}

.iconfooter{
    width: 20px;
    height: auto;
    padding-left: 5px;
}

#to-top{
    position: fixed;
    z-index: 7;
    color: var(--white-color);
    font-size: 30px;
    bottom: 0;
    right: 10px;
    scroll-behavior: smooth;
}

#to-top:hover{
    color: var(--third-color);
}

.catprod{
    position: relative;
    z-index: 3;
}


/* ----------
ALERTS STYLES 
------------ */
.alert {
    width: 100%;
    position: fixed;
    height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    z-index: 10000;
    border: none;
    /* background-color: rgba(4, 3, 14, .6); */
    background: rgba(0, 0, 0, .3);
    /* background: transparent; */
}

.alert-box {
    position: relative;
    /* top: 20px; */
    /* right: 20px; */
    z-index: 9999;
    padding: 40px 20px;
    border-radius: 20px;
    /* min-width: 450px; */
    min-height: 0px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    background: var(--main-gradient);
    /* border: 1px solid var(--black-color); */
    text-align: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
    box-shadow: 0px 0px 15px 0px rgba(164, 207, 247, 0.20);
    transform: translateY(50%);
    opacity: 0;
    animation: alertTransition 5s ease-in-out forwards;
}

@keyframes alertTransition {
    0% {
        transform: translateY(50%);
        opacity: 0;
    }

    20% {
        transform: translateY(0%);
        opacity: 1;
    }

    80% {
        transform: translateY(0%);
        opacity: 1;
    }

    100% {
        transform: translateY(50%);
        opacity: 0;
    }
}

.alert-box::before {
    position: absolute;
    content: '';
    width: 98%;
    height: 94%;
    border-radius: 20px;
}

.alert-box .titleAlert {
    font-size: 26px;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--white-color);
}

.alert-box.error h1::before {
    /* content: url(../img/alert/send.gif); */
    content: '';
    background-image: url(../img/illustrations/error.png);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    height: 80px;
    width: 80px;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.alert-box.success h1::before {
    /* content: url(../img/alert/send.gif); */
    content: '';
    background-image: url(../img/illustrations/contacto.png);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    height: 80px;
    width: 80px;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.alert-box p {
    z-index: 2;
    line-height: normal;
    margin-bottom: 10px;
    color: var(--white-color);
}