/*
Theme Name: Tema CIBUS TEC Landing Page
Author: Aicod
*/
:root {
    --swiper-theme-color: #fff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Roboto", sans-serif;
    color: #171717;
    font-weight: 500;
    line-height: 26px;
    font-size: 14px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Open Sans", sans-serif;
    color: #171717;
    font-weight: 700;
    letter-spacing: 1.5px;
}

a {
    color: var(--colore-primario);
    text-decoration: underline;
    font-weight: 700;
    -moz-transition: all 200ms;
    -o-transition: all 200ms;
    -webkit-transition: all 200ms;
    transition: all 200ms;
}

a:hover {
    color: #171717;-moz-transition: all 200ms;
    -o-transition: all 200ms;
    -webkit-transition: all 200ms;
    transition: all 200ms;
}

.image-responsive {
    width: 100%;
    height: auto;
    display: block;
}

.sezione {
    padding: 120px 0;
}

.bg-white {
    background: #fff;
}

.bg-grey {
    background: #f1f1f1;
}
.bg-secondario {
    background-color: var(--colore-secondario);
}
.bg-black {
    background-color: #1b191e;
}

/** Header **/
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 1000;
    padding: 0;
    background: #fff;
}
header.no-hero {
    background-color: rgba(0,0,0,.27);
    transition: all 250ms;
}
header.no-hero.in-place {
    background-color: #fff;
    transition: all 250ms;
}
header.no-hero .icon-trigger span,
header.no-hero .icon-trigger span:before,
header.no-hero .icon-trigger span:after {
    background: #fff;
}
header.no-hero.in-place .icon-trigger span,
header.no-hero.in-place .icon-trigger span:before,
header.no-hero.in-place .icon-trigger span:after {
    background: #171717;
}
header.in-place {
    -moz-box-shadow: 0 0 3px #ddd;
    -webkit-box-shadow: 0 0 3px #ddd;
    box-shadow: 0 0 3px #ddd;
}

header .logo {
    position: absolute;
    top: 70px;
    left: 70px;
    transition: all 250ms;
}
header.no-hero .logo {
    position: absolute;
    top: 0;
    left: 50px;
    transition: all 250ms;
}
header.in-place .logo {
    top: 0px;
    left: 50px;
}

.logo img {
    padding: 10px 0;
    height: 90px;
}
header.no-hero .logo-dark {
    display: none;
}
header.no-hero.in-place .logo-dark {
    display: block;
}
header.no-hero .logo-light {
    display: block;
}
header.no-hero.in-place .logo-light {
    display: none;
}
/** Hero Video **/
.fullscreen {
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 100vh;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: var(--colore-secondario);
    text-align: center;
}
.video-background video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; /* Per mantenere il video sotto altri elementi */
}
.hero-box {
    z-index: 10000;
    text-align: center;
    margin-top: 140px;
    /* padding: 70px; */
    display: flex;
    justify-content: center;
    align-items: center;
    /* flex-flow: column; */
    flex-direction: column;
}
.hero-content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-content h1 {
    z-index: 1000;
    color: #fff;
    max-width: 1400px;
    text-align: center;
    font-size: 65px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 20px;
    margin-bottom: 10px;
    line-height: 100%;
}

@media screen and (max-width: 991px) {
    .hero-content h1 {
        font-size: 45px;
        letter-spacing: 5px;
    }
}
@media screen and (max-width: 768px) {
    .hero-content h1 {
        font-size: 25px;
        letter-spacing: 5px;
    }
}
.btn-hero {
    margin-top: 50px;    
}
.arrow-item {
    color: #fff;
    font-size: 35px;
    opacity: 0.5;
    transition: opacity 0.2s;
}

.arrow-down-animated {
    text-align: center;
    padding-top: 50px;
}

.fixed-bar {
    background: #fff;
    position: fixed;
    z-index: 2;
    transition: all 250ms;
}

.fixed-bar.vertical {
    height: 100%;
    width: 50px;
}

.fixed-bar.horizontal {
    width: 100%;
    left: 0;
    height: 50px;
}

.fixed-bar.vertical.left {
    left: 0;
}

.fixed-bar.vertical.right {
    right: 0;
}

.fixed-bar.horizontal.bottom {
    bottom: 0;
}

.fixed-bar.horizontal.bottom {
    bottom: 0;
}

.fixed-bar.horizontal.not-in-view {
    -moz-transform: translateY(100%);
    -o-transform: translateY(100%);
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%)
}

.fixed-bar.vertical.left.not-in-view {
    -moz-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%)
}

.fixed-bar.vertical.right.not-in-view {
    -moz-transform: translateX(100%);
    -o-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%)
}

.video-mob {
    display: none;
}
@media screen and (max-width: 1080px) {
    .video-mob {
        display: block;
    }
    .video-desk {
        display: none;
    }
}

/** Hero **/
.section-hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}
.section-hero .container {
    position: relative;
    z-index: 5;
}
.section-hero .container,
.section-hero .row {
    height: 100%;
}
.section-hero .row {
    align-items: center;
}
.section-hero h1 {
    text-align: center;
    color: #fff;
}

.logo-hero {
    max-width: 340px;
    margin: 0 auto 50px;
}
.box-hero-c {
    text-align: center;
}
.box-hero-c .btn-cibus {
    border: 2px solid var(--colore-primario);
}
.box-hero-c .btn-cibus:hover, 
.box-hero-c .btn-cibus:focus {
    background: var(--colore-secondario);
    color: #fff;
    border: 2px solid #fff;
}
.bg-hero-video .box-hero-c .btn-cibus:hover, 
.bg-hero-video .box-hero-c .btn-cibus:focus {
    background: var(--colore-secondario);
    color: #fff;
    border: 2px solid var(--colore-secondario);
}
.txt-sotto {
    position: absolute;
    z-index: 1;
    left: 0;
    width: 100%;
    bottom: 0;
}
.txt-sotto img {
    max-width: 450px;
    margin: 0 auto;
    padding: 0 20px;
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
}
.barra-sotto {
    position: absolute;
    width: 100%;
    height: 32px;
    bottom: 0;
    left: 0;
    background-color: var(--colore-primario);
    z-index: 1;
}

@media screen and (max-width: 600px) {
    .section-hero h1 {
        font-size: 28px;
    }
    .box-hero-c .btn-cibus {
        margin-top: 10px;
    }
    .txt-sotto img {
        bottom: 40px;
    }
}


/** Blocco About **/
.about-txt {
    padding: 120px 60px;
}
@media screen and (max-width: 991px) {
    .about-txt {
        padding: 60px;
    }
}
.about-txt blockquote p strong {
    color: var(--colore-primario);
}

.about-bgimg {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 400px;
}

blockquote {
    padding: 20px 40px;
    margin: 40px 40px 15px 0;
    border-left: 10px solid var(--colore-primario);
}
@media screen and (max-width: 480px) {
    .about-txt {
        padding: 120px 15px;
    }
}
@media screen and (max-width: 1280px) {
    .fixed-bar {
        display: none;
    }

    blockquote {
        margin: 40px 0 15px 0;
    }
}

.title.normal h2 {
    font-size: 24px;
    display: inline-block;
    text-transform: uppercase;
    /* line-height: 100%; */
}
.bg-black .title.normal h2 {
    color: #fff
}
.bg-black blockquote p {
    color: #fff
}
/** Capitolo Titolo **/
.title.large span {
    color: var(--colore-secondario);
    font-size: 90px;
    font-weight: 700;
}

.title.large h3 {
    font-size: 24px;
    text-transform: uppercase;
    display: inline;
    margin-left: -55px;
    line-height: 100%;
    background: #fff;
}
@media screen and (max-width: 375px) {
    .title.large h3 {
        letter-spacing: .5px;
    }
}
.bg-grey .title.large h3 {
    background: #f1f1f1;
}

.bg-black .title.large h3 {
    background: #1b191e;
    color: #fff;
}
.bg-secondario .title.large h3 {
    background: var(--colore-secondario);
    color: #fff;
}
.bg-secondario .title.large span {
    color: var(--colore-primario);
}
.bg-white .title.large h3 {
    background: #fff;
}

.subtitle {
    margin-top: -25px;
    border-left: 4px solid var(--colore-primario);
    padding-left: 40px;
    min-height: 80px;
}
@media screen and (max-width: 991px) {
    .subtitle {
        margin-top: 50px; 
        min-height: auto;      
    }
}
.bg-secondario .subtitle p,
.bg-black .subtitle p {
    color: #fff;
}

.subtitle p strong {
    color: var(--colore-primario);
}

/** Blocco Contatti **/
.box-contatti {
    margin-top: 80px;
}

.box-contatti a,
.box-contatti a:hover {
    text-decoration: none;
}

.contatto-box {
    background: #f1f1f1;
    padding: 50px;
    text-align: center;
}
.bg-grey .contatto-box {
    background: #fff;
}
.contatto-box-link:hover .contatto-box {
    background: var(--colore-secondario);
}

.contatto-box h4 {
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: 20px;
    font-weight: 600;
    color: #171717;
}

.contatto-box h4::after {
    display: block;
    content: '';
    height: 1px;
    background: #171717;
    width: 20%;
    margin: 30px auto auto;
}

.contatto-box p {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    color: #171717;
    min-height: 130px;
}

.btn-contatti {
    display: block;
    letter-spacing: 5px;
    padding: 20px 50px;
    font-size: 16px;
    text-transform: uppercase;
    background: var(--colore-primario);
    color: #fff;
    border-radius: 0;
    font-weight: 700;
    text-align: center;
}

/* .btn-contatti:hover {
    background-color: var(--colore-primario);
    color: var(--colore-secondario);
} */

.contatto-box-link:hover .contatto-box {
    background-color: var(--colore-secondario) !important;
}
.contatto-box-link:hover .contatto-box h4,
.contatto-box-link:hover .contatto-box p {
    color: #fff;
}
.contatto-box-link:hover .contatto-box h4::after  {
    background-color: #fff;
}
/** Blocco Perchè **/
.box-slider,
.box-why {
    margin-top: 80px;
    position: relative;
    padding-right: 15px;
    padding-left: 15px;
}

.box-w {
    height: 100%;
    width: 100%;
    background: #fff;
}
.mb-30-mob {
    margin-bottom: 30px;
}
@media screen and (max-width: 991px) {
    
}
.box-l-info,
.box-w-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .8);
    padding: 30px;
    text-align: center;
    visibility: hidden;
    opacity: 0;
    -khtml-opacity: 0;
    -moz-opacity: 0;
    filter: alpha(opacity=0);
    -moz-transform: scale(.9);
    -o-transform: scale(.9);
    -webkit-transform: scale(.9);
    -ms-transform: scale(.9);
    transform: scale(.9);
    transition: all 250ms;
    display: flex;
    align-items: center;
}

.box-w-titolo {
    padding: 25px 16px;
    text-align: center;
}

.box-w-titolo h4 {
    font-weight: 600;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0;
    margin-bottom: 5px;
}

.box-w-img {
    position: relative;
}

.box-w-img:hover .box-w-info {
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    visibility: visible;
    opacity: 1;
    -khtml-opacity: 1;
    -moz-opacity: 1;
    filter: alpha(opacity=100)
}
.box-w-titolo .box-w-info-mob {
    display: none;
}
.box-w-titolo .box-w-info-mob::before {
    display: block;
    content: '';
    height: 1px;
    background: #171717;
    width: 20%;
    margin: auto auto 30px;
}
@media screen and (max-width: 991px) {
    .labotec-slider .box-w-img .box-w-info {
        /* -moz-transform: scale(1);
        -o-transform: scale(1);
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        visibility: visible;
        opacity: 1;
        -khtml-opacity: 1;
        -moz-opacity: 1;
        filter: alpha(opacity=100) */
        display: none;
    }
    .box-w-titolo .box-w-info-mob {
        display: block;
        margin: 30px auto auto;
    }
}


/** Testimonial **/
.box-testimonial {
    margin-top: 80px;
    position: relative;
}

.box-testimonial p,
.box-testimonial h4 {
    color: #fff;
    text-align: left;
}
.box-testimonial h4 {
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 20px;
}
.bg-grey .box-testimonial p,
.bg-grey .box-testimonial h4,
.bg-white .box-testimonial p,
.bg-white .box-testimonial h4 {
    color: #171717;
}


.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}
.swiper-slide .align-dx img {
    object-position: right;
}
.swiper-slide .align-sx img {
    object-position: left;
}
.swiper-slide .bg-cont img {
    object-fit: contain;
    object-position: center;
}

.swiper-btn-prev {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 448 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><style>svg{fill:%23ffffff}</style><path d="M9.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.2 288 416 288c17.7 0 32-14.3 32-32s-14.3-32-32-32l-306.7 0L214.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-160 160z"/></svg>') !important;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center;
    position: absolute;
    bottom: -60px;
    right: calc(50% + 10px);
    width: calc(var(--swiper-navigation-size)/ 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - (var(--swiper-navigation-size)/ 2));
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-btn-next {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 448 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><style>svg{fill:%23ffffff}</style><path d="M438.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L338.8 224 32 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l306.7 0L233.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160z"/></svg>') !important;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center;
    position: absolute;
    bottom: -60px;
    left: calc(50% + 10px);
    width: calc(var(--swiper-navigation-size)/ 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - (var(--swiper-navigation-size)/ 2));
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bg-grey .swiper-btn-prev,
.bg-white .swiper-btn-prev {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 448 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><style>svg{fill:%23171717}</style><path d="M9.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.2 288 416 288c17.7 0 32-14.3 32-32s-14.3-32-32-32l-306.7 0L214.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-160 160z"/></svg>') !important;
}
.bg-grey .swiper-btn-next,
.bg-white .swiper-btn-next {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 448 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><style>svg{fill:%23171717}</style><path d="M438.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L338.8 224 32 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l306.7 0L233.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160z"/></svg>') !important;
}


/** Blocco News **/

.slide-news {
    align-items: start;
}
.box-news {
    text-align: left;
}
.box-news img {
    aspect-ratio: 4 / 3;
    margin-bottom: 10px;
}
.box-news h3 {
    margin-bottom: 5px;
    font-weight: 400;
    /* text-transform: uppercase; */
    font-size: 24px;
    color: var(--colore-primario);
}
.bg-black .box-news h3 {
    color: #fff;
}
.box-news p {
    margin-bottom: 0;
    color: #a1b1bc;
}

/** Blocco CTA Download Brochure **/
.sezione-cta img {
    margin-bottom: 50px;
}

.sezione-cta h2 {
    font-weight: 300;
    font-size: 30px;
    margin-bottom: 20px;
}
.bg-black.sezione-cta h2 {
    color: #fff;
}
.sezione-cta p {
    color: #a1b1bc;
    margin-bottom: 0;
}

.sezione-cta p strong {
    color: var(--colore-primario);
}

.btn-cibus {
    padding: 20px 50px;
    font-size: 16px;
    color: #fff;
    background: var(--colore-primario);
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    border-radius: 0;
    line-height: 1.2;
    letter-spacing: 2px;
}

.btn-cibus:hover,
.btn-cibus:focus {
    background: var(--colore-secondario);
    color: #fff;
}

/** Blocco Sponsor **/
/* .sponsor-img-mob {
    display: none;
}

@media screen and (max-width: 767px) {
    .sponsor-img-mob {
        display: block;
    }

    .sponsor-img {
        display: none;
    }
} */
.container-sponsor {
    margin-top: 80px;
}
.container-sponsor .row {
    justify-content: center;
}
.box-sponsor {
    display: flex;
    justify-content: center;
    height: 100%;
    /* padding: 0 20px; */
    margin-bottom: 20px;
}
.box-sponsor img {
    /* max-width: 320px; */
    height: 100px;
    width: auto;
}

.container-sponsor .row .col-lg-3:nth-child(2),
.container-sponsor .row .col-lg-3:nth-child(3),
.container-sponsor .row .col-lg-3:nth-child(4) {
    border-left: 2px solid #c9c8c8;
}

/* .container-sponsor .row .col-lg-4:nth-child(6),
.container-sponsor .row .col-lg-4:nth-child(7) {
    border-left: 2px solid #c9c8c8;
}
.container-sponsor .w-100 {
    margin-top: 40px;
    margin-bottom: 40px;
} */
@media screen and (max-width: 991px) {
    .container-sponsor .row .col-lg-3:nth-child(2),
    .container-sponsor .row .col-lg-3:nth-child(3),
    .container-sponsor .row .col-lg-3:nth-child(4) {
        margin-top: 60px;
        border-left: none;
    }
    /* .container-sponsor .row .col-lg-4:nth-child(2) {
        margin-top: 60px;
        margin-bottom: 60px;
    }
    .container-sponsor .row .col-lg-4:nth-child(6),
    .container-sponsor .row .col-lg-4:nth-child(7) {
        border-left: none;
    } */
}


/** Blocco Mappa **/
.sezione-mappa {
    padding-bottom: 0;
    padding-top: 0;
}

.box-mappa {
    margin-top: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 500px;
}

/** Blocco Convegni **/
.box-4link {
    margin-top: 80px;
}

.box-4link a {
    text-decoration: none;
    color: #171717;
}

.box-4link a:hover {
    text-decoration: none;
    color: #171717;
}

.box-4link .company {
    line-height: 1.5;
    color: var(--colore-primario);
    margin-bottom: 0;
}

.box-4link .data-txt {
    font-style: italic;
    color: #171717;
}
.box-4link .box-l-info-mob {
    line-height: 1.5;
    color: var(--colore-primario);
    text-decoration: underline;
    display: none;
}

.box-4link .box-l-info h4 {
    width: 100%;
}

.box-4link a:hover .box-l-info {
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    visibility: visible;
    opacity: 1;
    -khtml-opacity: 1;
    -moz-opacity: 1;
    filter: alpha(opacity=100)
}
@media screen and (max-width: 767px) {
    .box-4link .box-l-info-mob  {
        display: block;
    }

    .box-4link .box-l-info {
        display: none!important;
    }
}
/** Slide Aziende **/
.mySwiperAziende .swiper-slide {
    /* height: calc((100% - 30px) / 3) !important; */
}
.mySwiperAziende .swiper-slide {
    /* height: calc((100% - 30px) / 3) !important; */
}

.box-aziende {
    margin-top: 80px;
    position: relative;
}

.box-aziende .swiper-btn-prev {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 448 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><style>svg{fill:%23171717}</style><path d="M9.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.2 288 416 288c17.7 0 32-14.3 32-32s-14.3-32-32-32l-306.7 0L214.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-160 160z"/></svg>') !important;
}

.box-aziende .swiper-btn-next {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 448 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><style>svg{fill:%23171717}</style><path d="M438.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L338.8 224 32 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l306.7 0L233.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160z"/></svg>') !important;
}
.bg-black .box-aziende .swiper-btn-prev {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 448 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><style>svg{fill:%23ffffff}</style><path d="M9.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.2 288 416 288c17.7 0 32-14.3 32-32s-14.3-32-32-32l-306.7 0L214.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-160 160z"/></svg>') !important;
}
.bg-black .box-aziende .swiper-btn-next {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 448 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><style>svg{fill:%23ffffff}</style><path d="M438.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L338.8 224 32 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l306.7 0L233.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160z"/></svg>') !important;
}
@media screen and (max-width: 1400px) {
    /* .swiper-btn-prev {
        left: 0;
    }

    .swiper-btn-next {
        right: 0;
    } */
    .box-testimonial,
    .box-aziende {
        padding: 0 50px;
    }
}
@media screen and (min-width: 992px) {
    /* .swiper-btn-prev,
    .swiper-btn-next {
        display: none;
    }     */
}
/** Form e Modal **/
.wpcf7-form-control,
.wpcf7-form label {
    width: 100%;
}
.wpcf7-acceptance label {
    line-height: 1.15;
}
.wpcf7-acceptance .wpcf7-list-item-label {
    font-weight: 400;
    line-height: 1.15;
    font-size: 12px;
}
.wpcf7-list-item {
    margin: 0;
}
.wpcf7-not-valid-tip {
    position: absolute;
    top: -33px;
    right: 0;
}
.wpcf7-textarea {
    height: 120px;
}
textarea + .wpcf7-not-valid-tip {
    top: -133px;
}
/* .wpcf7-submit {
    padding: 10px 50px;
    font-size: 16px;
    color: #fff;
    background: var(--colore-primario);
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    border-radius: 0;
    line-height: 1.2;
    letter-spacing: 2px;
}

.wpcf7-submit:hover,
.wpcf7-submit:focus {
    background: var(--colore-secondario);
    color: #fff;
} */
input {
    border-color: -internal-light-dark(rgb(118, 118, 118), rgb(133, 133, 133));
}

input[type="submit" i] {
    margin-top: 20px;
    padding: 10px 50px;
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    border-radius: 0;
    line-height: 1.2;
    letter-spacing: 2px;
    background-color: var(--colore-primario);
    border-color: transparent;
}
.input[type="submit"]:hover,
.input[type="submit"]:focus {
    background: var(--colore-secondario);
    color: #fff;
}
.wpcf7 form .wpcf7-response-output {
    margin: -20px 0 10px 0;
}
.modal-title {
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.15;
    margin-bottom: 10px;
}
.modal-header p {
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 0;
}

/** Footer **/
.bg-footer {
    background-color: var(--colore-secondario);
    background-image: url('/wp-content/themes/cibustec/assets/img/hero-sx.png'), url('/wp-content/themes/cibustec/assets/img/hero-dx.png');
    background-position: calc(0% - 170px) center, calc(100% + 170px) calc(100% + 100px);
    /* background-size: cover, contain; */
    background-repeat: no-repeat, no-repeat;
}
.sezione-footer {
    padding-bottom: 0;
}
.footer-logo {
    margin-bottom: 50px;
    max-width: 200px;
}
.bg-footer .widget p {
    color:#fff;
}
.bg-footer .widget a:hover {
    color:#fff;
}
.footer-copy {
    border-top: 1px solid rgba(255,255,255,.1);
    margin: 50px 0;
    padding-top: 50px;
}
.footer-copy .widget p {
    font-weight: 400;
    text-align: center;
    line-height: 14px;
}
.footer-copy .widget a {
    font-weight: 400;
    text-decoration: none;
}
.footer-menu {
    margin-bottom: 40px;
}
.footer-menu h4 {
    color: var(--colore-primario);
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 0;
    margin-bottom: 20px;
}
.footer-link {
    color: #fff;
    font-size: 16px;
    line-height: 16px;
    font-weight: 400;
}
.footer-link:hover {
    color: var(--colore-primario)!important;
}
@media screen and (max-width: 767px) {
    .foot-w {
        text-align: center;
    }
}

/** Menu  **/
header .icon-trigger {
    width: 60px;
    height: 60px;
    display: inline-block;
    position: absolute;
    overflow: hidden;
    z-index: 4;
    top: 60px;
    right: 70px;
}
header .icon-trigger span {
    width: 30px;
    height: 2px;
    background: #171717;
    margin: 1px auto auto;
    position: relative;
    display: block;
    top: 50%;
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -moz-transition: all 250ms;
    -o-transition: all 250ms;
    -webkit-transition: all 250ms;
    transition: all 250ms;
}
header.no-hero .icon-trigger,
header.in-place .icon-trigger {
    top: 0;
    width: 50px;
    height: 50px;
    right: 50px;
}

header .icon-trigger span:after, 
header .icon-trigger span:before {
    display: block;
    content: '';
    height: 2px;
    width: 30px;
    background: #171717;
    position: relative;
    transition: all 250ms;    
}
header .icon-trigger span:after {
    top: 5px;
}
header .icon-trigger span:before {
    bottom: 7px;
}
header .icon-trigger.is-active span, 
header .icon-trigger.is-active span:after, 
header .icon-trigger.is-active span:before {
    background: #fff;
}
header .icon-trigger.is-active span:before {
    -moz-transform: translateX(150%);
    -o-transform: translateX(150%);
    -webkit-transform: translateX(150%);
    -ms-transform: translateX(150%);
    transform: translateX(150%);
}
header .icon-trigger.is-active span:after {
    -moz-transform: translateX(-150%);
    -o-transform: translateX(-150%);
    -webkit-transform: translateX(-150%);
    -ms-transform: translateX(-150%);
    transform: translateX(-150%);
}
header.in-place .icon-trigger.is-active span {
    background: #171717;
}

nav {
    display: table;
    position: fixed;
    top: 60px;
    right: 0;
    height: calc(100% - 120px);
    width: 300px;
    z-index: 2;
    background: #171717;
    -moz-transform: translateX(100%);
    -o-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -moz-transition: all 250ms;
    -o-transition: all 250ms;
    -webkit-transition: all 250ms;
    transition: all 250ms;
}
nav.is-active {
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    right: 60px
}
.in-place nav.is-active {
    right: 10px;
}
nav .menu-class {
    display: table-cell;
    vertical-align: middle;
    padding: 0;
}
nav .menu-class li {
    margin: 17px 0;
    display: block;
    text-align: center;
}
nav .menu-class li a {
    display: inline-block;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 300;
    font-size: 16px;
    color: #fff;
    position: relative;
}
nav .menu-class li a:before {
    display: block;
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 448 512"><!--! Font Awesome Free 6.4.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --><style>svg{fill:%23ffffff}</style><path d="M438.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L338.8 224 32 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l306.7 0L233.4 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160z"/></svg>');
    position: absolute;
    font-family: fontAwesome;
    top: 50%;
    font-size: 12px;
    left: -20px;
    color: var(--colore-primario);
    opacity: 0;
    -khtml-opacity: 0;
    -moz-opacity: 0;
    filter: alpha(opacity=0);
    visibility: hidden;
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -moz-transition: all 200ms;
    -o-transition: all 200ms;
    -webkit-transition: all 200ms;
    transition: all 200ms;
}
nav .menu-class li a:hover:before {
    visibility: visible;
    opacity: 1;
    -khtml-opacity: 1;
    -moz-opacity: 1;
    filter: alpha(opacity=100);
    left: -30px
}
@media screen and (max-width: 570px) {
    .in-place nav.is-active, nav {
        right: 0;
        top: 70px;
    }
    nav {
        width: 100%;
    }
}
@media screen and (max-width: 400px) {
    header.in-place .logo {
        left: 20px;
    }
    header.in-place .icon-trigger {
       right: 20px;
    }
}

/** Privacy Policy **/
.row-title {
    padding: 120px 0;
}
.row-title h1 {
    font-size: 50px;
}

.box-privacy h2 {
    font-size: 36px;
}

/** Back to Top **/
.to-top {
    position: fixed;
    right: 0;
    bottom: 60px;
    z-index: 2;
    width: 70px;
    height: 55px;
    font-size: 20px;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    background: #f1f1f1;
    visibility: hidden;
    -moz-transform: translateX(100%);
    -o-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    opacity: 0;
    -khtml-opacity: 0;
    -moz-opacity: 0;
    filter: alpha(opacity=0);
    color: #171717;
}
.to-top.in-place {
    visibility: visible;
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
    -khtml-opacity: 1;
    -moz-opacity: 1;
    filter: alpha(opacity=100);
}
.to-top svg {
    padding: 18px;
    fill: #171717;
}
.swiper-button-disabled {
    opacity: .3;
}
.error404-box {
    padding-top: 240px;
    padding-bottom: 120px;
}

@media screen and (min-width: 992px) {
    .no-arrow-x3 .swiper-btn-prev,
    .no-arrow-x3 .swiper-btn-next  {
        display: none;
    }
}
@media screen and (min-width: 1200px) {
    .no-arrow-x4 .swiper-btn-prev,
    .no-arrow-x4 .swiper-btn-next {
        display: none;
    }
}

.row.box-contatti {
    display: flex;
    flex-wrap: wrap;
}
.row.box-contatti .col-lg-4 {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.contatto-box-link {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.contatto-box {
    flex: 1;
}
.btn-contatti {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-img-1 {
    background-image: url('/wp-content/uploads/2024/08/bg-grey-sx.png'), url('/wp-content/uploads/2024/08/bg-grey-dx.png');
    background-position: center left, bottom right;
    /* background-size: cover, contain; */
    background-repeat: no-repeat, no-repeat;
}
.bg-white.bg-img-1 {
    background-image: url('/wp-content/themes/cibustec/assets/img/bg-white-sx.png'), url('/wp-content/themes/cibustec/assets/img/bg-white-dx.png');
}
.bg-hero-atom {
    background-image: url('/wp-content/themes/cibustec/assets/img/hero-sx.png'), url('/wp-content/themes/cibustec/assets/img/hero-dx.png');
    /* background-position: top left, bottom right; */
    background-position: left calc(0% + 60px), right bottom;
    /* background-size: cover, contain; */
    background-repeat: no-repeat, no-repeat;
}
.bg-hero-img {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
@media screen and (max-width: 1599px) {
    .bg-hero-atom {
        background-position: calc(0% - 100px) calc(0% + 60px), calc(100% + 100px) calc(100% + 100px);
    }
    .bg-footer {
        background-image: none;
    }
}
@media screen and (max-width: 991px) {
    .bg-hero-atom {
        background-position: calc(0% - 250px) calc(0% + 60px), calc(100% + 250px) calc(100% + 200px);
    }
    .bg-img-1 {
        background-image: none;
    }
    .swiper-slide img {
        aspect-ratio: 4 / 3;
    }
    .mySwiperAziende .swiper-slide img {
        aspect-ratio: unset;
    }
}
@media screen and (max-width: 600px) {
    .bg-hero-atom {
        background-image: none;
    }
}
.sezione-sponsor.no-margin-top {
    padding-top: 20px;
}
.sezione-sponsor.no-margin-top .container-sponsor {
    margin-top: 0;
}
.mySwiperSlider-x3t .swiper-wrapper {
    align-items: self-start;
}
.mySwiperAziende .swiper-slide img {
    aspect-ratio: unset;
}
.mySwiperAziende .swiper-item-box .swiper-item:nth-child(-n+2) { 
    border-bottom: 1px solid #f1f1f1;
}
.mySwiperAziende .swiper-item-box {
    display: flex;
    flex-direction: column;
}
.user-information ul {
    text-align: left;
    color: #fff;
    padding-left: 30px;
}


.box-link-brochures {
    position: absolute;
    display: none;
    text-align: center; 
    /* margin-bottom: 50px;
    border: 1px solid var(--colore-primario);*/
    padding: 60px 30px 0;
    top: 0;
    left: 0;
    background-color: #fff;
    width: 100%;
    height: 100%;
}

.box-link-brochures p {
    margin-bottom: 0;
}
.close {
    font-size: 38px;
}
.modal-header .close {
    padding: 0.5rem 1rem;
}
.hidden-input {
    display: none;
}