*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;  
    font-family: "Gabarito", sans-serif;
    font-optical-sizing: auto;   
}


:root{
    --primercolor: #092635;
    --segundocolor: #FFF80A;
    --tercercolor: #D61C4E;
    --cuartocolor: #EE5007;
    --tab-color: #191919;
    --white-color: #fff;
    --home-icon-color: #00f7ff;
    --heart-icon-color: #ff0000;
    --plus-icon-color: #255df7;
    --user-icon-color: #8bee82;
    --bell-icon-color: #ffff00;
    --quintocolor: #E81C2E;
}



.btn.btn-custom {
    padding: 10px 30px 12px 30px;
    text-align: center; 
    font-size: 16px;
    font-weight: 500;
    color: var(--primercolor);
    background: var(--segundocolor);
    border: none;
    border-radius: 60px;
    box-shadow: inset 0 0 0 0 var(--segundocolor);
    -moz-transition: ease-out 0.5s;
    -webkit-transition: ease-out 0.5s;
    transition: ease-out 0.5s;
}

.btn.btn-custom:hover {
    color: var(--segundocolor);
    background: var(--cuartocolor);
    box-shadow: inset 200px 0 0 0 var(--primercolor);
}

.btn:focus,
.form-control:focus {
    box-shadow: none;
}

/*** Spinner inicio ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

 #spinner.show {
     transition: opacity .8s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
 }

 .back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}
/*** Spinner fin ***/




/*Top Barra*/
.top-bar {
    position: relative;
    height: 75px;
    display: flex;
    align-items: center;
    background: #ffffff;
    width: 100%;
}

.top-bar .logo {
    text-align: left;
    overflow: hidden;
}



.top-bar .logo h1 span {
    color: var(--primercolor);
}

.top-bar .logo img {
    max-width: 100%;
    max-height: 35vh;
    margin-top: -60px ;
    
}

.top-bar .top-bar-item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top-bar .top-bar-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--segundocolor);
    border-radius: 40px;
   
}

.top-bar .top-bar-icon i {
    margin: 0;
    color: var(--primercolor);
    font-size: 16px;
}

.top-bar .top-bar-text {
    padding-left: 10px;
}

.top-bar .top-bar-text h3 {
    margin: 0 0 5px 0;
    font-size: 18px;
    font-weight: 600;
}

.top-bar .top-bar-text p {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
}

.col-4{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 0;
    
   
        
}



@media (max-width: 991.98px) {
    .top-bar .logo {
        text-align: center;
    }
    .top-bar .logo img{
        width: 50%;
    }
}

/* Menu*/
.nav-bar {
    position: relative;
    background: var(--primercolor);
}

.nav-bar.nav-sticky {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    box-shadow: 0 2px 5px rgba(201, 8, 8, 0.3);
    z-index: 999;
}

.nav-bar .navbar {
    padding: 20px 0;
    background: var(--primercolor) !important;
    transition: .3s;
}

.nav-bar.nav-sticky .navbar {
    padding: 5px 0;
}
#menu{
    color:#fff;
    font-size: 20px;
    gap: 10px;
    padding: 0 20px 0 10px;

}
#menu:hover{
    color: var(--segundocolor);
    font-weight: 500;
    letter-spacing: 1px;
    transform: scale(1.2);
    
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #ffffff;
    padding: 15px;
    font-weight: 500;
    letter-spacing: 1px;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--segundocolor);
}

.nav-bar .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: #f8f9fa;
}

.nav-bar .btn.btn-custom {
    color: var(--primercolor);
    background: #ffffff;
    box-shadow: inset 0 0 0 0 var(--segundocolor);
    
}

.nav-bar .btn:hover {
    color: var(--primercolor);
    background: var(--segundocolor);
    box-shadow: inset 200px 0 0 0 var(--segundocolor);
    transform: scale(1.3);
}
.navbar-brand{
    margin: auto;
    color: var(--segundocolor);
    
}

@media (min-width: 992px) {
    .nav-bar .navbar-brand {
        display: none;
                     
    }
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link:focus,
    .navbar-dark .navbar-nav .nav-link:hover,
    .navbar-dark .navbar-nav .nav-link.active {
        padding: 5px 0;
    }
    
    .nav-bar .dropdown-menu {
        box-shadow: none;
    }
    
    .nav-bar .btn {
        display: none;
    }

    #menu{
        text-align: center;
        padding: 0 0 10px 0;

    }
}

/********** Hero CSS ***********/
.carousel {
    position: relative;
    width: 100%;
    min-height: 400px;
    background: #ffffff;
    margin-bottom: 35px;
    
}

.carousel .container-fluid {
    padding: 0;
}

.carousel .carousel-item {
    position: relative;
    width: 100%;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    
}

.carousel .carousel-img {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: right;
    overflow: hidden;
    aspect-ratio:4/3;
    object-fit: contain;
   
}

.carousel .carousel-img::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
    height: 100%;
}

.carousel .carousel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;


    
}

.carousel .carousel-text {
    position: absolute;
    max-width: 992px;
    padding: 0 15px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 2;
    top: 120px;
}

.carousel .carousel-text h3 {
    color: var(--segundocolor);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 0px;
}

.carousel .carousel-text h1 {
    color: #ffffff;
    font-size: 90px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.carousel .carousel-text p {
    max-width: 500px;
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 40px;
}

.carousel .btn.btn-custom {
    padding: 20px 45px 22px 45px;
    color: var(--primercolor);
    font-weight: 700;
}

.carousel .btn.btn-custom:hover {
    color: var(--segundocolor);
    transform: scale(1.1);
    
}

.carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 50px;
    top: calc(30% - 25px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 9;
}

.carousel .owl-nav .owl-prev,
.carousel .owl-nav .owl-next {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border-radius: 50px;
    background: rgba(256, 256, 256, .2);
    font-size: 22px;
    transition: 7s;
}

.carousel .owl-nav .owl-prev {
    margin-left: 30px;
}

.carousel .owl-nav .owl-next {
    margin-right: 30px;
}

.carousel .owl-nav .owl-prev:hover,
.carousel .owl-nav .owl-next:hover {
    color: #ffffff;
    background: var(--segundocolor);
}

.carousel .animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

@media (max-width: 991.98px) {
    .carousel .carousel-text h3 {
        margin-bottom: 5px;
    }
    
    .carousel .carousel-text h1 {
        font-size: 60px;
    }
    
    .carousel .carousel-text p {
        font-size: 16px;
    }
    
    .carousel .carousel-text .btn {
        padding: 12px 30px;
        font-size: 15px;
        letter-spacing: 0;
    }
}

@media (max-width: 767.98px) {
    .carousel .carousel-text h3 {
        font-size: 18px;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }
    
    .carousel .carousel-text h1 {
        font-size: 45px;
    }
    
    .carousel .carousel-text .btn {
        padding: 10px 25px;
        font-size: 15px;
        letter-spacing: 0;
    }
    .carousel .owl-nav {
        margin-top: 150px;

    }
}

@media (max-width: 575.98px) {
    .carousel .carousel-text h3 {
        font-size: 14px;
        letter-spacing: 1px;
        margin-bottom: 10px;
      margin-top: -110px;
    }
    
    .carousel .carousel-text h1 {
        font-size: 30px;
        margin-bottom: 15px;
    }
    
    .carousel .carousel-text p {
        margin-bottom: 25px;
    }
    
    .carousel .carousel-text .btn {
        padding: 8px 20px;
        font-size: 14px;
        letter-spacing: 0;
        margin-top: -4%;
    }

    .about .about-img img { 
        margin-top: -150px;
        height: 10%;
    }

    .carousel .carousel-img::after {
        height: 100%;
    }
}

/******* Section Header ********/

.section-header {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto 45px auto;
    
}

.section-header p {
    display: inline-block;
    margin-bottom: 10px;
    padding-bottom: 5px;
    position: relative;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--quintocolor);
}

.section-header p::after {
    position: absolute;
    content: "";
    width: 50%;
    height: 2px;
    left: 25%;
    bottom: 0;
    background: var(--quintocolor);
}

.section-header.text-left p::after {
    left: 0;
}

.section-header.text-right p::after {
    left: 50%;
}

.section-header h2 {
    margin: 0;
    font-size: 45px;
    font-weight: 700;
    text-transform: capitalize;
}

@media (max-width: 991.98px) {
    .section-header h2 {
        font-size: 45px;
    }
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 40px;
    }
}

@media (max-width: 575.98px) {
    .section-header h2 {
        font-size: 35px;
    }
}


/********** Profesionales **********/

.about {
    position: relative;
    width: 100%;
    padding: 15px 0 15px 0;
    
}

.about .section-header {
    margin-bottom: 30px;
    margin-left: 0;
}

.about .about-img video {
    width: 100%;
    
    border-radius: 5px;
    margin-bottom: 30px;
}

.about .about-content {
    margin-bottom: 30px;
}

.about .about-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 25px;
}

.about .about-content ul li {
    margin-bottom: 5px;
}

.about .about-content ul li i {
    margin-right: 8px;
    color: #E81C2E;
}

@media (max-width: 767.98px) {
    .about {
        top: -6rem;
    }

    .service {
        top: -9rem;
        
    }

    .tituloproductos{
        font-size: 18px;
    }
    }

    @media (max-width: 575.98px) {
        .tituloservicios{
            font-size: 15px;
        }
    }



/********* Servicios CSS *********/
/*******************************/
.service {
    position: relative;
    width: 100%;
    padding: 45px 0 0 0;
}

.service .service-item {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 45px;
    text-align: center;
}

.tituloservicios{
    color: var(--quintocolor);
}

.service .service-item #servicios {
    color: var(--primercolor);
    font-size: 75px;
    line-height: 75px;
    margin-bottom: 20px;
    border-radius: 15px;
    -webkit-box-shadow: 10px 10px 5px -7px rgba(0,0,0,0.75);
    -moz-box-shadow: 10px 10px 5px -7px rgba(0,0,0,0.75);
    box-shadow: 10px 10px 5px -7px rgba(0,0,0,0.75);
    
}

.service .service-item h3 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    
}

.service .service-item p {
    margin: 0;
    color: var(--cuartocolor);
    font-weight: 600;
}
#servicios{
    transition: all .8s ease-in;
    width: 100%;
    height: 160px;
    
    

}

/*Productos-------------*/

.productos{
    display: flex;
    justify-content:center;
    align-items: center;
    background: var(--primercolor);    
    width: 100%;
    height: 70px;
    margin-bottom: 30px;
    filter: drop-shadow(rgba(238,80,7,1) 0px 0px 10px);
}

.tituloproductos{
    text-align: center;
    margin-bottom: 20px;
    color: var(--white-color);
    margin-top: 15px;
   }

.flex-container-cards {
    filter: drop-shadow(rgb(255, 100, 0) 0px 0px 1px);
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: center;
  }
  .flex-container-cards  p{
    margin: 10px 0px;
    letter-spacing: 1px;
    color: #f8f9fa;
  }
  
  .flex-container-cards .card {
    background: linear-gradient(240deg, rgb(10, 6, 61) 0%, rgba(36,36,36,1) 100%);
    width: 300px;
    -webkit-clip-path: polygon(0 0, 200px 0, 210px 10px, 280px 10px, 290px 0, 100% 0, 100% 150px, 290px 160px, 290px 300px, 100% 310px, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%, 0 400px, 10px 390px, 10px 100px, 0 90px);
            clip-path: polygon(0 0, 200px 0, 210px 10px, 280px 10px, 290px 0, 100% 0, 100% 150px, 290px 160px, 290px 300px, 100% 310px, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%, 0 400px, 10px 390px, 10px 100px, 0 90px);
    transition: all 0.2s linear;
    filter: drop-shadow(rgb(255, 0, 0) 0px 0px 10px);
  }
  .flex-container-cards .card:hover {
    transform: scale(1.1);
  }
  .flex-container-cards .card .card-img-shadow {
    filter: drop-shadow(rgb(157, 255, 0) 0px 0px 10px);
  }
  .flex-container-cards .card .card-img-shadow img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    margin-bottom: 30px;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 30px 100%, 0 calc(100% - 30px));
            clip-path: polygon(0 0, 100% 0, 100% 100%, 30px 100%, 0 calc(100% - 30px));
  }
  .flex-container-cards .card .card-content {
    margin: 0px 30px;
  }
  .flex-container-cards .card h2 {
    color: rgb(255, 230, 0);
    text-align: center;
  }
  .flex-container-cards .card .button-shadow {
    filter: drop-shadow(rgb(255, 64, 0) 0px 0px 5px);
    transition: all 0.2s ease-in;
  }
  .flex-container-cards .card .button-shadow:hover {
    filter: drop-shadow(rgb(255, 64, 0) 0px 0px 10px);
  }
  .flex-container-cards .card .button-shadow .card-button {
    text-align: center;
    margin: 20px 0px;
    padding: 10px 0px;
    background: linear-gradient(45deg, rgb(255, 30, 0) 0%, rgb(255, 230, 0) 100%);
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0%, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%);
    color: black;
    font-weight: 600;
    transition: all 0.2s ease-in;
  }
  .flex-container-cards .card .button-shadow .card-button:hover {
    color: white;
  }

  /*galeria*/
.galeria{
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 8%;
  }
  
  .galeria-1{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 2fr));
    grid-gap: 30px;
    border-radius: 10px;
    
    }
  
    .galeria-1 img{
      width: 100%;
      border-radius: 15px;
      box-shadow: #5f4925 0px 1px 25px;
      aspect-ratio: 3/2;
      object-fit: cover;
      
      }

/*fin galeria*/

/*footer--------*/

.footer {    
    position: relative;
    margin-top: 45px;
    padding-top: 45px;
    background: var(--primercolor);
    
}

.footer .footer-contact,
.footer .footer-link,
.footer .footer-newsletter {
    position: relative;
    margin-bottom: 45px;
    color: #ffffff;
    
}

.footer .footer-contact h2,
.footer .footer-link h2,
.footer .footer-newsletter h2 {
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--segundocolor);
}

.footer .footer-link a {
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
    transition: .3s;
    text-decoration: none;
    
}

.footer .footer-link a::before {
    position: relative;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
    align-items: center;
    
    
}

.footer .footer-link a:hover {
    color: var(--quintocolor);
    letter-spacing: 1px;
    
}

.footer .footer-contact p i {
    width: 25px;
    text-align: centers;
}

.footer .footer-social {
    position: relative;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    z-index: 999;
    
}

.footer .footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primercolor);
    background: #ffffff;
    border-radius: 40px;
    margin-right: 5px;
    transition: .5s;
    
}

.footer .footer-social a:last-child {
    margin: 0;
}

.footer .footer-social a:hover {
    color: #ffffff;
    background: var(--quintocolor);
}

.footer .footer-newsletter form {
    position: relative;
    width: 100%;
}

.footer .footer-newsletter input {
    margin-bottom: 15px;
    height: 45px;
    background: transparent;
    border: 1px solid #ffffff;
    border-radius: 5px;
    color:var(--white-color) ;
}
.footer .footer-newsletter textarea {
    margin-bottom: 15px;
    height: 70px;
    background: transparent;
    border: 1px solid #ffffff;
    border-radius: 5px;
    color:var(--white-color) ;
}
.footer .footer-newsletter label {
    margin-top: 5px;
    color: #790000;
    font-size: 14px;
    letter-spacing: 1px;
}

.footer .footer-newsletter .btn.btn-custom {
    width: 100%;
    color: #202C45;
    background: #ffffff;
    box-shadow: inset 0 0 0 0 #E81C2E;
}

.footer .footer-newsletter .btn:hover {
    color: #ffffff;
    background: #E81C2E;
    box-shadow: inset 200px 0 0 0 #E81C2E;
}

.footer .copyright {
    text-align: center;
    padding-top: 15px;
    padding-bottom: 5px;
}

.footer .copyright p {
    margin: 0;
    color: #ffffff;
}

.footer .copyright p a {
    color: #E81C2E;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer .copyright p a:hover {
    color: #ffffff;
    text-decoration: none;
}

#info{
    text-align: center;
}

#telefono{
    color: #f8f9fa;
    
}

/*
#parpadea {
  
    -webkit-animation-name:parpadeo;
    -webkit-animation-duration: 3s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
  
    animation-name: parpadeo;
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
  }
  
  @-moz-keyframes parpadeo{  
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
    100% { opacity: 1.0; }
  }
  
  @-webkit-keyframes parpadeo {  
    0% { opacity: 1.0; }
    50% { opacity: 0.0; }
     100% { opacity: 1.0; }
  }
  
  @keyframes parpadeo {  
    0% { opacity: 1.0; }
     50% { opacity: 0.0; }
    100% { opacity: 1.0; }
  }
  */
  
/*ïconos sociales*/
.social {
    position: fixed;
    top: 10rem;
    z-index: 999;
    
    a {
        color: var(--quintocolor);
        display: block;
        
      }
  
    ul {
      padding: 0px;
      transform: translate(-10px, 0);
  
      li {
        display: block;
        margin: 5px;
        background: rgba(3, 3, 3, 0.5);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        width: 60px;
        text-align: right;
        padding: 5px;
        border-radius: 0 30px 30px 0;
        transition: all 1s;
        
        &:hover {
            width: auto;
            box-shadow: inset 0 0 40px #fff;
            cursor: pointer;            
            background: rgba(3, 3, 3, 0.5);
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            transition: all 1s;
            .iconfont{
                font-size: 80%;
            }
          
  
          i {
            color: var(--segundocolor);
            font-size: 30px;
            animation: bounce 1s infinite;
            transition: all 1s;
            text-decoration: none;
            
            
            }
            a{
                text-align: right;
                font-size: 17px;
                line-height: 1.3em;
                margin-top: -10px;
                
            }
          }
        }
            
          }
        }
  
.social i{
          color: var(--white-color);
          padding: 7px;
          border-radius: 50%;
          width: 40px;
          height: 40px;
          font-size: 30px;
          text-align: center;
          transform: rotate(0deg);
                    
        }

#social_media{
    text-decoration: none;
    color: var(--bell-icon-color);
        
  }

  @media (max-width: 767.98px) {
    .social {
        top: 26rem;
        
    }
}

@media (max-width: 575.98px) {
    .social {
        top: 26rem;}
}

#resultados {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
text-align: center;
margin-top: 1%;
 
}
      
  
  


