/* visualizzazione a 2 colonne */
.\32 -cols {
    width: 100%;
    display: flex;
}
.col-sx {
    float: left;
    width: 50%;
}

/* immagine iniziale */
.responsive {
    width: 100%;
    min-height: 350px;
    max-height: 350px;
    object-fit: cover;
    margin: 30px 0px;
}

/* quick buttons (visualizzati solo in modalità mobile) */
.quick-btn-container {
    margin-bottom: 30px;
    display: none;
}
.quick-btn {
    display: block;
    color: black;
    text-decoration: none;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* chi siamo (articolo con immagine) */
.article-img {
    float: right;
    width: 250px;
    margin: 17px;
}
.article-content {
    margin-top: 40px;
    margin-bottom: 30px;
}

/* servizi */
.service-container {
    margin: 35px 0px;
}
.service-item {
    width: 100%;
    height: 85px;
    margin-bottom: 13px;
    position: relative;
    cursor: pointer;
    transition: 0.25s;
    box-shadow: 0 6px 6px 0 rgb(0 0 0 / 20%), 0 4px 15px 0 rgb(0 0 0 / 19%);
}
.service-item:hover {filter: brightness(1.5);}
.service-item-img {
    width: 100%;
    height: 85px;
    object-fit: cover;
    filter: brightness(0.5);
}
.service-title {
    position: absolute;
    top: 12px;
    left: 25px;
    color: white;
    font-size: 18px;
    font-weight: bold;
    transition: 0.5s;
}
.service-click-hint {
    left: 25px !important;
    display: none;
}
.service-desc-container {
    margin-top: -15px;
    border: 1px solid #04A749;
    padding: 0px 25px;
    font-size: 15px;
    box-shadow: 0 6px 6px 0 rgb(0 0 0 / 20%), 0 4px 15px 0 rgb(0 0 0 / 19%);
    display: none;
}
.service-desc-text {
    display: flex;
    margin-bottom: 20px;
}
.new-service-text {margin-top: 30px;}
.new-service-text .swiper {height: 250px;}
.new-service-text .text-col {width: 65%;}
.new-service-text .img-col {width: 35%;}
.text-col {width: 75%;}
.img-col {
    width: 42%;
    margin-left: 20px;
}
.img-col img {width: 100%;}

/* swiper */
.swiper {
    margin-bottom: 35px;
}

/* contattaci */
.contact-area {
    margin-top: 40px;
}
.contact-email-link {
    text-decoration: none;
    color: #04A749;
    transition: 0.25s;
}
.contact-email-link:hover {color: #12300a;}

/* adattamento dispositivo a larghezza < 1000px */
@media screen and (max-width: 1000px) {
    .col-sx {width: 100%; display: block;}
    .image-list img {min-height: inherit; max-height: inherit;}
    .\32 -cols {display: inherit;}
    .service-container {width: 100%;}
    .service-item {width: 100%;}
    .service-item img {max-height: 270px;}
    .service-title {font-size: 21px; top: -8px;}
    .contact-area {margin-top: 40px; display: flex !important; flex-direction: column; font-size: 19px;}
    iframe {margin-top: 40px; height: 275px;}
    .btn {font-size: 18px;}
    .service-desc-text {display: inherit;}
    .text-col {width: 100%;}
    .img-col {width: 100%; margin: 0;}
    .img-col img {height: 280px; object-fit: cover;}
}

/* adattamento dispositivo a larghezza < 750px */
@media screen and (max-width: 750px) {
    .image-container {padding-right: 0;}
    .article-img {float: inherit; width: 100%; margin: 0px;}
    .swiper {height: 220px !important;}
    .other-service-desc {font-size: 17px;}
    .contact-area {font-size: 16px;}
    .quick-btn-container {display: block;}
}

/* adattamento dispositivo a larghezza < 390px */
@media screen and (max-width: 390px) {
    .service-title {font-size: 17px; top: 0px;}
    .img-col img {height: inherit;}
}

/* immagine contenuta nelle descrizioni dei servizi prive di testo - aggiunta del 24/05/2022 */
.service-item-notext-img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    padding-bottom: 25px;
}