/*BLACK*/
/*WHITE*/
/********* Allineamento hr ***********/
hr.rightAlign {
    margin-left: auto !important;
    margin-right: 0 !important;
}

hr.leftAlign {
    margin-left: 0 !important;
    margin-right: auto !important;
}

hr.centerAlign {
    margin-left: auto !important;
    margin-right: auto !important;
}

/*************************************************************************/
/***** SCORRIMENTI *******************************************************/
/*************************************************************************/
/*************************************************************************/
/***** KEYFRAMES *********************************************************/
@keyframes slideVertical_ComeIn {
    to {
        transform: translateY(0);
    }
}

@keyframes slideLateral_ComeIn {
    to {
        transform: translateX(0);
    }
}

/*************************************************************************/
/***** VERTICALE *********************************************************/
.effettoSlideUp.slideVertical_ComeIn {
    transform: translateY(300px);
    -webkit-animation: slideVertical_ComeIn 1.5s ease forwards;
    /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: slideVertical_ComeIn 1.5s ease forwards;
    /* Firefox < 16 */
    -ms-animation: slideVertical_ComeIn 1.5s ease forwards;
    /* Internet Explorer */
    -o-animation: slideVertical_ComeIn 1.5s ease forwards;
    /* Opera < 12.1 */
    animation: slideVertical_ComeIn 1.5s ease forwards;
    /*&:nth-child(even) {
              animation-duration: 2s;
          }*/
}

.effettoSlideUp.slideVertical_ComeIn:nth-child(1) {
    animation-duration: 1.25s;
}

.effettoSlideUp.slideVertical_ComeIn:nth-child(2) {
    animation-duration: 1.5s;
}

.effettoSlideUp.slideVertical_ComeIn:nth-child(3) {
    animation-duration: 1.75s;
}

.effettoSlideUp.slideVertical_ComeIn:nth-child(4) {
    animation-duration: 2s;
}

.effettoSlideUp.slideVertical_ComeIn:nth-child(5) {
    animation-duration: 2.25s;
}

.effettoSlideUp.slideVertical_ComeIn:nth-child(6) {
    animation-duration: 2.5s;
}

.effettoSlideUp.slideVertical_ComeIn:nth-child(7) {
    animation-duration: 1.5s;
}

.effettoSlideUp.slideVertical_ComeIn:nth-child(8) {
    animation-duration: 1.75s;
}

.effettoSlideUp.slideVertical_ComeIn:nth-child(9) {
    animation-duration: 2s;
}

.effettoSlideUp.slideVertical_ComeIn:nth-child(10) {
    animation-duration: 2.25s;
}

.effettoSlideUp.slideVertical_ComeIn:nth-child(11) {
    animation-duration: 2.5s;
}

.effettoSlideUp.slideVertical_ComeIn:nth-child(12) {
    animation-duration: 2.75s;
}

/*************************************************************************/
/***** DA SINISTRA ********************************************************/
.effettoSlideLeft.slideLateral_ComeIn {
    transform: translateX(-500px);
    -webkit-animation: slideLateral_ComeIn 1s ease forwards;
    /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: slideLateral_ComeIn 1s ease forwards;
    /* Firefox < 16 */
    -ms-animation: slideLateral_ComeIn 1s ease forwards;
    /* Internet Explorer */
    -o-animation: slideLateral_ComeIn 1s ease forwards;
    /* Opera < 12.1 */
    animation: slideLateral_ComeIn 1s ease forwards;
}

.effettoSlideLeft.slideLateral_ComeIn:nth-child(even) {
    animation-duration: 1.3s;
}

/*************************************************************************/
/***** DA DESTRA **********************************************************/
.effettoSlideRight.slideLateral_ComeIn {
    transform: translateX(500px);
    -webkit-animation: slideLateral_ComeIn 1s ease forwards;
    /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: slideLateral_ComeIn 1s ease forwards;
    /* Firefox < 16 */
    -ms-animation: slideLateral_ComeIn 1s ease forwards;
    /* Internet Explorer */
    -o-animation: slideLateral_ComeIn 1s ease forwards;
    /* Opera < 12.1 */
    animation: slideLateral_ComeIn 1s ease forwards;
}

.effettoSlideRight.slideLateral_ComeIn:nth-child(even) {
    animation-duration: 1.3s;
}

/*************************************************************************/
/***** FADE **************************************************************/
/*************************************************************************/
/*************************************************************************/
/***** KEYFRAMES *********************************************************/
@keyframes fadeIn_ComeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInLateral_ComeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/*************************************************************************/
/***** IN INGRESSO NORMALE ***********************************************/
.effettoFadeIn.fadeIn_ComeIn {
    -webkit-animation: fadeIn_ComeIn 2s ease forwards;
    /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadeIn_ComeIn 2s ease forwards;
    /* Firefox < 16 */
    -ms-animation: fadeIn_ComeIn 2s ease forwards;
    /* Internet Explorer */
    -o-animation: fadeIn_ComeIn 2s ease forwards;
    /* Opera < 12.1 */
    animation: fadeIn_ComeIn 2s ease forwards;
}

.effettoFadeIn.fadeIn_ComeIn:nth-child(even) {
    animation-duration: 3s;
}

/*************************************************************************/
/***** IN INGRESSO DA SINISTRA *******************************************/
.effettoFadeInLeft.fadeInLateral_ComeIn {
    transform: translateX(-500px);
    -webkit-animation: fadeInLateral_ComeIn 1.5s ease forwards;
    /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadeInLateral_ComeIn 1.5s ease forwards;
    /* Firefox < 16 */
    -ms-animation: fadeInLateral_ComeIn 1.5s ease forwards;
    /* Internet Explorer */
    -o-animation: fadeInLateral_ComeIn 1.5s ease forwards;
    /* Opera < 12.1 */
    animation: fadeInLateral_ComeIn 1.5s ease forwards;
}

.effettoFadeInLeft.fadeInLateral_ComeIn:nth-child(even) {
    animation-duration: 3s;
}

/*************************************************************************/
/***** IN INGRESSO DA DESTRA *********************************************/
.effettoFadeInRight.fadeInLateral_ComeIn {
    transform: translateX(500px);
    -webkit-animation: fadeInLateral_ComeIn 1.5s ease forwards;
    /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadeInLateral_ComeIn 1.5s ease forwards;
    /* Firefox < 16 */
    -ms-animation: fadeInLateral_ComeIn 1.5s ease forwards;
    /* Internet Explorer */
    -o-animation: fadeInLateral_ComeIn 1.5s ease forwards;
    /* Opera < 12.1 */
    animation: fadeInLateral_ComeIn 1.5s ease forwards;
}

.effettoFadeInRight.fadeInLateral_ComeIn:nth-child(even) {
    animation-duration: 2.5s;
}

/*************************************************************************/
/***** GROW **************************************************************/
/*************************************************************************/
/*************************************************************************/
/***** KEYFRAMES *********************************************************/
@keyframes growRight_ComeIn {
    to {
        width: 100%;
    }
}

/*************************************************************************/
/***** VERSO DESTRA ******************************************************/
.effettoGrowRight.growRight_ComeIn {
    width: 0%;
    -webkit-animation: growRight_ComeIn 2s ease-out forwards;
    /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: growRight_ComeIn 2s ease-out forwards;
    /* Firefox < 16 */
    -ms-animation: growRight_ComeIn 2s ease-out forwards;
    /* Internet Explorer */
    -o-animation: growRight_ComeIn 2s ease-out forwards;
    /* Opera < 12.1 */
    animation: growRight_ComeIn 2s ease-out forwards;
}

footer {
    /*margin-top: 6rem;*/
    overflow: hidden;
}

footer .bottomArea .upper {
    background-color: #f9f9f9;
}

footer .bottomArea .upper .innerBox {
    position: relative;
    text-align: center;
}

footer .bottomArea .upper .innerBox ul {
    list-style-type: none;
    padding: 1rem 0;
    margin: 0;
}

@media (min-width: 992px) {
    footer .bottomArea .upper .innerBox ul {
        display: flex;
        justify-content: center;
    }
}

footer .bottomArea .upper .innerBox ul.bloccoPrivacy li a {
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1.7rem;
    padding: 0 2rem;
}

footer .bottomArea .upper .innerBox ul.bloccoPrivacy li a:hover {
    color: #2e8ec1;
}

@media (min-width: 576px) {
    footer .bottomArea .upper .innerBox ul.bloccoPrivacy li a {
        font-size: 1.9rem;
    }
}

@media (min-width: 768px) {
    footer .bottomArea .upper .innerBox ul.bloccoPrivacy li a {
        font-size: 2rem;
        padding: 0 4rem;
    }
}

footer .bottomArea .upper .innerBox ul.bloccoSocial {
    display: flex;
    justify-content: center;
}

@media (min-width: 1200px) {
    footer .bottomArea .upper .innerBox ul.bloccoSocial {
        position: absolute;
        top: 0;
        right: 0;
    }
}

footer .bottomArea .upper .innerBox ul.bloccoSocial li a {
    text-decoration: none;
    padding: 0 1.5rem;
}

footer .bottomArea .upper .innerBox ul.bloccoSocial li a:hover {
    color: #2e8ec1;
}

footer .bottomArea hr {
    width: 100%;
    border-width: 1px;
    margin: 0 auto;
}

footer .bottomArea .lower {
    padding: 1rem 0;
}

footer .bottomArea .lower .innerBox .copyright {
    text-align: center;
    font-size: 1.3rem;
    margin: 0;
}

footer .bottomArea .lower .innerBox .copyright a:link,
footer .bottomArea .lower .innerBox .copyright a:active,
footer .bottomArea .lower .innerBox .copyright a:visited {
    font-size: 1.3rem;
}

section.eventi {
    padding: 6rem 0;
}

section.eventi .boxEvento {
    padding-top: 3rem;
}

section.eventi .boxEvento .immagine {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

section.eventi .boxEvento .immagine img {
    /*max-width: 100%;*/
    width: 100%;
}

section.eventi .boxEvento .boxTesto {
    padding: 2rem 1rem;
    padding-bottom: 10rem;
}

section.eventi .boxEvento .boxTesto .data {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

section.eventi .boxEvento .boxTesto .data img {
    max-width: 30px;
}

section.eventi .boxEvento .boxTesto .data .occhiello {
    margin: 0;
    padding-left: 1rem;
}

section.eventi .boxEvento .boxTesto .titolo {
    padding-top: 1rem;
}

section.eventi .boxEvento .boxTesto .linkEvento {
    padding-top: 1rem;
}

section.eventi .boxEvento .boxTesto .linkEvento a {
    color: #000;
    font-weight: bold;
    font-size: 1.5rem;
    text-decoration: none;
    text-transform: uppercase;
}

section.eventi .boxEvento .boxTesto .linkEvento a:hover {
    text-decoration: underline;
}

header {
    position: fixed;
    top: 0;
    max-width: 2000px;
    width: 100%;
    z-index: 10000;
    background: linear-gradient(rgba(0, 0, 0, 0.8), transparent);
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

@media (min-width: 992px) {
    header {
        background: linear-gradient(rgba(0, 0, 0, 0.8), transparent) !important;
    }
}

header.sticky {
    background: #333333 !important;
}

header .strisciaNavbar {
    padding: 5px 0;
}

header.sticky .navbar.navbar-light .navbar-nav .nav-link {
    font-size: 1.5rem;
    padding: 0.8rem 0.5rem;
}

header.sticky .navbar .logo img {
    max-height: 100px;
}

header.sticky .navbar.navbarMobile .logo img {
    max-height: 61px;
}

header .navbar {
    padding: 0;
    /*@media (min-width: $break-xl) {
            .navbar-nav {
                .nav-item {
                    margin-right: 3rem;
                }
            }
        }*/
}

header .navbar.navbarMobile {
    justify-content: space-between;
    align-items: center;
}

header .navbar.navbarMobile .logo img {
    max-width: 200px;
    /*max-height: 100px;*/
    max-height: 61px;
}

@media (min-width: 576px) {
    header .navbar.navbarMobile .logo img {
        max-width: none;
    }
}

@media (min-width: 768px) {
    header .navbar.navbarMobile .logo img {
        /*max-width: 200px;*/
        max-height: 100px;
    }
}

@media (min-width: 1200px) {
    header .navbar.navbarMobile .logo img {
        /*max-width: 280px;*/
        max-height: 80px;
    }
}

header .navbar.navbarMobile .menuButton {
    display: flex;
    justify-content: center;
    align-items: center;
}

header .navbar.navbarMobile .menuButton h6 {
    color: #fff;
    font-weight: 600;
    padding: 0 0.5rem;
    padding-right: 1.5rem;
    margin: 0;
}

header .navbar.navbarMobile .menuButton .navbar-toggler.custom-toggler {
    border-color: #fff;
}

header .navbar.navbarMobile .menuButton .navbar-toggler.custom-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

@media (min-width: 992px) {
    header .navbar .navbar-nav {
        width: 100%;
        display: flex;
        justify-content: space-between;
    }

    header .navbar .navbar-nav .nav-item {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        border-left: 1px solid #fff;
    }

    header .navbar .navbar-nav .nav-item:first-child {
        border: none;
    }

    header .navbar .navbar-nav .nav-item .nav-link {
        text-align: center;
    }
}

header .navbar .logo {
    /*padding-bottom: 2rem;*/
}

header .navbar .logo a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    /*max-height: 150px;*/
    max-height: 150px;
}

@media (min-width: 576px) {
    header .navbar .logo a {
        justify-content: flex-start;
        width: auto;
    }
}

header .navbar .logo a img {
    max-width: 100%;
    /*max-height: 150px;*/
    max-height: 61px;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

@media (min-width: 768px) {
    header .navbar .logo a img {
        /*max-width: 200px;*/
        max-height: 61px;
    }
}

@media (min-width: 1200px) {
    header .navbar .logo a img {
        /*max-width: 280px;*/
        max-height: 80px;
    }
}

header .navbar.navbar-light .navbar-nav .nav-link {
    color: #fff;
    width: 100%;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 1.4rem;
    /*font-weight: 600;*/
    line-height: 1.5;
    padding: 1.75rem 2rem;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    white-space: nowrap;
}

@media (min-width: 1200px) {
    header .navbar.navbar-light .navbar-nav .nav-link {
        font-size: 1.6rem;
    }
}

header .navbar.navbar-light .navbar-nav .nav-link:hover, header .navbar.navbar-light .navbar-nav .nav-link:focus {
    /*color: $gray_color_300;*/
    color: #9f9f9f;
}

header .navbar.navbar-light .navbar-nav .nav-link .bandiera {
    width: 25px;
}

header .navbar.navbar-light .navbar-nav .active > .nav-link,
header .navbar.navbar-light .navbar-nav .nav-link.active,
header .navbar.navbar-light .navbar-nav .nav-link.show,
header .navbar.navbar-light .navbar-nav .show > .nav-link {
    color: #fff;
}

header .navbar.navbar-light .navbar-nav .dropdown-menu {
    background-color: transparent;
    border: none;
    padding-left: 1rem;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

@media (min-width: 992px) {
    header .navbar.navbar-light .navbar-nav .dropdown-menu {
        background-color: rgba(0, 0, 0, 0.8);
        margin-left: 1rem;
        padding: 0;
    }
}

header .navbar.navbar-light .navbar-nav .dropdown-item {
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 1.4rem;
    padding: .75rem 1.5rem;
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

header .navbar.navbar-light .navbar-nav .dropdown-item:hover, header .navbar.navbar-light .navbar-nav .dropdown-item:focus {
    background: none;
    color: #9f9f9f;
}

header .navbar.navbar-light .navbar-nav .dropdown-submenu {
    position: relative;
}

header .navbar.navbar-light .navbar-nav .dropdown-submenu a::after {
    transform: rotate(-90deg);
    position: absolute;
    right: 3px;
    top: .8em;
}

header .navbar.navbar-light .navbar-nav .dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-right: .1rem;
}

header .navbar.navbar-light .navbar-nav .nav-item.langSelect {
    display: flex;
    align-items: center;
}

header .navbar.navbar-light .navbar-nav .nav-item.langSelect .nav-link {
    width: auto !important;
}

header .navbar.navbar-light .navbar-nav .nav-item.langSelect .dotBullet {
    color: #fff;
}

section.headline {
    overflow: hidden;
}

section.headline .immagine {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 40rem;
}

section.headline .immagine img {
    /*max-height: 40rem;*/
    width: 100%;
}

section.headline .immagine .box {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

section.headline .immagine .box .innerTesto {
    /*background-color: rgba(0, 0, 0, 0.6);*/
    text-align: center;
    padding: 5rem;
}

section.headline .immagine .box .innerTesto .occhiello {
    color: #fff;
    padding-top: 4rem;
    text-shadow: 1px 1px 2px #000;
}

section.headline .immagine .box .innerTesto .titolo {
    color: #fff;
    font-size: 3rem;
    text-shadow: 1px 1px 2px #000;
}

section.headline .immagine .box .innerTesto hr {
    border: 2px solid #2e8ec1;
    max-width: 5rem;
}

section.headline .immagine .box .innerTesto .richText {
    padding-top: 2rem;
    padding-bottom: 4rem;
    font-size: 1.4rem;
    text-shadow: 1px 1px 2px #000;
}

section.headline .immagine .box .innerTesto .richText h1, section.headline .immagine .box .innerTesto .richText h2, section.headline .immagine .box .innerTesto .richText h3, section.headline .immagine .box .innerTesto .richText h4, section.headline .immagine .box .innerTesto .richText h5, section.headline .immagine .box .innerTesto .richText h6 {
    color: #fff;
    text-shadow: 1px 1px 2px #000;
}

section.headline .immagine .box .innerTesto .richText p {
    color: #fff;
    text-align: left;
    font-size: 1.4rem;
    text-shadow: 1px 1px 2px #000;
}

@media (min-width: 576px) {
    section.headline .immagine {
        max-height: 50rem;
    }

    section.headline .immagine img {
        /*max-height: 55rem;*/
    }

    section.headline .immagine .box .innerTesto .titolo {
        font-size: 3rem;
    }

    section.headline .immagine .box .innerTesto .richText {
        font-size: 1.5rem;
    }

    section.headline .immagine .box .innerTesto .richText p {
        font-size: 1.5rem;
    }
}

@media (min-width: 768px) {
    section.headline .immagine {
        max-height: 60rem;
    }

    section.headline .immagine img {
        /*max-height: 60rem;*/
    }
}

@media (min-width: 992px) {
    section.headline .immagine {
        max-height: 80rem;
    }

    section.headline .immagine img {
        /*max-height: 80rem;*/
    }

    section.headline .immagine .box .innerTesto .titolo {
        font-size: 4rem;
    }

    section.headline .immagine .box .innerTesto .richText {
        font-size: 1.8rem;
    }

    section.headline .immagine .box .innerTesto .richText p {
        font-size: 1.8rem;
    }
}

section.systemMessage {
    padding: 6rem 0;
}

section.systemMessage .testo {
    padding-top: 1rem;
}

section.systemMessage .pulsanti {
    margin-top: 5rem;
}

section.systemMessage .pulsanti .link {
    margin: 3rem 2rem;
}

main {
    min-height: 140rem;
    /*min-height: 60rem;*/
    /*margin-top: 135px;*/
}

#result {
    font-size: 20px;
}

.form-text {
    font-size: 16px;
}

.venduto {
    background-color: #efefef;
}

.units-table a:link,
.units-table a:active,
.units-table a:visited {
    text-decoration: none;
}

section.about004.case-history-content .box .richText p {
    text-align: center;
}

.alert {
    font-size: 2rem;
}

.table {
    font-size: 1.5rem;
}
