@font-face {
  font-family: titillium;
  font-style: normal;
  font-weight: 900;
  src: url('../fonts/Titillium/TitilliumWeb-Black.ttf') format('truetype');
}

@font-face {
  font-family: titillium;
  font-style: italic;
  font-weight: 700;
  src: url('../fonts/Titillium/TitilliumWeb-BoldItalic.ttf') format('truetype');
}

@font-face {
  font-family: titillium;
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/Titillium/TitilliumWeb-Bold.ttf') format('truetype');
}

@font-face {
  font-family: titillium;
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/Titillium/TitilliumWeb-SemiBold.ttf') format('truetype');
}

@font-face {
  font-family: titillium;
  font-style: italic;
  font-weight: 600;
  src: url('../fonts/Titillium/TitilliumWeb-SemiBoldItalic.ttf') format('truetype');
}

@font-face {
  font-family: titillium;
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/Titillium/TitilliumWeb-Regular.ttf') format('truetype');
}

@font-face {
  font-family: titillium;
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/Titillium/TitilliumWeb-Italic.ttf') format('truetype');
}

@font-face {
  font-family: titillium;
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/Titillium/TitilliumWeb-Light.ttf') format('truetype');
}

@font-face {
  font-family: titillium;
  font-style: italic;
  font-weight: 300;
  src: url('../fonts/Titillium/TitilliumWeb-LightItalic.ttf') format('truetype');
}

@font-face {
  font-family: titillium;
  font-style: normal;
  font-weight: 200;
  src: url('../fonts/Titillium/TitilliumWeb-ExtraLight.ttf') format('truetype');
}

@font-face {
  font-family: titillium;
  font-style: italic;
  font-weight: 200;
  src: url('../fonts/Titillium/TitilliumWeb-ExtraLightItalic.ttf') format('truetype');
}

@font-face {
  font-family: lato;
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/Lato/Lato-Black.ttf') format('truetype');
}

@font-face {
  font-family: lato;
  font-style: italic;
  font-weight: 700;
  src: url('../fonts/Lato/Lato-BlackItalic.ttf') format('truetype');
}

@font-face {
  font-family: lato;
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/Lato/Lato-Bold.ttf') format('truetype');
}

@font-face {
  font-family: lato;
  font-style: italic;
  font-weight: 700;
  src: url('../fonts/Lato/Lato-BoldItalic.ttf') format('truetype');
}

@font-face {
  font-family: lato;
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/Lato/Lato-Regular.ttf') format('truetype');
}

@font-face {
  font-family: lato;
  font-style: italic;
  font-weight: 500;
  src: url('../fonts/Lato/Lato-Italic.ttf') format('truetype');
}

@font-face {
  font-family: lato;
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/Lato/Lato-Light.ttf') format('truetype');
}

@font-face {
  font-family: lato;
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/Lato/Lato-LightItalic.ttf') format('truetype');
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

:root {
    --colore-principale: #ac100b;
}

.fonts{
    font-family: lato;
    font-family: titillium;
}

body {
    font-family: titillium;
    color: #1f1e21;
}

a {
    color: var(--colore-principale);
}

a:hover {
    color: var(--colore-principale);
    text-decoration: none;
}


h1, h2, h3, h4, h5, h6 {
    font-family: titillium;
}

video{
    width: 100%;
    height: auto;
    border-radius: 0.25rem;
}

iframe{
    width: 100%;
    height: auto;
    border-radius: 0.25rem;
}

iframe:hover{
    opacity: 0.85;
}

strong{
    font-weight: bold;
}

p{
    overflow-wrap: break-word;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    display: none;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
}

.back-to-top i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background: var(--colore-principale);
    color: #fff;
    transition: all 0.4s;
}

.back-to-top i:hover {
    opacity: 0.8;
    color: #fff;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid var(--colore-principale);
    border-top-color: #fff;
    border-bottom-color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    background: #fff;
    z-index: 997;
    padding: 15px 0;
    border-bottom: 1px solid #e6f2fb;
    font-family: lato;
}

@media (max-width: 991px) {
    #header {
        padding: 15px 0;
    }
}

#header.header-scrolled {
    border-color: #fff;
    box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
    padding: 0px;
}

#header .logo {
    font-size: 30px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: lato;
}

#header .titolo {
    font-size: 30px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: lato;
}

#header .titolo a{
    color: #1f1e21;
}

@media (max-width: 1200px) {
    #header .titolo {
        font-size: 26px;
    }
}

#header .logo a {
    color: #1f1e21;
}

#header .logo img {
    height: 80px;
    margin-right: 1rem;    
    padding: 10px;
    object-fit: contain;
}

#header.header-scrolled .logo img {
    margin-right: 0;
}

@media (max-width: 992px) {
    #header .titolo {
        font-size: 20px;
        letter-spacing: 0;
        margin-right: 40px;
    }
    #header .logo img {
        height: 50px;
        padding: 5px;
    }
}

@media (max-width: 380px) {
    #header .logo {
        font-size: 17px;
        letter-spacing: 0;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu > ul {
    display: flex;
}

.nav-menu > ul > li {
    position: relative;
    white-space: nowrap;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 25px;
}


@media (max-width: 1400px) {
    .nav-menu > ul > li {
        padding: 20px 20px;
    }
}


.nav-menu a {
    display: block;
    position: relative;
    color: #1f1e21;
    transition: 0.3s;
    font-size: 18px;
    font-family: titillium;
    font-weight: 700;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
    color: #1f1e21;
}

.nav-menu .drop-down ul {
    display: block;
    position: absolute;
    left: 15px;
    top: calc(100% + 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0px 0px 20px rgba(18, 66, 101, 0.1);
    transition: 0.3s;
    border-radius: 5px;
}

.nav-menu .drop-down:hover > ul, .nav-menu .drop-down:focus-within > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
}

.nav-menu .drop-down ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: none;
    color: var(--colore-principale);
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
    text-decoration: underline;
}

/*.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}*/

.nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
}

.nav-menu .drop-down .drop-down > a {
    padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
    content: "\eaa0";
    font-family: IcoFont;
    position: absolute;
    right: 15px;
}

@media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
        left: -90%;
    }
    .nav-menu .drop-down .drop-down:hover > ul {
        left: -100%;
    }
    .nav-menu .drop-down .drop-down > a:after {
        content: "\ea9d";
    }
}

/* Get Startet Button */
.get-started-btn {
    margin-left: 25px;
    background: var(--colore-principale);
    color: #fff;
    border-radius: 5px;
    padding: 10px 30px 11px 30px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}

.get-started-btn:hover {
    background: #2079b8;
    color: #fff;
}

@media (max-width: 768px) {
    .get-started-btn {
        margin: 0 48px 0 0;
        padding: 5px 18px 6px 18px;
        border-radius: 3px;
    }
}

/* Mobile Navigation */
.mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 25px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

.mobile-nav-toggle i {
    color: #1F1E21;
}

.mobile-nav {
    position: fixed;
    top: 80px;
    right: 0px;
    bottom: 70px;
    left: 0px;
    z-index: 9999;
    overflow-y: auto;
    background: #fff;
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0 0 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav a {
    display: block;
    position: relative;
    color: #1F1E21;
    padding: 20px 20px;
    font-weight: 600;
    outline: none;
    font-size: 18px;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
    color: var(--colore-principale);
    text-decoration: none;
}

.mobile-nav .drop-down > a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 10px;
    /*position: absolute;*/
    right: 15px;
    color: #124265;
}

.mobile-nav .active.drop-down > a:after {
    content: "\eaa1";
}

.mobile-nav .drop-down > a {
    padding-right: 35px;
}

.mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
}

.mobile-nav .drop-down li {
    padding-left: 20px;
}

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgb(255 255 255 / 0%);
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
    color: #1F1E21;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
    width: 100%;
    height: 525px;
    position: relative;
    background-repeat: no-repeat;
    margin-top: 10rem;
}

@media (max-width: 1400px) {
    #hero {
        margin-top: 9rem;
    }
}

@media (max-width: 1200px) {
    #hero {
        margin-top: 9rem;
    }
}

@media (max-width: 991px) {
    #hero {
        width: 100%;
        height: 100%;
        position: relative;
        background-repeat: no-repeat;
        margin-top: 5rem;
        padding: 0;
    }
}

#hero:before {
    content: "";
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero h1 {
    margin: 0;
    font-size: 56px;
    font-weight: 700;
    line-height: 72px;
    color: #124265;
    font-family: "Poppins", sans-serif;
}

#hero h2 {    
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 0;
    font-family: lato;
    color: white;
    text-shadow: 0px 0px 10px #000;
}

#hero .btn-get-started {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    display: inline-block;
    padding: 14px 50px;
    border-radius: 5px;
    transition: 0.5s;
    margin-top: 30px;
    color: #fff;
    background: var(--colore-principale);
}

#hero .btn-get-started:hover {
    background: #3194db;
}

#hero .icon-boxes {
    margin-top: 100px;
}

#hero .icon-box {
    padding: 50px 30px;
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 29px 0 rgba(18, 66, 101, 0.08);
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
}

#hero .icon-box .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

#hero .icon-box .title a {
    color: #124265;
    transition: 0.3s;
}

#hero .icon-box .description {
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 0;
}

#hero .icon-box .icon {
    margin-bottom: 20px;
    padding-top: 10px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    font-size: 36px;
    line-height: 1;
    color: var(--colore-principale);
}

#hero .icon-box:hover {
    transform: scale(1.08);
}

#hero .icon-box:hover .title a {
    color: var(--colore-principale);
}

@media (max-width: 992px), (max-height: 500) {
    #hero {
        height: auto;
    }
    #hero h1 {
        font-size: 28px;
        line-height: 36px;
    }
    #hero h2 {
        font-size: 24px;
    }
}

@media (max-width: 768px){
    #hero h2 {
        font-size: 20px;
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 30px 0;
}

.section-bg {
    background-color: #f8fbfe;
}


.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 0;
    color: #124265;
}

.section-title p {
    margin-bottom: 0;
    font-size: 14px;
    color: #919191;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
    font-weight: 600;
    font-size: 26px;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding-left: 28px;
    position: relative;
}

.about .content ul li + li {
    margin-top: 10px;
}

.about .content ul i {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 20px;
    color: var(--colore-principale);
    line-height: 1;
}

.about .content p:last-child {
    margin-bottom: 0;
}

.about .content .btn-learn-more {
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 5px;
    transition: 0.3s;
    line-height: 1;
    color: var(--colore-principale);
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    margin-top: 6px;
    border: 2px solid var(--colore-principale);
}

.about .content .btn-learn-more:hover {
    background: var(--colore-principale);
    color: #fff;
    text-decoration: none;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
    padding: 60px 0;
}

.counts .count-box {
    width: 100%;
    text-align: center;
}

.counts .count-box span {
    font-size: 48px;
    line-height: 48px;
    display: block;
    font-weight: 700;
    color: #124265;
    margin-left: 80px;
    margin: auto;
}

.counts .count-box p {
    padding: 8px 0 0 0;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #1e6ca6;
}

/*--------------------------------------------------------------
# About Video
--------------------------------------------------------------*/
.about-video .content {
    font-size: 15px;
}

.about-video .content h3 {
    font-weight: 700;
    font-size: 24px;
    color: #124265;
}

.about-video .content ul {
    list-style: none;
    padding: 0;
}

.about-video .content ul li {
    padding-bottom: 10px;
    padding-left: 28px;
    position: relative;
}

.about-video .content ul i {
    font-size: 24px;
    color: var(--colore-principale);
    position: absolute;
    left: 0;
    top: -2px;
}

.about-video .content p:last-child {
    margin-bottom: 0;
}

.about-video .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(var(--colore-principale) 50%, rgba(36, 135, 206, 0.4) 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
}

.about-video .play-btn::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about-video .play-btn::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate-btn 2s;
    animation: pulsate-btn 2s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(36, 135, 206, 0.7);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.about-video .play-btn:hover::after {
    border-left: 15px solid var(--colore-principale);
    transform: scale(20);
}

.about-video .play-btn:hover::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    -webkit-animation: none;
    animation: none;
    border-radius: 0;
}

@-webkit-keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }
    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }
    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
    padding: 15px 0;
    text-align: center;
}

.clients img {
    max-width: 45%;
    transition: all 0.4s ease-in-out;
    display: inline-block;
    padding: 15px 0;
    -webkit-filter: grayscale(100);
    filter: grayscale(100);
}

.clients img:hover {
    -webkit-filter: none;
    filter: none;
    transform: scale(1.15);
}

@media (max-width: 768px) {
    .clients img {
        max-width: 40%;
    }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel, .testimonials .testimonials-slider {
    overflow: hidden;
}
.testimonials .testimonials-carousel, .testimonials .testimonials-slider {
    overflow: hidden;
}
.testimonials .testimonial-item {
    box-sizing: content-box;
    text-align: center;
    min-height: 320px;
}
.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50%;
    margin: 0 auto;
}
.testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: #111;
}
.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #999;
    margin: 0;
}
.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
    color: #d5e9f2;
    font-size: 26px;
}
.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}
.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
}
.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 15px 15px 15px;
    padding: 20px;
    background: #fff;
    position: relative;
    margin-bottom: 35px;
    border-radius: 6px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
.testimonials .testimonial-item p::after {
    content: "";
    width: 0;
    height: 0;
    border-top: 20px solid #fff;
    border-right: 20px solid transparent;
    border-left: 20px solid transparent;
    position: absolute;
    bottom: -20px;
    left: calc(50% - 20px);
}
.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #67b0d1;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #67b0d1;
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
    text-align: center;
    padding: 70px 20px 80px 20px;
    transition: all ease-in-out 0.3s;
    background: #fff;
    box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.05);
}

.services .icon-box .icon {
    margin: 0 auto;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: ease-in-out 0.3s;
    position: relative;
}

.services .icon-box .icon i {
    font-size: 36px;
    transition: 0.5s;
    position: relative;
}

.services .icon-box .icon svg {
    position: absolute;
    top: 0;
    left: 0;
}

.services .icon-box .icon svg path {
    transition: 0.5s;
    fill: #f5f5f5;
}

.services .icon-box h4 {
    font-weight: 600;
    margin: 10px 0 15px 0;
    font-size: 22px;
}

.services .icon-box h4 a {
    color: #124265;
    transition: ease-in-out 0.3s;
}

.services .icon-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.services .icon-box:hover {
    border-color: #fff;
    box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}

.services .iconbox-blue i {
    color: #47aeff;
}

.services .iconbox-blue:hover .icon i {
    color: #fff;
}

.services .iconbox-blue:hover .icon path {
    fill: #47aeff;
}

.services .iconbox-orange i {
    color: #ffa76e;
}

.services .iconbox-orange:hover .icon i {
    color: #fff;
}

.services .iconbox-orange:hover .icon path {
    fill: #ffa76e;
}

.services .iconbox-pink i {
    color: #e80368;
}

.services .iconbox-pink:hover .icon i {
    color: #fff;
}

.services .iconbox-pink:hover .icon path {
    fill: #e80368;
}

.services .iconbox-yellow i {
    color: #ffbb2c;
}

.services .iconbox-yellow:hover .icon i {
    color: #fff;
}

.services .iconbox-yellow:hover .icon path {
    fill: #ffbb2c;
}

.services .iconbox-red i {
    color: #ff5828;
}

.services .iconbox-red:hover .icon i {
    color: #fff;
}

.services .iconbox-red:hover .icon path {
    fill: #ff5828;
}

.services .iconbox-teal i {
    color: #11dbcf;
}

.services .iconbox-teal:hover .icon i {
    color: #fff;
}

.services .iconbox-teal:hover .icon path {
    fill: #11dbcf;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
    background: var(--colore-principale);
    background-size: cover;
    padding: 60px 0;
}

.cta h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

.cta p {
    color: #fff;
}

.cta .cta-btn {
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 5px;
    transition: 0.5s;
    margin-top: 10px;
    border: 2px solid #fff;
    color: #fff;
}

.cta .cta-btn:hover {
    background: #fff;
    color: var(--colore-principale);
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
    margin-bottom: 30px;
}

.portfolio-container{
    justify-content: center;
}

.immagine-anteprima-gallery{
    position: absolute;
    height: 100% !important;
    width: 100% !important;
    object-fit: cover;
}

.portfolio #portfolio-flters {
    padding: 0;
    margin: 0 auto 35px auto;
    list-style: none;
    text-align: center;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    padding: 8px 20px;
}

.portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 10px 15px 8px 15px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: #444444;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
    color: var(--colore-principale);
}

.portfolio #portfolio-flters li:last-child {
    margin-right: 0;
}

.portfolio .portfolio-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding-bottom:100%;
}

.portfolio .portfolio-wrap::before {
    content: "";
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 30px;
    right: 30px;
    top: 30px;
    bottom: 30px;
    transition: all ease-in-out 0.3s;
    z-index: 2;
    opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-info {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.portfolio .portfolio-wrap .portfolio-info::before {
    display: block;
    content: "";
    width: 48px;
    height: 48px;
    position: absolute;
    top: 35px;
    left: 35px;
    border-top: 3px solid #fff;
    border-left: 3px solid #fff;
    transition: all 0.5s ease 0s;
    z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info::after {
    display: block;
    content: "";
    width: 48px;
    height: 48px;
    position: absolute;
    bottom: 35px;
    right: 35px;
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
    transition: all 0.5s ease 0s;
    z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
    text-align: center;
    z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
    color: #fff;
    margin: 0 2px;
    font-size: 28px;
    display: inline-block;
    transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
    color: var(--colore-principale);
}

.portfolio .portfolio-wrap:hover::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
    opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info::before {
    top: 15px;
    left: 15px;
}

.portfolio .portfolio-wrap:hover .portfolio-info::after {
    bottom: 15px;
    right: 15px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
    padding-top: 30px;
}

.portfolio-details .portfolio-details-container {
    position: relative;
}

.portfolio-details .portfolio-details-carousel {
    position: relative;
    z-index: 1;
}

.portfolio-details .portfolio-details-carousel .owl-nav, .portfolio-details .portfolio-details-carousel .owl-dots {
    margin-top: 5px;
    text-align: left;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
    display: inline-block;
    margin: 0 10px 0 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
    background-color: #1bac91 !important;
}

.portfolio-details .portfolio-info {
    padding: 30px;
    position: absolute;
    right: 0;
    bottom: -70px;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
    margin-top: 10px;
}

.portfolio-details .portfolio-description {
    padding-top: 50px;
}

.portfolio-details .portfolio-description h2 {
    width: 50%;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0 0 0 0;
}

@media (max-width: 768px) {
    .portfolio-details .portfolio-description h2 {
        width: 100%;
    }
    .portfolio-details .portfolio-info {
        position: static;
        margin-top: 30px;
    }
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery {
    overflow: hidden;
}

.gallery .owl-nav, .gallery .owl-dots {
    margin-top: 40px;
    text-align: center;
}

.gallery .owl-item {
    transition: 0.3s ease-in-out;
}

.gallery .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #a3a3a3 !important;
}

.gallery .owl-dot.active {
    background-color: var(--colore-principale) !important;
}

/*.gallery .gallery-carousel {
  padding-top: 30px;
}*/

.gallery .gallery-carousel .owl-stage-outer {
    overflow: visible;
}

.gallery img{
    border-radius: 0.25rem;
}

@media (min-width: 992px) {
    .gallery .gallery-carousel .center {
        /*border: 3px solid var(--colore-principale);*/
        background: #fff;
        z-index: 1;
        transform: scale(1.2);
        margin-top: 10px;
        border-radius: 0.25rem;
    }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
    margin-bottom: 20px;
    overflow: hidden;
    text-align: center;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}

.team .member .member-img {
    position: relative;
    overflow: hidden;
}

.team .member .social {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 40px;
    opacity: 0;
    transition: ease-in-out 0.3s;
    text-align: center;
    background: rgba(255, 255, 255, 0.85);
}

.team .member .social a {
    transition: color 0.3s;
    color: #124265;
    margin: 0 10px;
    padding-top: 8px;
    display: inline-block;
}

.team .member .social a:hover {
    color: var(--colore-principale);
}

.team .member .social i {
    font-size: 18px;
    margin: 0 2px;
}

.team .member .member-info {
    padding: 25px 15px;
}

.team .member .member-info h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 18px;
    color: #124265;
}

.team .member .member-info span {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: #aaaaaa;
}

.team .member .member-info p {
    font-style: italic;
    font-size: 14px;
    line-height: 26px;
    color: #777777;
}

.team .member:hover .social {
    opacity: 1;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
    padding: 40px 20px;
    text-align: center;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    background: #fefefe;
    box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
}

.pricing .box h3 {
    font-weight: 400;
    padding: 15px;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    color: #124265;
}

.pricing .box h4 {
    font-size: 42px;
    color: var(--colore-principale);
    font-weight: 500;
    font-family: "Open Sans", sans-serif;
    margin-bottom: 20px;
}

.pricing .box h4 sup {
    font-size: 20px;
    top: -15px;
    left: -3px;
}

.pricing .box h4 span {
    color: #bababa;
    font-size: 16px;
    font-weight: 300;
}

.pricing .box ul {
    padding: 0;
    list-style: none;
    color: #124265;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
}

.pricing .box ul li {
    padding-bottom: 16px;
}

.pricing .box ul .na {
    color: #ccc;
    text-decoration: line-through;
}

.pricing .box .btn-wrap {
    padding: 15px;
    text-align: center;
}

.pricing .box .btn-buy {
    display: inline-block;
    padding: 10px 40px;
    border-radius: 4px;
    color: var(--colore-principale);
    transition: none;
    font-size: 14px;
    font-weight: 400;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    transition: 0.3s;
    border: 2px solid var(--colore-principale);
}

.pricing .box .btn-buy:hover {
    background: var(--colore-principale);
    color: #fff;
}

.pricing .featured {
    background: var(--colore-principale);
}

.pricing .featured h3, .pricing .featured h4, .pricing .featured h4 span, .pricing .featured ul, .pricing .featured ul .na {
    color: #fff;
}

.pricing .featured .btn-wrap {
    padding: 15px;
    text-align: center;
}

.pricing .featured .btn-buy {
    color: #fff;
    border: 2px solid #fff;
}

.pricing .featured .btn-buy:hover {
    background: #fff;
    color: var(--colore-principale);
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
    padding: 0 100px;
}

.faq .faq-list ul {
    padding: 0;
    list-style: none;
}

.faq .faq-list li + li {
    margin-top: 15px;
}

.faq .faq-list li {
    padding: 20px;
    background: #fff;
    border-radius: 4px;
    position: relative;
}

.faq .faq-list a {
    display: block;
    position: relative;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding: 0 30px;
    outline: none;
}

.faq .faq-list .icon-help {
    font-size: 24px;
    position: absolute;
    right: 0;
    left: 20px;
    color: #87c1ea;
}

.faq .faq-list .icon-show, .faq .faq-list .icon-close {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
}

.faq .faq-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
    display: none;
}

.faq .faq-list a.collapsed {
    color: #343a40;
}

.faq .faq-list a.collapsed:hover {
    color: var(--colore-principale);
}

.faq .faq-list a.collapsed .icon-show {
    display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
    display: none;
}

@media (max-width: 1200px) {
    .faq .faq-list {
        padding: 0;
    }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
    width: 100%;
    background: #fff;
}

.contact .info i {
    font-size: 20px;
    color: var(--colore-principale);
    float: left;
    width: 44px;
    height: 44px;
    background: #e3f0fa;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #124265;
}

.contact .info p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 14px;
    color: #217bbc;
}

.contact .info .email, .contact .info .phone {
    margin-top: 40px;
}

.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
    background: var(--colore-principale);
    color: #fff;
}

.contact .php-email-form {
    width: 100%;
    background: #fff;
}

.contact .php-email-form .form-group {
    padding-bottom: 8px;
}

.contact .php-email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .error-message br + br {
    margin-top: 25px;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    border-radius: 4px;
}

.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
    border-color: var(--colore-principale);
}

.contact .php-email-form input {
    height: 44px;
}

.contact .php-email-form textarea {
    padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
    background: var(--colore-principale);
    border: 0;
    padding: 10px 30px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
    background: #3194db;
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 25px 0;
    background: #fff;
    min-height: 40px;
    margin-top: 178px;
}


.breadcrumbs h3 {
    font-size: 24px;
    font-weight: 600;
}


@media (max-width: 991px) {
    .breadcrumbs {
        margin-top: 5rem;
    }
    .breadcrumbs h2 {
        margin-bottom: 1rem;
    }

}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    justify-content: flex-end;
}

.breadcrumbs ol li + li {
    padding-left: 10px;
}

.breadcrumbs ol li + li::before {
    display: inline-block;
    padding-right: 10px;
    color: #1a5e90;
    content: "/";
}

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }
    .breadcrumbs ol {
        display: block;
    }
    .breadcrumbs ol li {
        display: inline-block;
    }
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
    padding-top: 40px;
}

.portfolio-details .portfolio-details-container {
    position: relative;
}

.portfolio-details .portfolio-details-carousel {
    position: relative;
    z-index: 1;
}

.portfolio-details .portfolio-details-carousel .owl-nav, .portfolio-details .portfolio-details-carousel .owl-dots {
    margin-top: 5px;
    text-align: left;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
    display: inline-block;
    margin: 0 10px 0 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
    background-color: var(--colore-principale) !important;
}

.portfolio-details .portfolio-info {
    padding: 30px;
    position: absolute;
    right: 0;
    bottom: -70px;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
    margin-top: 10px;
}

.portfolio-details .portfolio-description {
    padding-top: 50px;
}

.portfolio-details .portfolio-description h2 {
    width: 50%;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0 0 0 0;
}

@media (max-width: 768px) {
    .portfolio-details .portfolio-description h2 {
        width: 100%;
    }
    .portfolio-details .portfolio-info {
        position: static;
        margin-top: 30px;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    color: #444444;
    font-size: 14px;
    background: #f8fbfe;
    box-shadow: 0px 2px 15px rgba(18, 66, 101, 0.08);
}

#footer .footer-top {
    /*padding: 60px 0 30px 0;*/
    background: #F1F1F2;
}

#footer .footer-top .footer-contact {
    margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
    font-size: 26px;
    margin: 0 0 10px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 300;
}

#footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Raleway", sans-serif;
    color: #fff;
}

#footer .footer-top h4 {
    font-size: 14px;
    position: relative;
    padding-bottom: 12px;
    color: #262626;
    font-family: lato;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: titillium;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: var(--colore-principale);
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    font-family: titillium;
    font-weight: 400;
    overflow-wrap: anywhere;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #262626;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
    text-decoration: underline;
}

.email-information {
    color: #262626;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    color: var(--colore-principale);
}

#footer .footer-newsletter {
    font-size: 15px;
}

#footer .footer-newsletter h4 {
    font-size: 16px;
    font-weight: bold;
    color: #444444;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border-radius: 5px;
    text-align: left;
    border: 1px solid #cde5f6;
}

#footer .footer-newsletter form input[type="email"] {
    border: 0;
    padding: 4px 8px;
    width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
    position: absolute;
    top: -1px;
    right: -2px;
    bottom: -1px;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px 2px 20px;
    background: var(--colore-principale);
    color: #fff;
    transition: 0.3s;
    border-radius: 0 5px 5px 0;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
    background: #3194db;
}

#footer .credits {
    padding-top: 5px;
    font-size: 13px;
    color: #444444;
}

#footer .social-links a {
    font-size: 24px;
    display: inline-block;
    background: #F1F1F2;
    color: #262626;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 5px;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .social-links a:hover {
    background: var(--colore-principale);
    color: #fff;
    text-decoration: none;
}

/* MAURO */

/* HEADER */

.drop-down{
    cursor: pointer;
}

.container-lang-social{
    display: inline-flex;
    align-items: center;
}

.container-accedi-search{
    display: inline-flex;
    justify-content: center;
    align-items: center;
}


.lingua-website{
    margin-bottom: 0px;
    font-family: titillium;
    font-weight: 700;
    font-size: 18px;
}

.bi{

}

.social-header{
    font-size: 18px;
    margin-right: 1rem;
    color: #1f1e21;
    transition: .3s;
}

.social-header:hover{
    color: var(--colore-principale);
}

.social-header-last{
    font-size: 20px;
    color: #1f1e21;
    transition: .3s;
}

.social-header-last:hover{
    color: var(--colore-principale);
}

.search-bar{
    margin-right: 4.5rem;
}

.accedi-header{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    font-family: titillium;
    font-weight: 700;
    font-size: 18px;
}

.bi-person-circle{
    display: inline-flex;
    margin-left: 1rem;
}

.only-desktop{
    display: block;
}

.only-mobile{
    display: none;
}

@media (max-width: 991px) {

    .only-desktop{
        display: none;
    }
    .only-mobile{
        display: block;
    }
    .bi-person-circle{
        margin-left: 0;
        margin-right: 1rem;
    }
    .lingua-website{
        margin-left: 1rem;
        margin-right: 0;
    }
    .social-header-last{
        margin-right: 1rem;
    }
    .social-header{
        margin-right: 0;
    }
    #footer .footer-top .footer-links {
        margin-bottom: 20px;
    }
}


/* HERO */

#hero{
    font-family: Lato;
}

.play-hero{
    color:white;
    font-size: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.title-hero a{
    color: white;
}

.button-live{
    letter-spacing: 1px;
    display: inline-block;
    padding: 4px 8px;
    border-radius: 5px;
    background-color: var(--colore-principale);
    color: white;
    text-transform: uppercase;
    font-size: 14px;
    border: none;
    margin-bottom: 1rem;
    font-family: titillium;
    font-weight: 600;
}

.text-hero{
    font-family: titillium;
    font-weight: 600;
    font-size: 16px;
    color: white;
    text-shadow: 0px 0px 10px #000;
}

.button-diretta{
    letter-spacing: 1px;
    display: inline-block;
    padding: 4px 16px;
    border-radius: 8px;
    background-color: var(--colore-principale);
    color: white;
    text-transform: uppercase;
    font-size: 16px;
    border: none;
    margin-bottom: 1rem;
    font-family: titillium;
    font-weight: 600;
}

.button-diretta:hover{
    background-color: white;
    color: var(--colore-principale);
}


.cambia-immagine-hero{
    display: flex;
}

.cambia-immagine{
    cursor:pointer;
}
@media (max-width: 1400px) {
    .play-hero{
        font-size: 70px;
    }
    .button-live{
        font-size: 10px;
    }
    .text-hero{
        font-size: 12px;
    }
    .button-diretta{
        font-size: 12px;
    }
}

@media (max-width: 991px) {
    .play-hero{
        display: none;
    }
    .button-diretta{
        font-size: 14px;
    }
    .text-hero{
        font-size: 14px;
    }
}

/* MAIN */


.no-padding{
    padding: 0;
}

@media (min-width: 1400px) {
    .container{
        max-width: 1370px;
    }
}

.title-faded{
    color: #fbe8e7;
    font-weight: 700;
    font-size: 80px;
    font-family: titillium;
}

.section-title{
    font-size: 32px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: lato;
    position: absolute;
    bottom: 0;
    margin-bottom: 0;
    margin-left: 3rem;
}


.section2-title{
    font-size: 32px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: lato;
    position: relative;
    bottom: 0;
    margin-bottom: 0;
    margin-left: 0;
}


.section-photo-title{
    font-size: 32px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.5px;
    bottom: 0;
    margin-bottom: 3rem;
}


.sub-title-section{
    font-size: 26px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: lato;
    bottom: 0;
    margin-bottom: 0;
    margin-left: 3rem;
}

.container-eventi{
    height: 150px;
    width: 100%;
}


@media (max-width: 991px) {
    .title-faded{
        font-size: 66px;
    }
    .section-title{
        margin-left: 1rem;
        font-size: 22px;
    }
    .sub-title-section{
        margin-left: 0;
    }
}

/* EVENTI */

.color-container-eventi{
    border-radius: 15px;
    background-color: #f9f9f9;
    height: 100%;
    width: 100%;
}

.p-eventi{
    color: var(--colore-principale);
    margin-bottom: 0;
    font-family: titillium;
    font-weight: 600;
}

.arrow-eventi{
    color: var(--colore-principale);
    font-weight: 600;
}

.align-vertically{
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.border-left-eventi{
    border-left: 2px solid #d2d2d2;
    position: absolute;
    right: 0;
    height: 40%;
}

.div-scopri{
    text-align: center;
    padding-left: 0;
}

.scopri-button{
    padding: 2px 6px;
    border-radius: 10px;
    color: #fff;
    background-color: #bbbbbc;
    width: 50%;
    position: relative;
    margin: 0 auto;
    font-family: titillium;
    font-weight: 600;
    font-size: 18px;
}

@media (max-width: 991px) {
    .color-container-eventi{
        display: none;
    }
}

/* ARTE */

.title-arte{
    color: #fae3e2;
    font-weight: 700;
    font-size: 80px;
    font-family: titillium;
}

.arte-viola{
    background-color: #393443;
    border-radius: 15px;
    height: auto;
    min-height: 300px;
    color: white;
}

.arte-rossa{
    background-color: #400300;
    border-radius: 15px;
    height: auto;
    min-height: 300px;
    color: white;
}

.arte-rosa{
    background-color: #33001D;
    border-radius: 15px;
    height: auto;
    min-height: 300px;
    color: white;
}

.div-luogo-arte{
    display: flex;
    align-items: center;
    color:#fff;
}

.luogo-arte{
    margin-bottom: 0;
    font-size: 13px;
    font-family: titillium;
    font-weight: 600;
}


.titolo-arte{
    color: #fff;
    font-size: 24px;
    font-family: lato;
}

.div-orario-arte{
    display: flex;
    align-items: center;
}

.div-map-arte{
    display: flex;
    align-items: center;
}

.clock-arte{
    justify-content: center;
    display: flex;
}

.orario-arte{
    margin-bottom: 0;
}

.map-arte{
    justify-content: center;
    display: flex;
}

.via-arte{
    margin-bottom: 0;
    font-family: titillium;
    font-weight: 600;
}


@media (max-width: 991px) {
    .title-arte{
        font-size: 66px;
    }
}

/* SCOPERTA */

.title-scoperta{
    color: #fae3e2;
    font-weight: 700;
    font-size: 87px;
    font-family: titillium;
}

.map-scoperta{
    border-radius: 12px;
    position: absolute;
    object-fit: cover;
    width: 100% !important;
    height: 100% !important;
}
.div-scoperta-intestazione{
    display: flex;
    align-items: center;
    color: #262626;
}

.title-section-scoperta{
    color: #1F1E21;
    font-size: 24px;
    font-weight: bold;
    font-family: lato;
}

.testo-scoperta{
    font-size: 16px;
    font-family: titillium;
    padding-right: 7rem;
}

.scoperta-button{
    padding: 6px 18px;
    border-radius: 8px;
    color: #fff;
    text-transform: uppercase;
    background-color: #262626;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    margin-top: 3rem;
    font-family: titillium;
    transition: .3s;
    border: 2px solid #262626;
}

.scoperta-button:hover{
    color: #262626;
    background-color: #fff;
}

@media (max-width: 1400px) {
    .scoperta-button{
        position: relative;
        bottom: 0;
    }
}


@media (max-width: 991px) {
    .map-scoperta{
        border-radius: 12px;
        width: 100%;
    }
    .scoperta-button{
        padding: 6px 18px;
        position: relative;
        bottom: auto;
        display: flex;
        justify-content: center;
    }
    .title-scoperta{
        font-size: 66px;
    }
    .testo-scoperta{
        padding-right: 0;
    }
}

/* EMOZIONE */

.title-emozione{
    color: #fae3e2;
    font-weight: 700;
    font-size: 80px;
    font-family: titillium;
}

.emozione{
    background-color: #262626;
    border-radius: 15px;
    height: 440px;
    color: white;
    position: relative;
}

.div-evento-emozioni{
    display: flex;
    align-items: center;
    color:#fff;
}

.evento-emozioni{
    margin-bottom: 0;
    font-size: 11px;
    font-family: titillium;
    font-weight: 600;
    z-index: 5;
}

.bi-circle-fill{
    font-size: 12px;
    justify-content: center;
    display: flex;
    font-family: titillium;
    color: #878c7e;
    z-index: 5;
}

.titolo-emozione{
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0;
    position: relative;
    z-index: 10;
}

.colore-principale{
    color: var(--colore-principale);
}

.eventi-button{
    padding: 2px 12px;
    border-radius: 15px;
    color: #fff;
    background-color: var(--colore-principale);
    position: relative;
    font-family: titillium;
    font-weight: 600;
    font-size: 16px;
    margin-right: 0.5rem;
    z-index: 10;
    transition: .3s;
}

.eventi-button:hover{
    color: var(--colore-principale);
    background-color: #fff;
}


.emozioni-principale{
    color: var(--colore-principale);
}

.testo-arte{
    color:#fff;
    font-size: 16px;
    font-family: titillium;
    font-weight: 600;
    margin-top: 2rem;
    position: relative;
    z-index: 10;
}

.div-orario-arte{
    display: flex;
    align-items: center;
}

.div-map-arte{
    display: flex;
    align-items: center;
    z-index: 10;
    position: relative;
}

.clock-arte{
    justify-content: center;
    display: flex;
}

.orario-arte{
    margin-bottom: 0;
    font-family: titillium;
    font-weight: 600;
}

.calendario-emozione{
    justify-content: center;
    display: flex;
    z-index: 10;
    position: relative;
}

.orario-emozione{
    margin-bottom: 0;
    font-family: titillium;
    font-weight: 600;
}

.emozione-button{
    padding: 6px 18px;
    border-radius: 8px;
    color: var(--colore-principale);
    position: relative;
    text-transform: uppercase;
    background-color: #fff;
    font-size: 16px;
    font-weight: 600;
    font-family: titillium;
    z-index: 10;
    transition: .3s;
}

.emozione-button:hover{
    color: #fff;
    background-color: var(--colore-principale);
}


.cerca-button{
    padding: 6px 18px;
    border-radius: 8px;
    color: #fff;
    position: relative;
    text-transform: uppercase;
    background-color: var(--colore-principale);
    font-size: 16px;
    font-weight: 600;
    font-family: titillium;
    z-index: 10;
    border: 2px solid var(--colore-principale);
    transition: .3s;
}

.cerca-button:hover{
    color: var(--colore-principale);
    background-color: #fff;
}

.emozioni-verde:hover{
    color: #fff;
}

.div-social{
    float: right;
    font-size: 18px;
    display: flex;
}

.circle-social{
    border-radius: 50%;
    background-color: #fff;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
}

.circle-social:hover{
    background-color: transparent;
}

.colore-principale:hover{
    color: white;
}

.social{
    display: flex;
}

.scopri-emozione{
    position: absolute;
    bottom: 0;
}

.social-emozione{
    position: absolute;
    bottom: 0;
    right: 0;
}

@media (max-width: 991px) {
    .title-emozione{
        font-size: 66px;
    }
}

/* INFORMAZIONE */


.title-informazione{
    color: #fae3e2;
    font-weight: 700;
    font-size: 80px;
    font-family: titillium;
}

.div-image-informazione{
    border-radius: 12px 0px 0px 12px;
}

.div-cerchio-informazione{
    display: flex;
    align-items: center;
    color:#fff;
}

.colore-viola-chiaro{
    color:#ED0C8C;
}

.testo-informazioni{
    margin-bottom: 0;
    font-size: 13px;
    color: #3C5165;
    font-family: titillium;
    font-weight: 600;
}

.titolo-testo-informazione{
    font-weight: bold;
    color:#1F1E21;
    font-size: 24px;
    font-family: lato;
}

.testo-informazione{
    font-size: 15px;
    font-family: titillium;
}

.data-informazioni{
    font-size: 13px;
    color: #51657A;
    font-family: titillium;
    font-weight: 600;
}

.sub-title-informazione{
    font-size: 32px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: bold;
    letter-spacing: 0.5px;
    font-family: lato;
    bottom: 0;
    margin-bottom: 0;
}

.div-servizi-informazione{
    background-color: #F1F1F2;
    border-radius: 12px;
}

.container-servizi-informazione{
    background-color: #fff;
    border-radius: 12px;
    padding: 10px;
    display: flex;
    align-items: center;
}

.titolo-servizi-informazione{
    font-size: 24px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: lato;
    bottom: 0;
    margin-bottom: 0;
}

.image-servizi{
    height: 40px;
    width: 40px;
    margin-right: 1.5rem;
}

@media (max-width: 991px) {
    .title-informazione{
        font-size: 56px;
    }
    .div-servizi-informazione{
        margin-top: 3rem;
        margin-left: 15px;
        margin-right: 15px;
    }
    .titolo-servizi-informazione{
        font-size: 18px;
        font-weight: 700;
    }
}

/* FOOTER */

.title-footer{
    color: #262626 !important;
    font-weight: 700;
    font-family: lato;
}

.no-title-footer{
    color: #f1f1f2 !important;
    font-weight: 700;
    font-family: lato;
}

#footer .logo {
    font-size: 32px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: lato;
    color: #262626;  
    flex-shrink: 0;
}

.pre-title-footer {
    font-size: 16px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: lato;
    color: #262626;
}

.border-footer{
    border-bottom: 2px solid #c7cdcd;
    padding: 30px;
}

.footer-bottom{
    background: #f1f1f2;
}

/* NEWSLETTER FOOTER */

label{
    display: block;
}

.div-news-social{
    width: 100%;
    height: auto;
    display: inline-block;
    padding: 0 15px;
}

.social-footer{
    float: left;
}

.news-footer{
    float: right;
}

.newsletter-box{
    border-radius: 8px;
    border:0;
    background-color: #FFFFFF;
    width: 250px;
    height: 36px;
    outline: none;
}

.form-newsletter{
    position: relative;
}

.bi-envelope{
    position: absolute;
    left: 8%;
    font-size: 20px;
    color: #262626;
    /*top: -6%;*/
    opacity: 1;
    transition: all 0.2s;
}

.newsletter-box:focus ~ .bi-envelope{
    opacity: 0;
    transition: all 0.2s;
}

.footer-bottom-list{
    list-style: none;
    display: inline-flex;
    padding-left: 0px;
}

.footer-bottom-list li{
    padding: 0px 10px;
    font-family: titillium;
}

.footer-bottom-list a{
    color: #262626;
    text-decoration: underline;
    font-size: 14px;
}

.copyright-footer{
    color: #262626;
    font-size: 14px;
    font-family: titillium;
}

/* ALTRI ELEMENTI */


.vedi-tutti{
    position: absolute;
    bottom: 0;
    margin-bottom: 0;
    right: 0;
    font-size: 18px;
    font-family: titillium;
    font-weight: 600;
    color:var(--colore-principale);
    cursor: pointer;
}

.iniziamo{
    font-size: 18px;
    font-family: titillium;
    font-weight: 600;
    color: var(--colore-principale);
    margin-bottom: 0;
}

.bi-chevron-right::before{
    line-height: unset;
}

.bi-caret-down{
    font-size: 16px;
}

.bi-caret-down::before{
    line-height: unset;
}

/*#carouselExampleIndicators .active{
    color: #1f1e21;
}*/

.carousel-indicators  button{
    background-color: transparent;
    padding: 0;
    font-family: inherit;
    color: #878c7e;
    border-color: transparent;
    padding: 5px;
}

.carousel-indicators button.active{
    color: #1f1e21;
}

.carousel-indicators2  button{
    background-color: transparent;
    padding: 0;
    font-family: inherit;
    color: #878c7e;
    border-color: transparent;
    padding: 5px;
}

.carousel-indicators2 button.active{
    color: #1f1e21;
}

.display-desktop{
    display: block;
}

.display-mobile{
    display: none;
}

.form-control{
    border-top: 0;
    border-right: 2px solid #E6E6E6;
    ;
    border-left: 2px solid #E6E6E6;
    ;
    border-bottom: 2px solid #E6E6E6;
}


.arte-text{
    font-family: titillium;
    color: #1f1e21;
    font-weight: 600;
    font-size: 18px;
}


.arte-text-regular{
    font-family: titillium;
    color: #1f1e21;
    font-weight: normal;
    font-size: 18px;
}


.arte-button{
    padding: 6px 18px;
    border-radius: 8px;
    color: var(--colore-principale);
    position: absolute;
    text-transform: uppercase;
    background-color: #fff;
    font-size: 16px;
    font-weight: 600;
    font-family: titillium;
    bottom: 7%;
    left: 7%;
    z-index: 5;
    transition: .3s;
}

.arte-button:hover{
    color: #fff;
    background-color: var(--colore-principale);
}

.arte-opere{
    background-color: #262626;
    border-radius: 15px;
    width: 100%;
    padding-bottom: 100%;
    color: white;
    position: relative;
}

@media (max-width: 991px) {
    .display-desktop{
        display: none;
    }

    .display-mobile{
        display: block;
    }
    .arrow-menu-mobile{
        float: right;
        display: inline-flex;
    }
    .container-esperienza{
        border-radius: 12px;
        background-color:#F9F9F9;
        margin: 0 20px;
        padding: 20px;
    }
    .news-footer{
        float: left;
    }
    .vedi-tutti{
        position: relative;
        margin-right: 1rem;
        text-align: right;
    }
    .accedi-mobile{
        display: flex !important;
        align-items: center;
    }
    .search-bar{
        margin-right: 0;
    }
    #footer .logo {
        font-size: 18px;
    }
    .img-footer{
        max-height: 50px;
    }
    .header-down-mobile{
        min-height: 70px;
        width: 100%;
        position: relative;
        border-top: 2px solid #f1f1f2;
        border-bottom: 2px solid #f1f1f2;
        margin-top: auto;
        display: flex;
        justify-content: space-between;
    }
    .container-lang-mobile{
        display: flex;
        height: 100%;
        align-items: center;
        float: left;
    }
    .container-social-mobile{
        display: flex;
        height: 100%;
        align-items: center;
        float: right;
    }

}

.hidden-content{
    display: none;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    position: absolute;
    top: 35%;
    box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
    z-index: 1000;
    cursor: pointer;
}

.esperienza-button{
    padding: 2px 12px;
    border-radius: 16px;
    color: var(--colore-principale);
    position: relative;
    border: 1px solid var(--colore-principale);
    font-family: titillium;
    font-weight: 600;
    background-color: white;
    margin-bottom: 1rem;
}

.esperienza-button-click{
    padding: 2px 12px;
    border-radius: 16px;
    color: #fff;
    position: relative;
    border: 1px solid var(--colore-principale);
    font-family: titillium;
    font-weight: 600;
    background-color: var(--colore-principale);
    margin-bottom: 1rem;
}

button:focus{
    outline: none;
}

.bi-x-circle{
    color: #fff;
    font-size: 12px;
    vertical-align: top;
}

.not-display{
    display: none !important;
}

.display-none{
    display: none;
}

#logo-scrolled{
    padding: 0 20px;
}


/* ACCORDION FOOTER */

.accordion{
    width: auto;
    border: none;
    text-align: left;
    outline: none;
    transition: 0.4s;
    background-color: transparent;
    padding-left: 0;
}

.panel {
    display:none;
    margin-top: 1.5rem;
}

/* SLIDE SHOW */

.carousel-indicators{
    justify-content: flex-start;
    padding-left: 3rem;
    position: absolute;
    right: 0;
    bottom: 5%;
    left: 0;
    z-index: 15;
    display: flex;
    list-style: none;
    margin-left: 0;
}

.center-play{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.banner-image{
    width: 100% !important;
    height: 500px !important;
    object-fit: cover;
}

.div-text-slide{
    position: absolute;
    padding: 2rem;
    z-index: 5;
}

@media (max-width: 991px) {
    .banner-image{
        height: 100% !important;
        object-fit: cover;
    }
    .div-text-slide{
        position: absolute;
        padding: 1rem;
    }
    .carousel-indicators{
        padding-left: 1rem;
    }

    .carousel-banner{
        height: 50vh;
    }
}


.p-eventi{
    cursor:pointer;
}

.lingua-website{
    cursor: pointer;
}

.hidden-content-lingua{
    display: none;
    position: absolute;
    top: 35%;
    z-index: 1000;
}

.titolo-interno{
    font-size: 26px;
    margin-bottom: 0;
    font-weight: 600;
}


.titolo-delle-gallery{
    font-size: 18px;
    margin-bottom: 0;
    font-weight: 600;
    text-transform: uppercase;
    color: #1f1e21;
    margin-right: 0.5rem;
}

.icone-gallery{
    font-size: 22px;
    margin-bottom: 0;
    margin-left: 0.5rem;
}

.categorie-laterali{
    font-size: 20px;
    color: #1f1e21;
    text-transform: uppercase;
    font-weight: 600;
}

.sottocategorie-laterali{
    font-size: 18px;
    color: #1f1e21;
    text-transform: uppercase;
    font-weight: 600;
}

.lista-categorie-laterali{
    padding: 0;
}

.div-categorie-laterali{
    text-align: end;
}



@media (max-width: 991px) {
    .div-categorie-laterali{
        text-align: left;
        margin-bottom: 1rem;
    }
    .col-rev {
        flex-direction: column-reverse;
    }
    .categorie-laterali{
        font-size: 18px;
    }
}

#lingua:hover + .hidden-content-lingua {
    display: block;
}

.hidden-content-lingua:hover{
    display: block;
}

p img{
    height: auto;
    max-width: 100%;
}

/* NEWS SLIDER */

.carousel-indicators2 {
    position: relative;
    display: inline-flex;
    margin-top: 1rem;
    padding-left: 0;
}

.carousel-indicators2 li {
    background: #a3a3a3;
    border-radius: 50%;
    width: 8px;
    height: 8px;
}

.cerchio-grigio{
    color: #878c7e;
}

.cerchio-grigio-active{
    color: #1f1e21;
}

.cambia-news{
    cursor: pointer;
}

.carousel-indicators li{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-left: 10px;
}

.carousel-height{
    height: 450px !important;
}

.eventi-height{
    height: 350px !important;
}

@media (max-width: 1200px) {
    .carousel-height{
        height: 550px !important;
    }
}

@media (max-width: 991px) {
    .carousel-height{
        height: auto !important;
        margin-bottom: 1rem;
    }
    .eventi-height{
        height: auto !important;
    }
}

/*.table-bordered td, .table-bordered th {
    border: 1px solid #fff;
    background-color: #fff;
}*/


/*--------------------------------------------------------------
# Sottocategorie
--------------------------------------------------------------*/
.sottocategorie img {
    border-radius: 0;
    height: 300px;
    object-fit: cover;
    width: 100%;
}
.sottocategorie .card {
    border: 0;
}
.sottocategorie .card-body {
}
.sottocategorie .card-text{
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 1rem;
}
.sottocategorie .card-title a {
    font-weight: 600;
    font-size: 18px;
    color: #444;
    transition: ease-in-out 0.3s;
}
.sottocategorie .card-title a:hover {
    color: var(--colore-principale);
}
.sottocategorie .btn {
    border-radius: 50px;
    padding: 4px 30px 6px 30px;
    border: 2px solid #dc3545;
    color: #fff;
    background: #dc3545;
}
.sottocategorie .btn:hover {
    color: #dc3545;
    background: #fff;
}

.card{
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.card-title{
    font-size: 1.25rem;
}

.read-more{
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
}

/* ALTRI ELEMENTI */

.separatore{
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid #F1F1F2;
    width: 75%;
}

.titolo-evento{
    font-size: 28px;
    font-weight: 600;
}

.lista-dettagli-evento{
    margin-bottom: 0;
    list-style: none;
    padding-left: 0;
}

.container-dettagli-evento{
    background-color: #f1f1f2;
    padding: 20px;
    font-style: italic;
    font-size: 16px;
}

.lista-dettagli-evento li{
    margin-bottom: 1rem;
}

.lista-dettagli-evento li:last-child{
    margin-bottom: 0;
}

.img-eventi{
    border-radius: 5px;
    cursor: pointer;
}

/* OPACITY IMMAGINI */

.img-anteprima-emozione{
    z-index: 0;
    object-fit: cover;
    border-radius: 15px;
    width: 100% !important;
    height: 100% !important;
    position: absolute;
}
.div-img-anteprima-emozione:before{
    content: "";
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 15px;
    z-index: 1;
}
.carousel-banner:before{
    content: "";
    background: rgba(0, 0, 0, 0.2);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

/* MENU RICERCA */

.menu-ricerca{
    border-bottom: 2px solid #E6E6E6;
}

.sotto-menu-ricerca{

}

.menu-ricerca ul{
    padding-left: 0;
    margin-bottom: 0;
}

.sotto-menu-ricerca ul{
    padding-left: 0;
}

.menu-ricerca li{
    list-style-type: none;
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid #E6E6E6;
    position: relative;
    margin-top: 1rem;
}


.menu-ricerca li:hover{
    background-color: #1f1e21;
}

.menu-ricerca li:hover>a{
    color: #fff;
}
.menu-ricerca li:hover>.icofont-arrow-right{
    color: #fff;
}


.sotto-menu-ricerca li{
    list-style-type: none;
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid #E6E6E6;
    position: relative;
    margin-top: 1rem;
}

.menu-ricerca li:last-child{
    border-bottom: none;
}

.sotto-menu-ricerca li:last-child{
    border-bottom: none;
}


.sotto-menu-ricerca li:hover{
    background-color: #1f1e21;
}

.sotto-menu-ricerca li:hover>a{
    color: #fff;
}
.sotto-menu-ricerca li:hover>.icofont-arrow-right{
    color: #fff;
}

.menu-ricerca a{
    color: #1f1e21;
    font-size: 18px;
    font-weight: 600;
}

.sotto-menu-ricerca a{
    color: #1f1e21;
    font-size: 15px;
    font-weight: 600;
}

.freccia-menu-ricerca{
    right: 0;
    margin: 0;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.input-menu-ricerca{
    margin-right: 0.5rem;
}

.nome-input-menu-ricerca{
    margin-right: 1rem;
    margin-bottom: 0;
}

.ricerca-button{
    padding: 6px 18px;
    border-radius: 8px;
    color: #fff;
    position: relative;
    text-transform: uppercase;
    background-color: #1f1e21;
    font-size: 16px;
    font-weight: 600;
    font-family: titillium;
    z-index: 10;
    border: 1px solid #1f1e21;
}

.ricerca-button:hover{
    background-color: #fff;
    color: #1f1e21;
    border: 1px solid #1f1e21;
}

.icon-menu-ricerca{
    cursor: pointer;
}


.menu-interno-ricerca li{
    list-style-type: none;
    padding: 0.50rem 1.5rem;
    border-bottom: 1px solid #E6E6E6;
    position: relative;
    margin-top: 0.75rem;
}


.menu-interno-ricerca a{
    color: #1f1e21;
    font-size: 14px;
    font-weight: 600;
}

.menu-ricerca li:hover>.icofont-plus{
    color: #fff;
}

.menu-ricerca li:hover>.icofont-minus{
    color: #fff;
}

/* MODAL GALLERY IMMAGINI */

.vbox-content{
    position: absolute;
    top: 0;
    bottom: 0;
}

.vbox-container img {
    width: auto;
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.owl-item{
    overflow: hidden;
}

.owl-carousel .owl-item img{
    height: 250px;
    object-fit: cover;
    transition: transform .5s;
    transition: all 0.5s ease;
}

@media (orientation: portrait) and (min-width: 768px){
    .owl-carousel .owl-item img{
        height: 500px;
    }
}

.owl-carousel .owl-item img:hover{
    transform: scale(1.2);
}

.owl-carousel .single{
    transform: translate3d(0px,0px, 0px) !important;
}

.vbox-title{
    font-size: 16px;
}

/* IMMAGINE PRINCIPALE SCHEDE */

.immagine-principale-schede{
    max-height: 450px !important;
    width: 100%;
    object-fit: cover;
    border-radius: 0.25rem;
    cursor: pointer;
}

.titolo-interno-con-immagine{
    font-size: 3.5rem;
    margin-bottom: 0;
    font-weight: 600;
    position: absolute;
    color: white;
    padding-left: 50px;
}

.immagine-principale-schede:before{
    content: "";
    background: rgba(0, 0, 0, 0.2);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

/* RICERCA E RISULTATI */

.risultati-ricerca li{
    list-style-type: none;
}

.gaspari-home{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.div-schede-ricerca td{
    border:none;
    padding: 0.75rem 0;
}

.card-img-top{
    transition: transform .5s;
}

.card-img-top:hover{
    transform: scale(1.1);
}

.card a{
    position: relative;
    overflow: hidden;
}
.tablewhite td, .tablewhite th {
    padding: 0.75rem;
    vertical-align: top;
    border-top: none;
}

.table-no-border td{
    border-top: none !important;
}

td input, td select{
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    padding: 6px 18px;
}


div input, div select{
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    padding: 6px 18px;
}


.no-border{
    border-top: none !important;
}

/*.materia-table a{
   color: white; 
}*/

.color-white{
    color: white;
}

.color-black{
    color:#1f1e21;
}

.didascalia{
    color: #1f1e21;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 700;
}


.input-ricerca-gaspari{
    width: 50%;
}

.input-ricerca-mambo{
    width: 75%;
}

.da-carteggi{
    padding: 10px 10px;
    margin: 0 1rem 1rem 0;
    background-color: #ccccff;
    font-weight: bold;
}

.a-carteggi{
    padding: 10px 10px;
    margin: 0 1rem 1rem 0;
    background-color: #efef8f;
    font-weight: bold;
}

/* LEGENDA */


.didascalia-legenda{
    color: #1f1e21;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 0;
    margin-left: 1rem;
}

.div-legenda-1{
    width: 25px;
    height: 40px;
    background-color: #82A9D0;
}

.div-legenda-2{
    width: 25px;
    height: 40px;
    background-color: #CC6699;
}

.div-legenda-3{
    width: 25px;
    height: 40px;
    background-color: #9BBDBD;
}

.div-legenda-4{
    width: 25px;
    height: 40px;
    background-color: #CCCCFF;
}

.div-legenda-5{
    width: 25px;
    height: 40px;
    background-color: #BE752C;
}

.page-link{
    color: var(--colore-principale);
}

.page-link:hover{
    color: var(--colore-principale);
}

.page-item a:not([href]){
    background-color: var(--colore-principale);
    color: white;
}

.av-in-ricerca{
    background-color: white !important;
    color: var(--colore-principale) !important;
}

@media screen and (max-width: 768px) {
    .page-link{
        padding: 0.25rem 0.40rem;
    }
}


/* ACCESSIBILITA */

.info-evento{
    font-size: 1.5rem;
}

.owl-carousel.owl-drag .owl-item{
    border-radius: 0.25rem;
}

#content[aria-hidden=true] {
    display:none;
}

div.container > div.owl-carousel > div.owl-dots > button.owl-dot{
    overflow: hidden;
}

.container-galley-mista img{
    width: 100%;
    height: 235px;
    object-fit: cover;
    border-radius: 0.25rem;
}

.container-galley-mista video{
    width: 100%;
    height: 235px;
}

.container-galley-mista iframe{
    width: 100%;
    height: 235px;
}
.view{
    height: 740px;
    background-color: black;
    border-radius: 0.25rem;
}

.card-header{
    background-color: #fff;
    cursor: pointer;
}

.card-header i{
    font-size: 18px;
    position: absolute;
    right: 0;
}

.card-header:hover{
    background-color: #f5f5f5;
}

.accordion .card:hover{
    box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
}

#accordionExample{
    margin-bottom: 3rem;
}

.accordion .card{
    box-shadow: none;
}

@media (orientation: portrait) {

    .view{
        height: 300px;
    }
}

.view img{
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.view video{
    width: 100%;
    height: 100%;
}

.view iframe{
    width: 100%;
    height: 100%;
}

.indicatori-video-gallery {
    margin-right: 15%;
    margin-left: 15%;
    right: 0;
    bottom: 30px;
    left: 0;
    justify-content: center;
    padding-left: 0;
}

.carousel-caption{
    bottom: 50px;
}

.h3-responsive{
    font-size: 1.25rem;
}


/* CALENDARIO */
.head-calendario th{
    border: 0;
    text-align: center;
}

.head-calendario tr{

}
.head-calendario p{
    margin-bottom: 0;
    position: absolute;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}
.head-calendario td{
    text-align: center;
    border-top: 0;
    padding: 2rem 1rem;
    vertical-align: middle;
    position: relative;
}

.head-calendario td a{
    background-color: var(--colore-principale);
    color: white;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    position: absolute;
    transform: translate(-50%, -50%);
}

/* DIDASCALIA IMMAGINE */

.didascalia-immagine{
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 700;
    margin-top: 1rem;
}

/* COLORI GASPARI RICERCA */

.image-possessori{
    height: 150px;
    width: 150px;
    object-fit: cover;

}

.musica_sconosciuta{
    background-color: #C1A4D0;
}

.teoria_musicale{
    background-color: #82a9d0;
}

.musica_vocale_sacra{
    background-color: #cc6699;
}

.musica_vocale_profana{
    background-color: #9bbdbd;
}

.musica_strumentale{
    background-color: #ccccff;
}

.libretti{
    background-color: #be752c;
}

.bg-scheda-ricerca{
    height: 40px;
}

/* COLLEZIONI ONLINE */

.menu-selezionato-collezioni{
    background-color: #1f1e21 !important;
    color: white !important;
}

.accordion-collezioni-online-closed, .accordion-collezioni-online-open{
    cursor: pointer;
    font-size: 1rem;
}

.display-collezioni{
    display: block;
    padding: 0;
    background-color: white;
    color:  #1f1e21;
}

.indici-collezione{
    background-color: #1f1e21;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    display: inline-flex;
}
.indici-collezione p{
    margin-bottom: 0;
    padding: 10px 10px;
}

.display-collezioni p{
    margin-bottom: 0;
    padding: 10px 10px;
}

.not-display-collezioni {
    display: none;
}

.not-display-collezioni p{
    margin-bottom: 0;
    padding: 10px 10px;
}

.white{
    color: white !important;
}

#error-message-ricerca{
    color: var(--colore-principale);
    margin-top: 1rem;
    font-weight: bold;
    display: none;
}

.table thead th{
    border-top: none !important;
    border-bottom: 1px solid #dee2e6;
}

.tabella-collezione-mambo-no-padding td{
    padding: 0;
}


.arrow-int-catalogo{
    background-color: var(--colore-principale);
    color: white;
    font-size: 25px;
    cursor: pointer;
    transition: 0.2s;
}

.arrow-int-catalogo:hover{
    color: var(--colore-principale);
    background-color: white;
}

.carousel-control-next, .carousel-control-prev{
    opacity: 1;
}

/*.div-img-catalogo-interno{    
    border-bottom: 5px solid #896545;
    width: fit-content;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}*/

.altezza-div-oggetti{
    height: 300px;
}

.oggetti-percorsi{
    max-width: 100%;
    object-fit: contain;
    max-height: 210px;
}

.div-catalogo h3{
    font-size: 22px;
    font-weight: 600;
}

.img-ant-catalogo{
    height: 210px;
    width: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.fotorama__thumb-border{
    border-color: var(--colore-principale);
}

.fotorama__caption__wrap{
    background-color: var(--colore-principale);
    color: white;
    width: 100%;
    text-align: center;
}

.fotorama__html div,
.fotorama__html a {
    display: block;
    height: 100%;
    background: url(_.gif);
    cursor: pointer;
}

.n-oggetto-collezioni-online{
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}


.div-img-catalogo{
    border-bottom: 5px solid #896545;
    width: fit-content;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.schede-in-categorie{
    height: 170px;
    object-fit: cover;
}

/* SOTTOTITOLO */

.sottotitolo{
    font-size: 20px;
    margin-bottom: 0;
    font-weight: 600;
}

/* ARCHIVIO */

.vai-archivio{
    font-size: 16px;
    font-family: titillium;
    font-weight: 600;
    color: var(--colore-principale);
    cursor: pointer;
    text-transform: uppercase;
}

.container-filtri{
    padding: 0 10px;
}

.bottoni-tag{
    padding: 6px 18px;
    border-radius: 8px;
    color: #fff !important;
    text-transform: uppercase;
    background-color: var(--colore-principale);
    font-size: 16px;
    font-weight: 600;
    font-family: titillium;
    cursor: pointer;
    border:2px solid var(--colore-principale);
}
.bottoni-tag:hover{
    transition: 0.2s;
    color: var(--colore-principale)!important;
    background-color: #fff;
    cursor: pointer;
}

/* MOCKUP EVENTI */

.sub-title-section{
    font-size: 26px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: lato;
    bottom: 0;
    margin-bottom: 0;
    margin-left: 3rem;
}

.container-eventi{
    height: 150px;
    width: 100%;
}


@media (max-width: 991px) {
    .title-faded{
        font-size: 66px;
    }
    .section-title{        
        margin-left: 1rem;
        font-size: 22px;
        position: relative;
    }
    .sub-title-section{
        margin-left: 0;
    }
}

.color-container-eventi{
    border-radius: 15px;
    background-color: #f9f9f9;
    height: 100%;
    width: 100%;
}

.eventi-home-hidden{
    display: none;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    position: absolute;
    top: 80%;
    box-shadow: 0 0 29px 0 rgb(0 0 0 / 12%);
    z-index: 1000;
    cursor: pointer;
}

.p-eventi{
    color: var(--colore-principale);
    margin-bottom: 0;
    font-family: titillium;
    font-weight: 600;
}

.arrow-eventi{
    color: var(--colore-principale);
    font-weight: 600;
}

.align-vertically{
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.border-left-eventi{
    border-left: 2px solid #d2d2d2;
    position: absolute;
    right: 0;
    height: 40%;
}

.div-scopri{
    text-align: center;
    padding-left: 0;
}

.scopri-button{
    padding: 2px 6px;
    border-radius: 10px;
    color: #fff;
    background-color: #bbbbbc;
    width: 50%;
    position: relative;
    margin: 0 auto;
    font-family: titillium;
    font-weight: 600;
    font-size: 18px;
}

@media (max-width: 991px) {
    .color-container-eventi{
        display: none;
    }
}

/* CALENDARIO EVENTO */


.evento-colore-bg{
    color: white;
    border-radius: 50%;
    height: 20px;
    width: 20px;
}

/* CALENDARIO */
.head-calendario th{
    border: 0;
    text-align: center;
}

.head-calendario tr{

}
.head-calendario p{
    margin-bottom: 0;
    position: absolute;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}
.head-calendario td{
    text-align: center;
    border-top: 0;
    padding: 2rem 1rem;
    vertical-align: middle;
    position: relative;
}

.head-calendario td a{
    background-color: #60468d;
    color: white;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    position: absolute;
    transform: translate(-50%, -50%);
}

.frecce-calendario{
    font-size: 24px;
    color: #1f1e21;
}

/* FILTRI CALENDARIO */

.rimuovi-filtro{
    color: #aa100a;
}

.aggiungi-filtro{
    color: #55904e;
}

.didascalia-evento .icofont-verification-check{
    color: #55904e;
}

.puntatore-label{
    cursor: pointer;
}

.info-blu{
    color: #6a7da0;
}

.p-dettagli-evento{
    font-size: 14px;
}

.piu-eventi-filtri{
    margin-left: 24px;
}


.colore-principale-cerchio{
    color: var(--colore-principale) !important;
}

.w-85{
    width: 85%;
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{
    background: var(--colore-principale);
}

.header-area-riservata a{
    color: #1f1e21;
    transition: 0.2s;
    font-size: 18px;
    font-weight: 700;
    font-family: titillium;
}

.bottoni-form-login{

}

.bottoni-form-login .login{
    padding: 6px 18px;
    border-radius: 8px;
    color: #fff;
    position: relative;
    text-transform: uppercase;
    background-color: var(--colore-principale);
    font-size: 16px;
    font-weight: 600;
    font-family: titillium;
    border: 2px solid var(--colore-principale);
    transition: all .2s;
    margin-right: 0.5rem
}

.bottoni-form-login .login:hover{
    background-color: #fff;
    color: var(--colore-principale);
}

.bottoni-form-login .iscrizione{
    padding: 6px 18px;
    border-radius: 8px;
    color: var(--colore-principale);
    position: relative;
    text-transform: uppercase;
    background-color: #fff;
    font-size: 16px;
    font-weight: 600;
    font-family: titillium;
    border: 2px solid var(--colore-principale);
    transition: all .2s;
}
.bottoni-form-login .iscrizione:hover{
    background-color: var(--colore-principale);
    color: #fff;
}

.pb-60{
    padding-bottom: 60px;
}

.mb-45{
    margin-bottom: 2rem;
}

.riferimenti-area-stampa-index a{
    padding: 10px;
    background-color: #1f1e21;
    color: white;
    margin-right: 1rem;
    font-weight: 600;
    border-radius: 2px;
    border: 2px solid #1f1e21;
    transition: .2s;
}

.riferimenti-area-stampa-index a:hover{
    background-color: #fff;
    color: #1f1e21;
}


.bottone-rosa{
    padding: 6px 18px;
    border-radius: 8px;
    color: #fff;
    position: relative;
    text-transform: uppercase;
    background-color: var(--colore-principale);
    font-size: 16px;
    font-weight: 600;
    font-family: titillium;
    border: 2px solid var(--colore-principale);
    transition: all .2s;
    margin-right: 0.5rem
}

.bottone-rosa:hover{
    background-color: #fff;
    color: var(--colore-principale);
}

.bottone-bianco{
    padding: 6px 18px;
    border-radius: 8px;
    color: var(--colore-principale);
    position: relative;
    text-transform: uppercase;
    background-color: #fff;
    font-size: 16px;
    font-weight: 600;
    font-family: titillium;
    border: 2px solid var(--colore-principale);
    transition: all .2s;
}

.bottone-bianco:hover{
    background-color: var(--colore-principale);
    color: #fff;
}

.input-custom{
    margin-right: 1rem;
}

.bottoni-archivi-area-stampa{
    display: flex;    
    flex-wrap: wrap;
}

.bottoni-archivi-area-stampa a{
    padding: 3px 12px;
    background-color: var(--colore-principale);
    color: white;
    margin-right: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    border: 2px solid var(--colore-principale);
    transition: .2s;
    display: block;
    width: fit-content;
    font-size: 22px;
}

.bottoni-archivi-area-stampa a:hover{
    background-color: #fff;
    color: var(--colore-principale);
}

.menu-area-riservata{
    display: flex;
    flex-direction: column;
}

.menu-area-riservata .voce-menu{
    color: #1f1e21;
    font-size: 18px;
    font-weight: 600;
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid #E6E6E6;
    position: relative;
    margin-top: 1rem;
}

.menu-area-riservata .voce-menu:hover{
    color: white;
    background-color:  #1f1e21;
}

.menu-area-riservata .head{
    padding: 10px;
    text-align: center;
    background: #1f1e21;
    color: white;
    font-weight: 600;
    font-size: 18px;
}

.modifica-dati-area-riservata{
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

.img-interna-news img{
    height: 600px;
    object-fit: cover;
    width: 100%;
}

.container-news{
    box-shadow: 0px 0px 40px 0px rgba(0,0,0,.08);
    padding: 40px;
    margin-top: -200px;
    z-index: 10000;
    position: relative;
    background: white;
}


.separatore-w100{
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid #F1F1F2;
    width: 100%;
}

.container-news .titoli{
    margin-bottom: 30px;
}

.container-news .testo{
    margin-top: 30px;
}

@media (max-width: 991px) {
    .img-interna-news img{
        height: 400px;
    }
    .container-news{
        padding: 30px;
    }
}

.glightbox-clean .gslide-title{
    font-family: titillium;
    font-weight: 600;
}

#error-message-password{
    font-size: 14px;
    color: #ff0000;
    margin-bottom: 1rem;
}
#error-message-mail{
    font-size: 14px;
    color: #ff0000;
    margin-bottom: 1rem;
}

.btn.disabled, .btn:disabled{
    pointer-events: none;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

#footer .pre-title-footer{
    display: flex;
    flex-direction: column;
}

#footer .pre-title-footer span{
    font-size: 32px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: lato;
    color: #262626;
}

#footer .footer-top h3 {
    font-size: 14px;
    position: relative;
    padding-bottom: 12px;
    color: #262626;
    font-family: lato;
}

@media (max-width: 768px) {
    .table thead th{
        font-size: 10px;
        padding: .2rem;
    }
    .head-calendario td{
        padding: 1rem 0rem;
    }
    .head-calendario td a{
        height: 30px;
        width: 30px;
    }
    .head-calendario p{
        font-size: 12px;
    }
}

/*--------------------------------------------------------------
# Oggetti digitali
--------------------------------------------------------------*/

#digitale-gaspari.gallery #sfoglia-lettera-prova{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#digitale-gaspari.gallery #sfoglia-lettera-prova img{    
    height: 100px;
    padding: 10px;
}