@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&family=Square+Peg&display=swap');

:root {
    --black: #000000;
    --white: #FFFFFF;
    --grey: #767676;
    --darkgrey: #4F4F4F;
    --lightgrey: #EBEBEB;
    --blue: #1D71B8;
    --lightblue: #39A4FF;
    --yellow: #FFF165;
}

html {
    height: 100%;
}
body {
    font-family: 'Sora';
    height: 100%;
    color: var(--black);
}
header {
    box-shadow: 0px 2px 14px rgba(0,0,0,0.12);
    z-index: 1;
    position: sticky;
    width: 100%;
    background-color: var(--white);
    top: 0;
}
main {
    position: relative;
    z-index: 0;
}
a {
    text-decoration: none;
    color: var(--blue);
}
h1 {
    font-size: 40px;
    font-weight: bold; 
}
h2 {
    font-size: 24px;
}
h3 {
   font-size: 40px;
   font-weight: bold; 
}
h4 {
   font-size: 30px;
   font-weight: bold; 
}
h5 {
    font-size: 18px;
    font-weight: bold; 
}
h6 {
    font-size: 16px;
    font-weight: bold;  
}
p {
    font-size: 18px;
}

/* generic */
.container {
    max-width: 1520px;
}
.btn {
    /*text-transform: capitalize;*/
    font-size: 15px;
    border-radius: 40px;
    width: 190px;
    padding: 10px 0;
    text-align: center;
    border: unset;
    font-weight: bold;
}
.btn-white {
    background-color: var(--white);
    color: var(--black);
}
.btn-white:hover {
    background-color: var(--blue);
    color: var(--white);
}
.btn-blue {
    background-color: var(--blue);
    color: var(--white);
}
.btn-blue:hover {
    background-color: var(--white) !important;
    color: var(--blue);
    border: 1px solid var(--blue);
}
.link-blue{
    color: var(--blue);
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
}
.link-blue > span {
    color: var(--blue) !important;
    width: 145px;
}
.line {
    height: 2px;
    background-color: var(--lightgrey);
}
.line-carousel {
    position: absolute;
    bottom: 50px;
    width: 100%;
}
.color-blue {
    color: var(--blue);
}
.color-black {
    color: var(--black);
}
.dropdown-item:focus, .dropdown-item:hover {
    background-color: unset;
}
.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}
.accordion-button:not(.collapsed) {
    color: var(--white);
    background-color: var(--blue);
}
.page-link {
    color: var(--blue);
}
.active>.page-link, .page-link.active {
    background-color: var(--blue);  
    border-color: var(--blue);
}
/* menù */
.nav-centrale {
    display: flex;
}
nav ul {
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}
nav ul li {
    display: flex;
    align-items: center;
    height: 100%;
    margin-right: 15px;
    text-transform: uppercase;
    position: relative;
}
nav ul li.is-active {
    font-weight: bold;
}
nav .dropdown-menu {
    position: absolute;
    z-index: -1;
    top: 79px;
    background-color: #F2F9FF;
    border-radius: 0 0 40px 40px;
    width: 550px;
    left: 0;
    padding: 20px;
    box-shadow: 10px 14px 24px rgba(0,0,0,0.25);
    opacity: 0;
    transition: opacity 0.3s ease, z-index 0.3s ease;
    display: flex;
    flex-wrap: wrap;
    visibility: hidden;
}
nav .nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible; 
    z-index: 1;
    transition: opacity 0.3s ease, visibility 0s 0s, z-index 0.3s ease;
}
nav .dropdown-menu.small {
    width: 250px;
}
nav .dropdown-menu li {
    width: 50%;
    margin-right: unset;
    overflow-wrap: break-word;
    white-space: normal; 
}
nav .dropdown-menu.small li {
    width: 100%;
}
nav .sottomenu a {
    text-transform: none;
    font-size: 13px;
    margin-bottom: 20px;
    overflow-wrap: break-word;
    white-space: normal; 
}
nav .dropdown-menu a:hover {
    color: var(--blue);
}
.nav-item i {
    display: none;
}
.dropdown-item.active, .dropdown-item:active {
    background-color: unset;
    color: unset;
}

/* header */
header a {
    color: var(--black);
    font-size: 13px;
}
header a i {
    font-size: 17px;
}
#header-info {
    display: flex;
    justify-content: space-around;
    align-items: center;
}
#divisore {
    width: 1px;
    height: 100%;
    border: 1px solid var(--black);
}
.language {
    cursor: pointer;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.language img {
    border-radius: 40px;
}
.language.active .languages {
    opacity: 1;
    transition: opacity 0.3s ease;
}
.languages {
    position: absolute;
    background-color: #F2F9FF;
    opacity: 0;
    display: flex;
    flex-direction: column;
    padding: 10px 20px;
    font-size: 13px;
    margin-top: 167px;
    border-radius: 0 0 20px 20px;
    box-shadow: 10px 14px 24px rgba(0, 0, 0, 0.25);
    transition: opacity 0.3s ease;
}
.languages a {
    margin-bottom: 10px;
}
.languages a:hover {
    color: var(--blue);
}

/* breadcrumb */
#breadcrumb {
    background-color: #F5F5F5;
    padding: 20px 0;
    font-size: 11px;
    text-transform: uppercase;
}
#breadcrumb a {
    color: var(--black);
    font-weight: bold;
}
#breadcrumb i {
    margin: 0 8px;
}

/* home slider */
#owl-carousel-home .owl-nav {
    position: absolute;
    bottom: 0;
    right: 10%;
    background-image: url('../img/background_arrows.png');
    width: 245px;
    height: 72px;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    font-size: 20px;
}
#owl-carousel-home .owl-item:after{
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5); 
    z-index:0;  
}
#owl-carousel-home .owl-carousel-home-text {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    height: 100%;
    width: 1520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
}
#owl-carousel-home .owl-carousel-home-text h3 {
    font-weight: bold;
    font-size: 40px;
    color: var(--white);
    width: 30%;
}
.owl-theme .owl-nav [class*=owl-]:hover {
    background-color: unset;
    color: unset;
}

/* home icone */
#icone {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
}
#icone p {
    margin-left: 20px;
    margin-bottom: 0;
    font-size: 14px;
}

/* home chi siamo */
#chi-siamo img {
    border-radius: 40px;
}
#chi-siamo p {
    font-size: 18px;
}
#chi-siamo p b {
    color: var(--darkgrey);
}
#chi-siamo .angolo {
    position: absolute;
    left: 12px;
    bottom: -1px;
    width: 130px; 
    border-radius: unset;
}

/* home prodotti */
#owl-carousel-prodotti .owl-nav {
    border: 2px solid var(--lightgrey);
    border-radius: 40px;
    width: 120px;
    height: 50px;
    margin: 0 auto;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: var(--white);
}
#owl-carousel-prodotti .owl-stage{
    margin-bottom: 30px;
}
#owl-carousel-prodotti a p {
    color: var(--black);
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    width: 47%;
    margin: 10px auto 0  auto;
    transition: color 0.3s ease;
}
#owl-carousel-prodotti .owl-carousel-image {
    height: 300px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#owl-carousel-prodotti .owl-item img {
    width: 60%;
}
#owl-carousel-prodotti .owl-item:hover a p {
    color: var(--blue);
    transition: color 0.3s ease;
}
#owl-carousel-prodotti .owl-carousel-image-arrow {
    color: var(--white);
    background-color: var(--blue);
    border-radius: 40px;
    height: 94px;
    width: 94px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
#owl-carousel-prodotti .owl-item:hover .owl-carousel-image-arrow {
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* banner */
.banner img {
    border-radius: 40px;
}
.banner h1 {
    font-size: 30px;
}
.banner h2 {
    color: var(--white);
    font-size: 30px;
}
.banner h3 {
    color: var(--white);
}
.banner .banner-title {
    background-image: url('../img/background_title.png');
    background-size: cover;
    width: 350px;
    height: 103px;
    position: absolute;
    top: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 50%;
    transform: translateX(-50%);
}
.banner .banner-title.banner-title-left {
    left: 5%;
    transform: translateX(0);
}
.banner .banner-title span {
    position: absolute;
    background-color: var(--yellow);
    border-radius: 8px;
    padding: 5px 10px;
    font-size: 10px;
    transform: rotate(15deg);
    top: 15px;
    right: 30%;
}
.banner .banner-text {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    padding: 0 70px;
    z-index: 1;
}
.banner .layer{
    position: absolute;
    top: 0;
    left: 12px;
    right: 12px;
    height: 100%;
    background-color: rgba(0,0,0,0.5); 
    z-index:0;  
    border-radius: 40px;
}
.banner .layer.layer-blue {
    background-color: #39A4FF;
    opacity: 0.7;
}
.banner .banner-product {
    background-color: var(--white);
    border-radius: 40px;
    padding: 30px;
    height: 320px;
}
.banner .banner-product img {
    width: 70%; 
}
.banner .banner-product span {
    font-weight: bold;
    font-size: 18px;
}
.banner .icon-cart {
    background-color: var(--blue);
    width: 68px;
    height: 68px;
    border-radius: 68px;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    position: absolute;
    right: 0;
    bottom: 0;
}
.banner .angolo {
    position: absolute;
    right: 22px;
    bottom: -2px;
    width: 138px; 
}
.banner .angolo img {
    border-radius: unset;
}

/* home news */
#news-home img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px;
}
#news-home a span {
    color: var(--black);
}
#news-home h6 {
    min-height: 39px;
    text-transform: uppercase;
}
#news-home .news-single-home > div {
    border: 1px solid #EBEBEB;
    border-radius: 40px;
    font-size: 16px;
    height: 100%;
}
#news-home .news-single-footer-home {
    border-top: 1px solid #EBEBEB;
}
#news-home .newsletter-home h4 {
    color: var(--white);
    position: absolute;
    bottom: 25%;
    width: 80%;
    left: 10%;
}
#news-home .newsletter-home > i {
    color: var(--white);
    position: absolute;
    top: 4%;
    right: 10%;
    font-size: 50px;
}
#news-home .newsletter-home .newsletter-cta-home {
    position: absolute;
    bottom: -1px;
    right: 0;
    width: 75%;
    /*background-image: url('../img/Vector 2.png');
    padding: 10px;*/
    background-position: top;
    background-size: 130%;
}
#news-home .newsletter-home .newsletter-cta-home img {
    border-radius: unset;
}
#news-home .newsletter-home .newsletter-cta-home a {
    display: flex;
    justify-content: end;
    align-items: center;
    position: absolute;
    bottom: 7px;
    width: 85%;
}
#news-home .newsletter-home .newsletter-cta-home a i {
    margin-left: 5px;
}

/* product list */
.products-list .products-list-single > div {
    border: 1px solid var(--lightgrey);
    border-radius: 20px;
    padding: 20px;
    height: 400px;
}
.products-list .products-list-single > div:hover {
    border: 1px solid var(--lightblue);
}
.products-list .products-list-single > div:hover h5 {
    color: var(--lightblue);
}
.products-list .products-list-single > div:hover p {
    color: var(--grey);
}
.products-list .products-list-single > div:hover .btn{
    background-color: var(--lightblue);
}
.products-list .products-list-categories > span {
    text-transform: uppercase;
    border: 1px solid var(--lightgrey);
    font-size: 16px;
    border-radius: 20px;
    padding: 5px 10px;
    margin-right: 5px;
}
.products-list .products-list-single img {
    border-radius: 30px;
}

/* scheda prodotto hero */
.hero i.fas {
    font-size: 20px;
    color: var(--blue);
    padding: 13px;
    border: 1px solid var(--blue);
    border-radius: 30px;
    margin-left: 5px;
    cursor:pointer;
}
#owl-carousel-hero-product .owl-stage {
    display: flex;
    align-items: center;
}
#owl-carousel-hero-product .owl-nav {
    position: absolute;
    width: 100%;
    top: 50%;
    display: flex;
    justify-content: space-between;
}
#owl-carousel-hero-product .owl-dots {
    margin-top: 15px;
}
#owl-carousel-hero-product .owl-nav i {
    border: unset;
    color: var(--black);
    font-size: 24px;
}
#owl-carousel-hero-product.owl-theme .owl-dots .owl-dot.active span, 
#owl-carousel-hero-product.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--lightblue);
}

/* scheda prodotto caratteristiche */
.caratteristica > div{
    border-radius: 20px;
    border: 1px solid var(--lightgrey);
    padding: 20px;
    height: 300px;
}
.caratteristica > div p {
    font-size: 16px;
}

/* scheda prodotto carosello immagini */
#owl-carousel-images-products .owl-nav {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-image: url('../img/background_arrows.png');
    width: 245px;
    height: 72px;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    font-size: 20px;
}

/* scheda prodotto optional */
.optional-single > div{
    border-radius: 20px;
    border: 1px solid var(--lightgrey);
    background-color: #F5F5F5;
}
.optional-single > div h5 {
    padding: 20px;
    margin-bottom: 0;
}
.optional-single > div i {
    color: var(--lightblue);
}
.optional-single .optional-text {
    padding: 20px;
    border-radius: 20px;
    background-color: var(--white);
}
.optional-single .optional-text p {
    font-size: 16px;
}

/* scheda prodotti video */
.video iframe {
    
}
.video iframe, .video img {
    border-radius: 20px;
}
.video .video-preview {
    position: relative;
    cursor: pointer;
}
.video .video-preview.active {
    opacity: 0.7;
}
.video .video-preview i {
    font-size: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
} 

/* scheda prodotti download e settori */
.scheda-tecnica {
    border: 1px solid var(--lightgrey);
    padding: 20px 30px;
    width: 100%;
}
.scheda-tecnica a {
    color: var(--blue);
}
.scheda-tecnica i {
    margin-right: 10px;
}
.scheda-tecnica:first-of-type {
    border-radius: 20px 20px 0 0;
}
.scheda-tecnica:last-of-type {
    border-radius: 0 0 20px 20px;
}
.settori img {
    border-radius: 20px;
    width: 100%;
}
.settori p {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}
.settori a {
    color: var(--black);
}

.contatti img {
    border-radius: 30px;
}
#newsletter_form .btn {
    width: 300px;
}


.btn-acquista i {
    color: var(--white);
    border: unset;
}
.btn-acquista i:hover {
    color: var(--blue);
}

#form_recuperapsw, .btn-recupera {
    display: none;
}
.btn-recupera {
    width: 220px;
}

/* footer */

footer {
    background-color: var(--darkgrey);
    border-radius: 40px 40px 0 0;
    color: var(--white);
    font-size: 16px;
}
footer .fab {
    font-size: 24px;
}
footer a {
    color: var(--white);
}
footer span {
    font-family: 'Square Peg';
    font-size: 28px;
}
footer input {
    border-radius: 40px;
    background-color: var(--white);
    width: 100%;
    border: unset;
    height: 60px;
    padding: 20px;
}
footer .logo {
    filter: brightness(0) invert(1);
}
footer .newsletter i {
    color: var(--blue);
    font-size: 24px;
    position: absolute;
    right: 45px;
    top: 17px;
    cursor: pointer;
}
footer .credits {
    background-color: var(--white);
    border-radius: 40px 40px 0 0;
    color: var(--darkgrey);
    font-size: 15px;
}
footer .credits a {
    color: var(--darkgrey);
}


/* BLOCCHI */
.block .btn-white {
    border: 1px solid #000000;
}
.block .btn-white:hover {
    border: 1px solid #FFFFFF;
}
.block .btn-share > i {
    font-size: 20px;
    color: var(--blue);
    padding: 13px;
    border: 1px solid var(--blue);
    border-radius: 30px;
    margin-left: 5px
}
.block .image {
    width: 100%;
    border-radius: 40px;
}
.owl-carousel-slider .owl-stage {
    display: flex;
    align-items: center;
}
.owl-carousel-slider .owl-nav {
    position: absolute;
    width: 100%;
    top: 50%;
    display: flex;
    justify-content: space-between;
}
.owl-carousel-slider .owl-nav i {
    border: unset;
    color: var(--black);
    font-size: 24px;
}
.owl-carousel-slider.owl-theme .owl-dots .owl-dot.active span, 
.owl-carousel-slider.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--lightblue);
}

/* WZAPP  -------------------------------------------------------------- */

.whats-float {
    position: fixed;
    transform:translate(140px,0px);
    top:75%;
    right:0;
    width:180px;
    overflow: hidden;
    background-color: #25d366;
    color: #FFF;
    border-radius: 4px 0 0 4px;
    z-index: 10;
    transition: all 0.5s ease-in-out;
    vertical-align: middle
}
.whats-float a span {
    color: white;
    font-size: 15px;
    padding-top: 8px;
    padding-bottom: 10px;
    position: absolute;
    line-height: 16px;
    font-weight: bolder;
}

.whats-float i {
    font-size: 30px;
    color: white;
    line-height: 30px;
    padding: 10px;
    transform:rotate(0deg);
    transition: all 0.5s ease-in-out;
    text-align:center;

}

.whats-float:hover {
    color: #FFFFFF;
    transform:translate(0px,0px);
}

.whats-float:hover i  {
    transform:rotate(360deg);
}

.grecaptcha-badge {
	visibility: hidden;
}


.logo-twitter {
    filter: invert(38%) sepia(88%) saturate(1100%) hue-rotate(163deg) brightness(70%) contrast(100%);
}