/**
* Template Name: Lonely
* Updated: Sep 18 2023 with Bootstrap v5.3.2
* Template URL: https://bootstrapmade.com/free-html-bootstrap-template-lonely/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Variables
--------------------------------------------------------------*/
:root {
    --bs-font-sans-serif: "Hurbinek", system-ui,-apple-system,Roboto,Arial;
    --primary: #f15060;
    --light-gray: #d4d3d4;
    --dark-gray: #D0C4C5;
    --text-gray: #777d7f;
    --black: #000000;
    --white: #ffffff;
    --rgb-gray: 119, 125, 127;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: var(--bs-font-sans-serif);
    color: var(--black);
}

a {
    color: var(--primary);
    text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--bs-font-sans-serif);
}

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

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

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

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    height: 60px;
    background: #fff;
    border-bottom: 2px solid var(--light-gray);
}

#header .logo h1,
#header .logo h2 {
    font-size: 20px;
    margin: 0;
    padding: 6px 0;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 3px;
}

@media (min-width: 768px){
    #header .logo h1,
    #header .logo h2 {
        font-size: 26px;
    }
}

#header .logo h1 a,
#header .logo h1 a:hover,
#header .logo h2 a,
#header .logo h2 a:hover {
    color: black;
    text-decoration: none;
}

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

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

/*--------------------------------------------------------------
# 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 30px;
    font-size: 14px;
    color: black;
    white-space: nowrap;
    transition: 0.3s;
}

.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: var(--primary);
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: 100%;
    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;
    text-transform: none;
}

.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: var(--primary);
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    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: black;
    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(13, 21, 29, 0.6);
    transition: 0.3s;
    z-index: 998;
}

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

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: var(--primary);
}

.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: var(--primary);
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 320px;
    background: url("../Images/background-header.jpg") top center;
    background-size: auto 320px;
    padding: 0 15px;
    background-repeat: no-repeat;
}

#hero h1 {
    margin: 0 0 10px 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #fff;
}

#hero h2 {
    color: #eee;
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 300;
    font-family: var(--bs-font-sans-serif);
}

#hero .btn-get-started {
    font-size: 64px;
    transition: 0.5s;
    color: #fff;
    height: 60px;
}

#hero .btn-get-started:hover {
    padding-top: 10px;
    color: var(--primary);
}

#hero .btn-get-started {
    display: none;
}

@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

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

    #hero h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}
#hero .homeCoverTitle {
    position: absolute;
    width: 50%;
    top: 172px;
    right: 10%;
}
#hero .homeCoverTitle h1 {
    font-size: 0.7em;
    line-height: 0.8;
}
#hero .homeCoverTitle h1:nth-child(1) {
    color: var(--primary);
}
#hero .homeCoverTitle h1:nth-child(2) {
    color: #cccccc;
}
#hero .homeCoverTitle h1:nth-child(3) {
    color: #111111;
}
@media (min-width: 576px) {
    #hero {
        background-size: 360px;
        height: 94vh;
    }
    #hero .homeCoverTitle {
        width: 40%;
        top: 166px;
        right: 18%;
    }
    #hero .homeCoverTitle h1 {
        font-size: 1em;
    }
}
@media (min-width: 768px) {
    #hero {
        background-size: 760px;
        height: 700px;
    }
    #hero .homeCoverTitle {
        width: 50%;
        top: 370px;
        right: 11%;
    }
    #hero .homeCoverTitle h1 {
        font-size: 1.6em;
    }
}
@media (min-width: 768px) and (orientation: landscape) {
    #hero {
        background-size: 360px;
        height: 320px;
    }
    #hero .homeCoverTitle {
        width: 50%;
        top: 46%;
        right: 5%;
    }
    #hero .homeCoverTitle h1 {
        font-size: 0.8em;
    }
}
@media (min-width: 992px) {
    #hero {
        background-size: 680px;
        height: 92vh;
    }
    #hero .homeCoverTitle {
        width: 50%;
        top: 330px;
        right: 8%;
    }
    #hero .homeCoverTitle h1 {
        font-size: 1.6em;
    }
    #hero .btn-get-started {
        display: inline-block;
    }
}
@media (min-width: 1200px) {
    #hero {
        background-size: 880px;
        height: 94vh;
    }
    #hero .homeCoverTitle {
        width: 50%;
        top: 53%;
        right: 8%;
    }
    #hero .homeCoverTitle h1 {
        font-size: 1.8em;
        line-height: 1;
    }
}
@media (min-width: 1400px) {
    #hero {
        background-size: 900px;
    }
    #hero .homeCoverTitle {
        width: 50%;
        top: 51%;
        right: 6%;
    }
    #hero .homeCoverTitle h1 {
        font-size: 2.5em;
    }
}
#heroSlides {
    width: 100%;
    height: 250px;
}
#heroSlides .homeCoverTitle {
    width: 100%;
}
@media (min-width: 576px) {
    #heroSlides {
        height: 47vh;
    }
}
@media (min-width: 768px) {
    #heroSlides {
        height: 540px;
    }
    #heroSlides .homeCoverTitle {
        top: 0;
        right: 0;
        width: 100%;
        height: calc(100% - 51px);
        position: absolute;
        overflow: hidden;
    }
}
@media (min-width: 768px) and (orientation: landscape) {
    #heroSlides {
        height: 320px;
    }
}
@media (min-width: 992px) {
    #heroSlides {
        height: 92vh;
    }
    #heroSlides .homeCoverTitle {
        height: calc(100% - 51px);
    }
}
@media (min-width: 1200px) {
    #heroSlides {
        height: 94vh;
    }
    #heroSlides .homeCoverTitle {
        height: calc(100% - 48px);
    }
}
@media (min-width: 1400px) {
    #heroSlides .homeCoverTitle {
        height: calc(100% - 60px);
    }
}
#heroSlides .carousel-item-innerText {
    width: 80%;
    position: absolute;
    top: 10%;
    bottom: 20%;
    right: 10%;
    left: 10%;
    padding: 20px;
    color: #fafafa;
    overflow: hidden;
    text-shadow: 1px 1px 0 #000000, -1px 1px 0 #000000, 1px -1px 0 #000000, -1px -1px 0 #000000;
}
@media (min-width: 768px) {
    #heroSlides .carousel-item-innerText {
        width: 60%;
        top: 10%;
        bottom: 47%;
        right: 20%;
        left: 20%;
    }
}
@media (min-width: 992px) {
    #heroSlides .carousel-item-innerText {
        width: 50%;
        right: 25%;
        left: 25%;
        padding: 40px;
        bottom: 20%;
        top: 20%;
    }
}
#heroSlides .carousel-item-innerText h2,
#heroSlides .carousel-item-innerText h3,
#heroSlides .carousel-item-innerText h4 {
    text-align: center;
}
#heroSlides .carousel-item-innerText p {
    text-align: justify;
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
}

.section-bg {
    background: linear-gradient(180deg, #f2f6f9 0%, #fff 100%);
}

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

.section-title h2,
main header h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
    padding-bottom: 15px;
    position: relative;
    color: black;
}

.section-title h2::after,
main header h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--primary);
    bottom: 0;
    left: 0;
}

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

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 15px 0;
    background-color: var(--light-gray);
    color: var(--black);
    min-height: 40px;
}

.breadcrumbs h1,
.breadcrumbs h2 {
    font-size: 24px;
    font-weight: 300;
}

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

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content {
    padding: 30px 0;
}

.about .content h3 {
    font-weight: 500;
    font-size: 34px;
    color: black;
}

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

.about .content .count-box {
    padding: 20px 0;
    width: 100%;
}

.about .content .count-box i {
    display: block;
    font-size: 36px;
    color: #eeafca;
    float: left;
    line-height: 0;
}

.about .content .count-box span {
    font-size: 36px;
    line-height: 20px;
    display: block;
    font-weight: 700;
    color: black;
    margin-left: 50px;
    font-family: var(--bs-font-sans-serif);
}

.about .content .count-box p {
    padding: 15px 0 0 0;
    margin: 0 0 0 50px;
    font-family: var(--bs-font-sans-serif);
    font-size: 14px;
    color: #437099;
}

.about .content .count-box a {
    font-weight: 600;
    display: block;
    margin-top: 20px;
    color: #437099;
    font-size: 15px;
    font-family: var(--bs-font-sans-serif);
    transition: ease-in-out 0.3s;
}

.about .content .count-box a:hover {
    color: #6b96be;
}

.about .image {
    background: url("../img/me.jpg") center center no-repeat;
    background-size: cover;
    min-height: 400px;
}

@media (max-width: 991px) {
    .about .image {
        text-align: center;
    }

    .about .image img {
        max-width: 80%;
    }
}

@media (max-width: 667px) {
    .about .image img {
        max-width: 100%;
    }
}


/*--------------------------------------------------------------
# Partner
--------------------------------------------------------------*/
#partner {
    background-color: var(--light-gray);
}


/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .progress {
    height: 50px;
    display: block;
    background: none;
}

.skills .progress .skill {
    padding: 10px 0;
    margin: 0 0 6px 0;
    text-transform: uppercase;
    display: block;
    font-weight: 600;
    font-family: var(--bs-font-sans-serif);
    color: black;
}

.skills .progress .skill .val {
    float: right;
    font-style: normal;
}

.skills .progress-bar-wrap {
    background: #fbeaf1;
}

.skills .progress-bar {
    width: 1px;
    height: 10px;
    transition: 0.9s;
    background-color: #dd5a92;
}

/*--------------------------------------------------------------
# Resume
--------------------------------------------------------------*/
.resume .resume-title {
    font-size: 26px;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 20px;
    color: var(--text-gray);
    font-family: var(--bs-font-sans-serif);
}

.resume .resume-item {
    padding: 0 0 20px 20px;
    margin-top: -2px;
    border-left: 2px solid var(--primary);
    position: relative;
}

.resume .resume-item h4 {
    line-height: 18px;
    font-size: 18px;
    font-weight: 600;
    color: black;
    margin-bottom: 10px;
}

.resume .resume-item h5 {
    font-size: 16px;
    background: #e4ebf3;
    padding: 5px 15px;
    display: inline-block;
    font-weight: 400;
    margin-bottom: 10px;
    font-family: var(--bs-font-sans-serif);
}

.resume .resume-item ul {
    padding-left: 20px;
}

.resume .resume-item ul li {
    padding-bottom: 10px;
}

.resume .resume-item:last-child {
    padding-bottom: 0;
}

.resume .resume-item::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50px;
    left: -9px;
    top: 0;
    background: #fff;
    border: 2px solid var(--primary);
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
    padding: 20px 15px;
    position: relative;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.2);
    transition: all 0.3s ease-in-out;
    text-align: center;
    z-index: 1;
}

.services .icon-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    transition: ease-in-out 0.3s;
    z-index: -1;
}

.services .icon-box:hover::before {
    background: var(--primary);
    height: 100%;
    border-radius: 0px;
}

.services .icon {
    margin: 0 auto 30px auto;
    padding-top: 10px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    background: var(--primary);
    transition: all 0.3s ease-in-out;
}

.services .icon i {
    font-size: 36px;
    line-height: 1;
    color: #fff;
}

.services .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

.services .title a {
    color: #111;
}

.services .description {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 0;
}

.services .icon-box:hover .title a,
.services .icon-box:hover .description {
    color: #fff;
}

.services .icon-box:hover .icon {
    background: #fff;
}

.services .icon-box:hover .icon i {
    color: var(--primary);
}

@media (max-width: 768px) {
    .services .icon-box::before {
        bottom: 60%;
    }
}

/*--------------------------------------------------------------
# Events
--------------------------------------------------------------*/
.event .event-item {
    margin-bottom: 30px;
}

.event #event-flters {
    padding: 0;
    margin: 0 auto 35px auto;
    list-style: none;
    text-align: center;
    background: #fff;
    padding: 2px 15px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.08);
}

.event #event-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: var(--text-gray);
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
}

.event #event-flters li:hover,
.event #event-flters li.filter-active {
    color: var(--primary);
}

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

.event .event-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

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

.event .event-wrap .event-info {
    opacity: 0;
    position: absolute;
    top: 10%;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 3;
    transition: all ease-in-out 0.3s;
}

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

.event .event-wrap .event-info p {
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
}

.event .event-wrap .event-links {
    opacity: 0;
    left: 0;
    right: 0;
    bottom: 10%;
    text-align: center;
    z-index: 3;
    position: absolute;
    transition: all ease-in-out 0.3s;
}

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

.event .event-wrap .event-links a:hover {
    color: #e684ae;
}

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

.event .event-wrap:hover .event-info {
    opacity: 1;
    top: calc(50% - 48px);
}

.event .event-wrap:hover .event-links {
    opacity: 1;
    bottom: calc(50% - 50px);
}

.event-item {
    border: 1px solid #0000003d;
    position: relative;
}
.event-item .data-ora {
    display: inline-block;
    position: relative;
    left: -8px;
    top: -12px;
    color: var(--black);
    padding: 5px;
    font-weight: 601;
    background-color: var(--white);
    border-bottom: 0px solid var(--black);
    border-right: 1px solid var(--black);
}
.event-item .luogo {
    display: block;
    color: #000;
    padding: 5px;
    text-align: center;
    font-weight: 500;
    /*! font-style: italic; */
}
.event-item .titolo {
    padding: 5px;
    margin-bottom: 0;
    text-align: center;
}
.event-item .titolo a {
    color: #D0C4C5;
    line-height: 1;
}
.event-item .titolo a:hover,
.event-item .titolo a:active,
.event-item .titolo a:focus {
    color: var(--primary);
}
.event-item .teaser {
    border-top: 0px solid var(--black);
    background-color: var(--light-gray);
    color: var(--black);
    padding: 15px 10px;
}
.event-item .teaser p {
    margin-bottom: 0;
    font-size: 0.9rem;
}
.event-item .outer {
    position: absolute;
    width: 100%;
}
.event-item .categories {
    margin-top: -13px;
    margin-left: -8px;
}
.event-item .category {
    display: inline-block;
    background-color: var(--white);
    padding: 3px 10px;
    /*! border-top: 1px solid var(--black); */
    border-right: 1px solid var(--light-gray);
    font-size: 0.8rem;
    font-weight: 601;
}
.event-item .protagonista {
    display: block;
    float: left;
    background-color: var(--white);
    padding: 2px;
    border-top: 0px solid var(--black);
    border-left: 1px solid var(--light-gray);
    margin-right: 0;
    margin-left: 0;
    margin-top: 0;
}
@media (min-width: 768px) {
    .event-item .protagonista {
        float: right;
        margin-right: -8px;
        margin-left: 3px;
        margin-top: -13px;
    }
}
.event-item .protagonista img {
    display: inline-block;
    vertical-align: top;
}
.event-item .protagonista h3 {
    display: inline-block;
    vertical-align: bottom;
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
    line-height: 1.2;
    width: calc(100% - 54px);
    margin-left: 4px;
}

/*--------------------------------------------------------------
# Event Details
--------------------------------------------------------------*/
.event-details {
    padding-top: 40px;
}

.event-details iframe {
    max-width: 100%;
}

.event-details .event-gallery .event-item {
    display: none;
}

.event-details .event-details-slider img {
    width: 100%;
}

.event-details .event-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.event-details .event-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid var(--primary);
}

.event-details .event-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary);
}

.event-details .event-info {
    padding: 30px;
    border: 1px solid var(--light-gray);
}

.event-details .event-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

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

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

.event-details .event-description {
    padding-top: 30px;
}

.event-details .event-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

.event-details .protagonista.row {
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}

.event-details .protagonista.row:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# news pages
--------------------------------------------------------------*/
.pagination {
    align-items: center;
    justify-content: center;
}
.page-item:not(:first-child) .page-link {
    margin-left: 0;
}
.page-link {
    color: var(--text-gray);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    border-left: 2px solid var(--black);
    border-right: 0;
}
.top .page-link {
    border-top: 0;
    border-bottom: 2px solid var(--black);
}
.bottom .page-link {
    border-top: 2px solid var(--black);
    border-bottom: 0;
}
.page-item.active .page-link,
.page-link:hover {
    background-color: var(--white);
    border-color: var(--black);
    color: var(--primary);
}
.page-link:focus {
    color: var(--primary);
    box-shadow: 0 0 0 .25rem rgba(var(--rgb-gray),.25);
    background-color: rgba(var(--rgb-gray),.15);
}
.page-item:first-child .page-link {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: 0;
}
.page-item:last-child .page-link {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

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

.category #category-filters {
    padding: 0;
    margin: 0 auto 35px auto;
    list-style: none;
    text-align: center;
    background: #fff;
    padding: 0 15px;
    border-bottom: 2px solid var(--black);
}

.category #category-filters li {
    cursor: pointer;
    display: inline-block;
    padding: 10px 15px 8px 15px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: var(--text-gray);
    transition: all 0.3s ease-in-out;
    border-left: 2px solid var(--black);
}

.category #category-filters li:first-child {
    border-left: none;
}

.category #category-filters li:hover,
.category #category-filters li.filter-active {
    color: #f15060;
}

.category #category-filters li:last-child {
    margin-right: 0;
}

.category .category-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

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

.category .category-wrap .category-info {
    opacity: 0;
    position: absolute;
    top: 10%;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 3;
    transition: all ease-in-out 0.3s;
}

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

.category .category-wrap .category-info p {
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
}

.category .category-wrap .category-links {
    opacity: 0;
    left: 0;
    right: 0;
    bottom: 10%;
    text-align: center;
    z-index: 3;
    position: absolute;
    transition: all ease-in-out 0.3s;
}

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

.category .category-wrap .category-links a:hover {
    color: #e684ae;
}

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

.category .category-wrap:hover .category-info {
    opacity: 1;
    top: calc(50% - 48px);
}

.category .category-wrap:hover .category-links {
    opacity: 1;
    bottom: calc(50% - 50px);
}

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

.category-details .category-details-slider img {
    width: 100%;
}

.category-details .category-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.category-details .category-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #f15060;
}

.category-details .category-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #f15060;
}

.category-details .category-info {
    padding: 30px;
    box-shadow: 0px 0 30px rgba(44, 73, 100, 0.08);
}

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

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

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

.category-details .category-description {
    padding-top: 30px;
}

.category-details .category-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden;
}

.testimonials .testimonial-item {
    box-sizing: content-box;
    min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    margin: -40px 0 0 40px;
    position: relative;
    z-index: 2;
    border: 6px solid #fff;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 45px;
    color: black;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #6b96be;
    margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: #f7d9e6;
    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 0 15px;
    padding: 20px 20px 60px 20px;
    background: #fff;
    position: relative;
    position: relative;
    z-index: 1;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.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 var(--primary);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary);
}

@media (max-width: 767px) {
    .testimonials {
        margin: 30px 10px;
    }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .contact-about h3 {
    font-size: 36px;
    margin: 0 0 10px 0;
    padding: 0;
    line-height: 1;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
}

.contact .contact-about p {
    font-size: 14px;
    line-height: 24px;
    font-family: var(--bs-font-sans-serif);
    color: #3c6387;
}

.contact .social-links {
    padding-bottom: 20px;
}

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

.contact .social-links a:hover {
    background: var(--primary);
    color: #fff;
}

.contact .info {
    color: var(--text-gray);
}

.contact .info i {
    font-size: 32px;
    color: var(--primary);
    line-height: 0;
    margin-right: 15px;
}

.contact .info p {
    font-size: 14px;
    margin: 0;
}

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

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

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

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

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

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #fff;
    padding: 24px 0;
    font-size: 14px;
    border-top: 2px solid var(--dark-gray);
}

#footer .credits {
    padding-top: 8px;
    text-align: center;
    font-size: 13px;
}

/*--------------------------------------------------------------
# Custom CType
--------------------------------------------------------------*/
.accordion-button:not(.collapsed) {
    color: var(--text-gray);
    background-color: transparent;
    box-shadow: unset;
}
.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23777d7f'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-item {
    border: none;
    border-bottom: 1px solid var(--light-gray);
}

/* AGGIUNTE CUSTOM */
.event .card {
    border: none;
    transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
    overflow: hidden;
    border-radius: 0;
    min-height: 450px;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
    .event .card {
        min-height: 350px;
    }
}
@media (max-width: 420px) {
    .event .card {
        min-height: 300px;
    }
}
.event .card.card-evento-has-bg {
    transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
    background-size: 120%;
    background-repeat: no-repeat;
    background-position: center center;
}
.event .card.card-has-bg:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: inherit;
    -webkit-filter: grayscale(1);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
}
.event .card.card-has-bg {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.event .card.card-has-bg:hover {
    transform: scale(0.98);
    box-shadow: 0 0 5px -2px rgba(0, 0, 0, 0.3);
    transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
}
.event .card.card-has-bg:hover .card-img-overlay {
    transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
    background: #eeeeee;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.75) 0%, #fafafa 100%);
}
.event .card .card-footer {
    background: none;
    border-top: none;
}
.event .card .card-footer .media img {
    border: solid 3px rgba(255, 255, 255, 0.3);
}
.event .card .card-title {
    font-weight: 800;
}
.event .card .card.-meta {
    color: rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 2px;
}
.event .card .card-body {
    transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
}
.event .card:hover {
    cursor: pointer;
    transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
}
.event .card:hover .card-body {
    margin-top: 30px;
    transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
}
.event .card .card-img-overlay {
    transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
    background: #ffba21;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.5) 0%, #fafafa 100%);
}
.event .card .media {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
}
.event .card .media .media-body {
    -ms-flex: 1;
    flex: 1;
}