/* colors -> https://coolors.co/e54b4b-ebebd3-464655-e4b363-e8e9eb */

@font-face {
    font-family: "DIN Medium";
    src: url("../fonts/DIN_Medium_Regular.ttf") format("truetype");
}

@font-face {
    font-family: "DIN Light";
    src: url("../fonts/DIN_Light_Regular.otf") format("truetype");
}

/*@import url('https://fonts.googleapis.com/css?family=Quicksand:400,700');*/

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'DIN Medium', sans-serif;
    text-align: center;
    display: none;
}

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

.container {
    width: 95%;
}

.titulo {
    font-size: 1.25rem;
    margin-top: 0px;
}

header {
    background: #FFF;
    color: #232323;
    padding: 0.3em 0;
    position: fixed;
    height: 40px;
    width: 100%;
    z-index: 100;
    margin-top: -50px;
}

header::after {
    content: '';
    clear: both;
    display: block;
}

.logo {
    float: left;
    font-size: 1rem;
    margin: 0;
    text-transform: uppercase;
    font-weight: 700;
}

.logo span {
    font-weight: 400;
}

.logo_topo {
    position: absolute;
    width: 35%;
    height: 30px;
    background: url("../images/logo_cores.png");
    background-size: 100%;
    background-repeat: no-repeat;
    cursor: pointer;
    margin-left: 10px;
}

.logo_topo_preto {
    position: absolute;
    width: 35%;
    height: 30px;
    background: url("../images/logo_cores.png");
    background-size: 100%;
    background-repeat: no-repeat;
    cursor: pointer;
    margin-left: 10px;
}

.logo_transviga {
    float: left;
}
.site-nav {
    position: absolute;
    top: 100%;
    right: 0%;
    background: #FFF;
    z-index: 100;
    margin-right: -100%;
    width: 100%;
}

.site-nav--open {
    clip-path: circle(250% at top right);
}

.site-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-nav li {
    border-bottom: 1px solid #ff6500;
    width: 80%;
    margin-left: 10%;
    text-align: left;
    cursor: pointer;
}

.site-nav li:last-child {
    border-bottom: none;
}

.site-nav a {
    color: #232323;
    display: block;
    padding: 1.2em 13em 1.2em 0em;
    text-transform: capitalize;
    text-decoration: none;
}

.site-nav .facebook, .site-nav .instagram {
    display: none;
}

.site-nav a:hover,
.site-nav a:focus {
    background: #ff6500;
    color: #464655;
}

.site-nav--icon {
    display: inline-block;
    font-size: 1.5em;
    margin-right: 1em;
    width: 1.1em;
    text-align: right;
    color: rgba(255,255,255,.4);
}

.separador_menu {
    height: 70px;
}

.mobile_redes_sociais {
    width: 80%;
    height: 40px;
    margin: 20px 0;
    margin-left: 0px;
    font-size: 0.8em;
}

.span_facebook, .span_instagram {
    position: absolute;
    margin-top: 2px;
}

.mobile_redes_sociais a {
    padding: 0;
    width: 144px;
    float: left;
}

.span_link_menu {
    width: 90px;
    margin-top: -90px;
}

.menu-toggle {
    padding: 1em;
    position: absolute;
    top: 0.3em;
    right: 0em;
    cursor: pointer;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    content: '';
    display: block;
    background: #232323;
    height: 3px;
    width: 1.75em;
    border-radius: 3px;
    transition: all ease-in-out 500ms;
}

.hamburger::before {
    transform: translateY(-6px);
}

.hamburger::after {
    transform: translateY(3px);
}

.open .hamburger {
    transform: rotate(45deg);
}

.open .hamburger::before {
    opacity: 0;
}

.open .hamburger::after {
    transform: translateY(-3px) rotate(-90deg);
}

.banner {
    background-image: url("../images/banner.jpg");
    background-size: 100%;
    background-repeat: no-repeat;
    padding: 5em 0;
    color: #FFF;
    height: 220px;
    position: relative;
    margin-top: 50px;
}

.imagens_home {
    position: relative;
    width: 100%;
}

.separador_slider {
    width: 100%;
    height: 3px;
    background-color: #ff6500;
    margin-top: 10px;
}

.botoes_imagens_home {
    position: relative;
    width: 100%;
    height: 20px;
    text-align: center;
    margin-top: 8px;
}

.botoes_imagens {
    border-radius: 50%;
    display: inline-block;
    height: 12px;
    width: 12px;
    background-color: #c7c7c7;
}

.botoes_imagens_selected {
    border-radius: 50%;
    display: inline-block;
    height: 12px;
    width: 12px;
    background-color: #4e4e4e;
}

.texto_home {
    width: 100%;
    text-align: center;
    margin-top: 40px;
    height: auto;
}

.texto {
    width: 96%;
    margin-left: 2%;
}

.texto_home p {
    width: 100%;
    text-align: left;
    letter-spacing: 1px;
    color: #0d0d0d;
    font-size: 1.3rem;
}

/******** SLIDER ******/
.animate { transition: transform 0.3s ease-out; }

.slider-wrap {
    width: 100%;
}

.slider {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.ms-touch.slider {
    overflow-x: scroll;
    overflow-y: hidden;

    -ms-overflow-style: none;
    /* Hides the scrollbar. */

    -ms-scroll-chaining: none;
    /* Prevents Metro from swiping to the next tab or app. */

    -ms-scroll-snap-type: mandatory;
    /* Forces a snap scroll behavior on your images. */

    -ms-scroll-snap-points-x: snapInterval(0%, 100%);
    /* Defines the y and x intervals to snap to when scrolling. */
}

.holder {
    width: 600%;
    max-height: 500px;
    height: 100%;
    overflow-y: hidden;
}

.slide-wrapper {
    width: 16.66%;
    height: 100%;
    float: left;
    position: relative;
    overflow: hidden;
}

.slide {
    height: 100%;
    position: relative;
}

.titulo_imagem_home {
    position: absolute;
    z-index: 1;
    color: white;
    font-size: 1.5rem;
    bottom: 10px;
    left: 0px;
    padding-left: 20px;
    padding-top:5px;
    padding-bottom: 5px;
    background: rgba(0,0,0,.50);
    letter-spacing: 1px;
}

.slide img {
    z-index: 0;
}

.slide:before {
    content: "";
    z-index: 1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(transparent, black);
}

.slide div {
    width: 100%;
    z-index: 0;
}

.site-nav .link_menu_preto {
    color: #232323;
}

.site-nav .link_menu_preto:hover, .site-nav .link_menu_preto:focus {
    color: #232323;
}

/******** SLIDER ******/
.footer, .copyright {
    display: none;
}

#holder_2 {
    display: none;
}

.projetos {
    width: 100%;
    height: 600px;
    margin-top: 40px;

}

.projeto {
    width: 30%;
    height: 135px;
    float: left;
    margin: 5px;
    text-align: center;
}

.titulo_projeto {
    width: 100%;
    height: 10%;
    font-size: 0.7rem;
    color: #4a4a4a;
}

.imagem_projeto {
    /*width: 100%;
    height: 100%;*/
}

.mais_info_projeto {
    width: 100%;
    height: 10%;
    text-align: left;
    margin-left: 6%;
    margin-top: 5px;
}

.mais_info_projeto a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 0.5rem;
}

#google-map {
    width: 100%;
    height: 250px;
}

.contactos {
    width: 100%;
}

.texto_contactos, .redes_sociais {
    width: 85%;
    font-size: 0.8rem;
    line-height: 20px;
    text-align: left;
    margin: 0 auto;
    margin-top: 30px;
}

.texto_contactos {
    height: 305px;
}

.redes_sociais {
    height: 100px;
    margin-bottom: 30px;
}

.titulo_contactos {
    font-size: 1.1rem;
}

.morada_fabrica, .morada_sede {
    margin-top: 25px;
    cursor: pointer;
}

.telefone_fabrica, .telefone_sede, .email_sede {
    margin-top: 10px;
}

.telefone_fabrica {
    padding-bottom: 20px;
    border-bottom: 1px solid #ff6500;
}

.telefone_fabrica a, .telefone_sede a, .email_sede a {
    text-decoration: underline;
    color: #ff6500;
    padding-bottom: 3px;
}

.email_sede {
    padding-bottom: 20px;
    border-bottom: 1px solid #ff6500;
}

.siga_nos {
    margin-top: 20px;
    font-size: 1.1rem;
}

.facebook_contactos {
    margin-top: 25px;
}

.instagram_contactos {
    margin-top: 10px;
}

.facebook_contactos a, .instagram_contactos a, .txt_facebook a, .txt_instagram a {
    text-decoration: none;
    color: #4a4a4a;
}

.txt_facebook, .txt_instagram {
    margin-top:-20px;
    margin-left: 20px;
}

.formulario_contactos {
    width: 80%;
    height: 400px;
    margin-top: 40px;
    text-align: left;
    font-size: 0.8rem;
    margin-left: 10%;
}

input {
    background: #dddddd;
    border: none;
    width: 100%;
    height: 30px;
    padding-left: 10px;
    font-family: 'DIN Medium', sans-serif;
}

textarea {
    background: #dddddd;
    border: none;
    width: 100%;
    padding-left: 5px;
    padding-top: 5px;
    font-family: 'DIN Medium', sans-serif;
}

.input_nome, .input_email, .input_mensagem  {
    margin: 10px 0px;
}

.seta_mais_info {
    font-weight: bold;
    color: #ff6500;
}

button.botao_ficheiro {
    width: 110px;
    font-size: 0.7rem;
    cursor: pointer;
    color: #ffffff;
    padding: 10px 0px;
    background: #ff6600;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    border: 1px solid #ffffff;
    font-family: 'DIN Medium', sans-serif;
    /*-moz-box-shadow:
            0px 1px 3px rgba(000,000,000,0.5),
            inset 0px 0px 2px rgba(255,255,255,1);
    -webkit-box-shadow:
            0px 1px 3px rgba(000,000,000,0.5),
            inset 0px 0px 2px rgba(255,255,255,1);
    box-shadow:
            0px 1px 3px rgba(000,000,000,0.5),
            inset 0px 0px 2px rgba(255,255,255,1);
    text-shadow:
            0px -1px 0px rgba(000,000,000,0.4),
            0px 1px 0px rgba(255,255,255,0.3);*/
}

button.submit_botao {
    width: 110px;
    font-size: 0.7rem;
    color: #ffffff;
    cursor: pointer;
    padding: 10px 0px;
    background: #0460a0;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    border: 1px solid #0460a0;
    font-family: 'DIN Medium', sans-serif;
}

.botoes {
    width: 100%;
    height: 30px;
    margin-top: -5px;
    margin-bottom: 50px;
}

.botao_file, .botao_submit {
    width: 110px;
}

.botao_file {
    margin: 0;
    overflow: hidden;
    display: inline-block;
    cursor: pointer;
}

.botao_submit {
    margin-left: 177px;
    margin-top: -34px;
}

.menu_obras {
    width: 95%;
    height: 20px;
    margin-left: 2.5%;
    margin-top: 5px;
    overflow: auto;
    overflow-y: hidden;
    -ms-overflow-y: hidden;
}

.content_menu {
    width: 1100px;
    float: left;
    margin-top:3px;
}

.topico_menu_obras {
    width: auto;
    float: left;
    color: #a2a2a2;
    font-size: 0.9rem;
    height: 20px;
}

.topico_unselected {
    color: #232323;
    text-decoration: none;
}

.topico_unselected:focus, .topico_unselected:hover {
    border-bottom: 1px solid #ff6500;
    color: #232323;
}

.topico_selected {
    border-bottom: 1px solid #ff6500;
    color: #232323;
    text-decoration: none;
}

.imagem_obra {
    position: relative;
    width: 95%;
    height: 292px;
    margin-left: 2.5%;
    margin-top: 15px;
}

.thumb_obra {
    width: 100%;
    height: 100%;
    position: relative;
}

.texto_imagem {
    position: absolute;
    width: 100%;
    height: 100px;
    padding-top: 45px;
    font-size: 1.3rem;
    color: #FFF;
    background: linear-gradient(to top, rgba(0,0,0,1), rgba(0,0,0,0));
    margin-top: -100px;
}

.txt_imagem {
    padding-left: 80px;
}

.separador_menu_obras {
    border-radius: 50%;
    display: inline-block;
    height: 5px;
    width: 5px;
    background-color: #c7c7c7;
    float: left;
    margin-left: 8px;
    margin-right: 8px;
    margin-top: 5px;
}

.btn {
    border: 2px solid #ff6500;
    color: #FFF;
    background-color: #ff6500;
    padding: 8px 4px;
    border-radius: 8px;
    font-size: 0.7rem;
    cursor: pointer;
}

.botao_file input[type=file] {
    margin-top:-32px;
    padding-left: 0px;
    opacity: 0;
    cursor: pointer;
}

.slide-image:hover {
    transform: none;
}

.content_imagens_obras {
    display: none;
}

#myBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 36px; /* Place the button at the bottom of the page */
    right: 4px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: #ff6500; /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    border-radius: 5px; /* Rounded corners */
    font-size: 18px; /* Increase font size */
    font-family: 'DIN Medium', sans-serif;
}

#myBtn:hover {
    background-color: #555; /* Add a dark-grey background on hover */
}

.texto_obras {
    position: relative;
    margin-top: 60px;
}

.oculto {
    display: block;
}

@media (min-width: 480px) {
    .menu-toggle {
        display: none;
    }

    .site-nav {
        background: transparent;
        clip-path: initial;
        margin-top: -50px;
        margin-right: 0px;
        position: absolute;
        right: 0;
        width: auto;
    }

    .site-nav li {
        display: inline-block;
        border: none;
        height: 22px;
        width: auto;
        margin-left: 10px;
        cursor: pointer;
    }

    .site-nav li img {
        width: 15px;
        height: 15px;
        position: absolute;
        bottom: 4px;
    }

    .selected a {
        border-bottom:1px solid #ff6500;
    }

    .instagram img {
        margin-left: 0px;
    }

    .site-nav a {
        padding: 1px 0px;
        margin-left: 1em;
        font-size: 0.9em;
        color: #FFF;
        text-transform: none;
    }

    .site-nav .last_menu {
        border-right: 1px solid #ff6500;
        padding-right: 20px;
    }

    .site-nav a:hover,
    .site-nav a:focus {
        background: transparent;
        color: #FFF;
        border-bottom:1px solid #ff6500;
    }

    .site-nav .facebook, .site-nav .instagram {
        display: inline-block;
        width: 15px;
    }

    .site-nav .facebook {
        margin-left: 17px;
    }

    .site-nav .instagram {
        margin-left: 4px;
    }

    .site-nav--icon {
        display: none;
    }

    .facebook a, .instagram a {
        margin-left: 0;
    }

    .logo_topo {
        width: 25%;
        height: 75px;
        background: url("../images/logo_branco.png");
        background-size: 100%;
        background-repeat: no-repeat;
        max-width: 200px;
        margin-left: 0px;
        position: relative;
    }

    .logo_topo_preto {
        width: 25%;
        height: 75px;
        background: url("../images/logo_preto.png");
        background-size: 100%;
        background-repeat: no-repeat;
        max-width: 200px;
        margin-left: 0px;
    }

    .logo_footer {
        width: 18%;
        height: 50px;
        background: url("../images/logo_cores.png");
        background-size: 100%;
        background-repeat: no-repeat;
        position: relative;
        max-width: 150px;
        margin-top: 5px;
        cursor: pointer;
    }

    header {
        width: 100%;
        height: 170px;
        background: transparent;
        z-index: 105;
        padding-top: 30px;
        position: fixed;
        margin-top: 0px;
    }

    .banner {
        text-align: left;
        height: 580px;
        background-position: center;
        background-size: 100% 100%;
        position: relative;
        margin-top: -85px;
        padding: 0;
    }

    .container {
        width: 90%;
        z-index: 101;
        height: 60px;
        position: relative;
        max-width: 1200px;
        margin: 0 auto;
        margin-top: 80px;
    }

    .titulo {
        letter-spacing: 2px;
        font-size: 2rem;
        cursor: default;
        height: 110px;
        padding-left: 10px;
        padding-top: 100px;
        display: none;
    }

    .fundo_opaco {
        position: absolute;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,.20);
    }

    .fundo_opaco .container {
        padding-top:230px;
    }

    .separador_slider {
        display: none;
    }

    .imagens_home {
        width: 100%;
        height: 50%;
        margin-top: -250px;
        text-align: center;
        max-height: 800px;
    }
    
    .img_mobile {
        display: none;
    }

    .holder {
        width: 100%;
        height: 100%;
    }

    .slider-wrap {
        width: 90%;
        height: 100%;
        left: 2.5%;
        margin: 0 auto;
        position: relative;
    }

    .slide-wrapper {
        width: 30%;
        height: 100%;
        margin: 7px;
        position: relative;
    }

    .slide {
        margin-top: 4%;
    }

    #holder_1 #wrapper_4, #holder_1 #wrapper_5, #holder_1 #wrapper_6 {
        display: none;
    }

    #holder_1, #holder_2 {
        height: 50%;
    }

    #holder_2 {
        display: block;
    }

    .slide-image {
        cursor: pointer;
    }

    .botoes_imagens_home {
        display: none;
    }

    .slide-image {
        transition: transform 1s;
        min-height: 304px;
    }

    .oculto {
        display: none;
    }

    .separador_imagem {
        position: absolute;
        height: 1%;
        width: 100%;
        background: #ff6500;
        margin-top: 1%;
    }

    .slide-image:hover {
        transform: scale(1.03);
    }

    .titulo_imagem_home {
        font-size: 1.2rem;
        width: 100%;
        position: absolute;
        bottom: -32px;
        cursor: pointer;
        background: none;
        display: none;
        height: 80px;
        background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,1));
        text-align: left;
        padding-top: 30px;
    }

    .projetos {
        width: 90%;
        height: 2000px;
        margin: 0 auto;
        margin-top: 40px;
        max-width: 1200px;
    }

    .projeto {
        width: 23%;
        /*height: 22%;*/
        margin-top: 20px;
        height: 300px;
    }

    .titulo_projeto {
        font-size: 1.1rem;
        height: 10%;
        margin-bottom: 10px;
    }

    .imagem_projeto {
        padding: 10px 10px 0px 10px;
    }

    .imagem_projeto img {
        width: 100%;
        height: 100%;
    }

    .mais_info_projeto {
        width: 30%;
        margin-left: 17%;
    }

    .mais_info_projeto a {
        font-size: 1rem;
    }

    .texto_home p {
        font-size: 1rem;
        width: 100%;
        text-align: justify;
        letter-spacing: 1px;
        line-height: 30px;
    }

    .texto {
        width: 60%;
        position: relative;
        margin: 0 auto;
        max-width: 1195px;
    }

    #google-map {
        width: 100%;
        height: 550px;
        position: relative;
    }

    .contactos {
        width: 90%;
        height: 250px;
        position: relative;
        margin: 0 auto;
        margin-top: 100px;
        max-width: 1200px;
    }

    .texto_contactos, .redes_sociais {
        float: left;
    }

    .texto_contactos {
        width: 630px;
        height: 175px;
    }

    .redes_sociais {
        width: 300px;
        height: 150px;
        margin-left: -50px;
    }

    .telefone_fabrica, .morada_fabrica, .titulo_contactos {
        width: 40%;
    }

    .morada_sede, .telefone_sede, .email_sede {
        width: 40%;
    }

    .telefone_fabrica, .email_sede {
        border: none;
    }

    .morada_fabrica, .telefone_fabrica {
        border-right: 1px solid #ff6500;
    }

    .telefone_fabrica, .telefone_sede, .email_sede {
        padding-top: 11px;
        margin: 0;
    }

    .siga_nos {
        margin: 0;
    }

    .morada_sede {
        /*margin-top: -123px;*/
        margin-top: -165px;
        margin-bottom: 23px;
    }

    .morada_sede, .telefone_sede, .email_sede {
        margin-left: 265px;
    }

    .facebook_contactos {
        margin-top: 25px;
    }

    .formulario_contactos {
        width: 90%;
        margin: 0 auto;
        margin-top: 50px;
        max-width: 1200px;
    }

    .nome_form, .email_form, .mensagem_form {
        width: 100%;
    }

    .input_nome, .input_email, .input_mensagem  {
        width: 100%;
    }

    .botao_submit {
        margin: 0 auto;
        margin-top: -34px;
        margin-left:calc(100% - 110px);
    }

    .footer {
        display: block;
        width: 100%;
        height: 70px;
        background: #dbdbdb;
        padding-top: 10px;
        margin-top: 60px;
        position: relative;
    }

    .content_footer {
        width: 90%;
        height: 100%;
        margin: 0 auto;
        max-width: 1200px;
        position: relative;
    }

    .footer .site-nav {
        float: none;
        position: relative;
    }

    .footer .site-nav a {
        color: #232323;
    }

    .menu_footer {
        position: absolute;
        right: 0;
    }

    .copyright {
        display: block;
        width: 100%;
        background: #FFF;
        height: 27px;
        text-align: left;
    }

    .texto_copyright {
        padding-top: 5px;
        color: #232323;
        font-size: 0.6rem;
        letter-spacing: 1px;
        margin: 0 auto;
        max-width: 1200px;
        width: 90%;
        text-align: left;
    }

    .site-nav .link_menu_preto {
        color: #232323;
    }

    .site-nav .link_menu_preto:hover, .site-nav .link_menu_preto:focus {
        color: #232323;
    }

    .menu_obras {
        height: 90px;
        background: #FFF;
        width: 90%;
        position: relative;
        margin: 0 auto;
        margin-top: -110px;
        max-width: 1200px;
    }

    .separador_menu_obras {
        display: none;
    }

    .content_menu {
        width: 80%;
        height: 100%;
        text-align: left;
        margin-left: 12%;
    }

    .topico_menu_obras {
        width: 21%;
        margin-top: 10px;
        height: auto;
        margin-right: 20px;
    }

    #tipo_4 {
        width: 24%;
    }

    .topico_meio {
        width: 22%;
    }

    .linha_baixo {
        margin-bottom: 10px;
    }

    .topico_selected {
        border: 0;
        color: #ff6500;
    }

    .topico_unselected:hover {
        color: #ff6500;
        border: none;
    }

    .imagem_obra {
        display: none;
    }

    .content_imagens_obras {
        background: #FFF;
        width: 90%;
        height: auto;
        display: block;
        position: relative;
        margin: 0 auto;
        max-width: 1200px;
    }

    .content_tipo_obra {
        width: 100%;
        height: 360px;
        position: relative;
        text-align: left;
        margin-top: 110px;
    }

    .titulo_tipo_obra {
        position: relative;
        width: 49%;
        font-weight: bold;
        font-size: 2em;
    }

    .texto_tipo_obra {
        position: relative;
        width: 49%;
        margin-top: 30px;
        text-align: justify;
    }

    .slide_imagens {
        position: relative;
        width: 49%;
        height: 140px;
        margin-top: 40px;
        float: left;
    }

    .seta_esquerda, .seta_direita {
        position: absolute;
        width: 20px;
        height: 43px;
        background: #232323;
        margin-top: 33px;
        cursor: pointer;
    }

    .seta_esquerda {
        background: url("../images/seta_esquerda.png");
        background-size: 100%;
    }

    .seta_direita {
        background: url("../images/seta_direita.png");
        background-size: 100%;
        right: 0;
    }

    .content_imagens_portfolio {
        position: relative;
        width: 375px;
        height: 140px;
        overflow: hidden;
        margin: 0 auto;
    }

    .imagens_portfolio {
        position: relative;
        width: 600px;
        height: 100%;
        float: left;
    }

    .imagem_porfolio {
        position: relative;
        margin: 0 8px;
        width: 109px;
        height: 100%;
        float: left;
        cursor: pointer;
    }

    .img_port {
        width: 100%;
        height: 110px;
        position: relative;
    }

    .border_imagem {
        width: 100%;
        height: 1px;
        position: relative;
        background: #ff6500;
        margin-top: 5px;
        display: none;
    }

    .titulo_imagem_portfolio {
        width: 100%;
        height: 20px;
        position: absolute;
        font-size: 0.8rem;
        margin-top: 10px;
    }

    .imagem_porfolio img {
        height: 100%;
    }

    .imagem_selected {
        border-bottom: 1px solid #ff6500;
    }

    .botoes_imagens_portfolio {
        position: absolute;
        bottom: -8px;
        width: 100%;
        height: 20px;
        text-align: center;
    }

    .botao_imagem_portfolio {
        border-radius: 50%;
        display: inline-block;
        height: 8px;
        width: 8px;
        margin: 0 5px;
        background-color: #737373;
        position: relative;
        top: 50%;
        transform: translateY(50%);
    }

    .botao_selected {
        height: 14px;
        width: 14px;
        margin: 0 10px;
    }

    .imagem_grande {
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        left: 60%;
    }

    .imagem_grande img {
        height: 100%;
        cursor: pointer;
    }

    .titulo_thumb_obra {
        position: absolute;
        right: 0;
        top: 300px;
        bottom: 0;
        left: 0;
        color: #FFF;
        background: linear-gradient(to top, rgba(0,0,0,1), rgba(0,0,0,0));
        text-align: right;
        cursor: pointer;
    }

    .txt_titulo_thumb_obra {
        position: absolute;
        right: 30px;
        bottom: 20px;
        font-size: 1.5rem;
    }
}

@media (min-width: 1500px) {
    .slider-wrap {
        width: 1350px;
        left: 4%;
    }
}