/* --------------------------------------------------------------
# Preloader
-------------------------------------------------------------- */
#preloader {
    overflow: hidden;
    background-color: #f2f4ed;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999999;
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 74px;
    height: 74px;
    margin: -37px 0 0 -37px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #3498db;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
    z-index: 1001;
}

#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #e74c3c;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #f9c922;
    -webkit-animation: spin 0.5s linear infinite;
    animation: spin 0.5s linear infinite;
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* --------------------------------------------------------------
# Generale
-------------------------------------------------------------- */
body {
    background: #fff;
    color: rgba(0,0,0,0.7);
    font-family: 'Raleway', sans-serif;
}

a {
    color: rgba(255, 0, 0, 1.0);
}

a:hover,
a:active,
a:focus {
    color: rgba(0, 150, 120, 1.0);
    outline: none;
    text-decoration: none;
}

p {
    padding: 0;
    margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    margin: 0 0 20px 0;
    padding: 0;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    display: none;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 6px 12px 9px 12px;
    font-size: 16px;
    border-radius: 2px;
    right: 10px;
    bottom: 100px;
    transition: background 0.5s;
    z-index: 9;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 50px;
    }
}

.back-to-top:focus {
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    outline: none;
}

.back-to-top:hover {
    background: rgba(0, 178, 122, 0.9);
    color: #fff;
}

/* --------------------------------------------------------------
# Disable AOS delay on mobile
-------------------------------------------------------------- */
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/* --------------------------------------------------------------
# Header
-------------------------------------------------------------- */
#header {
    padding: 20px 0;
    height: 72px;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    transition: all 0.5s;
    z-index: 997;
    background: rgba(52, 59, 64, 0.9);

    /* border-top: solid;
  border-color: rgba(75, 136, 170, 1.0);
  border-width: 8px; */
}

#header #logo {
    float: left;
}

#header #logo h1 {
    font-size: 36px;
    margin: 0;
    padding: 6px 0;
    line-height: 1;
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

#header #logo h1 a,
#header #logo h1 a:hover {
    color: #fff;
}

#header #logo img {
    padding: 0;
    margin: -5px;
}

@media (max-width: 768px) {
    #header #logo h1 {
        font-size: 26px;
    }

    #header #logo img {
        max-height: 50px;
        padding-left: 20px;
    }
}

#header.header-transparent {
    background: transparent;
}

#header.header-coloured {
    background: rgba(0, 157, 108, 0.9);
}

#header.header-fixed {
    background: rgba(0, 157, 108, 0.9);
    padding: 10px 0;
    height: 55px;
    transition: all 0.5s;
}

/* --------------------------------------------------------------
# Menu di Navigazione
-------------------------------------------------------------- */
/* Nav Menu Essentials */
.nav-menu,
.nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu ul {
    position: absolute;
    display: none;
    top: 100%;
    left: 0;
    z-index: 99;
}

.nav-menu li {
    position: relative;
    white-space: nowrap;
}

.nav-menu > li {
    float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
    display: block;
}

.nav-menu ul ul {
    top: 0;
    left: 100%;
}

.nav-menu ul li {
    min-width: 180px;
}

/* Nav Menu Arrows */
.sf-arrows .sf-with-ul {
    padding-right: 13px;
}

.sf-arrows .sf-with-ul:after {
    content: "\f107";
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    position: absolute;
    right: 0px;
}

.sf-arrows ul .sf-with-ul:after {
    content: "\f105";
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
}

/* Nav Menu Container */
#nav-menu-container {
    margin-top: 4px;
}

@media (max-width: 865px) {
    #nav-menu-container {
        display: none;
    }
}

/* Nav Menu Styling */
.nav-menu .fas {
    color: #fff;
    padding-right: 0px;
}

.nav-menu a {
    padding: 0 0px 4px 0px;
    text-decoration: none;
    display: inline-block;
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    outline: none;
}

.nav-menu > li {
    margin-left: 7px;
    margin-right: 7px;
}

.nav-menu > li > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: rgba(100, 230, 150, 0.9);
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before,
.nav-menu li:hover > a:before,
.nav-menu .menu-active > a:before {
    visibility: visible;
    transform: scaleX(1);
}

.nav-menu ul {
    margin: 4px 0 0 0;
    border: 1px solid #e7e7e7;
}

.nav-menu ul li {
    background: #fff;
}

.nav-menu ul li:first-child {
    border-top: 0;
}

.nav-menu ul li a {
    padding: 7px;
    color: rgba(100, 100, 100, 1.0);
    transition: 0.3s;
    display: block;
    font-size: 14px;
    text-transform: none;
    font-weight: 500;
}

.nav-menu ul li a span {
    padding-right: 6px;
    font-size: 16px;
}

.nav-menu ul li a:hover {
    background: rgba(0, 178, 122, 0.9);
    color: #fff;
}

.nav-menu ul ul {
    margin: 0;
}

/* .nav-menu .menu-has-children span {
    color: #39667f;
} */
/* LANGUAGES NEW */
.lang img {
    width: 85%;
    height: auto;
}

.lang {
    padding-right: 65px;
    padding-top: 4px;
}

/* Mobile Nav Toggle */
#mobile-nav-toggle {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999;
    margin: 8px 25px 0 0;
    border: 0;
    background: none;
    font-size: 24px;
    display: none;
    transition: all 0.4s;
    outline: none;
    cursor: pointer;
}

#mobile-nav-toggle i {
    color: #fff;
}

@media (max-width: 865px) {
    #mobile-nav-toggle {
        display: inline;
    }
}

/* Mobile Nav Styling */
#mobile-nav {
    position: fixed;
    top: 0;
    padding-top: 18px;
    bottom: 0;
    z-index: 998;
    background: rgba(0, 178, 122, 0.9);
    left: -280px;
    width: 280px;
    overflow-y: auto;
    transition: 0.4s;
}

#mobile-nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

#mobile-nav ul li {
    position: relative;
}

#mobile-nav ul li a {
    color: #fff;
    font-size: 15px;
    overflow: hidden;
    padding: 10px 22px 10px 15px;
    position: relative;
    text-decoration: none;
    width: 100%;
    display: block;
    outline: none;
}

#mobile-nav ul li a span {
    color: white;
    padding-right: 7px;
}

#mobile-nav ul li a:hover {
    color: #fff;
}

#mobile-nav ul li li {
    padding-left: 15px;
}

#mobile-nav ul .menu-has-children i {
    position: absolute;
    right: 0;
    z-index: 99;
    padding: 15px;
    cursor: pointer;
    color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
    color: rgba(255, 255, 255, 0.6);
}

#mobile-nav ul .menu-item-active {
    color: rgba(255, 255, 255, 0.6);
}

#mobile-body-overly {
    width: 100%;
    height: 100%;
    z-index: 997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(52, 59, 64, 0.9);
    display: none;
}

/* Mobile Nav body classes */
body.mobile-nav-active {
    overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
    left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
    color: #fff;
}

/* --------------------------------------------------------------
# Carousel
-------------------------------------------------------------- */
.carousel-inner .carousel-item {
    width: 100%;
    height: 100%;
    min-height: 800px;
    background-size: cover;
    background-position: center center;
}

/* carousel/ overlay/ */
.carousel-inner > .carousel-item:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 70%, #fff 99%);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.5)), color-stop(1%, rgba(255, 255, 255, 0.5)), color-stop(98%, #fff), color-stop(99%, #fff));
    background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 70%, #fff 99%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 70%, #fff 99%);
}

.carousel-indicators li {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 8px;
    text-indent: -999px;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.6);
    border: 1px solid #303030;
    border-radius: 12px;
}

.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    z-index: 15;
    width: 60%;
    padding-left: 0;
    margin-left: -30%;
    text-align: center;
    list-style: none;
}

.carousel-item .carousel-caption {
    margin: auto;
    width: 70%;
    text-align: center;
    letter-spacing: 1px;
    bottom: 200px;
}

.carousel-item .carousel-caption > h1 {
    font-size: 60px !important;
    font-weight: 500;
    padding-bottom: 5px;
    margin-bottom: 0px;
    color: white;
    text-shadow: 3px 3px 6px black;
}

.carousel-item .carousel-caption > p {
    font-size: 25px;
    font-family: "Raleway", sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    color: white;
    text-shadow: 2px 2px 3px black;
}

@media screen and (min-width: 800px) {
    .carousel-item .carousel-caption {
        height: auto;
        width: 550px;
        text-align: center;
        padding-top: 0px;
        padding-right: 0px;
        margin: auto;
        padding-left: 0px;
        padding-bottom: 0px;
        bottom: 290px;
    }
}

/* --------------------------------------------------------------
# Carousel Button
-------------------------------------------------------------- */
.reserve-button {
    background-color: rgba(0, 150, 120, 1.0);
    border-radius: 50px;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 46px;

    /* min-width: 200px; */
    height: 50px;
    padding: 0 20px;
    color: #fff;
    font-weight: 500;
}

.reserve-button:hover,
.reserve-button:focus {
    border: 2px solid rgba(0, 150, 120, 1.0);
    background-color: rgba(0, 150, 120, 0.6));
    font-size: 16px;
    letter-spacing: 1px;
    color: #fff;
    font-weight: 500;
}

.button_singleport {
    background-color: #211b31;
    border: 2px solid #211b31;
    border-radius: 50px;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 46px;
    min-width: 190px;
    height: 50px;
    padding: 0;
    color: #fff;
    font-weight: 500;
}

.button_singleport:hover,
.button_singleport:focus {
    border: 2px solid #211b31;
    background-color: transparent;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 600;
}

.reserve-button-form {
    background-color: #211b31;
    border: 2px solid #211b31;
    border-radius: 50px;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 46px;
    min-width: 195px;
    height: 50px;
    padding: 0;
    color: #fff;
    font-weight: 500;
}

.reserve-button-form:hover,
.reserve-button-form:focus {
    border: 2px solid #211b31;
    background-color: transparent;
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 600;
}

.button-to-port {
    text-align: center;
    padding-bottom: 90px;
}

/* --------------------------------------------------------------
# Sections
-------------------------------------------------------------- */
section {
    overflow: hidden;
}

/* Sections Header
-------------------------------- */
.section-header .section-title {
    font-size: 24px;
    color: #111;
    text-transform: uppercase;
    text-align: center;
    font-weight: 500;
    margin-bottom: 5px;
}

.section-header .section-description {
    text-align: center;
    padding-bottom: 40px;
    color: rgba(0, 0, 0, 0.5);
}

/* Sezioni DIVISORIE
-------------------------------- */
.empty-100 {
    background: #fff;
    padding-top: 100px;
}

.empty-150 {
    background: #fff;
    padding-top: 150px;
}

.empty-280 {
    background: #fff;
    padding-top: 280px;
}

/* SEZIONE CHI SIAMO
-------------------------------- */
/* banner chi siamo
-------------------------------- */
#banner-chisiamo {
    background: linear-gradient(rgba(0, 0, 50, 0.5), rgba(0, 0, 50, 0.5)), url(../img/banner-chisiamo.jpg) fixed center center;
    background-attachment: scroll !important;
    background-size: cover;
    height: 390px;
}

#banner-chisiamo .container {
    padding-top: 140px;
}

@media (max-width:575px) {
    #banner-chisiamo .container {
        padding-top: 110px;
    }
}

@media (max-width: 1024px) {
    #banner-chisiamo {
        background-attachment: scroll;
    }
}

#banner-chisiamo .cta-title {
    color: #12E9A5;
    font-size: 40px;
    font-weight: 500;
    letter-spacing: 1px;
}

#banner-chisiamo .cta-text {
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 2px;
    color: #fff;
}

#about {
    background: #fff;
}

#about .about-container .background {
    min-height: 300px;
    background: url(../img/about-img.jpg) center top no-repeat;
    margin-bottom: 10px;
}

#about .about-container {
    padding-top: 50px;
}

#about .about-container .content {
    background: #fff;
}

@media (max-width: 991px) {
    #about .about-container .content {
        text-align: center;
    }
}

#about .about-container .main-para {
    padding: 0;
}

#about .about-container .main-para .title {
    color: #01C084;
    font-size: 20px;
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 3px;
}

@media (max-width: 991px) {
    #about .about-container .main-para .title {
        padding-top: 15px;
    }
}

#about .about-container p {
    line-height: 24px;
    letter-spacing: 1px;
    padding-bottom: 20px;
    font-size: 16px;
    font-weight: 500;
}

#about .about-container p:last-child {
    margin-bottom: 0;
}

/* SEZIONE LA RETE
-------------------------------- */
/* banner La Rete
-------------------------------- */
#banner-larete {
    background: linear-gradient(rgba(0, 0, 50, 0.5), rgba(0, 0, 50, 0.5)), url(../img/banner-larete.jpg) fixed center center;
    background-size: cover;
    background-attachment: scroll !important;
    height: 390px;
}

#banner-larete .container {
    padding-top: 140px;
}

@media (max-width:575px) {
    #banner-larete .container {
        padding-top: 100px;
    }
}

@media (max-width: 1024px) {
    #banner-larete {
        background-attachment: scroll;
    }
}

#banner-larete .cta-title {
    color: #12E9A5;
    font-size: 40px;
    font-weight: 500;
    letter-spacing: 1px;
}

#banner-larete .cta-text {
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 2px;
    color: #fff;
}

/* contenuti La Rete
-------------------------------- */
#larete {
    background: #f7f7f7;
    padding-bottom: 60px;
}

#larete .logo {
    padding-left: 0px;
    padding-top: 40px;
}

@media (max-width: 991px) {
    #larete .larete-container .img-container {
        padding: 0;
        margin: auto;
    }
}

#larete .larete-container .italia {
    text-align: center;
}

/* @media (max-width: 991px) {
    #larete .larete-container .italia {
        text-align: center;
    }
} */
@media (max-width: 991px) {
    #larete .larete-container-2 .europa {
        text-align: center;
    }
}

#larete .italy {
    width: 80%;
}

#larete .europe {
    width: 100%;
    padding-top: 10px;
}

#larete .larete-container {
    padding-top: 50px;
}

#larete .larete-container-2 {
    padding-top: 30px;
}

#larete .larete-container .content {
    background: transparent;
    text-align: left;
}

#larete .larete-container-2 .content-europe {
    background: transparent;
    text-align: right;
    padding-top: 20px;
}

#larete .larete-container .main-para {
    padding: 0 0 30px 0;
}

#larete .larete-container-2 .main-para {
    padding: 0 0 30px 0;
}

#larete .larete-container .main-para .title {
    color: #01C084;
    font-size: 20px;
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 3px;
}

#larete .larete-container-2 .main-para .title {
    color: #01C084;
    font-size: 20px;
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 3px;
}

@media (max-width: 991px) {
    #larete .larete-container .main-para .title {
        padding-top: 25px;
        text-align: center;
    }
}

@media (max-width: 991px) {
    #larete .larete-container-2 .main-para .title {
        text-align: center;
    }
}

#larete .larete-container p {
    line-height: 24px;
    font-size: 16px;
    letter-spacing: 0.5px;
    font-family: "Raleway", sans-serif;
    font-weight: 500;
}

#larete .larete-container-2 p {
    line-height: 24px;
    font-size: 16px;
    letter-spacing: 1px;
    font-family: "Raleway", sans-serif;
    font-weight: 500;
}

@media (max-width: 991px) {
    #larete .larete-container p {
        text-align: center;
    }
}

@media (max-width: 991px) {
    #larete .larete-container-2 p {
        text-align: center;
    }
}

@media (max-width: 991px) {
    #larete .larete-container-2 .milan-offices {
        text-align: center;
    }
}

#larete .larete-container p:last-child {
    margin-bottom: 0;
}

/* Sezione FACTS
-------------------------------- */
#facts {
    background: rgba(104,153,175,0.2);
    margin-top: 25px;
    padding-top: 20px;
}

#facts .section-header .section-title {
    color: rgba(0, 0, 0, 1.0);
    font-weight: 400;
    font-size: 25px;
    letter-spacing: 1px;
}

#facts .counters span {
    font-family: 'Raleway', sans-serif;
    font-size: 48px;
    font-weight: 600;
    display: inline-block;
    color: rgba(0, 159, 227, 1.0);
}

#facts .counters p {
    padding: 0;
    margin: 0 0 20px 0;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: rgba(0,0,0,0.7);
    font-weight: 500;
}

/* SEZIONE QUALITA'
-------------------------------- */
/* banner quality
-------------------------------- */
#banner-quality {
    background: linear-gradient(rgba(0, 0, 50, 0.5), rgba(0, 0, 50, 0.5)), url(../img/banner-quality2.jpg) fixed center center;
    background-size: cover;
    background-attachment: scroll !important;
    height: 390px;
}

#banner-quality .container {
    padding-top: 140px;
}

@media (max-width: 1024px) {
    #banner-quality {
        background-attachment: scroll;
    }
}

#banner-quality .cta-title {
    color: #12E9A5;
    font-size: 40px;
    font-weight: 500;
    letter-spacing: 1px;
}

#banner-quality .cta-text {
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 2px;
    color: #fff;
}

#services {
    background: #fff;
}

#services .quality-container {
    padding-top: 50px;
}

@media (max-width:575px) {
    #banner-quality .container {
        padding-top: 80px;
    }
}

#services .servizio_single .icon {
    margin: auto auto 5px;
    transition: 0.2s;
    border-radius: 50%;
    border: 6px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    width: 65px;
    height: 65px;
    background: #4f8e80;
}

#services .icon i {
    color: #fff;
    font-size: 32px;
}

#services .servizio_single {
    text-align: center;
    padding-bottom: 0px;
}

#services .servizio_single h4 {
    font-weight: 400;
    text-transform: uppercase;
    color: #01C084;
    font-size: 20px;
    margin-bottom: 10px;
}

#services .servizio_single p {
    font-weight: 500 !important;
    text-align: center;
    font-size: 16px;
    padding-bottom: 0;
}

/* Plus Section
-------------------------------- */
#plus {
    background: rgba(104,175,159,0.2);
    padding: 20px 0 20px 0;
}

#plus .pluses p {
    padding-top: 10px;
    margin: 0;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 15px;
}

@media (max-width: 768px) {
    #plus .pluses p {
        padding-top: 5px;
        padding-bottom: 15px;
    }
}

/* SEZIONE SETTORI
-------------------------------- */
/* /banner settori */
#banner-sectors {
    background: linear-gradient(rgba(0, 0, 50, 0.5), rgba(0, 0, 50, 0.5)), url(../img/banner-settori_2.jpg) fixed center center;
    background-size: cover;
    background-attachment: scroll !important;
    height: 390px;
}

#banner-sectors .container {
    padding-top: 140px;
}

@media (max-width:575px) {
    #banner-sectors .container {
        padding-top: 80px;
    }
}

@media (max-width: 1024px) {
    #banner-sectors {
        background-attachment: scroll;
    }
}

#banner-sectors .cta-title {
    color: #12E9A5;
    font-size: 40px;
    font-weight: 500;
    letter-spacing: 1px;
}

#banner-sectors .cta-text {
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 1px;
    color: #fff;
}

#sectors {
    background: #fff;
    background-size: cover;
    padding: 0;
}

#sectors .sectors-container {
    padding-top: 50px;
}

#sectors .section-header .section-title {
    font-weight: 300;
    text-transform: uppercase;
    color: rgba(41, 150, 227, 1.0);
    font-size: 23px;
}

#sectors .section-header .section-description {
    margin: 0;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.6);
    font-size: 17px;
}

#sectors .sector_single .icon {
    margin: auto auto 5px;
    transition: 0.2s;
    border-radius: 50%;
    border: 6px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    width: 65px;
    height: 65px;
    background: rgba(87, 142, 166, 1.0);
}

#sectors .icon i {
    color: #fff;
    font-size: 30px;
}

#sectors .sector_single {
    text-align: center;
    padding-bottom: 0px;
}

#sectors .sector_single h4 {
    font-weight: 400;
    text-transform: uppercase;
    color: rgba(87, 142, 166, 1.0);
    font-size: 20px;
}

#sectors .sector_single p {
    font-weight: 500 !important;
    color: rgba(0,0,0,0.6);
    text-align: center;
    font-size: 15px;
    padding-bottom: 0;
}

/* --------------------------------------------------------------
# Portfolio
-------------------------------------------------------------- */
#portfolio {
    background: #f7f7f7;
    padding: 100px 0;
}

#portfolio .section-header .section-title {
    font-weight: 400;
    text-transform: uppercase;
    color: rgba(75, 136, 170, 1.0);
    font-size: 25px;
}

#portfolio .section-header .section-description {
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
    font-size: 17px;
}

.portfolio #portfolio-flters {
    padding: 0;
    margin: 0 auto 25px auto;
    list-style: none;
    text-align: center;
    border-radius: 50px;
}

.portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 12px 18px 14px 18px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: #666666;
    margin: 0 5px 10px 5px;
    transition: all ease-in-out 0.3s;
    background: white;
    border-radius: 4px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    color: #fff;
    background: rgba(87, 142, 166, 1.0);
}

.portfolio #portfolio-flters li:last-child {
    margin-right: 0;
}

.portfolio .portfolio-item {
    margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-info {
    opacity: 0;
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 0;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    background: rgba(0, 0, 0, 0.6);
    padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    color: #fff;
}

.portfolio .portfolio-item .portfolio-info p {
    color: #fff;
    font-size: 14px;
    margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
    position: absolute;
    right: 40px;
    font-size: 24px;
    top: calc(50% - 18px);
    color: #fff;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
    color: rgba(255, 255, 255, 0.6);
}

.portfolio .portfolio-item .portfolio-info .details-link {
    right: 10px;
}

.portfolio .portfolio-item .portfolio-links {
    opacity: 0;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 3;
    position: absolute;
    transition: all ease-in-out 0.3s;
}

/* Color of Portfolio icon plus Linklink */
.portfolio .portfolio-item .portfolio-links a {
    color: #fff;
    margin: 0 2px;
    font-size: 28px;
    display: inline-block;
    transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-links a:hover {
    color: #6ba7f5;
}

.portfolio .portfolio-item:hover .portfolio-info {
    opacity: 1;
    bottom: 20px;
}

/* --------------------------------------------------------------
# Portfolio Details / SETTORI
-------------------------------------------------------------- */
#food {
    background: #f7f7f7;
}

#fashion {
    background: #f7f7f7;
}

#health {
    background: #f7f7f7;
}

.portfolio-details .portfolio-description .icon {
    margin: auto auto 5px;
    transition: 0.2s;
    border-radius: 50%;
    border: 6px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    width: 65px;
    height: 65px;
    background: #4f8e80;
}

.portfolio-details .portfolio-description .icon i {
    color: #fff;
    font-size: 30px;
}

.portfolio-details {
    padding-top: 50px;
    padding-bottom: 100px;
}

.portfolio-details .portfolio-details-container {
    position: relative;
}

.portfolio-details .portfolio-details-carousel {
    position: relative;
    z-index: 1;
}

.caption {
    position: absolute;
    left: 0;
    bottom: 25px;
    transform: translate(0%, 0%);
    padding: 0px 15px;
    font-size: 40px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    transition: all 500ms ease-in;
    z-index: 8;
}

.caption .icon {
    padding: 0;
    margin: 0;
}

/* .owl-item.active .caption {
  transform: translate(0, -50%);
} */
.portfolio-details .portfolio-details-carousel .owl-nav,
.portfolio-details .portfolio-details-carousel .owl-dots {
    margin-top: 0px;
    text-align: center;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
    display: inline-block;
    margin: 0 10px 0 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
    background-color: #4f8e80 !important;
}

.portfolio-details .portfolio-details-carousel .owl-prev,
.owl-next {
    width: 15px;
    height: 100px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: block !important;
    border: 0px solid black;
}

.portfolio-details .portfolio-details-carousel .owl-prev {
    left: 15px;
}

.portfolio-details .portfolio-details-carousel .owl-next {
    right: 20px;
}

.portfolio-details .portfolio-details-carousel .owl-prev i,
.owl-next i {
    /* transform : scale(2,5); */
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    font-size: 48px;
}

.portfolio-details .portfolio-info {
    padding: 30px;
    position: absolute;
    right: 0;
    bottom: -70px;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
    margin-top: 10px;
}

.portfolio-details .portfolio-description {
    padding-top: 50px;
}

.portfolio-details .portfolio-description h5 {
    margin-bottom: 0px;
}

.portfolio-details .portfolio-description h2 {
    font-weight: 400 !important;
    text-transform: uppercase;
    color: #01C084;
    font-size: 20px;
    text-align: center;
    margin-bottom: 8px;
}

.portfolio-details .portfolio-description h1 {
    font-weight: 400 !important;
    text-transform: uppercase;
    color: #01C084;
    font-size: 28px;
    text-align: center;
    margin-bottom: 15px;
}

.portfolio-details .portfolio-description p {
    padding: 0 0 0 0;
    font-size: 16px;
    font-weight: 500 !important;
}

@media (max-width: 768px) {
    .portfolio-details .portfolio-description h2 {
        width: 100%;
    }

    .portfolio-details .portfolio-info {
        position: static;
        margin-top: 30px;
    }
}

/* SEZIONE AMBIENTE
-------------------------------- */
/* banner ambiente
-------------------------------- */
#banner-ambiente {
    background: linear-gradient(rgba(0, 0, 50, 0.5), rgba(0, 0, 50, 0.5)), url(../img/banner-ambiente.jpg) fixed center center;
    background-size: cover;
    background-attachment: scroll !important;
    height: 390px;
}

#banner-ambiente .container {
    padding-top: 140px;
}

@media (max-width:575px) {
    #banner-ambiente .container {
        padding-top: 70px;
    }
}

@media (max-width: 1024px) {
    #banner-ambiente {
        background-attachment: scroll;
    }
}

#banner-ambiente .cta-title {
    color: #12E9A5;
    font-size: 40px;
    font-weight: 500;
    letter-spacing: 1px;
}

#banner-ambiente .cta-text {
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 2px;
    color: #fff;
}

#ambiente {
    background: #fff;
}

#ambiente .ambiente-container .main-para .pdf-down {
    padding-bottom: 30px;
}

#ambiente .ambiente-container {
    padding-top: 50px;
}

#ambiente .ambiente-container .content {
    background: #fff;
    text-align: left;
    margin-bottom: 30px;
}

#ambiente .ambiente-container .filetto {
    border-right: 1px solid grey;
}

#ambiente .ambiente-container .nofiletto {
    border-right: 0px solid grey;
}

@media (max-width: 991px) {
    #ambiente .ambiente-container .filetto {
        border-right: 0px solid grey;
        border-bottom: 1px solid grey;
    }
}

@media (max-width: 991px) {
    #ambiente .ambiente-container .nofiletto {
        border-right: 0px solid grey;
        border-bottom: 1px solid grey;
    }
}

@media (max-width: 991px) {
    #ambiente .ambiente-container .content {
        text-align: center;
    }
}

#ambiente .ambiente-container .main-para {
    padding: 0;
}

#ambiente .ambiente-container .main-para .title {
    color: #01C084;
    font-size: 22px;
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
}

@media (max-width: 991px) {
    #ambiente .ambiente-container .main-para .title {
        padding-top: 15px;
    }
}

#ambiente .ambiente-container p {
    line-height: 25px;
    letter-spacing: 1px;
    font-size: 16px;
    font-weight: 500;
}

#ambiente .ambiente-container:last-child {
    margin-bottom: 0;
}

#privacy {
    background: #f7f7f7;
}



/* CONTACT SECTION
-------------------------------- */
/* /banner Contattaci */
#banner-contact {
    background: linear-gradient(rgba(0, 0, 50, 0.5), rgba(0, 0, 50, 0.5)), url(../img/banner-contact.jpg) fixed center center;
    background-size: cover;
    background-attachment: scroll !important;
    height: 390px;
}

#banner-contact .container {
    padding-top: 140px;
}

@media (max-width:575px) {
    #banner-contact .container {
        padding-top: 100px;
    }
}

@media (max-width: 1024px) {
    #banner-contact {
        background-attachment: scroll;
    }
}

#banner-contact .cta-title {
    color: #12E9A5;
    font-size: 40px;
    font-weight: 500;
    letter-spacing: 1px;
}

#banner-contact .cta-text {
    font-family: 'Raleway', sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 1px;
    color: #fff;
}

/* fine banner contact */
#contact {
    background: #f7f7f7;
    padding-bottom: 70px;
}

#contact .contact-container {
    padding-top: 50px;
}

#contact .section-description {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 22px;
    color: rgba(0, 0, 0, 1.0);
}

#contact .info {
    color: #333333;
    padding-top: 5px;
}

#contact .info i {
    font-size: 40px;
    color: #4f8e80;
    float: left;
}

#contact .info p {
    padding: 0 0 10px 15px;
    margin-bottom: 25px;
    line-height: 20px;
    font-size: 15px;
    font-weight: 500;
    display: inline-block;
    vertical-align: middle;
}

#contact .info .phone p {
    padding-top: 8px;
}

#contact .info .mail p {
    padding-top: 8px;
}

/* MODULO contact */
.contact_from button {
    background-color: rgba(0, 150, 120, 1.0);
    border: 2px solid rgba(0, 150, 120, 1.0);
    border-radius: 50px;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 46px;
    min-width: 165px;
    height: 50px;
    padding: 0;
    color: #fff;
    font-weight: 500;
}

.contact_from button:hover {
    border: 2px solid rgba(0, 150, 120, 1.0);
    background-color: rgba(0, 150, 120, 0.5);
    font-size: 16px;
    letter-spacing: 1px;
    color: #fff;
    font-weight: 500;
}

.contact_input_area .form-group input,
.contact_input_area .form-group select,
.contact_input_area .form-group textarea {
    border-radius: 0px;
    height: 40px;
    margin-bottom: 15px;
    padding: 15px;
    -webkit-transition-duration: 500ms;
    -o-transition-duration: 500ms;
    transition-duration: 500ms;
    width: 100%;
}

.contact_input_area .form-group input:focus,
.contact_input_area .form-group select:focus,
.contact_input_area .form-group textarea:focus {
    border: 1px solid #000;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.contact_input_area .form-group textarea {
    height: 150px;
}

.contact_from button {
    -webkit-transition-duration: 500ms;
    -o-transition-duration: 500ms;
    transition-duration: 500ms;
}

.success,
.error {
    padding: 1em;
    margin-bottom: 12px;
    margin-bottom: 12px;
    margin-bottom: 0.75rem;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
    border-radius: 4px;
}

.success {
    color: #fff;
    background-color: #2ecc71;
}

.error {
    color: #fff;
    background-color: #c0392b;
}

/* bottone a googlemap/ */
.btn.btn-map {
    padding: 2px;
    width: 95px;
    background-color: rgba(20, 20, 20, 1.0);
    border: transparent;
    border-radius: 15px !important;
    margin-top: 10px;
    margin-bottom: 20px;
}

/* MAP Area/ */
#google .map_area {
    height: 500px;
    width: 100%;
    margin-top: 0px;
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* --------------------------------------------------------------
# Footer
-------------------------------------------------------------- */
#footer {
    background: rgba(0, 167, 115, 0.9);
    padding-top: 50px;
    padding-bottom: 50px;
    color: #fff;
    letter-spacing: 1px;
    font-size: 13px;
    text-transform: uppercase;
    text-align: center;
}

#footer a {
    font-weight: 400;
    display: inline-block;
    margin: 10px 20px;
    text-decoration: none;
    outline: none;
    color: #ffffff;
    font-weight: 300;
}

#footer .copyright {
    text-align: center;
}

#footer .copy {
    color: black;
    font-weight: 500;
}

.footer_logo {
    padding-bottom: 10px;
}

/* privacy button-piede/ */
.btn.btn-privacy {
    padding: 2px;
    width: 95px;
    background-color: rgba(0, 0, 0, 0.5);
    border: transparent;
    border-radius: 15px !important;
}
