body{
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    letter-spacing: 0.5px;
    background-color: #fff;
    position: relative;
    color: #3C3C3B;
}

    a{
        color: #339e97;
    }

        a:hover{
            color: #339e97;
            text-decoration: underline;
        }

    .btn{
        font-weight: 700;
        background-color: #339E97;
        color: rgb(255, 255, 255);
        border-radius: 5px;
        cursor: pointer;
        text-align: center;
        padding: 12px 35px;
        text-transform: uppercase;
        font-size: 14px;
    }
        
    .btn:hover{
        background-color: rgba(51, 158, 151, 0.7);
        color: #fff;
    }

    .btn-2{
        background: rgba(255, 255, 255, 0.6);
    }
    .btn-2:hover{
        background: rgba(255, 255, 255, 0.4);
    }

    section{
        padding: 100px 0;
    }

        .section-title{
            color: #222;
            font-weight: 700;
            position: relative;
            text-align: center;
            display: block;
            padding: 0 15px;
            font-size: 3.2rem;
            margin-bottom: 75px;
            z-index: 1;
        }

    .transition {
        -webkit-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out
    }

    .shadow{
        box-shadow: 0 .1rem 2rem rgba(0,0,0,.15) !important;
    }

.navbar{
    font-weight: 600;
    font-size: 15px;
    z-index: 1030;
    padding: 1.5rem 15px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 .1rem 2rem rgba(0,0,0,.15);
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.navbar.estica {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 1.5rem 3rem;
}

.navbar .navbar-brand{
    padding: 0;
    position: relative;
}  

    .navbar .navbar-brand > img{
        height: 50px;
    }
    
    .navbar.estica .navbar-brand > img{
        height: 65px;
    }

  .estica .navbar-toggler {
    display: none;
  }

  .estica .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  } 

    .navbar .navbar-nav {
      margin: 25px 0 0;
      background-color: transparent;
      padding: 15px 0 0;
      border-top: 1px solid #e2e2e2;
    } 

    .navbar.estica .navbar-nav {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
      padding: 0;
      margin: 0;
      border: none;
      text-align: center;
    }

      .navbar .nav-item{
        padding: 5px 0px;
      }

      .navbar.estica .nav-item{
        padding: 0 15px;
        line-height: 30px;
      }

      .navbar .nav-contacts{
          display: none;
      }
      
      .navbar.estica .nav-contacts{
          display: inline-block;
      }

      .navbar.estica .nav-item.nav-contacts{
          position: relative;
          padding: 0 45px;
          opacity: .4;
      }

        .navbar.estica .nav-item.nav-contacts:before{
            content: "";
            position: absolute;
            left: 15px;
            right: 0;
            height: 100%;
            width: 2px;
            background: rgba(0,0,0,.2);
        }

        .navbar .nav-contacts > a{
            display: inline-block;
            color: #222;
        }.navbar .nav-contacts > a:first-child{
            margin-right: 15px;
        }
        .navbar .nav-contacts > a:hover{
            color: #339E97;
            text-decoration: none;
        }
        
            .navbar .nav-contacts img, .navbar .nav-contacts svg{
                height: 14px;
                width: 14px;
                margin-right: 5px;
            }

            .navbar .nav-contacts a:hover svg path, .navbar .nav-contacts a:hover svg polygon{
                fill: #339E97;
            }

        .navbar .nav-item .nav-link{
          padding: 0;
          position: relative;
          display: inline-block;
        }  

        .navbar .nav-item .nav-link:before{
            position: absolute;
            content: "";
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #339e97;
            -webkit-transition: all .3s ease-in-out;
            -o-transition: all .3s ease-in-out;
            transition: all .3s ease-in-out;
            opacity: 0;
        }

        .navbar .nav-item .nav-link:after{
            -webkit-transition: all .3s ease-in-out;
            -o-transition: all .3s ease-in-out;
            transition: all .3s ease-in-out
        }

        .navbar .navbar-collapse .nav-item .nav-link.active:before, .navbar .navbar-collapse .nav-item .nav-link:hover:before{
            opacity: 1;
        } 

        .navbar .navbar-collapse .nav-item .nav-link span, .navbar .nav-item .nav-link:after{
          color: #222;
          opacity: .5;
        }

        .navbar .navbar-collapse .nav-item .nav-link.active span, .navbar .navbar-collapse .nav-item .nav-link:hover span, .navbar .navbar-collapse .nav-item .nav-link:hover:after, .navbar .navbar-collapse .nav-item .nav-link.active:after{
          color: #222;
          opacity: 1;
        } 

        .navbar.estica .nav-item .nav-link{
          display: block;
        }
    
    .navbar.estica .nav-item:last-child{
        padding-right: 0;
    }

    /* dropdown */
    .navbar .navbar-collapse .nav-item.dropdown.show .nav-link:before, .navbar .navbar-collapse .nav-item.dropdown.show .nav-link span, .navbar .navbar-collapse .nav-item.dropdown.show .nav-link:after{
        opacity: 1;
    }

        .navbar-nav .dropdown-menu{
            position: absolute;
            left: 15px;
            border: none;
            padding: 0;
            border-radius: 3px;
            margin-top: 10px;
        }

            .navbar-nav .dropdown-menu .dropdown-item{
                padding: 7px 25px;
            } 
            
            .navbar-nav .dropdown-menu .dropdown-item.active, .navbar-nav .dropdown-menu .dropdown-item:hover{
                background: #339E97;
            }
            
                .navbar-nav .dropdown-menu .dropdown-item span{
                    font-weight: 600;
                    font-size: 15px;
                    opacity: .5;
                    color: #222;
                }
            
                    .navbar-nav .dropdown-menu .dropdown-item.active span, .navbar-nav .dropdown-menu .dropdown-item:hover span{
                        opacity: 1;
                        color: #fff;
                    }

    /* mobile */
    .navbar-toggler {
        padding: 10px;
        border: none;
        display: block;
        background: #339E97;
        border-radius: 3px;
        position: absolute;
        right: 15px;
        top: 31px;
    }

        .navbar-toggler .icon-bar+.icon-bar {
            margin-top: 4px
        }

        .navbar-toggler .icon-bar {
            display: block;
            width: 28px;
            height: 3px;
            transition: all .2s;
            background-color: #fff;
            border-radius: 3px;
        }

        .navbar-toggler[aria-expanded=true] .top-bar {
            transform: translate(4px,1px) rotate(45deg);
            transform-origin: 5px -1px
        }

        .navbar-toggler[aria-expanded=true] .middle-bar {
            opacity: 0
        }

        .navbar-toggler[aria-expanded=true] .bottom-bar {
            transform: translate(4px,1px) rotate(-45deg);
            transform-origin: 2px 100%
        }

        .navbar-toggler .middle-bar {
            opacity: 1;
        }

#home{
    padding: 0;
    min-height: 100vh;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

    #home .home-slide-wrapper, #home .slick-list, #home .slick-track{
        height: 100%;
    }

    #home .home-slide{
        position: relative;
        padding: 100px 0 0;
    }

        #home .home-slide-bg{
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

            #home .home-slide-bg:before{
                content: "";
                position: absolute;
                background: rgb(0, 0, 0, 0.2);
                left: 0px;
                right: 0px;
                top: 0px;
                bottom: 0px;
                z-index: 1;
            }

            #home .slide-content{
                position: relative;
                z-index: 5;
            }

                #home .slide-content > span{
                    font-size: 2.5rem;
                    color: #fff;
                    font-weight: 700;
                    margin-bottom: 15px;
                }

                #home .home-slide a{
                    display: inline-block;
                }

    .slide-pagination{
        position: absolute;
        right: 100px;
        bottom: 100px;
        z-index: 5;
    }

        .slide-nav > div{
            display: inline-block;
            cursor: pointer;
            background-color: #339E97;
            height: 45px;
            width: 45px;
            border-radius: 50%;
            position: relative;
            vertical-align: bottom;
        }

        .slide-nav > span{
            color: #fff;
            margin: 0 10px;
            display: inline-block;
            font-weight: 600;
            line-height: 45px;
        }

        .slide-nav > div.slick-disabled{
            opacity: .6;
            cursor: default;
        }

            .slide-nav > div:before{
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate3d(-50%, -50%, 0);
                font-family: "Font Awesome 5 Free";
                font-weight: 900;
                font-size: 22px;
                color: #fff; 
            }

            .slide-nav > div.slide-prev:before{
                content: "\f104";
            }
            .slide-nav > div.slide-next:before{
                content: "\f105";
            }

/* secçao sobre */
#about .container{
    position: relative;
    padding: 75px 15px;
}

    #about .container:before{
        position: absolute;
        content: "";
        left: 0;
        right: 0;
        top: 0;
        width: 100%;
        height: 50%;
        background-image: url('../img/pattern-about.png');
        background-repeat: repeat;
        opacity: .6;
    }

        #about .section-title{
            text-align: right;
            margin-bottom: 25px;
        }

        #about img{
            border-radius: 3px;
        }

#projects{
    background-image: url('../img/pattern.png');
    background-repeat: repeat;
}

    .project-item{
        position: relative;
    }

        .project-item > div{
            position: relative;
            overflow: hidden;
        }

            .project-item .project-image{
                position: relative;
            }

                .project-item .project-image:before{
                    content: "";
                    position: absolute;
                    left: 0;
                    right: 0;
                    top: 0;
                    bottom: 0;
                    width: 100%;
                    height: 100%;
                    background-color: rgba(0,0,0,0.4);
                    border-radius: 3px;
                }

                .project-item img{
                    border-radius: 3px;
                    width: 100%;
                }
            
            .project-item > div > span{
                position: absolute;
                bottom: 30px;
                left: 30px;
                right: 30px;
                color: #fff;
                font-weight: 700;
            }

            .project-item .project-title{
                font-size: 28px;
            }     
            
            .project-item.active:hover .project-title{
                transform: translateY(-25px);
            }
            
            .project-item .project-link-text{
                font-size: 18px;
                opacity: 0;
            }

            .project-item.active:hover .project-link-text{
                opacity: .8;
            }

        .project-item.sold > div:after{
            content: "VENDIDO";
            position: absolute;
            font-family: "Open Sans";
            font-weight: 700;
            top: 15px;
            right: -41px;
            width: 150px;
            padding: 10px 0;
            text-align: center;
            background: rgba(255,255,255,.8);
            color: rgba(0,0,0,.8);
            transform: rotate(45deg);
        }

#map{
    height: 500px;
    width: 100%;
    z-index: 1;
    border-radius: 3px;
}

.contacts-location-wrapper{
    position: absolute;
    z-index: 2;
    top: 145px;
    left: 45px;
    width: 320px;
    background: #fff;
    border-radius: 3px;
}

    .contacts-location{
        padding: 40px 30px;
    }
    
        .contacts-location-title{
            font-size: 18px;
        }
        
        .contacts-location > span{
            display: block;
        }

        .contacts-location > p{
            margin:0;
        }

    .contacts-image img{
        border-bottom-left-radius: 3px;
        border-bottom-right-radius: 3px;
    }

#contacts-details{
    position: relative;
    margin-top: 30px;
}

    #contacts-details:before{
        position: absolute;
        content: "";
        left: 0px;
        right: 0px;
        top: 0;
        height: 100%;
        background-image: url('../img/pattern-about.png');
        background-repeat: repeat;
        opacity: .6;
    }

    .contacts-wrapper{
        position: relative;
    }

        .contacts-wrapper span, .contacts-wrapper p{
            display: block;
            margin-bottom: 15px;
        }

        .contacts-wrapper form input[type="text"], .contacts-wrapper form input[type="email"], .contacts-wrapper form input[type="tel"], .contacts-wrapper form textarea{
            display: block;
            width: 100%;
            border: 2px solid rgba(0,0,0, .15);
            border-radius: 3px;
            background-color: #fff;
            outline: none !important;
            padding: .9rem 1.5rem;
            font-size: 15px;
            margin-bottom: .8rem;
        }

        .contacts-wrapper form input.error, .contacts-wrapper form textarea.error{ 
            border-color: #9e322f;
        } 

        .contacts-wrapper form .terms-label.error span{
            color: #9e322f;
        }
        
        .contacts-wrapper form ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
            opacity: .4; /* Firefox */
        }
        
        .contacts-wrapper form :-ms-input-placeholder { /* Internet Explorer 10-11 */
            opacity: .4;
        }
        
        .contacts-wrapper form ::-ms-input-placeholder { /* Microsoft Edge */
            opacity: .4;
        }

        .contacts-wrapper label{
            margin: 0 0 .8rem;
            font-weight: 600;
            font-size: 15px;
        }

        .contacts-wrapper label.terms-label{
            font-size: 14px;
        } 
            
            .contacts-wrapper label.terms-label input{
                display: inline-block;
                margin-right: 3px;
            }

footer{
    padding: 30px 0;
    font-size: 15px;
}

/* paginas */
.page{
    padding-top: 115px;
}

    .sidebar{
        border-radius: 3px;
    }

        .sidebar-section:not(:first-child){
            margin-top: 50px;
        }

            .sidebar .sidebar-title{
                border-top-left-radius: 3px;
                border-top-right-radius: 3px;
                padding: 15px 25px;
                background-color: #339E97;
                color: #fff;
                font-weight: 700;
            }

                .sidebar-content{
                    padding: 30px 35px;
                }

                    .sidebar-content .sidebar-item.sidebar-item-row{
                        display: -ms-flexbox;
                        display: flex;
                        -ms-flex-wrap: wrap;
                        flex-wrap: wrap;
                    }            
                    
                    .sidebar-content .sidebar-item:not(:first-child){
                        margin-top: 25px;
                    }
                        
                        .sidebar-content .sidebar-item > div > img{
                            height: 35px;
                        }                
                        
                        .sidebar-content .sidebar-item > div .sidebar-item-text, .sidebar-content .sidebar-item > div .sidebar-item-title{
                            display: block;
                        }

                        .sidebar-content .sidebar-item > div .sidebar-item-text{
                            font-weight: 700;
                        }

                        .sidebar-content .sidebar-item > div .sidebar-item-title{
                            font-size: 14px;
                            opacity: .9;
                        }

                        .sidebar-content .sidebar-item > #sidebar-map{
                            height: 250px;
                        }

/* paginas */
.page .page-title{
    color: #222;
    font-weight: 700;
    position: relative;
    text-align: center;
    display: block;
    font-size: 3rem;
    margin-bottom: 75px;
}

/* pagina projetos */
#projects-page{
    padding: 100px 0 50px;
}

    #projects-page .project-item{
        margin-bottom: 50px;
    }

/* pagina projeto */
.project-gallery{
    position: relative;
}

    .project-gallery .slick{
        overflow: hidden;
    }

        .project-gallery .slide-nav{
            position: absolute;
            right: 45px;
            bottom: 30px;
        }

        .project-gallery div, .project-gallery .slick-slide{
            border-radius: 3px;
        }

.project-section:not(:last-child){
    border-bottom: 1px solid rgba(60, 60, 59, .1);
    padding-bottom: 25px;
    margin-bottom: 25px;
}

    .project-section-title{
        font-weight: 700;
        position: relative;
        display: block;
        font-size: 2rem;
        margin-bottom: 25px;
    }

    .project-architect-name{
        font-weight: 700;
        font-size: 1.2rem;
        margin-bottom: 5px;
    }