@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* Colors */
:root {
    --main: gold;
    --secondary: #000;
    --accent: red;
}

/* Fonts */
:root {
    --default: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
}
html{scroll-behavior: smooth;}
html,
body {
    margin: 0;
    padding: 0;
    font-family: var(--default);
}

h1 {
    font-size: 70px;
    line-height: 1.1;
    margin: 15px 0px;
    font-weight: 900;
}

h2 {
    font-size: 60px;
    margin: 10px 0px;
    font-weight: 900;
    letter-spacing: -3px;
}

p {
    font-size: 16px;
    line-height: 2;
}

a {
    text-decoration: none;
}

strong{font-weight: 800;}

.fixedElement {
    position:fixed;
    top:150;
    z-index:100;
}

.title {
    color: white;
    font-weight: 900;
    letter-spacing: -3px;
}

.sub__light{
    font-size: 25px;
    margin: 10px 0px;
    font-weight: bold;
    color: #b6b8dc;
}

.subtitle {
    font-size: 32px;
    margin: 10px 0px;
    font-weight: 900;
    color: #b6b8dc;
}

.mobile-only{display: none;}
/*---------------------------------
HEADER
---------------------------------*/
#header {
    width: 100%;
    background-color: #000;
    position: sticky;
    top: 0;
    z-index: 9999;
    border-bottom: 1px solid white;
}

header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 80px;
    padding: 0px 100px;
    ;
}

.header__logo {
    width: 150px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__logo img {
    width: 100%;
    height: auto;
    display: block;
}

.header__menu {}

.header__menu__container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.header__cta {
    display: block;
    text-align: center;
    padding: 10px 40px;
    color: #000;
    background-color: #fff;
}

.header__hamburger {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 0px 0px;
    cursor: pointer;
    display: none;
}

.header__hamburger span {
    display: block;
    width: 33px;
    height: 2px;
    background-color: #fff;
}

.header__hamburger span:first-child {
    display: block;
    width: 40px;
    height: 2px;
    background-color: #fff;
    margin-bottom: 10px;
}

.header__hamburger span:last-child {
    display: block;
    width: 26px;
    height: 2px;
    background-color: #fff;
    margin-top: 10px;
}

.megamenu {
    position: absolute;
    visibility: hidden;
    z-index: -1;
}

/*---------------------------------
HERO
---------------------------------*/
#hero {
    background-image: url(img/castello_bg.jpeg);
    background-color: #000;
    height: calc(100vh - 80px);
    background-size: cover;
}

.hero {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 90%);
    height: 100%;
}

.hero__container {
    display: flex;
    flex-direction: row;
    height: 100%;
}

.hero__left {
    width: 55%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0px 50px 0px 100px;
}

.hero__title {
    margin: 0px 0px;
}

.hero__left .subtitle {
    color: white;
}

.hero__left strong{color: #fff;;}

.hero__text {
    color: #ccc;
}

.hero__cta__container {
    margin: 40px 0px;
}

.hero__cta__light {
    display: inline;
    padding: 15px 40px;
    background-color: #fff;
    color: #000;
    border: 2px solid #fff;
}

.hero__cta__dark {
    display: inline;
    padding: 15px 40px;
    background-color: #000;
    color: #fff;
    border: 2px solid #fff;
    margin-left: 20px;
}

.hero__right {
    width: 45%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 100px;
}

.hero__video {
    width: 100%;
    height: auto;
    box-shadow: 1px 1px 15px 2px #b6b8dc00;
    border:3px solid #b6b8dc;
}

.hero__next {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero__next a{color: inherit;}

.hero__next__text {
    color: #bbb;
    margin-bottom: 0px;
}

.hero__next__icon {
    color: #bbb;
}

/*---------------------------------
EVDAY
---------------------------------*/
#evento {}

.evday {
    display: flex;
    flex-direction: row;
    padding: 100px 100px 100px;
}

.evday__left {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.evday__left img {
    width: 100%;
    height: auto;
    display: block;
}

.evday__right {
    width: 50%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.evday__right h2{font-size: 50px;letter-spacing: -2px;}

.evday__stats {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.evday__stats__list {
    display: flex;
    margin-left: 0px;
    padding-left: 0px;
    width: 100%;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
}

.evday__stats__list li {
    font-size: 16px;
    display: inline-block;
    list-style-type: none;
    text-align: left;
    padding: 0px 30px;
}

.evday__stats__list li span {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.5;
}

/*---------------------------------
GALLERY
---------------------------------*/
.gallery {
    padding: 0px 50px;
    margin: 0px 0px 0px;
    border-radius: 5px;
}

.bc .swiper-wrapper {
    padding: 20px 0px;
}

.swiper-slide img {
    width: 100%;
}



/*---------------------------------
CASTLE
---------------------------------*/
#location {
}

.castle {
    display: flex;
    flex-direction: row;
    padding: 100px 100px 100px;
    gap: 20px;
}

.castle__right {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.castle__right img {
    width: 100%;
    height: auto;
    display: block;
}

.castle__left {
    width: 50%;
    padding: 50px 50px 50px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/*---------------------------------
TIMELINE
---------------------------------*/
#programma{padding: 100px 100px 120px; background-color: #000;}
.tl{display: flex;flex-direction: row;gap:150px;}
.tl__left{width: 40%;}
.tl__left h2{color:#fff;}
.tl__left p{color:#bbb;}
.tl__cta{margin-top: 50px;}
.tl__cta a{padding: 15px 40px;background-color: #fff;color:#000;}
.tl__right{width:60%;display: flex;flex-direction: column;gap:0px;}
.tl__header{display: flex;flex-direction: row;align-items: center;justify-content:flex-start;gap:0px;border-bottom: 2px solid #888;}
.tl__header__text{width:50%; color: #fff; font-size: 28px; font-weight: bold; margin: 0; padding: 20px 0px;cursor: pointer;}
.tl__active{box-shadow: 0px 2px 0px 0px #fff;}

#tab__mattina{display: flex;}
#tab_pomeriggio{display: none;}

.tl__tab{padding-top: 50px; display: flex;flex-direction: column;gap:50px;}

.tl__card{display: flex; flex-direction: row; padding: 30px; border-radius: 6px;background-color: rgb(24, 24, 29);gap: 30px;}
.tl__card__img{width: 200px; height: auto;}
.tl__card__img img{display: block; width: 200px; height: 100%; object-fit: cover;border: 1px solid #b6b8dc;}
.tl__card__text{display: flex; flex-direction: column;justify-content: center;}
.tl__card__text h3{color:#fff;font-size: 24px;margin: 10px 0px;}
.tl__card__text h4{color:#bbb;font-weight: 900;margin: 10px 0px;}
.tl__card__text p{color:#bbb; font-size: 14px;}


/*---------------------------------
BUSINESS
---------------------------------*/

.business{padding: 100px; background-color: #000; color: #fff;}
.business__container{display: flex;}
.business__left{width: 50%;padding: 0px 50px 0px 0px;}
.business__left a{display: inline-block;padding: 15px 40px;background-color: #fff;color: #000;border: 2px solid #fff;margin-top: 25px;}
.business__right{width: 50%;}
.business__right__container{display: grid; grid-template-columns: 1fr 1fr;column-gap: 30px; row-gap: 30px;padding: 50px;}
.business__card{padding: 30px 20px; border: 1px solid white; border-radius: 3px;}
.business__card p{text-align: center;}
.business__card img{text-align: center;display: block; width: 100%;}


/*---------------------------------
FAQ
---------------------------------*/

#domande{padding: 100px 100px 100px; background-color: #b6b8dc}
#domande h2{width: 70%; margin-bottom: 50px; margin-top: 0;color:#fff;}
.faq{display: flex;flex-direction: column; align-items: center;}
.faq__container{width: 70%;}

details div {
	border-left: 1px solid #000;
	border-right: 1px solid #000;
	border-bottom: 1px solid #000;
	padding: 1.5em;
    line-height: 1.8;
}

details div > * + * {
	margin-top: 1.5em;
}

details + details {
	margin-top: .5rem;
}

summary {
	list-style: none;
}

summary::-webkit-details-marker {
	display: none;
}

summary {
	border: 1px solid #000;
	padding: .75em 1em;
	cursor: pointer;
	position: relative;
	padding-left: calc(1.75rem + .75rem + .75rem);
}

summary:before {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: .75rem;
	content: "↓";
	width: 1.75rem;
	height: 1.75rem;
	background-color: #000;
	color: #FFF;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
}

details[open] summary {
	background-color: #eee;
}

details[open] summary:before {
	content: "↑";
}

summary:hover {
	background-color: #eee;
}

#domande a {
	color: inherit;
	font-weight: 600;
	text-decoration: none;
	box-shadow: 0 1px 0 0;
}

#domande  a:hover {
	box-shadow: 0 3px 0 0;
}

code {
	font-family: monospace;
	font-weight: 600;
}



/*---------------------------------
FORM
---------------------------------*/
/* Style the form */
#regForm {
    background-color: #ffffff;
    margin: 0px auto;
    padding: 100px 0px;
    width: 60%;
    min-width: 300px;
}

form p{
    margin: 20px 0px;
}
.tab__NO__link a{padding-left: 55px;color: black;text-decoration: underline;font-size: 12px;}

/* Style the input fields */
input {
    padding: 10px;
    width: 100%;
    font-size: 14px;
    border: 1px solid #aaaaaa;
}

input[type=radio]{
    width: auto;
    padding: 10px;
    margin: 10px 20px;
}

/* Mark input boxes that gets an error on validation: */
input.invalid {
    background-color: #ffdddd;
    border-color: #ff9393;
}

/* Hide all steps by default: */
.tab {
    display: none;
    margin-top: 30px;
}

/* Make circles that indicate the steps of the form: */
.step {
    height: 10px;
    width: 10px;
    margin: 0 2px;
    background-color: #ccc;
    border: none;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.5;
}

/* Mark the active step: */
.step.active {
    opacity: 1;
}

/* Mark the steps that are finished and valid: */
.step.finish {
    background-color: #0e974e;
}

.btn__container{margin-top: 20px;}

#prevBtn{outline: none; padding: 15px 30px; border: none;cursor:pointer;background-color: #000;color:#fff;font-size: 14px;}
#nextBtn{outline: none; padding: 15px 30px; border: none;cursor:pointer;background-color: #000;color:#fff;font-size:14px;}
#sendBtn{outline: none; padding: 15px 30px; border: none;cursor:pointer;background-color: #000;color:#fff;font-size:14px;}

/*---------------------------------
FORM 2
---------------------------------*/
#form{padding: 100px 100px;}
.form__container{margin: 0 auto;display: flex;gap:100px;}
#form form{width: 40%; padding: 0px 0px;}
.form__text{width: 60%;}
#form input[type="checkbox"]{width: auto;}
#form input[type="submit"]{width: 150px;outline: none;background-color: #000;border:none;color:#fff;padding: 15px;font-weight: bold;text-transform: uppercase;cursor:pointer;}
#form span{color: var(--accent);}
/*---------------------------------
LOGHI
---------------------------------*/
.bc {
    padding: 0px 50px;
    margin: 0px 0px;
    background: #f5f5f5;
    border-radius: 5px;
    box-shadow: 2px 2px 8px 2px #00000020;
}

.bc .swiper-wrapper {
    padding: 20px 0px;
}

.swiper-slide img {
    width: 100%;
}

/*---------------------------------
FOOTER
---------------------------------*/
#footer {
    background-color: #000;
}

footer a{text-decoration: none; color: inherit;}

footer {
    padding: 100px 100px 0px;
    color: #fff;
}

.footer__top {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.footer__top__left {
    width: 28%;
}

.footer__top__left img {
    width: 150px;
    height: auto;
}

.footer__top__left p {
    font-size: 12px;
    margin: 7px 0px;
    color: #bbb;
    line-height: 1.8;
}

.footer__top__right {
    width: 72%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.footer__top__social {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 30px;
    align-items: center;
}

.footer__top__social__item {
    display: inline-block;
}

.footer__top__social__item a i {
    font-size: 20px;
    color: #fff;
}

.footer__bot {
    display: flex;
    flex-direction: row;
    margin-top: 40px;
    justify-content: space-between;
    padding-bottom: 50px;
    border-bottom: 1px solid #555;
}

.footer__bot__col {
    color: #bbb;
}

.footer__bot__col h3 {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

.footer__bot__col ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer__bot__col ul li {
    font-size: 12px;
    margin: 20px 0px;
}

.footer__pp {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    color: #bbb;
}

.footer__pp__left {
    padding: 20px 0px;
}

.footer__pp__left ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 15px;
}

.footer__pp__left ul li {
    font-size: 12px;
}

.footer__pp__right {
    padding: 20px 0px;
}

.footer__pp__right span {
    display: inline-block;
    font-size: 12px;
}


.wa__container{position: fixed; bottom:30px; right: 30px; width: 200px; height: 50px;z-index: 999;display: flex;flex-direction: row; gap: 10px;}
.wa__container div{display: flex;flex-direction: column; justify-content: flex-end;}
.wa__container img{width: 50px; height: 50px;text-align: right;}
.wa__text{background-color: #55CB60; padding: 4px 10px; border-radius: 3px;font-size: 12px;box-shadow: 1px 1px 8px 1px #00000030;}
.wa__text a{color:#fff;}

.contatore__container{position: fixed; bottom:30px;left:30px;background: #B5B8DC;z-index:999;display: flex;align-items: center;justify-content: center;padding: 0px 0px;gap:10px;border-radius: 3px;border: 1px solid black;transition: all 0.2s;box-shadow: 1px 1px 3px 1px #00000020;overflow: hidden;}
.contatore__container img{width: 200px; display: block;}
.contatore__container p{display:inline-block;margin: 0;font-family: 'JackportCollege';line-height: 1;color:rgb(0, 0, 0);}
.numero__posti{font-family: 'JackportCollege';font-size: 40px;font-weight: 200;}

.display-mobile-none{display:inline;margin-top:50px;text-align: center;}



@media only screen and (max-width: 1300px) {
    /*---------------------------------
    HERO
    ---------------------------------*/

    .hero__title {
        font-size: 45px;
        letter-spacing: -2px;
        margin: 0px 0px;
    }
    .sub__light{
        font-size: 20px;
    }

    .hero__next{
        bottom:25px;
    }

   
}


@media only screen and (max-width: 768px) {


    h1{
        font-size: 50px;
    }

    h2{font-size: 38px;letter-spacing: -2px;}

    .subtitle{line-height: 1.2; font-size: 25px;}

    .sub__light{line-height: 1.5; font-size: 25px;}

    /*---------------------------------
    HEADER
    ---------------------------------*/
    #header {
        height: 80px;
    }

    header {
        padding: 0px 10px;
        ;
    }

    .header__logo {
        width: 120px;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header__logo img {
        width: 100%;
        height: auto;
        display: block;
    }

    .header__menu {}

    .header__menu__container {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
    }

    .header__cta {
        display: block;
        text-align: center;
        padding: 10px 40px;
        color: #000;
        background-color: #fff;
    }

    .header__hamburger {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        padding: 0px 0px;
        cursor: pointer;
        display: none;
    }

    .header__hamburger span {
        display: block;
        width: 33px;
        height: 2px;
        background-color: #fff;
    }

    .header__hamburger span:first-child {
        display: block;
        width: 40px;
        height: 2px;
        background-color: #fff;
        margin-bottom: 10px;
    }

    .header__hamburger span:last-child {
        display: block;
        width: 26px;
        height: 2px;
        background-color: #fff;
        margin-top: 10px;
    }

    .megamenu {
        position: absolute;
        visibility: hidden;
        z-index: -1;
    }


    /*---------------------------------
    HERO
    ---------------------------------*/
    #hero {
        background-color: #000;
        height: auto;
        background-size: cover;
    }

    .hero {
        padding: 20px 0px 30px;
        min-height: 100vh;

    }

    .hero__container {
        flex-direction: column;
    }

    .hero__left {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0px 20px 0px 20px;
    }

    .hero__title {
        margin: 0px 0px;
    }

    .hero__left .subtitle {
        color: white;
    }

    .hero__text {
        color: #bbb;
    }

    .hero__cta__container {
        margin: 40px 0px;
    }

    .hero__left .hero__cta__container{display: none;}

    .hero__cta__light {
        display: block;
        padding: 15px 40px;
        background-color: #fff;
        color: #000;
        border: 2px solid #fff;
        text-align: center;
    }

    .hero__cta__dark {
        display: block;
        padding: 15px 40px;
        background-color: #000;
        color: #fff;
        border: 2px solid #fff;
        margin-left: 0px;
        margin-top: 20px;
        text-align: center;
    }

    .hero__right {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap:0px;
        padding: 20px 20px;
    }

    .hero__video {
        width: 100%;
        height: auto;
    }

    .hero__next {
        display: none;
    }

    .mobile-only{display: block;width: 100%;}



    /*---------------------------------
    EVDAY
    ---------------------------------*/
    #evento {}

    .evday {
        flex-direction: column-reverse;
        padding: 30px 10px 30px;
    }

    .evday__left {
        width: 100%;
    }

    .evday__right {
        width: 100%;
        padding: 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .evday__stats {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .evday__stats__list {
        display: flex;
        margin-left: 0px;
        padding-left: 0px;
        width: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .evday__stats__list li {
        font-size: 16px;
        display: inline-block;
        list-style-type: none;
        text-align: center;
        padding: 10px 15px;
    }

    .evday__stats__list li span {
        font-size: 32px;
        font-weight: 900;
        line-height: 1.5;
    }

    /*---------------------------------
    GALLERY
    ---------------------------------*/
    .gallery {
        display: none;
    }




    /*---------------------------------
    CASTLE
    ---------------------------------*/
    #location {
    }

    .castle {
        flex-direction: column;
        padding: 50px 10px 50px;
        gap: 0px;
    }

    .castle__right {
        width: 100%;
        padding: 10px;
    }

    .castle__right img {
        width: 100%;
        height: auto;
        display: block;
    }

    .castle__left {
        width: 100%;
        padding: 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }


    /*---------------------------------
    TIMELINE
    ---------------------------------*/
    #programma{padding: 50px 20px 50px; background-color: #000;}
    .tl{display: flex;flex-direction: column;gap:50px;}
    .tl__left{width: 100%;}
    .tl__left h2{color:#fff;}
    .tl__left p{color:#bbb;}
    .tl__cta{margin-top: 50px;}
    .tl__cta a{padding: 15px 10px;background-color: #fff;color:#000;}
    .tl__right{width:100%;display: flex;flex-direction: column;gap:0px; padding: 0px 10px;}
    .tl__header{display: flex;flex-direction: row;align-items: center;justify-content:flex-start;gap:0px;border-bottom: 2px solid #888;}
    .tl__header__text{width:50%; color: #fff; font-size: 22px; font-weight: bold; margin: 0; padding: 20px 0px;cursor: pointer;}
    .tl__active{box-shadow: 0px 2px 0px 0px #fff;}

    #tab__mattina{display: flex;}
    #tab_pomeriggio{display: none;}

    .tl__tab{padding-top: 50px; display: flex;flex-direction: column;gap:50px;}

    .tl__card{display: flex; flex-direction: column; padding: 20px; border-radius: 6px;background-color: rgb(24, 24, 29);gap: 30px;}
    .tl__card__img{width: 100%; height: auto;}
    .tl__card__img img{display: block; width: 100%; height: 100%; object-fit: cover;}
    .tl__card__text{display: flex; flex-direction: column;justify-content: center;}
    .tl__card__text h3{color:#fff;font-size: 24px;margin: 10px 0px;}
    .tl__card__text h4{color:#bbb;font-weight: 900;margin: 10px 0px;}
    .tl__card__text p{color:#bbb; font-size: 14px;}



    /*---------------------------------
    BUSINESS
    ---------------------------------*/

    .business{padding: 50px 20px;}
    .business__container{display: flex;flex-direction: column;}
    .business__left{width: 100%;padding: 0px 10px;}
    .business__left a{display: inline-block;padding: 15px 40px;background-color: #fff;color: #000;border: 2px solid #fff;margin-top: 25px;text-align: center;line-height: 1.5;}
    .business__right{width: 100%;}
    .business__right__container{display: grid; grid-template-columns: 1fr;column-gap: 30px; row-gap: 30px;padding: 50px;}
    .business__card{padding: 30px 20px; border: 1px solid white; border-radius: 3px;}
    .business__card p{text-align: center;}
    .business__card img{text-align: center;display: block; width: 100%;}



    /*---------------------------------
    FAQ
    ---------------------------------*/

    #domande{padding: 50px 20px 50px; background-color: #b6b8dc}
    #domande h2{width: 100%; margin-bottom: 50px; margin-top: 0;color:#fff;}
    .faq{display: flex;flex-direction: column; align-items: center;}
    .faq__container{width: 100%;}

    details div {
        border-left: 2px solid #000;
        border-right: 2px solid #000;
        border-bottom: 2px solid #000;
        padding: 1.5em;
        line-height: 1.8;
    }

    details div > * + * {
        margin-top: 1.5em;
    }

    details + details {
        margin-top: .5rem;
    }

    summary {
        list-style: none;
    }

    summary::-webkit-details-marker {
        display: none;
    }

    summary {
        border: 2px solid #000;
        padding: .75em 1em;
        cursor: pointer;
        position: relative;
        padding-left: calc(1.75rem + .75rem + .75rem);
    }

    summary:before {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: .75rem;
        content: "↓";
        width: 1.75rem;
        height: 1.75rem;
        background-color: #000;
        color: #FFF;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
    }

    details[open] summary {
        background-color: #eee;
    }

    details[open] summary:before {
        content: "↑";
    }

    summary:hover {
        background-color: #eee;
    }

    #domande a {
        color: inherit;
        font-weight: 600;
        text-decoration: none;
        box-shadow: 0 1px 0 0;
    }

    #domande  a:hover {
        box-shadow: 0 3px 0 0;
    }

    code {
        font-family: monospace;
        font-weight: 600;
    }



    /*---------------------------------
    FORM
    ---------------------------------*/
    /* Style the form */
    #regForm {
        background-color: #ffffff;
        margin: 0px auto;
        padding: 50px 20px;
        width: 100%;
        min-width: 300px;
    }

    form p{
        margin: 20px 0px;
    }

    /* Style the input fields */
    input {
        padding: 10px;
        width: 100%;
        font-size: 14px;
        border: 1px solid #aaaaaa;
    }

    input[type=radio]{
        width: auto;
        padding: 10px;
        margin: 10px 20px;
    }

    /* Mark input boxes that gets an error on validation: */
    input.invalid {
        background-color: #ffdddd;
        border-color: #ff9393;
    }

    /* Hide all steps by default: */
    .tab {
        display: none;
        margin-top: 30px;
    }

    /* Make circles that indicate the steps of the form: */
    .step {
        height: 10px;
        width: 10px;
        margin: 0 2px;
        background-color: #ccc;
        border: none;
        border-radius: 50%;
        display: inline-block;
        opacity: 0.5;
    }

    /* Mark the active step: */
    .step.active {
        opacity: 1;
    }

    /* Mark the steps that are finished and valid: */
    .step.finish {
        background-color: #0e974e;
    }

    .btn__container div{float:left!important;}


    #prevBtn{outline: none; padding: 15px 30px; border: none;cursor:pointer;background-color: #000;color:#fff;font-size: 14px;}
    #nextBtn{outline: none; padding: 15px 30px; border: none;cursor:pointer;background-color: #000;color:#fff;font-size:14px;}

    .tab__NO__link a{display: inline-block;padding-right: 15px;}

    /*---------------------------------
    FORM 2
    ---------------------------------*/
    #form{padding: 50px 20px;}
    .form__container{flex-direction: column;gap:0px;}
    #form form{width: 100%; padding: 0px 0px;}
    .form__text{width: 100%;}
    #form input[type="checkbox"]{width: auto;}
    #form input[type="submit"]{width: 150px;outline: none;background-color: #000;border:none;color:#fff;padding: 15px;font-weight: bold;text-transform: uppercase;cursor:pointer;}
    #form span{color: var(--accent);}

    /*---------------------------------
    LOGHI
    ---------------------------------*/
    .bc {
        display: none;}

    /*---------------------------------
    FOOTER
    ---------------------------------*/
    #footer {
        background-color: #000;
    }

    footer {
        padding: 50px 10px 0px;
        color: #fff;
    }

    .footer__top {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .footer__top__left {
        width: 100%;
        padding: 0px 10px;
    }

    .footer__top__left img {
        width: 150px;
        height: auto;
    }

    .footer__top__left p {
        font-size: 12px;
        margin: 7px 0px;
        color: #bbb;
        line-height: 1.8;
    }

    .footer__top__right {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 20px 10px 0px;
    }

    .footer__top__social {
        list-style-type: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        gap: 30px;
        align-items: center;
    }

    .footer__top__social__item {
        display: inline-block;
    }

    .footer__top__social__item a i {
        font-size: 20px;
        color: #fff;
    }

    .footer__bot {
        display: flex;
        flex-direction: column;
        margin-top: 40px;
        justify-content: space-between;
        border-bottom: 1px solid #555;
        padding: 0px 10px 30px 10px;
    }

    .footer__bot__col {
        color: #bbb;
    }

    .footer__bot__col h3 {
        font-size: 16px;
        font-weight: 500;
        color: #fff;
    }

    .footer__bot__col ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
    }

    .footer__bot__col ul li {
        font-size: 12px;
        margin: 20px 0px;
    }

    .footer__pp {
        display: flex;
        flex-direction: column;
        justify-content: center;
        color: #bbb;
        padding: 10px 10px 80px;
    }

    .footer__pp__left {
        padding: 0px 0px;
    }

    .footer__pp__left ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
        display: inline-flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 15px;
    }

    .footer__pp__left ul li {
        font-size: 12px;
    }

    .footer__pp__right {
        padding: 20px 0px;
    }

    .footer__pp__right span {
        display: inline-block;
        font-size: 12px;
    }


    .wa__container{position: fixed; bottom:20px; right: 20px; width: 120px; height: 60px;z-index: 999;display: block; text-align: right; gap: 00px;}
    .wa__container div{display: flex;flex-direction: column; justify-content: flex-end;}
    .wa__container img{width: 60px; height: 60px;text-align: right;}
    .wa__text{background-color: #55CB60; padding: 4px 10px; border-radius: 3px;font-size: 12px;box-shadow: 1px 1px 8px 1px #00000030;}
    .wa__text a{color:#fff;}
    .wa__text{display: none;}


.contatore__container{position: fixed; bottom:20px;left:20px;background: #B5B8DC;z-index:999;display: flex;align-items: center;justify-content: center;padding: 0px 0px;gap:10px;border-radius: 3px;border: 1px solid black;transition: all 0.2s;box-shadow: 1px 1px 3px 1px #00000020;overflow: hidden;}

    .contatore__container img{width: 160px; display: block;}

    .no-display-mobile{display: none;}










    .display-mobile-none{display: none;}







    
  }

