*, *:before, *:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #f15500;
    --accent-color: #b44f00;
    --white-color: #ffffff;
    --text-color: #6a6a6a;
    --text-alt-color: #a4a4a4;
    --footer-bk: #323232;
}

body {
    background: var(--white-color);
    color: var(--text-color);
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

@media (max-width: 767px) {
    html {
        font-size: 12px;
    }
}

.mt1 {margin-top: .5rem;}
.mt2 {margin-top: 1rem;}
.mt3 {margin-top: 1.5rem;}
.mt4 {margin-top: 2rem;}
.mt5 {margin-top: 2.5rem;}
.mt6 {margin-top: 3rem;}
.mt7 {margin-top: 3.5rem;}
.mt8 {margin-top: 4rem;}
.mt12 {margin-top: 6rem;}
.mt14 {margin-top: 12rem;}
.mb1 {margin-bottom: .5rem;}
.mb2 {margin-bottom: 1rem;}
.mb3 {margin-bottom: 1.5rem;}
.mb4 {margin-bottom: 2rem;}
.mb5 {margin-bottom: 2.5rem;}
.mb6 {margin-bottom: 3rem;}
.mb7 {margin-bottom: 3.5rem;}
.mb8 {margin-bottom: 4rem;}
.mb12 {margin-bottom: 6rem;}

.pt1 {padding-top: .5rem;}
.pt2 {padding-top: 1rem;}
.pt3 {padding-top: 1.5rem;}
.pt4 {padding-top: 2rem;}
.pt5 {padding-top: 2.5rem;}
.pt6 {padding-top: 3rem;}
.pt7 {padding-top: 3.5rem;}
.pt8 {padding-top: 4rem;}
.pb1 {padding-bottom: .5rem;}
.pb2 {padding-bottom: 1rem;}
.pb3 {padding-bottom: 1.5rem;}
.pb4 {padding-bottom: 2rem;}
.pb5 {padding-bottom: 2.5rem;}
.pb6 {padding-bottom: 3rem;}
.pb7 {padding-bottom: 3.5rem;}
.pb8 {padding-bottom: 4rem;}

.img-resp {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.small {
    font-size: 0.7rem;
}

strong,
b {
    color: var(--primary-color);
    font-weight: 400;
}

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

a:hover,
a:focus {
    color: var(--accent-color);
    text-decoration: none;
}

a:not([href]) {
    color: var(--footer-bk);
}

.btn {
    position: relative;
    display: inline-block;
    overflow: hidden;
    font-size: 0.9rem;
    padding: .4rem 0.8rem;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    -webkit-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out;
}
.btn:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    -webkit-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out;
    z-index: -1;
}
.btn:hover {
    color: var(--white-color);
}
.btn:hover:before {
    -webkit-transform: translateX(0);
        transform: translateX(0);
}

.text-center {text-align: center;}
.text-right {text-align: right;}
.text-left {text-align: left;}
.text-upper {text-transform: uppercase;}



.rwd-video {
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
    padding-top: 30px;
    position: relative;
}
.rwd-video iframe,
.rwd-video object,
.rwd-video embed {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}



h1, .h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin: 0.5rem 0 1rem;
    font-weight: normal;
    color: var(--primary-color);
}
h2, .h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin: 0.5rem 0 1rem;
    font-weight: normal;
    color: var(--primary-color);
}
h3, .h3 {
    font-size: 2rem;
    line-height: 1.2;
    font-weight: normal;
    color: var(--white-color);

}

h3.alt-color {
    color: var(--primary-color);
}

h4, .h4 {
    font-size: 1.2rem;
    line-height: 1.2;
    font-weight: 700;
    color: var(--primary-color);
}
span{
    font-weight: 700;
}
.lead {
    font-size: 1.8rem;
    font-weight: 600;
}

.preTitle {
    color: var(--primary-color);
    font-weight: 600;
}

.preTitle + h2 {
    margin-top: 0;
}

@media (max-width: 767px) {
    h1, .h1 {
        font-size: 3rem;
        line-height: 1.2;
    }
    h2, .h2 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    h3, .h3 {
        font-size: 1.8rem;
    }
}

p {
    margin: 0px 0px 1rem;
}

address {
    font-style: normal;
}


.container,
.containerBig,
.containerMini {
    padding-right: 25px;
    padding-left: 25px;
    margin-right: auto;
    margin-left: auto;
}
@media (min-width: 768px) {
    .container,
    .containerBig,
    .containerMini {
        padding-right: 0px;
        padding-left: 0px;
        width: 750px;
    }
}
@media (min-width: 992px) {
    .container,
    .containerBig,
    .containerMini {
        padding-right: 0px;
        padding-left: 0px;
        width: 970px;
    }
}
@media (min-width: 1200px) {
    .container,
    .containerBig,
    .containerMini {
        padding-right: 0px;
        padding-left: 0px;
        width: 1070px;
    }
    .containerMini {
        width: 950px;
    }
}
@media (min-width: 1400px) {
    .containerBig {
        padding-right: 0px;
        padding-left: 0px;
        width: 1370px;
    }
}


.article-info {
    margin: 1rem 0;
    font-size: 0.8rem;
}
.article-info .article-info__elem {
    display: flex;
    margin-bottom: 0.3rem;
}

.article-info strong {
    color: var(--white-color);
    font-weight: 600;
    background: var(--primary-color);
    padding: 0rem 0.3rem;
    margin-right: 0.2rem;
}


.article-container:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

.img-txt-right {
    float: right;
    margin: 0.5rem 0rem 0.5rem 2rem;
}

.img-txt-left {
    float: left;
    margin: 0.5rem 2rem 0.5rem 0rem;
}

.img-txt-25 {
    width: 25%;
}
.img-txt-50 {
    width: 50%;
}
@media (max-width: 767px) {
    .img-txt-25,
    .img-txt-50 {
        width: auto;
    }
}



.article-container-right {
    display: block;
    float: right;
    margin: 0.5rem 0 0.5rem 2rem;
    width: 50%;
    
    /* border: 1px solid green; */
    margin-right: -25%;
}

.article-container-left {
    display: block;
    float: left;
    margin: 0.5rem 2rem 0.5rem 0rem;
    width: 50%;
    
    /* border: 1px solid blue; */
    margin-left: -25%;
}



@media (max-width: 1630px) {
    .article-container-right {
        margin-right: -15%;
    }
    .article-container-left {
        margin-left: -15%;
    }
}
@media (max-width: 1400px) {
    .article-container-right {
        margin-right: -5%;
    }
    .article-container-left {
        margin-left: -5%;
    }
}
@media (max-width: 1080px) {
    .article-container-right {
        margin-right: 0%;
    }
    .article-container-left {
        margin-left: 0%;
    }
}
@media (max-width: 767px) {
    .article-container-right,
    .article-container-left {
        float: none;
        margin: 1rem 0;
        width: 100%;
    }
}

/* HEADER */
header {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    padding: 5px 15px 20px;
    background: -moz-linear-gradient(top, rgba(64,23,0,0.52) 0%, rgba(64,23,0,0) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(64,23,0,0.52) 0%,rgba(64,23,0,0) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(64,23,0,0.52) 0%,rgba(64,23,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#85401700', endColorstr='#00401700',GradientType=0 );
}

#logo img {
    width: 200px;
    /* transition: 0.5s ease-out; */
    filter: brightness(1) invert(0);
}

#logo.logo-alt img {
    filter: brightness(0) invert(1);
}

header.menuOpen #logo img {
    filter: brightness(0) invert(1);
}

#menuToggle {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 5px;
    right: 15px;
    transition: 0.2s ease-out;
    transform: scale(1);
    cursor: pointer;
}
@media (max-width: 767px) {
    #menuToggle {
        right: 5px;
    }
}


#menuToggle:hover {
    transform: scale(0.95);
}
#menuToggle div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 8px;
    background: var(--white-color);
    transition: 0.5s ease-out;
}
#menuToggle div::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -200%);
    width: 8px;
    height: 8px;
    border-radius: 8px;
    background: var(--white-color);
    transition: 0.4s ease-out;
}
#menuToggle div::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 100%);
    width: 8px;
    height: 8px;
    border-radius: 8px;
    background: var(--white-color);
    transition: 0.4s ease-out;
}
header.menuOpen #menuToggle div::before {
    transform: translate(-200%, -50%);
}
header.menuOpen #menuToggle div::after {
    transform: translate(100%, -50%);
}
#menu-overlay {
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,123,11,0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    overflow-y: auto;
    transform: scale(0);
    opacity: 0;
    transition: 0.4s ease-out;
    padding: 100px 50px 50px;
}
#menu-overlay.active {
    opacity: 1;
    transform: scale(1);
}

/* #menu-overlay ul {
    list-style: none;
    padding: 0;
    margin: 0;
} */

ul.menu-lang {
    margin-bottom: 10px;
}
ul.menu-lang li {
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.8rem;
}
ul.menu-lang li a {
    text-decoration: none;
    color: var(--accent-color);
    transition: 0.4s ease-out;
}
ul.menu-lang li:after{
    content: "/";
    display: inline-block;
    margin-left: 4px;
    color: var(--white-color);
}
ul.menu-lang li:last-child:after{
    display: none;
}

ul.menu-lang li a:hover,
ul.menu-lang li a.active {
    color: var(--white-color);
}

#menu-overlay ul.menu-primary li {
    position: relative;
    list-style: none;
    display: block;
}

#menu-overlay ul.menu-primary li a {
    position: relative;
    text-decoration: none;
    font-size: 2.5rem;
    color: var(--white-color);
    font-weight: 700;
    display: inline-block;
    transition: 0.4s ease-out;
}

#menu-overlay ul.menu-primary li a:hover,
#menu-overlay ul.menu-primary li a.active {
    color: var(--accent-color);
}

ul.menu-social {
    margin-top: 10px;
}
ul.menu-social li a {
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 30px;
    text-align: center;
    line-height: 30px;
    background: var(--white-color);
    color: var(--primary-color);
    transition: 0.4s ease-out;
    margin-right: 10px;
}
ul.menu-social li:last-child a {
    margin-right: 0px;
}
ul.menu-social li a:hover,
ul.menu-social li a:focus {
    background: var(--accent-color);
    color: var(--white-color);
}

ul.menu-social li {
    display: inline-block;
}

@media(max-width:768px) {
    #menu-overlay {
        padding: 100px 25px 50px;
    }
    #menu-overlay ul.menu-primary li a {
        font-size: 1.8rem;
    }
}



/* HERO */
#hero {
    width: 100%;
    /* height: 400px; */
}

.hero-full-height {
    height: 800px;
    display: flex;
    align-items: center;
}

.hero-full-height .hero-full-height__container {
    position: relative;
    z-index: 1;
}

.hero-section a {
    position: relative;
    color: var(--white-color);
    z-index: 1;
    padding: 4px;
    transition: 0.4s ease-out;
}
.hero-section a:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: left;
    transition: 0.2s ease-out;
    background: var(--white-color);
    transform: scaleX(0);
    z-index: -1;
}

.hero-section a:hover,
.hero-section a:focus {
    color: #fff;
    color: var(--primary-color);
    text-decoration: underline;
    text-decoration: none;
}
/*.hero-section a:hover:after {
    transform: scaleX(1);
}*/

#hero.internal-hero {
    height: 450px;
    background-color: var(--primary-color);
    background-position: center;
    background-size: cover;

    display: flex;
    align-items: center;
}

.hero-content {
    height: 500px;
    background-color: var(--primary-color);
    color: var(--white-color);
    background-position: center;
    background-size: cover;

    display: flex;
    align-items: center;
}

@media(max-width:768px) {
    .hero-content {
        height: 400px;
    }

    #hero.hero-full-height .h1 {
        font-size: 3rem;
    }
    #hero.hero-full-height .h2 {
        font-size: 3rem;
    }
}

.hero-content .h1, .hero-content .h2 {
    color: var(--white-color);
}

/* VIDEO BACKGROUND */
#hero.hero--home {
    overflow: hidden;
    max-width: 100%;
     z-index: 1;
    position: relative;
}
#hero.hero--home #topBannerHomepage-videoWrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(241,85,0,1);
}
#hero.hero--home iframe,
#hero.hero--home video {
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);

    /* mix-blend-mode: overlay; */
}




#hero .h1,
#hero .h2 {
    color: var(--white-color);
}

#hero .h2 {
    font-size: 3rem;
}

@media (max-width: 767px) {
    #hero .h2 {
        font-size: 2.5rem;
    }
}

#hero .h1 + .h2 {
    margin-top: -0.5rem;
}

#hero .slide {
    padding: 200px 0;
}

#hero .slick-dots {
    bottom: 70px;
}

#hero .slick-dots li button:before {
    color: #fff;
    font-size: 14px;
}
#hero .slick-dots li.slick-active button:before {
    color: #fff;
}

.fadeSlide {
    opacity: 0;
    transition: 0.4s ease-out;
    transition-delay: 0.4s;
}
.slick-current .fadeSlide {
    opacity: 1;
    transition: 0.4s ease-out;
    transition-delay: 0.4s;
}


/* DEMO - TEXT ANIMATION */

.animate-pop-in {
    animation: pop-in .6s cubic-bezier(0, 0.9, 0.3, 1.2) forwards;
    opacity: 0;
}

.fade-slide-up {
    animation: fade-slide-up 1s .5s cubic-bezier(0, 0.5, 0, 1) forwards;
    opacity: 0;
}
.fade-slide-up img{
    width: 13%;
    display: block;
    margin-left: auto;
}

@keyframes fade-slide-up {
    0% {
        opacity: 0;
        transform: translateY(4rem);
    }
    100% {
        opacity: 1;
        transform: none;
    }
} 
@keyframes pop-in {
    0% {
        opacity: 0;
        transform: translateY(-4rem) scale(.8);
    }
    100% {
        opacity: 1;
        transform: none;
    }
}

#hero.hero--home .h2 {
    animation-delay: .6s;
    font-weight: normal;
}

#hero.hero--home .h2 span{
    font-weight: bold;
    font-size: 3rem;
}


#hero.hero--home .h1 {
    animation-delay: 1.4s;
}


@media (max-width: 767px) {

}


/* DEMO - TEXT REVEAL */
.reveal-text,
.reveal-text::after {
	-webkit-animation-delay: var(--animation-delay, 2s);
	animation-delay: var(--animation-delay, 2s);
	-webkit-animation-iteration-count: var(--iterations, 1);
	animation-iteration-count: var(--iterations, 1);
	-webkit-animation-duration: var(--duration, 800ms);
	animation-duration: var(--duration, 800ms);
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-timing-function: cubic-bezier(0.0, 0.0, 0.2, 1);
	animation-timing-function: cubic-bezier(0.0, 0.0, 0.2, 1);
}

.reveal-text {
	--animation-delay: var(--delay, 0.5s);
	--animation-duration: var(--duration, 800ms);
	--animation-iterations: var(--iterations, 1);
	position: relative;
	/* font-size: 10vw; */
	-webkit-animation-name: clip-text;
	animation-name: clip-text;
	color: #FFF;
	/* white-space: nowrap; */
	cursor: default
	
}

.reveal-text::after {
		content: "";
		position: absolute;
		z-index: 999;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background-color: var(--primary-color);
		-webkit-transform: scaleX(0);
		transform: scaleX(0);
		-webkit-transform-origin: 0 50%;
		transform-origin: 0 50%;
		pointer-events: none;
		-webkit-animation-name: text-revealer;
		animation-name: text-revealer;
	}


@-webkit-keyframes clip-text {
	from {
		-webkit-clip-path: inset(0 100% 0 0);
		clip-path: inset(0 100% 0 0);
	}
	to {
		-webkit-clip-path: inset(0 0 0 0);
		clip-path: inset(0 0 0 0);
	}
}


@keyframes clip-text {
	from {
		-webkit-clip-path: inset(0 100% 0 0);
		clip-path: inset(0 100% 0 0);
	}
	to {
		-webkit-clip-path: inset(0 0 0 0);
		clip-path: inset(0 0 0 0);
	}
}
@-webkit-keyframes text-revealer {
	0%, 50% {
		-webkit-transform-origin: 0 50%;
		transform-origin: 0 50%;
	}
	60%, 100% {
		-webkit-transform-origin: 100% 50%;
		transform-origin: 100% 50%;		
	}
	60% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
	100% {
		-webkit-transform: scaleX(0);
		transform: scaleX(0);
	}
}
@keyframes text-revealer {
	0%, 50% {
		-webkit-transform-origin: 0 50%;
		transform-origin: 0 50%;
	}
	60%, 100% {
		-webkit-transform-origin: 100% 50%;
		transform-origin: 100% 50%;		
	}
	60% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
	100% {
		-webkit-transform: scaleX(0);
		transform: scaleX(0);
	}
}



/* DEMO - TEXT SLIPPING */
.splitting .char,
.splitting .word {
    animation: slide-in 2.6s cubic-bezier(.2, 0, .1, 1) both;
    animation-delay: calc(30ms * var(--char-index));
    will-change:transform;
    transform-origin: top left;
}

@keyframes slide-in {
    from {
        transform: translateY(10px) scaleY(1.5);
        opacity: 0;
    }
}






/* SECTION */

.section--alt {
    background-color: var(--primary-color);
    background-size: cover;
    background-position: center;
    color:var(--white-color);
}

.section--alt h1,
.section--alt h2,
.section--alt .h1,
.section--alt .h2,
.section--alt h3,
.section--alt h4,
.section--alt .h3,
.section--alt .h4 {
    color: var(--white-color);
}

.section--alt a {
    color: var(--white-color);
}
.section--alt a:hover,
.section--alt a:focus {
    text-decoration: underline;
}

/* Block element - abilities */
.full-width {
    width: 100%;
}

.blocks-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.elem-block {
    display: block;
    position: relative;
    /* flex: 1 0 200px; */
    /* width: 16.666666%; */
    width: 50%;
    overflow: hidden;
    transition: 0.4s ease-out;
}
.elem-block::after {
    content: "";
    width: 90%;
    height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    border: 1px solid #fff;
    border-radius: 50%;
    transition: 0.2s ease-out;
}

.elem-block:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.elem-block img {
    display: block;
    transform: scale(1.2);
    transition: 0.4s ease-out;
}
.elem-block:hover img {
    transform: scale(1.1);
    filter: opacity(0.8);
}

.elem-block h3 {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    padding: 5%;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .elem-block {
        width: 25%;
    }
}
@media (min-width: 992px) {
    .elem-block {
        width: 25%;
    }
}
@media (min-width: 1200px) {
    .elem-block {
        width: 16.666666%;
    }
}

/* SLIDER CLIENTI */

.slick-slide:focus {
    outline: none;
}

#clients.slick-initialized .slick-slide {
    padding: 0 40px;
}
#clients img {
    /* max-width: 170px;
    max-height: 65px; */
    width: auto;
    height: auto;
    margin: 0 auto;
}

#clients.slick-initialized .slick-track {
    display: flex !important;
}
#clients.slick-initialized .slick-slide {
    display: flex;
    height: auto;
    justify-content: center;
    align-items: center;
}
#clientsTwo.slick-initialized .slick-slide {
    padding: 0 40px;
}
#clientsTwo img {
    /* max-width: 170px;
    max-height: 65px; */
    width: auto;
    height: auto;
    margin: 0 auto;
}

#clientsTwo.slick-initialized .slick-track {
    display: flex !important;
}
#clientsTwo.slick-initialized .slick-slide {
    display: flex;
    height: auto;
    justify-content: center;
    align-items: center;
}

/* FOOTER */

footer {
    background: var(--footer-bk);
    color: var(--white-color);
}

footer .container {
    display: flex;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
}

footer a {
    color: var(--white-color);
}

footer strong {
    color: var(--white-color);
    font-weight: 600;
}

footer h3 span {
    color: var(--primary-color);
}

footer .col1 {
    width: 30%;
    font-size: 0.8rem;
}

footer .col1 img {
    max-width: 100%;
}

footer .col1 .serviceLink {
    display: flex;
    justify-content: space-between;
}

footer .col2 {
    width: 45%;
    text-align: left;
}

footer ul.menu-social {
    margin-top: 134px;
}
footer ul.menu-social li a {
    color: var(--footer-bk);
}

footer .col3 {
    width: 25%;
    padding: 0;
    font-size: 0.8rem;
    text-align: right;
}

footer .col2 .row {
    margin-top: 200px;
}

#instagramLastImage {
    position: relative;
    border: 50px solid #171717;
    background-color: #171717;
}

#instagramLastImage img{
    width: 100%;
}
#instagramLastImage a:hover{
    color: var(--primary-color);
}



#instagramLastImage > div {
    display: block;
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--white-color);
    color: var(--footer-bk);
    width: 20px;
    height: 20px;
    font-size: 13px;
    text-align: center;
    line-height: 20px;
    border-radius: 50%;
}

@media (max-width: 767px) {
    footer .col1 {
        width: 100%;
    }
    footer .col2 {
        width: 100%;
        margin-top: 2rem;
        text-align: left;
    }
    footer .col3 {
        width: 100%;
        padding: 0px 0px;
        margin-top: 2rem;
    }
    footer .col2 .row {
        margin-top: 0;
    }
    footer .menu-social{
        text-align: center;
        padding: 0;
    }
    footer ul.menu-social {
        margin-top: 40px;
    }
}


/* PAGINE INTERNE */

.utility-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.breadcrumbs {
    text-transform: uppercase;
}
.breadcrumbs a { color: var(--text-color); }
.breadcrumbs a:hover { text-decoration: underline; }

.social-share {
    text-align: right;
}

.social-share ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.social-share ul li {
    display: inline-block;
}

.social-share ul li a {
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 30px;
    text-align: center;
    line-height: 30px;
    background: #b5b5b5;
    color: var(--white-color);
    transition: 0.4s ease-out;
    margin-right: 15px;
}

.social-share ul li a:hover {
    transform: scale(0.9);
    background: var(--primary-color);
}

.social-share ul li:last-child a {
    margin-right: 0px;
}

@media (max-width: 767px) {
    .utility-bar {
        justify-content: center;
        flex-wrap: wrap;
    }
    .social-share {
        margin: 0rem 0rem 1.5rem;
    }
    .breadcrumbs {
        order: 2;
    }
}

.author {
    display: flex;
    align-items: center;
}

.author .author-avatar {
    max-width: 70px;
    margin-right: 1rem;
}
@media (max-width: 767px) {
    .author .author-avatar {
        max-width: 50px;
    }
}

.author .author-info {
    font-size: 0.8rem;
    font-weight: 600;
}

.author .author-info span {
    font-size: 0.7rem;
    font-weight: 400;
}

.image-gallery {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.image-gallery .image-gallery-elem {
    flex: 1 1 50%;
    padding-left: 40px;
    margin-bottom: 40px;
}

.image-gallery .image-gallery-elem:last-child,
.image-gallery .image-gallery-elem:nth-last-child(2) {
    margin-bottom: 0px;
}

.image-gallery .image-gallery-elem:first-child,
.image-gallery .image-gallery-elem:nth-child(3) {
    margin-left: -40px;
}

@media (max-width: 767px) {
    .image-gallery .image-gallery-elem {
        flex: 1 1 25%;
        margin-bottom: 0px;
    }
    .image-gallery .image-gallery-elem:nth-child(3) {
        margin-left: 0px;
    }
}



.image-gallery-full {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
}

.image-gallery-full .image-gallery-elem {
    flex: 1 1 25%;
    padding-left: 40px;
    margin-bottom: 40px;
    transition: transform 0.2s ease-out, filter 0.2s ease-out;
}

.image-gallery-full .image-gallery-elem:hover {
    transform: scale(1.1);
    filter: grayscale(0.7);
    transition: transform 0.2s ease-out, filter 0.2s ease-out;
}

.image-gallery-full .image-gallery-elem:nth-child(4n+1) {
    margin-left: -40px;
}

.image-gallery-full figcaption {
    display: none;
}

@media (max-width: 767px) {
    .image-gallery-full .image-gallery-elem {
        flex: 1 1 50%;
    }
    .image-gallery-full .image-gallery-elem:nth-child(2n+1) {
        margin-left: -40px;
    }
}


/* PHOTOSWIPE */
.pswp__caption__center {
    text-align: center;
    max-width: 650px;
    font-size: 0.8rem;
}


/* TEAM MENMBER CARD */
/* .team-list {
} */

.team-list .team-list-elem {
    text-align: center;
}

.team-list-elem-img {
    position: relative;
}
.team-list-elem-img .team-list-elem-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: 0.2s ease-out;
}

.team-list .team-list-elem:hover .team-list-elem-cover {
    opacity: 0;
}

.team-list .team-list-elem strong,
.team-list .team-list-elem span {
    display: block;
}

.team-list .team-list-elem strong {
    font-weight: 600;
    font-size: 1.2rem;
}

.team-list .team-list-elem span {
    font-size: 0.8rem;
}

.team-list .team-list-elem-contact {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-list .team-list-elem-contact li a {
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 30px;
    text-align: center;
    line-height: 30px;
    background: #b5b5b5;
    color: var(--white-color);
    transition: 0.4s ease-out;
    margin: 0 0.4rem;
}
.team-list .team-list-elem-contact li a:hover,
.team-list .team-list-elem-contact li a:focus {
    background: var(--primary-color);
}


/* Case Studies */

#caseStudiesFilter button {
    display: inline-block;
    padding: .4em .8em;
    background: var(--text-color);
    border: 0;
    color: var(--white-color);
    font-size: 1.1rem;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 0.5rem;
    transition: background 0.3s ease;
}

#caseStudiesFilter button:hover,
#caseStudiesFilter button.mixitup-control-active {
    background: var(--primary-color);
}

#caseStudiesFilter button:focus{
outline: 0 none;
}

#caseStudies .elem-block {
    transition: none;
    color: var(--white-color);
}

/* CLIENTI */

.logogrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    /* grid-auto-rows: 75px; */
    grid-gap: 1rem;
}
.logogrid__item {
    display: -webkit-box;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.logogrid__img {
    object-fit: cover;
    /* max-width: 120px;
    max-height: 60px; */
    max-width: 200px;
    filter: grayscale(0);
    transform: scale(1,1);
    transition: filter .3s ease,
                transform .3s ease;
}
.logogrid__item:hover .logogrid__img {
    filter: grayscale(100%);
    transform: scale(0.8,0.8);
}

.logogrid__label {
    display: block;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
    opacity: 0;
    transform: translateY(0);
    transition: all .3s ease;

    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
}

.logogrid__item:hover .logogrid__label {
    opacity: 1;
    transform: translateY(-10px);
}

@media (max-width: 767px) {
    .logogrid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    .logogrid__img {
        max-width: 150px;
    }
}

/*BANNER HOME*/
.cd-slider {
    position: relative;
    width: 100%;
    height: 800px;
    overflow: hidden;
}
.cd-slider.ie9 nav div span {
    display: none;
}
.cd-slider ul li {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    transition: visibility 0s .6s;
}
/*.cd-slider ul li::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 100%;
    width: 135vh;
    height: 135vh;
    border: solid rgba(0,0,0,0.2);
    border-width: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: border-width .4s .6s;
}*/
.cd-slider .content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: 50% 100%;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    mix-blend-mode: lighten;
    opacity: 0;
    transform: scale(1.2);
    transition: opacity .4s .6s, transform .4s .6s;
}
/*.content blockquote {
    position: absolute;
    bottom: 5%;
    left: 4%;
    z-index: 2;
    max-width: 45%;
}
blockquote p {
    font-size: 4rem;
    margin-bottom: 2rem;
}
blockquote span {
    font-size: 1.4rem;
}*/
/* current slide
---------------------------------*/
.cd-slider li.current_slide {
    visibility: visible;
}
.cd-slider li.current_slide::before {
    border-width: 16rem;
}
.cd-slider li.current_slide .content {
    opacity: 1;
    transform: scale(1);
}
/* nav
---------------------------------*/
.cd-slider nav div {
    position: absolute;
    top: 50%;
    left: 4%;
    width: 5rem;
    height: 5rem;
    margin-top: -2.5rem;
    list-style: none;
}
.cd-slider nav div:last-of-type {
    left: auto;
    right: 4%;
}
.cd-slider .prev,.cd-slider .next {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 100%;
    transition: box-shadow .3s;
}
.cd-slider .prev, .cd-slider .next {
    width: 40%;
}
nav > div > span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 100%;
    z-index: 5;
    pointer-events: none;
    will-change: width, height;
    transform: translate(-50%, -50%);
    transition: width .6s, height .6s;
}

.cd-slider .container{
    padding-top: 10%;
}


@media (max-width: 767px) {
    .cd-slider .container{
        padding-top: 80%;
        text-align: center;
    }
    .cd-slider nav{
        display: none;
    }
}

.spb4 .container h2, .spb4 .container p{
    margin-left: 100px;
}

@media (max-width: 767px) {

    .spb4 .container h2, .spb4 .container p{
        margin: 14px 0;
    }
}

@media (max-width: 1200px) {
    #hero .container {
        max-width: 900px !important;
    }
}

@media (max-width: 992px) {
    #hero .container {
        max-width: 700px !important;
    }
}

@media (max-width: 870px) {
    #hero .container {
        max-width: 600px !important;
    }
}

@media (max-width: 767px) {
    #hero .cd-slider .container {
        padding-top: 60%;
    }
}
.contatcForm{
    background-color: var(--primary-color);
}
#contact{
    width: 50%;
    margin: 200px auto 0 auto;
    height: 800px;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-weight: bold;
}
#contact label{
    margin-left: 15px;
}
#contact .elem-group{
    margin-bottom: 30px;
}
#contact label,#contact input[type=text],#contact textarea, #contact input[type=email] {
    display: block;
    box-sizing: border-box;
    width: 100%;
}
#contact input[type=text],#contact textarea, #contact input[type=email] {
    padding: 10px 0 10px 30px;
    border-radius: 30px;
    border: none;
    box-sizing: border-box;
    margin-top: 5px;
    margin-bottom: 15px;
    resize: vertical;
    color: #333;
}

#contact button[type=submit] {
    background-color: var( --white-color);
    color: var(--primary-color);
    padding: 10px 20px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
}

#contact button[type=submit]:hover {
    background-color: var(--primary-color);
    color: var( --white-color);
    border: 2px solid var( --white-color);
}

@media (max-width: 992px) {
    #contact{
        width: 80%;
        height: 500px;
        margin-top: 100px;
    }
}
