
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: 'Oxanium', sans-serif;
    color: #444444;
}

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

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

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

/*--------------------------------------------------------------
# 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 #ff8920;
    border-top-color: #fccea6;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1s linear infinite;
}

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

    100% {
        transform: rotate(360deg);
    }
}

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

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

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

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

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

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
    background: #ff8920;
    height: 40px;
    font-size: 14px;
    transition: all 0.5s;
    color: #fff;
    padding: 0;
}

#topbar img{
    height: 20px;
    margin-right: .3rem;
    margin-left: .3rem;
}

#topbar .contact-info i {
    font-style: normal;
    color: #fff;
}

#topbar .contact-info i a,
#topbar .contact-info i span {
    padding-left: 5px;
    color: #fff;
}

#topbar .contact-info i a {
    line-height: 0;
    transition: 0.3s;
    transition: 0.3s;
}

#topbar .contact-info i a:hover {
    color: #fff;
    text-decoration: underline;
}

#topbar .social-links a {
    color: rgba(255, 255, 255, 0.7);
    line-height: 0;
    transition: 0.3s;
    margin-left: 20px;
}

#topbar .social-links a:hover {
    color: white;
}

#topbar .lang{
    margin-left: 20px;
}

#topbar .lang a{
    margin-left: 0;
    font-weight: 600;
}

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

#header.fixed-top {
    height: 70px;
}

#header .logo {
    font-size: 30px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 600;
    letter-spacing: 0.8px;
    font-family: "Poppins", sans-serif;
}

#header .logo a {
    color: #222222;
}

#header .logo a span {
    color: #ff8920;
}

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

.scrolled-offset {
    margin-top: 70px;
}

/*--------------------------------------------------------------
# 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>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-size: 15px;
    font-weight: 600;
    color: #303e48;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    font-family: 'Oxanium', sans-serif;
}

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

.navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: #ff8920;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
    visibility: visible;
    width: 100%;
}

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

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    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-weight: 400;
}

.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: #ff8920;
}

.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: #222222;
    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(9, 9, 9, 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: #222222;
}

.navbar-mobile>ul>li {
    padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
    visibility: hidden;
}

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

.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: #ff8920;
}

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

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

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

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

.section-title h2 {
    letter-spacing: 1px;
    font-weight: 700;
    padding: 8px 20px;
    margin: 0;
    color: #ff8920;
    display: inline-block;
    text-transform: uppercase;
    border-radius: 50px;
}

.section-title h3 {
    margin: 15px 0 0 0;
    font-size: 32px;
    font-weight: 700;
}

.section-title h3 span {
    color: #ff8920;
}

.section-title p {
    margin: 15px auto 0 auto;
    font-weight: 600;
}

@media (min-width: 1024px) {
    .section-title p {
        width: 50%;
    }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 20px 0;
    background-color: #f1f6fe;
    min-height: 40px;
}

.breadcrumbs h2 {
    font-size: 24px;
    font-weight: 300;
    margin: 0;
}

@media (max-width: 992px) {
    .breadcrumbs h2 {
        margin: 0 0 10px 0;
    }
}

.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: #6c757d;
    content: "/";
}

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

    .breadcrumbs ol {
        display: block;
    }

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    color: #444444;
    font-size: 14px;
    font-family: 'Oxanium', sans-serif;
}

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

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

#footer .footer-top .footer-contact h3 {
    font-size: 24px;
    margin: 0 0 15px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
}

#footer .footer-top .footer-contact h3 span {
    color: #ff8920;
}

#footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    color: #fff;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    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: #ff8920;
    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: #fff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

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

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

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

#footer .footer-top .logo img{
    max-height: 80px;
    width: auto;
    max-width: 100%;
}

#footer .credits {
    float: right;
    text-align: center;
    font-size: 13px;
    color: #444444;
}

#footer .footer-bottom{
    background-color: #000;
    color: #fff;
}

@media (max-width: 768px) {

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


/*--------------------------------------------------------------
# CTA
--------------------------------------------------------------*/

.cta{
    transition: 1s;
    background: linear-gradient(90deg, #303e48 60%, #648094 100%);
}

/*.cta:hover{
    background-color: #ff8920;
}*/

.cta h2{
    font-family: 'Oxanium', sans-serif;
    font-size: 44px;
    letter-spacing: 1px;
    font-weight: 600;
    color: #fff;
}

.cta p{
    font-family: 'Oxanium', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}

.cta img{
    height: 5rem;
    margin-bottom: 1.5rem;
}

/*--------------------------------------------------------------
# Works
--------------------------------------------------------------*/

.works{
    min-height: 700px;
}

.works h2{
    font-family: 'Oxanium', sans-serif;
    margin-bottom: 0;
    color: #303e48;
    font-size: 2rem;
    font-weight: 700;
}

.works h2 span{
    color: #ff8920;
}

.works .scopri-di-piu{
    font-family: 'Oxanium', sans-serif;
    font-size: 16px;
    font-weight: 600;
}

.works .scopri-di-piu i{
    transition: .5s;
}


.works .scopri-di-piu:hover{
    color: #ff8920;
    text-decoration: underline;
}

.works .scopri-di-piu:hover i{
    margin-left: .5rem;
}


.works .swiper-slide-active .box{
    padding-bottom: 120%;
    transition: 1s 0.5s;
}

.works .box{
    position: relative;
    padding-bottom: 100%;
    border-radius: 10px;
    overflow: hidden;
    transition: height 0.5s;
    /*border: 2px solid #ff8920;*/
}

.works .box:before {
    content: "";
    background: rgb(0 0 0 / 10%);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 8px;
}

.works .box:hover img{
    transform: scale(1.05);
}

.works .box img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    border-radius: 8px;
    transition: 1s;
}

.works .box .testo{
    position: absolute;
    bottom: 0;
    padding: 20px;
    color: #fff;
    text-shadow: 0px 0px 10px #303e48;
}

.works .box .testo h3{
    font-size: 16px;
    letter-spacing: .5px;
    font-family: 'Oxanium', sans-serif;
}

.works .box .testo span{
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Oxanium', sans-serif;
}

.works .box .testo span i{
    color: #ff8920;
}

.works .swiper-button-prev, .works .swiper-button-next{
    height: 44px;
    width: 44px;
    border-radius: 50%;
    background-color: #ff8920;
    color: #fff;
    border: 2px solid #ff8920;
    transition: .3s;
}

.works .swiper-button-prev:after, .works .swiper-button-next:after{
    font-size: 22px;
}

.works .swiper-button-prev:hover, .works .swiper-button-next:hover{
    background-color: #ffe1c5;
    color: #222222;
}

/*--------------------------------------------------------------
# CTA Simultane
--------------------------------------------------------------*/
/*.cta-blackbyrd {
    position: relative;
    overflow: hidden;
    transition: background 1s;    
    background: #c4daed;
}*/

.cta-blackbyrd {
    position: relative;
    overflow: hidden;
    padding: 0;
}

.cta-blackbyrd h2{
    font-family: 'Oxanium', sans-serif;
    font-size: 92px;
    color: #e7972e;
    letter-spacing: 1px;
    font-weight: 600;
}

.cta-blackbyrd h3{
    font-family: 'Oxanium', sans-serif;
    font-size: 44px;
    color: #000;
    letter-spacing: 1px;
    margin-bottom: .5rem;
    font-weight: 600;
}

.cta-blackbyrd p{
    font-family: 'Oxanium', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000;
}


.cta-blackbyrd img{
    width: 100%;
    object-fit: cover;
    height: auto;
}

@media (max-width: 768px) {
    .cta-blackbyrd img{
        height: 200px;
    }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.services{
    background: #fff;
}

.services h2{
    font-family: 'Oxanium', sans-serif;
    margin-bottom: 0;
    color: #303e48;
    font-size: 2rem;
    font-weight: 700;
}

.services h2 span{
    color: #ff8920;
}

.services .scopri-di-piu{
    font-family: 'Oxanium', sans-serif;
    font-size: 16px;
    font-weight: 600;
}

.services .scopri-di-piu i{
    transition: .5s;
}


.services .scopri-di-piu:hover{
    color: #ff8920;
    text-decoration: underline;
}

.services .scopri-di-piu:hover i{
    margin-left: .5rem;
}

.services .box{

}

.services .box .box-img{
    border-radius: 8px;
    overflow: hidden;
}

/*.services .box:hover img{
    transform: scale(1.1);
}*/

.services .box img{
    border-radius: 8px;
    width: 100%;
    height: auto;
    transition: .5s;
    border: 1px solid black;
}

.services .box .testo{
    padding: 10px;
    text-align: center;
}

.services .box .testo h3{
    font-size: 16px;
    font-family: 'Oxanium', sans-serif;
    color: #444444;
    font-weight: 700;
}

.services .box .testo span{
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Oxanium', sans-serif;
}

.services .box .testo span i{
    color: #ff8920;
}

.services .maggiori-dettagli{
    font-family: 'Oxanium', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-align: center;

}

.services .maggiori-dettagli i{
    transition: .5s;
}

.services .maggiori-dettagli:hover i{
    margin-left: .5rem;
}

.services .maggiori-dettagli a{
    padding: 20px;
    transition: .5s;
    color: #ff8920;
    border-radius: 8px;
}

.services .maggiori-dettagli a:hover{
    color: #ff8920;
    text-decoration: underline;
    border: 1px solid #ff8920;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/

.clients{
    position: relative;
    padding: 45px 0;
}

.clients h2{
    font-family: 'Oxanium', sans-serif;
    margin-bottom: 0;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
}

.clients h2 span{
    color: #303e48;
}

.clients .swiper span{
    font-family: 'Oxanium', sans-serif;
    padding: 3px 12px;
    border: 1px solid #fff;
    border-radius: 99px;
    display: block;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    width: fit-content;
    transition: .5s;
}

.clients .swiper-slide span:hover{
    background-color: #ff8920;
    border-color: #ff8920;
}

.clients .swiper-slide img{
    height: 60px;
    opacity: 0.5;
    transition: 0.3s;
    filter: grayscale(100);
}

.clients .swiper-slide img:hover {
    filter: none;
    opacity: 1;
}

.clients .swiper-wrapper {
    transition-timing-function: linear !important;
}

/*--------------------------------------------------------------
# Our Stories
--------------------------------------------------------------*/

.our-stories{

}

.our-stories h2{
    font-family: 'Oxanium', sans-serif;
    margin-bottom: 0;
    color: #303e48;
    font-size: 2rem;
    font-weight: 700;
}

.our-stories h2 span{
    color: #ff8920;
}


.our-stories .box{
    height: 600px;
    overflow: hidden;
    position: relative;
}

.our-stories .box img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: .5s;
}

.our-stories .box:hover img{
    transform: scale(1.05);
}

.our-stories .col-lg-4:first-child .box {
    border-radius: 8px 0 0 8px;
}

.our-stories .col-lg-4:last-child .box {
    border-radius: 0 8px 8px 0;
}

.our-stories .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;
}

.our-stories .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;
}

.our-stories .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;
}

.our-stories .play-btn:hover{
    background: #fff;
}

.our-stories .maggiori-dettagli{
    font-family: 'Oxanium', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

.our-stories .maggiori-dettagli i{
    transition: .5s;
}

.our-stories .maggiori-dettagli:hover i{
    margin-left: .5rem;
}

.our-stories .maggiori-dettagli a{
    padding: 20px;
    transition: .5s;
    color: #ff8920;
    border-radius: 8px;
}

.our-stories .maggiori-dettagli a:hover{
    color: #ff8920;
    text-decoration: underline;
    border: 1px solid #ff8920;
}

/*--------------------------------------------------------------
# Highlights
--------------------------------------------------------------*/

.highlights{

}


.highlights h2{
    font-family: 'Oxanium', sans-serif;
    margin-bottom: 0;
    color: #303e48;
    font-size: 2rem;
    font-weight: 700;
}

.highlights h2 span{
    color: #ff8920;
}

.highlights .box{
    height: 650px;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
}

.highlights .box:before {
    content: "";
    background: rgba(0, 0, 0, 0.2);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

.highlights .box img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: .5s;
    border-radius: 8px;
    z-index: 1;
}

.highlights .box:hover img{

}

.highlights .box .testo{
    position: absolute;
    z-index: 100;
    top: 50%;
    left: 10%;
    transform: translate(0, -50%);
    width: 50%;
}

.highlights .box .testo h3{
    font-family: 'Oxanium', sans-serif;
    color: #fff;
}

.highlights .box .testo p{
    font-family: 'Oxanium', sans-serif;
    color: #fff;
}



.highlights .btn-scopri-tutti{
    font-family: 'Oxanium', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #ff8920;
    border: 2px solid #ff8920;
}

.highlights .btn-scopri-tutti:hover {
    background: #ffe1c5;
    color: #303e48;
}

/*--------------------------------------------------------------
# Digital Storytelling
--------------------------------------------------------------*/

.ds{
    background-color: #303e48;
}

.ds h2{
    font-family: 'Oxanium', sans-serif;
    margin-bottom: 0;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
}

.ds h2 span{
    color: #ff8920;
}

.ds .scopri-di-piu{
    font-family: 'Oxanium', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.ds .scopri-di-piu i{
    transition: .5s;
}


.ds .scopri-di-piu:hover{
    color: #ff8920;
    text-decoration: underline;
}

.ds .scopri-di-piu:hover i{
    margin-left: .5rem;
}

.ds .swiper-slide{
    padding: 20px;
}

.ds .box{
    position: relative;
    padding-bottom: 100%;
    border-radius: 8px;
    overflow: hidden;
    transition: 0.5s;
}

.ds .box:before {
    content: "";
    background: rgb(0 0 0 / 10%);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 8px;
}

.ds .box img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    border-radius: 8px;
    transition: 1s;
}

.ds .box:hover img{
    transform: scale(1.1);
}

.ds .box .testo{
    position: absolute;
    top: 0;
    padding: 20px;
    color: #fff;
    text-shadow: 0px 0px 10px #303e48;
}

.ds .box .testo h3{
    font-size: 16px;
    letter-spacing: .5px;
    font-family: 'Oxanium', sans-serif;
}

.ds .box .testo span{
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Oxanium', sans-serif;
    margin-bottom: .5rem;
    display: block;
}

.ds .box .testo span i{
    color: #ff8920;
}

.ds .swiper-button-prev, .ds .swiper-button-next{
    height: 44px;
    width: 44px;
    border-radius: 50%;
    background-color: #ff8920;
    color: #fff;
    border: 2px solid #ff8920;
    transition: .3s;
}

.ds .swiper-button-prev:after, .ds .swiper-button-next:after{
    font-size: 22px;
}

.ds .swiper-button-prev:hover, .ds .swiper-button-next:hover{
    background-color: #f9ba81;
    color: #303e48;
}
/*--------------------------------------------------------------
# Home Page
--------------------------------------------------------------*/
/* Hero Section - Home Page
------------------------------*/
.hero {
    --default-color: #ffffff;
    --default-color-rgb: 255, 255, 255;
    --background-color: #000000;
    --background-color-rgb: 0, 0, 0;
    width: 100%;
    height: 80vh;
    position: relative;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: 1;
}

.hero .swiper-slide:before {
    content: "";
    background: rgba(var(--background-color-rgb), 0.3);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
}

#hero h1 {
    margin: 0;
    font-size: 4.2rem;
    font-weight: 700;
    line-height: 56px;
    color: #fff;
    font-family: 'Oxanium', sans-serif;
    margin-bottom: 1rem;
}

.hero h2 {
    color: var(--contrast-color);
    margin: 0;
    font-size: 44px;
    font-weight: 700;
}

.hero p {
    color: rgba(var(--default-color-rgb), 0.8);
    margin: 5px 0 0 0;
    font-size: 20px;
}

.hero video{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    object-fit: cover;
    height: 100%;
    width: 100%;
}

#hero .btn-get-started {
    font-family: 'Oxanium', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #ff8920;
    border: 2px solid #ff8920;
}

#hero .btn-get-started:hover {
    background: #ffe1c5;
    color: #222222;
}

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

@media (max-width: 768px) {
    #hero h1 {
        font-size: 3rem;
    }
    .hero h2 {
        font-size: 32px;
    }

    .hero p {
        font-size: 18px;
    }
}

/*--------------------------------------------------------------
# Pagina Interna
--------------------------------------------------------------*/

.top-pagina-interna{
    padding-bottom: 60px;
    padding-top: 0;
}

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

.top-pagina-interna .top-page h2{
    color: #fff;
    text-shadow: 0px 0px 10px #303e48;
}

.top-pagina-interna .top-page h2.no-img-principale{
    color: #ff8920;
    text-shadow: none;
}

.top-pagina-interna .top-page h3{
    margin-bottom: 0;
    font-family: var(--font-secondary);
    color: white;
    font-size: 16px;
}

.top-pagina-interna .top-page h3.no-img-principale{
    color: var(--default-color);
}

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

.top-pagina-interna .top-page .patina:before {
    content: "";
    background: #00000054;
    position: absolute;
    inset: 0;
}

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

.pagina-interna{
    padding-top: 0;
    color: #444444;
}

.pagina-interna .media{
}

.pagina-interna .media h4{
    font-weight: 700;
}

.pagina-interna .testo{

}

.pagina-interna .testo img{
    max-width: 100%;
    height: auto;
}

.pagina-interna .testo p{
    text-align: justify;
}

.pagina-interna .evento .info-evento{
    padding: 20px;
    background: #fdfaf0;
    border: 1px solid #ff8920;
    margin-bottom: 1rem;
    font-size: 14px;
}

.pagina-interna .evento h6{
    color: #ff8920;
    font-weight: 700;
}

.pagina-interna .evento p:last-child{
    margin-bottom: 0;
}

.pagina-interna .media h6{
    color: #ff8920;
    font-weight: 700;
    margin-bottom: 0;
}

.pagina-interna .media .gallery-slider{
    height: 100%;
    display: flex;
    align-items: center;
}

.pagina-interna .media .gallery-slider img{
    height: 200px;
    object-fit: contain;
    cursor: pointer;
}

.glightbox-clean .gdesc-inner{
    display: none !important;
}

.pagina-interna .media .swiper-slide{
    display: flex;
    align-items: center;
}

.pagina-interna .media .swiper-button-prev, .pagina-interna .media .swiper-button-next{
    background-color: #ff8920;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    position: relative;
    right: 0;
    border: 1px solid #ff8920;
    transition: .3s;
}

.pagina-interna .media .swiper-button-prev:hover, .pagina-interna .media .swiper-button-next:hover{
    background-color: #fff;
    color: #ff8920;
}

.pagina-interna .media .swiper-button-prev:after, .pagina-interna .media .swiper-button-next:after{
    font-size: 18px;
}

@media (max-width: 992px) {
    .pagina-interna .testo{
        padding: 0 ;
        border-right: 0;
    }
}

.pagina-interna .media .consiglio{
    font-size: 14px;
    font-style: italic;
    text-align: center;
    margin-bottom: 0;
    font-weight: 600;
}

/*--------------------------------------------------------------
# Categorie
--------------------------------------------------------------*/

.categoria-page {
    padding: 150px 0;
}

.categoria-page .box img{
    height: 250px;
    width: 100%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.categoria-page .box .testo{
    padding: 20px;
    border-left: 1px solid #ff8920;
}

.categoria-page .box .testo h4{
    font-weight: 600;
}

.categoria-page .box .testo p{
    margin-bottom: 0;
    font-size: 14px;
}

.categoria-page .box .scopri{
    display: flex;
}

.categoria-page .box .scopri .retta{
    width: 30px;
    border-top: 1px solid #ff8920;
    margin-right: 1rem;
}

.categoria-page .box .scopri a{
    margin-top: -12px;
    font-size: 14px;
    color: inherit;
    text-decoration: underline;
    font-weight: 700;
    transition: .4s;
    color: #ff8920;
}

.categoria-page .box .scopri a:hover{
    text-decoration: none;
}

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

.tag-page {

}

.tag-page h2{

}

.tag-page .box{
    border-radius: 6px;
    border: 1.5px solid #ff8920;
    position: relative;
    overflow: hidden;
    padding-bottom: 100%;
    border-style: dashed;
    box-shadow: 0px 0px 10px 7px #00000020;
}

.tag-page .box:before{
    content: "";
    background: #ff892000;
    position: absolute;
    inset: 0;
    z-index: 1;
}

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

.tag-page .box .testo{
    z-index: 1;
    position: absolute;
    padding: 20px;
    background: #00000029;
    /*background: #ff892029;*/
    transition: .4s;
    width: 100%;
    height: 100%;
    inset: 0;
    text-shadow: 0px 0px 10px #303e48;
}

.tag-page .box .testo:hover{

}

.tag-page .box .testo span{
    display: block;
    font-size: 14px;
    margin-bottom: .5rem;
}

.tag-page .box .testo span.data{
    color: #797979;
}

.tag-page .box .testo span.luogo{
    font-weight: 700;
}

.tag-page .box .testo span.luogo i{
    color: var(--primary-color);
}

.tag-page .box .testo h4{
    font-weight: 600;
    color: #fff;
}

.tag-page .box .testo p{
    margin-bottom: 0;
    font-size: 14px;
    color: #fff;
}

.tag-page .box .testo a{
    margin-top: -12px;
    font-size: 14px;
    color: inherit;
    text-decoration: underline;
    font-weight: 700;
    transition: .4s;
    color: #fff;
}

.tag-page .play-btn {
    width: 48px;
    height: 48px;
    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;
}

.tag-page .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;
}

.tag-page .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;
}

.tag-page .play-btn:hover{
    background: #fff;
}

.tag-page .box-servizi{
    padding: 10px;
    border-radius: 6px;
    border: 1.5px solid #000;
    border-style: dashed;
    box-shadow: 0px 0px 10px 2px #00000020;
}


.tag-page h4.titolo-servizi{
    font-size: 16px;
    font-family: 'Oxanium', sans-serif;
    color: #444444;
    font-weight: 700;
    margin-top: 1rem;
    text-align: center;
}

/*--------------------------------------------------------------
# Contatti Page
--------------------------------------------------------------*/

.contatti-page{
    padding: 120px 0;
}

.contatti-page .form-label-group label{
    font-size: 14px;
    font-weight: 700;
    margin-bottom: .3rem;
    text-transform: uppercase;
}

.contatti-page .form-label-group input, .contatti-page .form-label-group  textarea{
    border-radius: 0;
    padding: 0.5rem 0.75rem;
}

.contatti-page .form-label-group input:focus, .contatti-page .form-label-group  textarea:focus{
    box-shadow: 1px 0px 4px 1px #00000036;
    border-color: var(--bs-border-color);
}

.contatti-page .btn-invia{
    background: var(--primary-color);
    color: #fff;
    padding: 10px 30px;
    transition: 0.4s;
    border: 2px solid var(--primary-color);
    font-family: var(--heading-font);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 0;
    letter-spacing: 1px;
}

.contatti-page .btn-invia:hover{
    background: transparent;
    color: #ff8920;
}

.lingua-mobile{
    display: none;
}

.lingua-mobile img{
    height: 30px;
}

@media (max-width: 992px) {
    .lingua-mobile{
        display: block;
    }
}

#CybotCookiebotDialog{
    font-family: 'Oxanium', sans-serif !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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