/********** Template CSS **********/
@import
url(https://fonts.googleapis.com/css?family=Montserrat:200);
@import url(https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css);

@font-face {
  font-family: 'cambria';
  src: url('../fonts/cambria.ttc') format('opentype');
}

@font-face {
  font-family: 'NewsGothicStd-Bold';
  src: url('../fonts/NewsGothicStd-Bold.otf') format('opentype');
}

@font-face {
  font-family: 'NewsGothicStd-Oblique';
  src: url('../fonts/NewsGothicStd-Oblique.otf') format('opentype');
}

@font-face {
  font-family: 'NewsGothicStd';
  src: url('../fonts/NewsGothicStd.otf') format('opentype');
}

@font-face {
  font-family: 'AtomicMD';
  src: url('../fonts/aAtomicMd.woff2') format('woff2'),
       url('../fonts/aAtomicMd.woff') format('woff'),
       url('../fonts/aAtomicMd.otf') format('opentype');
  font-weight: normal;
}

@font-face {
  font-family: 'ArialUnicodeMSBold';
  src: url('../fonts/arialunicodemsbold.otf') format('opentype');
}





:root {
    --primary: #0D0D0D;
    --secondary: #F27B13;
    --light: #F8F9FA;
    --dark: #182333;
    --light_blue: #91BBF2;
    --dark_blue:#011526;
    --footer: #0D0D0D; 
}

/* Fuentes de letra */
.cambria{
  font-family: Cambria;
}
.nws{
  font-family: NewsGothicStd;
}
.nws-bold{
  font-family: NewsGothicStd-Bold;
}
.nws-oblique{
  font-family: NewsGothicStd-Oblique;
}

.border-primary {
  border-color: #BF0413 !important;
}


* {
  font-family: 'ArialUnicodeMSBold', NewsGothicStd-Bold, Montserrat, Arial, sans-serif;
  font-weight: bold;
}


body{
  overflow-x: hidden;
  overflow-anchor: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'ArialUnicodeMSBold', NewsGothicStd-Bold, Montserrat, Arial, sans-serif;
  font-weight: bold;
  color: #0D0D0D;
}


p{
  font-family: 'ArialUnicodeMSBold', NewsGothicStd-Bold, Montserrat, Arial, sans-serif;
  font-weight: bold;
  font-size: 18px;
}

span, small{
  font-family: 'ArialUnicodeMSBold', NewsGothicStd-Bold, Montserrat, Arial, sans-serif;
  font-weight: bold;
}

a{
  font-family: 'ArialUnicodeMSBold', NewsGothicStd-Bold, Montserrat, Arial, sans-serif;
  font-weight: bold;
}




.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
    border-radius: 50%;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
    border-radius: 50px;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-left: 30px;
    padding: 25px 0;
    color: var(--primary);
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #BF0413;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: 'ArialUnicodeMSBold', NewsGothicStd-Bold, Montserrat, Arial, sans-serif;
  font-weight: bold;
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-left: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 25px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        right: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    text-align: start;
    background: rgba(0, 0, 0, .40);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 4rem;
    height: 4rem;
    background-color: var(--dark);
    border: 15px solid var(--dark);
    border-radius: 50px;
}

.carousel-caption .breadcrumb-item+.breadcrumb-item::before {
    content: "\f111";
    font-family: 'ArialUnicodeMSBold', NewsGothicStd-Bold, Montserrat, Arial, sans-serif;
  font-weight: bold;
    font-weight: 900;
    color: var(--primary);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 3rem;
        height: 3rem;
        border-width: 12px;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}




.ime{
  width: 20px;
  height: 10px;
  

    
}


/***cards de los 5**/

.containers {
  padding: 10px;
  }
  .cardis-holder {
  box-sizing: content-box;
  margin-bottom: 10px;
  }
  body.hidden {
  overflow: hidden;
  }
  .cardis {
  box-shadow: 0 0 20px 0 rgba(#666,0.5);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background: #fff;
  transition: all 400ms ease;
  .close {
  border: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #555;
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 10px;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  &:after, &:before {
  content: "";
  display: block;
  width: 16px;
  height: 1px;
  background: #fff;
  position: absolute;
  left: 5px;
  top: 12px;
  }
  &:after {
  transform: rotate(45deg);
  }
  &:before {
  transform: rotate(-45deg);
  }
  }
  &.is-open {
  border-radius: 0px !important;
  left: 0px !important;
  top: 0px !important;
  width: 100% !important;
  height: 100% !important;
  .cardis-article {
  max-height: 100%;
  overflow: auto;
  }
  .close {
  opacity: 1;
  visibility: visible;
  }
  }
  }
  .cardis-head {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 300px;
  color: #fff;
  background-position: center;
  background-size: cover;
  }
  .cardis-article {
  max-height: 0;
  overflow: hidden;
  article {
  padding: 20px;
  }
  }

/*** Facts ***/
.facts-overlay {
    position: absolute;
    padding: 10px 0 30px 20px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: rgba(0, 0, 0, .40);
}

.facts-overlay h1 {
    font-size: 60px;
    color: transparent;
    -webkit-text-stroke: 2px var(--primary);
}

.facts-overlay a:hover {
    color: var(--primary) !important;
}

.facts-overlay-white h1 {
    font-size: 110px;
    color: transparent;
    -webkit-text-stroke: 2px white;
}

.facts-overlay-white {
    position: absolute;
    padding: 30px;
    width: 100%;
    height: 100%;
    
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(0, 0, 0, .40);
}


/*** Service ***/
.service-text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: var(--primary);
    opacity: 0;
    transition: .5s;
}

.service-item:hover .service-text::before {
    height: 100%;
    opacity: 1;
}

.service-text * {
    position: relative;
    transition: .5s;
    z-index: 1;
}

.service-item:hover .service-text * {
    color: #FFFFFF !important;
}

.container-xxl .fa-check {
  color: black !important;
}








/*** Appointment ***/
.appointment {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url(../imagenes/img3.jpg) center center no-repeat;
    background-size: cover;
}

.appointment-2{
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .40)), url(../img/foodMart/Contactanos-min.webp) center center no-repeat;
    background-size: cover;
}

.appointment-3{
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url(../imagenes/newI/services/s1.jpg) center center no-repeat;
    background-size: cover;
}

.appointment-4{
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url(../img/foodMart/Valores-min.webp) center center no-repeat;
    background-size: cover;
}

/*** Contact ***/
.contact {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url(../imagenes/img4.jpg) center center no-repeat;
    background-size: cover;
}

/*** Team ***/
.team-text {
    position: absolute;
    width: 75%;
    bottom: 30px;
    left: 0;
    transition: .5s;
}

.team-item:hover .team-text {
    width: 100%;
}

.team-text * {
    transition: .5s;
}

.team-item:hover .team-text * {
    letter-spacing: 2px;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: start;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Footer ***/
.footer {
    color: #FFFFFF;
    background-color: var(--footer);
}

.align-flex {
    display: flex;
    align-items: center;
    justify-content: center;
  }

#navbarCollapse{
    padding: 2%;
    left:60%;
    padding-left: 20%;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: 'ArialUnicodeMSBold', NewsGothicStd-Bold, Montserrat, Arial, sans-serif;
  font-weight: bold;
    font-weight: 900;
    color: #FFFFFF;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.display-1{font-size:5rem}



.pulse:hover, 
.pulse:focus {
  animation: pulse 1s;
  box-shadow: 0 0 0 2em transparent;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 var(--hover); }
}


.snip1577 {
  font-family: 'ArialUnicodeMSBold', NewsGothicStd-Bold, Montserrat, Arial, sans-serif;
  font-weight: bold;
    position: relative;
    display: inline-block;
    overflow: hidden;
    margin: 10px;
    min-width: 230px;
    max-width: 315px;
    width: 100%;
    color: #fff;
    text-align: left;
    font-size: 16px;
    background: #000;
  }
  
  .snip1577 *,
  .snip1577:before,
  .snip1577:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  
  .snip1577 img {
    max-width: 100%;
    backface-visibility: hidden;
    vertical-align: top;
  }
  
  .snip1577:before,
  .snip1577:after {
    position: absolute;
    top: 20px;
    right: 20px;
    content: '';
    background-color: #fff;
    z-index: 1;
    opacity: 0;
  }
  
  .snip1577:before {
    width: 0;
    height: 1px;
  }
  
  .snip1577:after {
    height: 0;
    width: 1px;
  }
  
  .snip1577 figcaption {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 15px 20px;
  }
  
  .snip1577 h3,
  .snip1577 h4 {
    margin: 0;
    font-size: 1.1em;
    font-weight: normal;
    opacity: 0;
  }
  
  .snip1577 h4 {
    font-size: .8em;
    text-transform: uppercase;
  }
  
  .snip1577 a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
  }
  
  .snip1577:hover img,
  .snip1577.hover img {
    zoom: 1;
    filter: alpha(opacity=20);
    -webkit-opacity: 0.2;
    opacity: 0.2;
  }
  
  .snip1577:hover:before,
  .snip1577.hover:before,
  .snip1577:hover:after,
  .snip1577.hover:after {
    opacity: 1;
    -webkit-transition-delay: 0.25s;
    transition-delay: 0.25s;
  }
  
  .snip1577:hover:before,
  .snip1577.hover:before {
    width: 40px;
  }
  
  .snip1577:hover:after,
  .snip1577.hover:after {
    height: 40px;
  }
  
  .snip1577:hover p,
  .snip1577.hover h3,
  .snip1577:hover h6,
  .snip1577.hover h4 {
    opacity: .5;
  }
  
  .snip1577:hover h3,
  .snip1577.hover h3 {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
  }
  
  .snip1577:hover h4,
  .snip1577.hover h4 {
    -webkit-transition-delay: 0.35s;
    transition-delay: 0.35s;
  }
  


  .snip1581 * {
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .snip1581 img {
    max-width: 100%;
    vertical-align: top;
  }
  .snip1581 figcaption {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .snip1581 h3 {
    font-size: 44px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 3px 0;
  }
  .snip1581 .title1 {
    font-weight: 700;
  }
  .snip1581 .title2 {
    color: #a58e7c;
    font-weight: 300;
  }
  .snip1581 .title3 {
    font-weight: 700;
    font-size: 25px;
  }
  .snip1581 a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .snip1581:hover img,
  .snip1581.hover img {
    -webkit-transform: scale(1.3) rotate(5deg);
    transform: scale(1.3) rotate(5deg);
  }

  

 
figure.snip1300 {
  position: relative;
  overflow: hidden;
 
  width: 100%;
  background: #000000;
  text-align: center;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}
  figure.snip1300 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  figure.snip1300 img {
    max-width: 100%;
    vertical-align: top;
  }
  figure.snip1300 i {
    position: absolute;
    top: 100%;
    left: 50%;
    border-radius: 50%;
    font-size: 34px;
    color: #000000;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: #ffffff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    transition: all 300ms 0ms cubic-bezier(0.6, -0.28, 0.735, 0.045);
  }
  figure.snip1300 a {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
  }
  figure.snip1300.blue {
    background-color: #2472a4;
  }
  figure.snip1300.blue i {
    color: #20638f;
  }
  figure.snip1300.red {
    background-color: #ab3326;
  }
  figure.snip1300.red i {
    color: #962d22;
  }
  figure.snip1300.yellow {
    background-color: #e08e0b;
  }
  figure.snip1300.yellow i {
    color: #c87f0a;
  }
  figure.snip1300.green {
    background-color: #229955;
  }
  figure.snip1300.green i {
    color: #1e8449;
  }
  figure.snip1300.orange {
    background-color: #d67118;
  }
  figure.snip1300.orange i {
    color: #bf6516;
  }
  figure.snip1300.navy {
    background-color: #2b3c4e;
  }
  figure.snip1300.navy i {
    color: #222f3d;
  }
  figure.snip1300:hover img,
  figure.snip1300.hover img {
    opacity: 0.3;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
  }
  figure.snip1300:hover i,
  figure.snip1300.hover i {
    top: 50%;
    transition: all 500ms 100ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 1;
  }
  
  .snip1520 {
    position: relative;
    overflow: hidden;
    width: 100%;
    background: #023059;
    background: -moz-linear-gradient(90deg, #023059 0%, #db9203 100%, #db9203 100%);
    background: -webkit-linear-gradient(90deg, #023059 0%, #db9203 100%, #db9203 100%);
    background: linear-gradient(90deg, #023059 0%, #db9203 100%, #db9203 100%);
  }
  
  .snip1520 img,
  .snip1520:before,
  .snip1520:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  
  .snip1520 img {
    max-width: 100%;
    backface-visibility: hidden;
    vertical-align: top;
  }
  
  .snip1520:before,
  .snip1520:after {
    content: '';
    background-color: #fff;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  
  .snip1520:before {
    width: 60px;
    height: 1px;
    left: 0;
  }
  
  .snip1520:after {
    height: 60px;
    width: 1px;
    top: 100%;
  }
  
  .snip1520 a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
  }
  
  .snip1520:hover img,
  .snip1520.hover img {
    zoom: 1;
    filter: alpha(opacity=50);
    -webkit-opacity: 0.5;
    opacity: 0.5;
  }
  
  .snip1520:hover:before,
  .snip1520.hover:before,
  .snip1520:hover:after,
  .snip1520.hover:after {
    opacity: 1;
    top: 50%;
    left: 50%;
  }
  

  /* para la de qvt */


  #letraN{
    color: #0D0D0D;
  }

  #letraNN{
    color: #F27B13;
  }


  