@font-face {
    font-family: Inter;
    src: url('/font/Inter-Regular.ttf') format('truetype'),
}

@font-face {
    font-family: Inter-medium;
    src: url('/font/Inter-Medium.ttf') format('truetype'),
}

@font-face {
    font-family: Inter-semibold;
    src: url('/font/Inter-SemiBold.ttf') format('truetype'),
}

@font-face {
    font-family: "Baliw";
    src: url('/font/Baliw.ttf') format('truetype'),
}

@font-face {
    font-family: 'ethnocentricrg';
    src: url('font/ethnocentricrg.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Inter', sans-serif;
}

.baliw{
    font-family: "Baliw" ,
        sans-serif;
}

.font_logo {
    font-family: 'ethnocentricrg', Arial, sans-serif;
}

/* ecommerce section */
.overlay {
    background: url('img/bg-ecommerce.jpg') center/cover no-repeat;
    position: relative;
    z-index: 1;
}

.overlay::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      /* Cambia l'opacità per regolare l'esposizione */
      z-index: -1;
}


/* img servizi */
.image-background {
    background-image: url('img/vendita.jpg');
    background-size: cover;
    background-position: center;
}


/* hide scrollbar */
.hide-scrollbar {
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox, Safari 18.2+, Chromium 121+ */
}
.hide-scrollbar::-webkit-scrollbar {
    display: none;  /* Older Safari and Chromium */
}

/* summary */
details>p {
    display: none;
    margin: 0;
}

details[open]>p {
    display: block;
}
