/* Estilos generales */
:root {
    --color-lightblue: #0091FF;
    --color-palidyellow: #E8BF3B;
    --color-darkblue: #0000BC;
    --color-orange: #F8B84E;
    --color-white: #fff;
    --color-red: #FF0000;
    --color-gray: #707070;
    --color-midgray: #A8A8A8;
    --color-lightgray: #F1F1F1;
    --color-black: #000;
}
* {
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}
body,
html {
    height: 100%;
    padding: 0;
    margin: 0;
}
body {
    flex-direction: column;
    background: var(--color-white);
    position: relative;
}
h1,h2,h3,h4,h5,h6 {
    font-family: "Times New Roman", Times, serif;
}
h2 a {
    color: inherit;
    font-family: "Times New Roman", Times, serif;
}
a {
    text-decoration: none;
}
p {
    margin: 0;
}
img {
    -webkit-user-drag: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    max-width: 100%;
}
ul {
    margin: 0;
    padding: unset;
}
hr {
    width: 45%;
}
.ul {
    list-style: none;
}
iframe {
    border: none;
    border-radius: 5px;
}
.article {
    padding: 25px 50px;
}
.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}
.container-fluid {
    width: 100%;
}
.max70 {
    max-width: 70%;
}
.block {
    display: block;
}
.flex {
    display: flex;
}
.relative {
    position: relative;
}
.absolute {
    position: absolute;
}
.hidde {
    display: none;
}
.show {
    display: block !important;
}
.fixed {
    position: fixed;
}
.align-center {
    margin: 0 auto;
}
.flex-center {
    align-items: center;
}
.flex-top {
    align-items: flex-start;
}
.flex-bottom {
    align-items: flex-end;
}
.justify-start {
    justify-content: flex-start;
}
.justify-center {
    justify-content: center;
}
.justify-end {
    justify-content: end;
}
.justify-between {
    justify-content: space-between;
}
.justify-around {
    justify-content: space-around;
}
.justify-evenly {
    justify-content: space-evenly;
}
.wrap {
    flex-wrap: wrap;
}
.wrap-reverse {
    flex-wrap: wrap-reverse;
}
.column-direction {
    flex-direction: column;
}
.col {
    flex: 1;
}
.col6 {
    flex: 6;
}
.col7 {
    flex: 7
}
.col3 {
    flex: 3
}
.col4 {
    flex: 4;
}
.fullwidth {
    width: 100%;
}
.fullheight {
    height: 100%;
}
.fullwin {
    width: 100%;
    height: 100%;
}
.border-box {
    box-sizing: border-box;
}
.col-md-5 {
    flex: 50%;
}
.col-md-6 {
    flex: 60%;
}
.col-md-4 {
    flex: 40%;
}
.small-gap {
    gap: 10px;
}
.normal-gap {
    gap: 20px;
}
.med-gap {
    gap: 30px;
}
.big-gap {
    gap: 50px;
}
.super-gap {
    gap: 100px;
}
.separator {
    height: 2px;
}
.spacing {
    height: 50px;
}
.no-mb {
    margin-bottom: 0;
}
.s-mb {
    margin-bottom: 20px;
}
.mm-mb {
    margin-bottom: 30px !important;
}
.m-mb {
    margin-bottom: 50px;
}
.l-mb {
    margin-bottom: 80px;
}
.pointer {
    cursor: pointer;
}
.section {
    padding: 55px 30px;
}
.bold {
    font-weight: 700;
}
input {
    height: 50px;
    border-radius: 5px;
    margin-bottom: 12px;
    padding: 0 15px;
    font-size: 18px;
    color: var(--color-midgray);
}
.form-group input, .form-checkbox input {
    width: 100%;
}
.hidden-mobile, .hidden-tablet {
    display: none;
}
/* Btns */

.btn {
    font-size: 18px;
    height: 54px;
    padding: 0 50px;
    text-align: center;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

/* Definir backgrounds */

.bg-lightblue {
    background-color: var(--color-lightblue);
}
  .bg-palidyellow {
    background-color: var(--color-palidyellow);
}
  .bg-darkblue {
    background-color: var(--color-darkblue);
}
  .bg-orange {
    background-color: var(--color-orange);
}
  .bg-white {
    background-color: var(--color-white);
}
  .bg-red {
    background-color: var(--color-red);
}
  .bg-gray {
    background-color: var(--color-gray);
}
  .bg-midgray {
    background-color: var(--color-midgray);
}
  .bg-lightgray {
    background-color: var(--color-lightgray);
}
  .bg-black {
    background-color: var(--color-black);
}

/* Definir colores de fuentes */

.font-white {
    color: var(--color-white);
}
.font-darkblue {
    color: var(--color-darkblue);
}
.font-lightblue {
    color: var(--color-lightblue);
}
.font-black {
    color: var(--color-black)
}

/* Definir tamaños de fuentes */

.size-medium {
    font-size: 18px;
}
.size-heading {
    font-size: 26px;
}
.size-large {
    font-size: 38px;
}
.size-big {
    font-size: 45px;
}
.size-xl {
    font-size: 55px;
}
.center-text {
    text-align: center;
}

/* Estilos del header */

.navigation li {
    padding: 0 10px;
    margin: 18px 0;
}

.header-contact-icons {
    padding-left: 20px;
    margin: 18px 0;
}

.main-navigation li {
    border-right: solid 1px var(--color-lightgray);
}

.navigation a {
    color: var(--color-white);
    text-transform: uppercase;
}

.dropdown {
    position: relative;
}
  
.dropdown:hover .dropdown-content {
    display: flex;
}

.dropdown-content {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border: 1px solid #ddd;
    z-index: 5;
    border-radius: 0 5px 5px 5px;
    width: 200px;
}

.dropdown-content li{
    padding: 0 8px;
    margin: 0;
}

.dropdown-content li a{
    display: flex;
    align-items: center;
    height: 60px;
    color: var(--color-black) !important;
    font-weight: 500;
}

.dropdown-content li:hover {
    background-color: var(--color-midgray);
}

.arrow-dropdown {
    margin-left: 2px;
}

.dropdown:hover a {
    color: var(--color-lightblue);
}

.dropdown:hover .arrow-dropdown {
    transform: rotate(180deg);
}

.rotate-180 {
    transform: rotate(180deg);
}

.offcanvasMenu {
    width: 380px;
    position: fixed;
    top: 0;
    left: -380px; 
    z-index: 99;
    height: 100%;
    overflow: auto;
}
body.showOffCanvas .offcanvasMenu{
    left: 0;
    transition: left 0.2s ease-out;
}

.offcanvasMenu .oc-submenu {
    display: none;
}

.offcanvasMenu::-webkit-scrollbar {
    width: 0.5em;
  }
  
  .offcanvasMenu::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  
  .offcanvasMenu::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 20px;
  }
  
  .offcanvasMenu::-webkit-scrollbar-thumb:hover {
    background-color: #555;
  }

.close-btn {
    border: none;
    background: none;
    font-size: 20px;
}

.offcanvas-body li {
    min-height: 60px;
    line-height: 60px;
}

.offcanvas-body li:hover {
    background-color: var(--color-midgray);
}

.offcanvas-body li a {
    padding: 0 20px;
    color: var(--color-white);
    display: flex;
}

.offcanvas-body li .oc-submenu a {
    color: var(--color-black);
}

.offcanvas-header {
    padding: 20px;
}

.mobile-header {
    padding: 15px 25px;
}
.breadcrumb {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    font-weight: 300;
    font-size: 18px;
    margin-bottom: 40px;
}
.breadcrumb-item + .breadcrumb-item::before {
    content: " > ";
  }


/* Footer */

.footer-main {
    padding: 30px 0;
    border-bottom: solid 1px #ffffff38;
}

.copyright p {
    margin: 0;
    text-align: center;
}

.copyright {
    padding: 20px 0;
}

.footer-rrss {
    margin: 25px 0;
}

.rrss-li {
    padding-bottom: 10px;
}

.footer iframe {
    max-width: 100%;
    min-width: 200px;
}

/* Services mosaic */

.service-col img {
    max-width: 550px;
    border-radius: 5px;
}

/* body */
.hero-btn {
    height: 54px;
    max-width: 390px;
}

.hero-text {
    max-width: 50%;
}

.hero-image{
    top: 0;
    right: 0;
    height: 100%;
    z-index: -1;
}

.body-heading {
    font-size: 48px;
    text-align: center;
    margin: 0 0 30px;
    text-transform: uppercase;
    position: relative;
}
.heading {
    font-size: 48px;
    margin: 0 0 30px;
    text-transform: uppercase;
    position: relative;
}
.sub-heading {
    max-width: 85%;
    margin: 0 auto 60px;
}
.cta-image-carousel {
    overflow: hidden;
}
.cta-heading {
    margin: 15px 0;
    text-transform: uppercase;
    text-align: center;
}

.categories-col {
    min-width: 260px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.categories-four-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 20px;
}

.category {
    display: flex;
    justify-content: center;
    align-items: center;
    border: solid 1px var(--color-lightgray);
    border-radius: 10px;
    padding: 15px;
}

.category img {
    max-height: 360px;
}

.category-overol-quirurgico .overol-img{
    max-height: 600px;
    min-width: 200px;
}

.cotizar-div p {
    margin: 10px 0 5px;
}

.category-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    color: #000;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
  }

.service-grid img {
    max-height: 316px;
}

.service-grid a {
    color: inherit;
}

.services-desc {
    margin-top: 20px;
}

.img-map {
    min-width: 250px;
}

/* categories */

.category-advice {
    height: 50px;
    line-height: 50px;
}

.owl-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 20px;
    font-size: 60px;
}

/* Contacto hero */

.contact-hero {
    background-image: url(../img/contact-hero.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

/* general */
  
  .rotated {
    transition: transform 0.5s ease-in-out;
    transform: rotate(360deg);
  }


  /* Medias */

  @media screen and (max-width: 951px) {
    .categories-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .categories-four-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-text {
        max-width: 100%;
    }
  }

  @media screen and (min-width: 951px) {
    .hidden-tablet {
        display: block;
    }
  }

  @media screen and (min-width: 768px) {
    .hidden-pc {
        display: none;
    }
    .hidden-mobile {
        display: block;
    }
  }

  @media screen and (max-width: 768px) {
    .article {
        padding: 15px 25px;
    }
    .categories-grid {
        grid-template-columns: repeat(1, 1fr);
      }
      .categories-four-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .service-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .footer h4 {
        margin-top: 0;
    }

    .size-xl {
        font-size: 35px;
    }
    .size-big {
        font-size: 28px;
    }
    .body-heading {
        font-size: 32px;
    }
    .heading {
        font-size: 32px;
    }
  }