body {
    -ms-overflow-style: none;
    /* for Internet Explorer, Edge */
    scrollbar-width: none;
    /* for Firefox */
    overflow-y: scroll;
}

body::-webkit-scrollbar {
    display: none;
    /* for Chrome, Safari, and Opera */
}

.section-about {
    background-image: url("../img/logo.png");
    background-repeat: no-repeat;
    /* background-size: contain; */
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

.text-justify {
    text-align: justify;
    text-justify: inter-word;
}

/* flip */

.flip-card {
    background-color: transparent;
    width: 350px;
    height: 350px;
    border: 1px solid #f1f1f1;
    perspective: 1000px;
    /* Remove this if you don't want the 3D effect */
}

/* This container is needed to position the front and back side */
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    /* Safari */
    backface-visibility: hidden;
}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
    background-color: #bbb;
    color: black;
}

/* Style the back side */
.flip-card-back {
    background-color: #378eb5e6;
    color: white;
    transform: rotateY(180deg);
}

/* flip */

div.col-lg-4.col-md-6.portfolio-item>div.portfolio-wrap>img {
    width: 420px !important;
    height: 420px !important;
}

.clienti-testo {
    font-weight: 600;
    font-size: 18px;
    color: rgba(55, 142, 181, 0.9);
}

.immagine-cover {
    background-position-x: center;
    background-position-y: center;
    background-repeat: no-repeat;
    background-size: cover;
}