/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Open Sans", sans-serif;
    color: #444444;
}

a {
    text-decoration: none;
    color: #f39520;
}

a:hover {
    color: #f39520;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Dosis", sans-serif;
}

.colore-primario{
    color: #f39520;
}

.colore-secondario{
    color: #105fb6;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

.preloader{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sk-chase {
    width: 40px;
    height: 40px;
    position: relative;
    background:  #fff;
    animation: sk-chase 2.5s infinite linear both;
}

.sk-chase-dot {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    animation: sk-chase-dot 2.0s infinite ease-in-out both;
}

.sk-chase-dot:before {
    content: '';
    display: block;
    width: 25%;
    height: 25%;
    background-color: #f39520;
    border-radius: 100%;
    animation: sk-chase-dot-before 2.0s infinite ease-in-out both;
}

.sk-chase-dot:nth-child(1) {
    animation-delay: -1.1s;
}
.sk-chase-dot:nth-child(2) {
    animation-delay: -1.0s;
}
.sk-chase-dot:nth-child(3) {
    animation-delay: -0.9s;
}
.sk-chase-dot:nth-child(4) {
    animation-delay: -0.8s;
}
.sk-chase-dot:nth-child(5) {
    animation-delay: -0.7s;
}
.sk-chase-dot:nth-child(6) {
    animation-delay: -0.6s;
}
.sk-chase-dot:nth-child(1):before {
    animation-delay: -1.1s;
}
.sk-chase-dot:nth-child(2):before {
    animation-delay: -1.0s;
}
.sk-chase-dot:nth-child(3):before {
    animation-delay: -0.9s;
}
.sk-chase-dot:nth-child(4):before {
    animation-delay: -0.8s;
}
.sk-chase-dot:nth-child(5):before {
    animation-delay: -0.7s;
}
.sk-chase-dot:nth-child(6):before {
    animation-delay: -0.6s;
}

@keyframes sk-chase {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes sk-chase-dot {
    80%, 100% {
        transform: rotate(360deg);
    }
}

@keyframes sk-chase-dot-before {
    50% {
        transform: scale(0.4);
    }
    100%, 0% {
        transform: scale(1.0);
    }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #f39520;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #105fb6;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background: #fff;
    transition: all 0.5s;
    z-index: 997;
    padding: 20px 0;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.05);
}

#header .logo {
    font-size: 28px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: "Lato", sans-serif;
}

#header .logo a {
    color: #105fb6;
}

#header .logo img {
    max-height: 30px;
}

@media (max-width: 991px) {
    #header .logo img {
        max-height: 20px;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 20px;
    font-family: "Dosis", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #105fb6;
    white-space: nowrap;
    transition: 0.3s;
    text-transform: uppercase;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #f39520;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 500;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #f39520;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #105fb6;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(7, 25, 33, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #105fb6;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #f39520;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #f39520;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 80vh;
    position: relative;
    padding: 0;
    margin-top: 68px;
}

#hero .img-hero{
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
}

#hero .container {
    height: 100%;
}

#hero .box{
    background: #ffffffc7;
    padding: 40px;
    box-shadow: 0px 0px 8px 3px #ffffffc7;
}

#hero h1 {
    margin: 0;
    font-size: 42px;
    font-weight: 700;
    line-height: 56px;
    color: #105fb6;
    text-transform: uppercase;
}

#hero h1 span {
    color: #f39520;
}

#hero h2 {
    margin: 10px 0 0 0;
    font-size: 20px;
}

#hero .btn-get-started {
    font-family: "Dosis", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 6px 26px;
    border-radius: 3px;
    transition: 0.5s;
    margin-top: 25px;
    color: #fff;
    background: #f39520;
    text-transform: uppercase;
    border: 2px solid #f39520;
}

#hero .btn-get-started:hover {
    background: transparent;
    color: #f39520;
}

#hero .swiper-pagination-hero .swiper-pagination-bullet{
    background-color: #f39520;
    border: 1px solid #fff;
}

@media (max-width: 991px) {
    #hero {
        height: 100vh;
        text-align: center;
    }

    #hero .hero-img img {
        width: 50%;
    }
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 28px;
        line-height: 36px;
    }

    #hero h2 {
        font-size: 18px;
        line-height: 24px;
    }

    #hero .hero-img img {
        width: 80%;
    }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
}

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

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

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

.section-title p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Numeri
--------------------------------------------------------------*/
.numeri {
    background-color: #f9f9f9;
    padding: 80px 0 60px 0;
    position: relative;
}

.numeri i{
    font-size: 52px;
}

.numeri .title {
    position: relative;
    margin-bottom: 40px;
}

.numeri .title h3 {
    font-size: 32px;
    font-weight: 700;
    color: #105fb6;
    text-transform: uppercase;
}

.numeri .title h3 span{
    color: #f39520;
}

.numeri .counters span {
    font-size: 44px;
    font-weight: 700;
    display: block;
    color: #f39520;
    font-family: "Dosis", sans-serif;
}

.numeri .counters p {
    padding: 0;
    margin: 0 0 20px 0;
    font-size: 14px;
    color: #105fb6;
    font-weight: 700;
}

@media (min-width: 1200px) {
    .numeri {
        background-attachment: fixed;
    }
}

/*--------------------------------------------------------------
# Loghi Istituzionali
--------------------------------------------------------------*/

.loghi-istituzionali .logo {
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0 5px rgba(1, 41, 112, 0.08);
    overflow: hidden;
    background: #fff;
    height: 120px;
    border-radius: 3px;
}

.loghi-istituzionali .logo img {
    height: 60%;
    transition: 0.3s;
}

.loghi-istituzionali .logo:hover img {
    filter: none;
    transform: scale(1.2);
}

.loghi-istituzionali img {
    transition: all 0.4s ease-in-out;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 15px 0;
    background: #f0f9fd;
    margin-top: 84px;
}

@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 68px;
    }
}

.breadcrumbs h2 {
    font-size: 28px;
    font-weight: 500;
}

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

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

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

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

    .breadcrumbs ol {
        display: block;
    }

    .breadcrumbs ol li {
        display: inline-block;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #fff;
    color: #444444;
    font-size: 14px;
    box-shadow: 0px 0 5px rgba(1, 41, 112, 0.08);
}

#footer .footer-top {
    padding: 60px 0 30px 0;
    background: #fff;
}

#footer .footer-top .logo-footer{
    max-width: 200px;
}

#footer .footer-top .font-italic{
    font-style: italic;
}

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

#footer .footer-top .footer-contact h4 {
    font-size: 22px;
    margin: 0 0 30px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
}

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

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

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

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

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #f39520;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

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

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

#footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    color: #f39520;
}

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

#footer .footer-top .social-links a:hover {
    background: #105fb6;
    color: #fff;
    text-decoration: none;
}

#footer .footer-bottom{
    padding: 25px 0;
    background: #f9f9f9;
}

#footer .copyright {
    font-family: "Dosis", sans-serif;
}

#footer .credits {
    float: right;
    font-size: 13px;
    color: #105fb6;
}

@media (max-width: 575px) {

    #footer .copyright,
    #footer .credits {
        float: none;
        text-align: center;
    }
}

/*--------------------------------------------------------------
# Box a 4
--------------------------------------------------------------*/

.box-home-quattro .titolo h2{
    font-size: 32px;
    font-weight: 700;
    color: #f39520;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.box-home-quattro .box{
    padding: 20px;
    box-shadow: 0px 0 5px rgba(1, 41, 112, 0.08);
    transition: 0.3s;
    height: auto;
    border-radius: 3px;
}

.box-home-quattro .box .immagine-anteprima{
    width: 100%;
    padding-bottom: 100%;
    position: relative;
    margin-bottom: 1rem;
}

.box-home-quattro .box .immagine-anteprima img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.box-home-quattro .box .evento{
    display: flex;
    flex-direction: column;
    padding: 10px;
    margin-bottom: 1rem;
    background: #f0f9fd;
    font-size: 14px;
    width: 100%;
    border-radius: 3px;
    font-weight: 600;
    font-family: "Dosis", sans-serif;
}

.box-home-quattro .box .evento i{
    color: #f39520;
    margin-right: .5rem;
}

.box-home-quattro .box h3{
    font-size: 22px;
    color: #105fb6;
}

.box-home-quattro .box p{
    font-size: 13px;
    text-align: justify;
}

.box-home-quattro .box a.leggi-tutto{
    background: #f39520;
    width: 100%;
    display: block;
    color: #fff;
    text-align: center;
    font-family: "Dosis", sans-serif;
    font-weight: 500;
    font-size: 16px;
    padding: 6px 26px;
    border-radius: 3px;
    text-transform: uppercase;
    transition: 0.5s;
    border: 2px solid #f39520;
}

.box-home-quattro .box a.leggi-tutto:hover{
    background: transparent;
    color: #f39520;
}

.box-home-quattro .vedi-tutti{
    font-family: "Dosis", sans-serif;
    font-weight: 500;
}

.box-home-quattro .vedi-tutti:hover{
    text-decoration: underline;
}


/*--------------------------------------------------------------
# Box a 3
--------------------------------------------------------------*/

.box-home-tre .titolo h2{
    font-size: 32px;
    font-weight: 700;
    color: #f39520;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.box-home-tre .box{
    border-radius: 8px;
    position: relative;
    box-shadow: 0px 0px 5px rgb(161 161 161);
    overflow: hidden;
    height: 400px;
    width: 100%;
}

.box-home-tre .box.type-1{
    background: #f3952080;
}

.box-home-tre .box.type-2{
    background: #105fb6b0;
}

.box-home-tre .box img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.box-home-tre .box .titolo{
    margin: 20px;
    padding: 10px;
    border-radius: 4px;
    color: white;
}

.box-home-tre .box .titolo .evento{
    display: flex;
    flex-direction: column
}

.box-home-tre .box .titolo .evento span{
    font-weight: 600;
    text-shadow: 0px 0px 10px #000;
    font-family: "Dosis", sans-serif;
}

.box-home-tre .box .titolo .evento .separatore{
    margin-top: 1rem;
    margin-bottom: 1rem;
    width: 200px;
    border-bottom: 2px solid #fff;
}

.box-home-tre .box .titolo h3{
    margin-bottom: 0;
    font-size: 22px;
    font-weight: 600;
    text-shadow: 0px 0px 10px #000;
}

.box-home-tre .box .scopri{
    position: absolute;
    bottom: 30px;
    right: 30px;
    font-size: 32px;
    color: white;
}

.box-home-tre .vedi-tutti{
    font-family: "Dosis", sans-serif;
    font-weight: 500;
}

.box-home-tre .vedi-tutti:hover{
    text-decoration: underline;
}

/*--------------------------------------------------------------
# Box a 1
--------------------------------------------------------------*/

.box-home-uno{
    display: flex;
    align-items: center;
    position: relative;
    padding: 80px 0;
    min-height: 350px;
    max-height: 500px;
}

.box-home-uno:before{
    content: "";
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

.box-home-uno .immagine-anteprima{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.box-home-uno .immagine-anteprima img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.box-home-uno .testo{
    text-align: center;
    color: #fff;
    z-index: 1;
    position: relative;
}

.box-home-uno .testo h2{
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.box-home-uno .testo a.leggi-tutto{
    font-family: "Dosis", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 6px 26px;
    border-radius: 3px;
    transition: 0.5s;
    margin-top: 25px;
    color: #fff;
    background: #f39520;
    text-transform: uppercase;
    border: 2px solid #f39520;
}

.box-home-uno .testo a.leggi-tutto:hover{
    background: transparent;
    border-color: #fff;
}

.box-home-uno .play-btn {
    width: 72px;
    height: 72px;
    margin-bottom: 20px;
    background: #ff8920;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    overflow: hidden;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: .5s;
    z-index: 1;
}

.box-home-uno .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: .5s;
}

.box-home-uno .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 #ff8920;
    z-index: 200;
    animation: none;
    border-radius: 0;
}

.box-home-uno .play-btn:hover{
    background: #fff;
}

/*--------------------------------------------------------------
# Scheda
--------------------------------------------------------------*/

.top-scheda-page{
    padding-top: 82.5px;
    padding-bottom: 0;
}

.top-scheda-page .top-page{
    height: 350px;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #fdfaf0;
    border-bottom: 1px solid #f39520;
    position: relative;
}

.top-scheda-page .top-page h2{
    color: #fff;
    text-shadow: 0px 0px 10px #000;
}

.top-scheda-page .top-page h3{
    margin-bottom: 0;
    font-family: var(--font-secondary);
    color: white;
    font-size: 16px;
    text-transform: uppercase;
    text-shadow: 0px 0px 10px #000;
}


.top-scheda-page .top-page h2.no-img-principale{
    color: #f39520;
    text-shadow: none;
}

.top-scheda-page .top-page h3.no-img-principale{
    color: inherit;
    text-shadow: none;
}

.top-scheda-page .top-page .patina{
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.top-scheda-page .top-page .patina:before {
    content: "";
    background: #6363634f;
    position: absolute;
    inset: 0;
}

.top-scheda-page .top-page .img-principale{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scheda-page{

}

.scheda-page .evento{
    padding: 20px;
    background: #fdfaf0;
    width: fit-content;
    border: 1px solid #f39520;
}

.scheda-page .evento h6{
    color: #f39520;
    font-weight: 600;
}

.scheda-page .evento i{
    color: #f39520;
}


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

.scheda-page .evento p:last-child{
    margin-bottom: 0;
}

.scheda-page .testo{
    margin-bottom: 1.5rem;
}

.scheda-page .testo p{
    font-size: 15px;
}

.scheda-page .testo img, .scheda-page .testo video{
    max-width: 100%;
    height: auto;
}

.scheda-page .accordion-item{
    border: none;
}

.scheda-page .accordion-item .accordion-body{
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
}

.scheda-page .accordion-item .accordion-button{
    border-radius: 0;
    font-weight: 600;
}

.scheda-page .accordion-item .accordion-button:not(.collapsed){
    background-color: #f0f9fd;
}

.scheda-page .accordion-item .swiper-pagination-gallery{
    position: relative;
    top: 0;
}

.scheda-page .accordion-item .swiper-pagination-gallery .swiper-pagination-bullet{
    background-color: #105fb6;
}

.scheda-page .accordion-item .media-gallery{
    display: flex;
    align-items: center;
    justify-content: center;
}

.scheda-page .accordion-item .media-gallery img{
    height: 350px;
    object-fit: cover;
    cursor: pointer;
}

.scheda-page .accordion-item .media-gallery video{
    object-fit: contain;
    max-width: 100%;
    height: auto;
}

.scheda-page .accordion-item .media{
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.scheda-page .accordion-item .media img{
    max-width: 100%;
    height: auto;
}

.scheda-page .accordion-item .media video{
    max-width: 100%;
    height: auto;
}

.scheda-page .swiper-pagination-gallery-blocchi{
    position: relative;
    top: 0;
}

.scheda-page .swiper-pagination-gallery-blocchi .swiper-pagination-bullet{
    background-color: #105fb6;
}

.scheda-page .media-schede{
    display: flex;
    align-items: center;
    justify-content: center;
}

.scheda-page .media-schede img{
    height: 350px;
    object-fit: cover;
    cursor: pointer;
}

.scheda-page .media-schede video{
    object-fit: contain;
    max-width: 100%;
    height: auto;
    max-height: 720px;
}

@media (max-width: 992px) {
    .top-scheda-page{
        padding-top: 68px;
    }
}

/*--------------------------------------------------------------
# Tags 
--------------------------------------------------------------*/

.tag-page{
    padding: 120px 0 60px 0;
    min-height: 600px;
}

.tag-page h2{
    font-size: 32px;
    font-weight: 700;
    color: #f39520;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.tag-page .box-tag{
    border-radius: 3px;
    position: relative;
    box-shadow: 0px 0 5px rgba(1, 41, 112, 0.08);
    overflow: hidden;
    height: auto;
    width: 100%;
    padding: 20px;
}

.tag-page .box-tag .immagine{
    width: 100%;
    padding-bottom: 100%;
    position: relative;
    margin-bottom: 1rem;
    overflow: hidden;
}

.tag-page .box-tag .immagine img{
    position: absolute;
    top: 0;
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.tag-page .box-tag .testo{
}

.tag-page .box-tag .testo h3{
    font-size: 22px;
}

.tag-page .box-tag .testo a{
    color: #105fb6;
}

.tag-page .box-tag .testo p{
    font-size: 13px;
    text-align: justify;
    margin-bottom: 1rem;
}

.tag-page .box-tag .testo a.leggi-tutto{
    background: #f39520;
    width: 100%;
    display: block;
    color: #fff;
    text-align: center;
    font-family: "Dosis", sans-serif;
    font-weight: 500;
    font-size: 16px;
    padding: 6px 26px;
    border-radius: 3px;
    text-transform: uppercase;
    transition: 0.5s;
    border: 2px solid #f39520;
}

.tag-page .box-tag .testo a.leggi-tutto:hover{
    background: transparent;
    color: #f39520;
}

.tag-page .box-tag .evento{
    display: flex;
    flex-direction: column;
    padding: 10px;
    margin-bottom: 1rem;
    background: #f0f9fd;
    font-size: 14px;
    width: 100%;
    border-radius: 3px;
    font-weight: 600;
    font-family: "Dosis", sans-serif;
}

.tag-page .box-tag .evento i{
    color: #f39520;
    margin-right: .5rem;
}

.tag-page .pagination .page-link{
    color: #105fb6;
}


/*--------------------------------------------------------------
# Box Home Video
--------------------------------------------------------------*/

.box-home-video{
    display: flex;
    align-items: center;
    position: relative;
    padding: 80px 0;
    min-height: 350px;
    max-height: 500px;
}

.box-home-video:before{
    content: "";
    background: rgba(0, 0, 0, 20%);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

.box-home-video .immagine-anteprima{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.box-home-video .immagine-anteprima img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.box-home-video .testo{
    text-align: center;
    color: #fff;
    z-index: 1;
    position: relative;
}

.box-home-video .testo h2{
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.box-home-video .testo a.leggi-tutto{
    font-family: "Dosis", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 6px 26px;
    border-radius: 3px;
    transition: 0.5s;
    margin-top: 25px;
    color: #fff;
    background: #f39520;
    text-transform: uppercase;
    border: 2px solid #f39520;
}

.box-home-video .testo a.leggi-tutto:hover{
    background: transparent;
    border-color: #fff;
}

.box-home-video .play-btn {
    width: 72px;
    height: 72px;
    background: #f39520;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: .5s;
    z-index: 1;
}

.box-home-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: .5s;
}

.box-home-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 #f39520;
    z-index: 200;
    animation: none;
    border-radius: 0;
}

.box-home-video .play-btn:hover{
    background: #fff;
}

.glightbox-clean .gslide-description{
    display: none !important;
}



/*--------------------------------------------------------------
# HomeGame
--------------------------------------------------------------*/

.home-game{
    padding: 135px 0 60px 0;
}

.home-game h2{
    font-size: 1.5rem;
    text-align: center;
    color: #f39520;
}

.home-game .alert{
    color: #444444;
    border-radius: 8px;    
    border-color: #f39520;
    background: #f3952014;
    margin-top: 1rem;
    margin-bottom: 2rem;
    font-family: "Dosis", sans-serif;
}

.home-game .box-shadow{
    box-shadow: 0px 0px 5px rgb(161 161 161);
    position: relative;
    transition: .5s;    
    border-radius: 8px;
}

.home-game .card-game{
    background: #ffffff40;
    position: relative;
    transition: .5s;
    overflow: hidden;    
    border-radius: 8px;
}

.home-game .card-game img{
    z-index: -1;
    position: relative;
    transition: .5s;
}

.home-game .card-game h3{
    margin-bottom: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: max-content;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1.4rem;
    text-shadow: 0px 0px 10px #fff;
    color: #444444;
    text-align: center;
}

.home-game .box-down{
    padding: 20px;
    background: #105fb6b0;
    position: absolute;
    width: 100%;
    bottom: 0;
    transition: 0.5s;    
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;    
    border-radius: 8px;
}

.home-game .box-down h3{
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1rem;
    color: #fff;
    text-align: center;
    margin-bottom: 0;
    text-shadow: 0px 0px 10px #000;
}

.home-game .box-shadow:hover .box-down{
    height: 100%;
}

#CybotCookiebotDialog{
    font-family: "Open Sans", sans-serif !important;
}

#CybotCookiebotDialogFooter #CybotCookiebotDialogBodyButtonAccept, #CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonAccept, #CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll{
    background-color: #f39520 !important;
    border-color: #f39520 !important;
}

#CybotCookiebotDialog.CybotEdge #CybotCookiebotDialogBodyEdgeMoreDetails a{
    color: #f39520 !important;
}

#CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonCustomize, #CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowallSelection{
    border-color: #f39520 !important;
}

#CybotCookiebotDialogFooter .CybotCookiebotDialogBodyButton{
    border-color: #f39520 !important;
}

#CybotCookiebotDialogNav .CybotCookiebotDialogNavItemLink.CybotCookiebotDialogActive{
    border-bottom: 1px solid #f39520 !important;
    color: #f39520 !important;
}

#CybotCookiebotDialogNav .CybotCookiebotDialogNavItemLink:hover{
    color: #f39520 !important;
}

#CybotCookiebotDialogTabContent input:checked+.CybotCookiebotDialogBodyLevelButtonSlider {
    background-color: #f39520 !important;
}

#CybotCookiebotDialog #CybotCookiebotDialogBodyContentText a, #CybotCookiebotDialog #CybotCookiebotDialogBodyLevelButtonIABHeaderViewPartnersLink, #CybotCookiebotDialog #CybotCookiebotDialogDetailBulkConsentList dt a, #CybotCookiebotDialog #CybotCookiebotDialogDetailFooter a, #CybotCookiebotDialog .CybotCookiebotDialogBodyLevelButtonIABDescription a, #CybotCookiebotDialog .CybotCookiebotDialogDetailBodyContentCookieLink, #CybotCookiebotDialogDetailBodyContentTextAbout a{
    color: #f39520 !important;
}

#CookiebotWidget .CookiebotWidget-consent-details button{
    color: #f39520 !important;
}

#CybotCookiebotDialog .CookieCard .CybotCookiebotDialogDetailBodyContentCookieContainerButton:hover, #CybotCookiebotDialog .CookieCard .CybotCookiebotDialogDetailBodyContentIABv2Tab:hover, #CybotCookiebotDialogDetailBodyContentCookieContainerTypes .CybotCookiebotDialogDetailBodyContentCookieProvider:not(.CybotCookiebotDialogDetailBodyContentCookieInfoCount):hover{
    color: #f39520 !important;
}

#CybotCookiebotDialogDetailBodyContentCookieContainerTypes .CybotCookiebotDialogDetailBodyContentCookieProvider:not(.CybotCookiebotDialogDetailBodyContentCookieInfoCount):hover{
    color: #f39520 !important;
}

#CookiebotWidget .CookiebotWidget-body .CookiebotWidget-consents-list li.CookiebotWidget-approved svg{
    fill: #f39520 !important;
}

#CookiebotWidget #CookiebotWidget-buttons #CookiebotWidget-btn-change{
    background-color: #f39520 !important;
    border-color: #f39520 !important;
}

#CookiebotWidget #CookiebotWidget-buttons #CookiebotWidget-btn-withdraw {
    border-color: #f39520 !important;
}