/* [Master Stylesheet] */

/* ------------- Index of Stylesheet -------------
:: 1.0 Import Web Fonts
:: 2.0 Import All CSS
:: 3.0 Common/Base CSS
:: 4.0 Header Area CSS
:: 5.0 Sidebar Area CSS
:: 6.0 Welcome Area CSS
:: 7.0 About Me Area CSS
:: 8.0 Follow Instagram Area CSS
:: 9.0 Footer Area CSS
:: 10.0 Portfolio Area CSS
:: 11.0 Blog & Contact Area CSS
:: 12.0 Elements Area CSS
------------------------------------------------ */

/* :: 1.0 Import Web Fonts */





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

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

@-webkit-keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px;
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px;
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px;
    }
}

@-webkit-keyframes color {
    100%,
    0% {
        stroke: #d62d20;
    }
    40% {
        stroke: #0057e7;
    }
    66% {
        stroke: #008744;
    }
    80%,
    90% {
        stroke: #ffa700;
    }
}

@keyframes color {
    100%,
    0% {
        stroke: #d62d20;
    }
    40% {
        stroke: #0057e7;
    }
    66% {
        stroke: #008744;
    }
    80%,
    90% {
        stroke: #ffa700;
    }
}



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


.bg-img {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.bg-gray {
    background-color: #f6f6f6;
}

.bg-transparent {
    background-color: transparent;
}

.bg-transparent-dark {
    background-color: rgba(0, 0, 0, 0.5) !important;
}

.bg-transparent-light {
    background-color: rgba(255, 255, 255, 0.5) !important;
}

.font-bold {
    font-weight: 700;
}

.font-light {
    font-weight: 300;
}

.height-500 {
    height: 500px !important;
}

.height-600 {
    height: 600px !important;
}

.height-700 {
    height: 700px !important;
}

.height-800 {
    height: 800px !important;
}

.section_padding_100 {
    padding: 100px 0;
}

.section_padding_50 {
    padding: 50px 0;
}

.section_padding_100_70 {
    padding: 100px 0 70px;
}

.section_padding_100_50 {
    padding: 100px 0 50px;
}

.section_padding_100_0 {
    padding: 100px 0 0;
}

.section_padding_0_100 {
    padding: 0 0 100px;
}

.section_heading {
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.section_heading h2 {
    font-size: 48px;
    margin-bottom: 0;
    text-transform: uppercase;
}

.section_heading.text-left {
    text-align: left !important;
}


/* :: 6.0 Welcome Area CSS */

/*.welcome-area {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 650px !important;
}*/
/*SCRITTA da Elisabetta PER FARE pił piccolo filter banner*/
.welcome-area {
    z-index: 2;
    width: 90%;
    height: 650px !important;
    margin-right: auto;
    margin-left: auto;
}
    .h-100 {
    height: 550px !important;
}
.carousel-indicators {
    position: relative;
    width: 100%;
    height: auto;
    margin: 0;
    z-index: 9999;
}

.carousel-indicators li {
    width: 100%;
    height: 80px;
    margin-right: 0;
    margin-left: 0;
    text-indent: -9999999px;
    background-color: #fff;
    cursor: pointer;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
}

.carousel-indicators li:after,
.carousel-indicators li:before {
    display: none;
}

.carousel-indicators li.active:after {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    top: -26px;
    z-index: 1100;
    position: absolute;
    background-image: url(../img/core-img/active.png);
}

.carousel-item:after {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.17);
    content: '';
    z-index: -1;
}

.carousel-item a:hover {
    text-decoration: none;
}

.carousel-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.slide-text {
    padding: 15px 20px 10px;
    border-left: 3px solid #fff;
    margin-left: 25px;
    background-color: rgba(0, 0, 0, 0.4);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    width: 40%;
    max-width: 40%;
    margin-bottom: -300px;
}

    .slide-text h2 {
        margin-bottom: 0;
        font-size: 22px;
        color: #fff;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
        line-height: 1;
    }

.slide-text span {
    font-size: 50px;
    color: #fff;
    line-height: 1;
    font-weight: 100;
}

    .sottotitolino {
        font-size: 16px;
    }
