/* [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
:: 13.0 Import from COCOON Area CSS

------------------------------------------------ */
/* STEOSARCH */

/* :: 1.0 Import Web Fonts */
@import url('https://fonts.googleapis.com/css?family=Jura|Roboto|Roboto+Condensed');
/*@import url('https://fonts.googleapis.com/css?family=Jura|Roboto|Roboto+Condensed:300,400,500,600,700');

/* :: 2.0 Import All CSS */
@import '../css/animate.css';
@import '../css/bootstrap.min.css';
@import '../css/font-awesome.min.css';
@import '../css/owl.carousel.css';

/* :: 3.0 Common/Base CSS */
* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #1d1d1d;
    line-height: 1.2;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}

p {
    color: #1d1d1d;
    font-size: 15px;
    line-height: 1.5;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

p1 {
    color: gray;
    font-size: 15px;
    line-height: 1.5;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

a:focus {
    outline: 0 solid;
}

a,
a:hover,
a:focus {
    -webkit-transition: all 500ms ease 0s;
    transition: all 500ms ease 0s;
    text-decoration: none;
    outline: none;
    font-size: 14px;
    color: #000;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

/*-------------
PRELOADER 
-------------*/
#preloader {
    position: fixed;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background-color: #003153;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.questions-area ul li {
    display: none;
    font-size: 14px;
    font-weight: 500;
    color: #1d1d1d;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
}

.questions-area ul li.question-show {
    display: block;
}

.questions-area {
    padding: 0 15px;
    position: absolute;
    bottom: 100px;
    z-index: 15;
    width: 100%;
    height: auto;
    left: 0;
}

.questions-area p {
    margin-bottom: 0;
}

.showbox {
    position: relative;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0;
}

.loader {
    position: relative;
    margin: 0 auto;
    width: 60px;
}

.loader:before {
    content: '';
    display: block;
    padding-top: 100%;
}

.circular {
    -webkit-animation: rotate 2s linear infinite;
    animation: rotate 2s linear infinite;
    height: 100%;
    -webkit-transform-origin: center center;
    transform-origin: center center;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.path {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    -webkit-animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
    stroke-linecap: round;
}

@-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;
    }
}

ul,
ol {
    margin: 0;
}

ol li,
ul li {
    list-style: outside none none;
}
/*-------------
FINE PRELOADER 
-------------*/

/* HEAD/larghezza logo */
img {
    height: auto;
    max-width: 100%;
}

/* index.html/carousel */
.bg-img {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* contact/button */
.studio-btn {
    display: inline-block;
    color: #fff;
    background-color: chartreuse;
    height: 52px;
    padding: 0 15px;
    border-radius: 0;
    line-height: 52px;
    font-size: 16px;
    min-width: 140px;
}

.studio-btn > img {
    padding-right: 5px;
}

.studio-btn:hover,
.studio-btn:focus {
    color: #fff;
    font-size: 16px;
}

/*--------------------------
/* :: 4.0 Header Area CSS 
--------------------------*/
.header-area {
    width: 100%;
    height: 100px;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    padding: 0 0px;
}

#searchbtn {
    cursor: pointer;
    margin-left: 15px;
}

.header-search-form,
.search-form-on .navbar-nav {
    display: none;
}

.search-form-on .header-search-form {
    display: block;
}

.header-area .main-menu .nav-link  {
    font-size: 14px;
    text-transform: uppercase;
    color: #ffffff;
    padding: 0 25px;
}

.header-area .main-menu .nav-link {
    font-size: 14px;
    text-transform: uppercase;
    color: #ffffff;
    padding: 0 25px;
}

.header-area .main-menu .nav-link:hover,
.header-area .main-menu .nav-link:focus {
    color: chartreuse;
}

.dropdown-menu.show {
    border: none;
    padding: 15px 0;
    box-shadow: 0 5px 40px rgba(0, 0, 0, 0.15);
    margin-top: 15px;
}

.dropdown-item {
    text-transform: uppercase;
    font-size: 13px;
}

.dropdown-item:hover {
    color: #000;
    font-size: 13px;
}

.header-search-form form input {
    width: 600px;
    height: 35px;
    padding: 5px 15px;
    font-size: 12px;
    color: #fff;
    border: none;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 30px;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
}

.header-search-form form input:focus {
    box-shadow: none;
    border-color: rgba(255, 255, 255, 1);
    background-color: transparent;
}

/* index.html */
.gradient-background-overlay {
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
}

.gradient-background-overlay:before {
    content: "";
    position: absolute;
    height: 150px;
    width: 100%;
    z-index: -1;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.01) 90%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.01) 90%, rgba(0, 0, 0, 0) 100%);
}

/*---------------------------
:: 5.0 Sidebar Area SOCIAL 
---------------------------*/
/* barra social */
.social-sidebar-area {
    width: 100px;
    height: 72%;
    background-color: transparent;
    position: fixed;
    bottom: 100px;
    left: 0;
    z-index: 100;
    overflow: hidden;
}

/* nomi social */
.social-info-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    position: absolute;
    bottom: 300px;
    left: -135px;
    z-index: 10;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; 
}

/* nomi social */
.social-info-area a {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 5px;
    line-height: 1;
}

/* loghi social */
.social-info-area a i {
    font-size: 12px;
    color: dimgrey;
    margin-right: 5px;
}

/* box envelope */
.message-box > a {
    width: 100px;
    height: 100px;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: chartreuse;
    text-align: center;
    color: #fff;
    font-size: 30px;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.message-box > a > img {
    max-width: 40px;
}

/*---------------------------
/* :: 6.0 Welcome Area 
---------------------------*/
.welcome-area {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100vh !important;
}

.welcome-area-small {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100vh;
}

.carousel-indicators {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    margin: 0;
    z-index: 9999;
}

.carousel-indicators li {
    width: 100%;
    height: 100px;
    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-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.slide-text {
    padding: 25px 30px 15px;
    border-left: 10px solid chartreuse;
    margin-left: 200px;
    background-color: rgba(255, 255, 255, 0.2);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    margin-top: -100px;
}

.slide-text h2 {
    margin-bottom: 0;
    font-size: 36px;
    color: #fff;
    line-height: 1;
}

.slide-text span {
    font-size: 100px;
    color: #fff;
    line-height: 1;
    font-weight: 100;
}

/*---------------------------
/* :: 9.0 Footer Area CSS 
---------------------------*/
.footer-area {
    position: fixed;
    z-index: 50;
    background-color: #003153;
    height: 50px;
    width: 100%;
    padding: 0 50px;
    bottom: 0;
    left: 0;
}

.single-footer-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.single-footer-content > a {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    margin-left: 5px;
    line-height: 1;
}

/*---------------------------------------------------------
:: 10.0 Portfolio Area CSS 
---------------------------------------------------------*/

.gallery_area {
    height: calc(100% - 150px);
    width: calc(100% - 200px);
    overflow-y: scroll;
    position: fixed;
    z-index: 1;
    top: 100px;
    left: 100px;
    right:100px;
    bottom:50px;
    background-color: #fff;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 100px;
    padding-bottom: 0px;
}

.portfolio-menu button {
    background-color: transparent;
    font-size: 15px;
    color: #1d1d1d;
    padding: 0 15px;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
}

.portfolio-menu button.active {
    color: white;
    background-color: rgb(45, 45, 45);
}

.portfolio-menu button:hover {
    color: chartreuse;
    background-color: rgb(45, 45, 45, .5);
}

.portfolio-menu button:focus {
    box-shadow: none;
}

.gallery_menu {
    margin-bottom: 0px;    
    padding-left: 0px;
    padding-right: 0px;
    background-color: white;
}

.portfolio-column {
        margin-left: 0px;
}

.column_single_gallery_item {
    border: solid 1px white;
    background-color: black;
    padding: 1px;
}

.column_single_gallery_item img {
    width: 100%;
}

.hover_overlay {
    position: absolute;
    width: calc(100% - 30px);
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    top: 0;
    left: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
}

.hover_overlay a {
    font-size: 30px;
    color: #fff;
}

.column_single_gallery_item:hover .hover_overlay {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

/*-------------------------------------
/* :: 11.0 Blog & Contact Area CSS 
--------------------------------------*/
.blog-content span,
.contact-heading-text span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #bebebe;
    margin: 0 auto 30px;
}

.blog-content h2,
.contact-heading-text h2 {
    font-size: 36px;
}

.contact-heading-text h2,
.blog-content p {
    margin-bottom: 50px;
}

.post-date,
.post-date:hover,
.post-date:focus {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 500;
}

.post-author,
.post-author:hover,
.post-author:focus {
    font-size: 12px;
    text-transform: uppercase;
    color: #838383;
    display: block;
    margin-bottom: 50px;
}

.pagination-area .page-link {
    color: #1d1d1d;
    border: none;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.page-item.active .page-link {
    z-index: 1;
    color: #1d1d1d;
    background-color: transparent;
    border-color: transparent;
    padding-right: 80px;
}

.page-item.active .page-link:after {
    content: '';
    width: 70px;
    height: 2px;
    background-color: #1d1d1d;
    position: absolute;
    bottom: 13px;
    left: 45px;
}

.contact-form-area form .form-control {
    margin-bottom: 30px;
    font-size: 14px;
    font-style: italic;
    height: 60px;
    border-bottom: 2px solid #c0c0c0;
    border-top: 0;
    border-left: 0;
    border-radius: 0;
    border-right: none;
    background-color: transparent;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
}

.contact-form-area form .form-control:focus {
    box-shadow: none;
    border-color: #1d1d1d;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
}

.contact-form-area form textarea.form-control {
    height: 200px;
}

.map-area {
    position: relative;
    z-index: 1;
    padding-bottom: 100px;
}

#googleMap {
    width: 100%;
    height: 485px;
    position: relative;
    z-index: 1;
}

.contact-core-info {
    position: absolute;
    top: 30px;
    width: 280px;
    background-color: #1d1d1d;
    z-index: 1000;
    left: -90px;
    padding: 15px 40px;
    text-align: center;
    height: calc(100% - 60px);
}

.contact-core-info img {
    margin-bottom: 50px;
}

.contact-core-info .single-footer-content {
    display: block;
    margin-bottom: 10px;
    text-align: center;
}

.contact-core-info .single-footer-content img {
    display: block;
    margin: 0 auto 10px;
}

.contact-popup-form .modal-content {
    padding: 50px;
}

.contact-popup-form .modal-content {
    padding: 50px;
    border: none;
    box-shadow: 0 5px 50px rgba(0, 0, 0, 0.15);
    background-color: rgba(255, 255, 255, 0.9);
}

/* :: 12.0 Elements Area CSS */

/* Accordians */

.elements-title h2 {
    font-size: 36px;
    margin-bottom: 100px;
}

.panel {
    background-color: #fff;
    border: 0 solid transparent;
    border-radius: 4px;
    box-shadow: 0 0 0 transparent;
    margin-bottom: 0px;
}

.single-accordion:last-of-type {
    margin-bottom: 10px;
}

.single-accordion h4 a {
    background-color: rgb(15, 15, 15);
    border-radius: 0;
    color:white;
    display: block;
    margin: 0;
    padding: 10px 60px 10px 20px;
    position: relative;
    text-align: left;
    font-size: 24px;
    text-transform: capitalize;
    font-weight:200;
}

.single-accordion h6 a {
    background-color: rgb(45, 45, 45);
    border-radius: 0;
    color:white;
    display: block;
    margin: 0;
    padding: 10px 60px 10px 20px;
    position: relative;
    text-align: left;
    font-size: 16px;
    text-transform: capitalize;
    font-weight:200;    
}

.single-accordion h4 a.collapsed {
    background-color: rgb(15, 15, 15, .1);
    border-top: solid 1px black;
    border-bottom: solid 1px black;
    color: black;
}

.single-accordion h6 a.collapsed {
    background-color: rgb(45, 45, 45, .1);
    border-top: solid 1px black;
    border-bottom: solid 1px black;
    color: black;
}

/*--- h4 MINUS ---*/
.single-accordion h4 a span {
    background-color: chartreuse;    
    padding: 15px;
    top: 1px;
    right: 0px;
    font-size: 14px;
    color: black;
    position: absolute;
    text-align: center;
}

/*--- h6 MINUS ---*/
.single-accordion h6 a span {
    background-color: chartreuse;
    padding: 12px;
    top: 1px;
    right: 0px;
    font-size: 11px;
    color: black;
    position: absolute;
    text-align: center;
}

.single-accordion h4 a.collapsed span.accor-close {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
}

.single-accordion h6 a.collapsed span.accor-close {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
}

span.accor-open {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
}

.single-accordion a.collapsed span.accor-open {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
}

/* testo open */
.single-accordion h6 {
    margin-bottom: 0;
    text-transform: uppercase;
}

.single-accordion .accordion-content {
    border-top: 0 solid transparent;
    box-shadow: none;
}

.single-accordion .accordion-content p {
    /*padding: 15px 0px 5px 0px;*/
    text-align: left;
    margin-bottom: 0;
}

/*------------------------------
Sonar CSS 
------------------------------*/
.carousel-indicators li.active:before {
    content: '';
    display: inline-block;
    position: absolute;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    top: -25px;
    left: 1px;
    -webkit-animation: sonar-effect 1s ease-in-out .1s infinite;
    animation: sonar-effect 1s ease-in-out .1s infinite;
    z-index: 1;
    background-color: #fff;
}


@-webkit-keyframes sonar-effect {
    0% {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
    50% {
        opacity: 0.5;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
        box-shadow: 0 0 0 3px #fff, 0 0 5px 5px #fff, 0 0 0 5px #fff;
    }
    100% {
        box-shadow: 0 0 0 3px #fff, 0 0 5px 5px #fff, 0 0 0 5px #fff;
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}

@keyframes sonar-effect {
    0% {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
    50% {
        opacity: 0.5;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
        box-shadow: 0 0 0 3px #fff, 0 0 5px 5px #fff, 0 0 0 5px #fff;
    }
    100% {
        box-shadow: 0 0 0 3px #fff, 0 0 5px 5px #fff, 0 0 0 5px #fff;
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}
