
/* geral */

.hide,
.hidden{
    display: none !important;
}
.show{
    display: block !important;
}

.overflow{
    overflow-y: hidden;
}

textarea,
input,
select,
button,
body{
    font-size: 16px;
    line-height: 24px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
}

hr{
    margin: 0;
}

img{
    max-width: 100%;
}

.in{
    max-width: 1366px;
    padding: 0px 24px;
}

.in_small{
    max-width: 900px;
    padding: 0px 24px;
}

.in_small{
    position: relative;
    margin: 0 auto;
}


/* texto */
.txt p{
    font-size: 18px;
    min-height: 25px;
    line-height: 25px;
    color: #333;
}
.txt p a{
    color: inherit;
    text-decoration: underline;
}
.txt p strong{
    font-weight: 700;
}
.txt p em{
    font-style: italic;
}

/* radio */
.radio{
    position: relative;
}
.radio input{
    display: none;
}
.radio label{
    padding-left: 30px;
    position: relative;
    height: 30px;
    line-height: 30px;
    cursor: pointer;
}
.radio label:before{
    content: " ";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    box-sizing: border-box;
    border: 2px solid #02A8CD;
    -webkit-transition: all 450ms cubic-bezier(.29,.52,.22,1);
    -moz-transition: all 450ms cubic-bezier(.29,.52,.22,1);
    -o-transition: all 450ms cubic-bezier(.29,.52,.22,1);
    transition: all 450ms cubic-bezier(.29,.52,.22,1);
}

.radio label:hover:before{
    border: 2px solid #024562;
}

.radio label:after{
    content: " ";
    width: 12px;
    height: 12px;
    background: #99ACB0;
    position: absolute;
    left: 4px;
    top: 4px;
    border-radius: 100%;
    opacity: 0;

}

.radio input[type=radio]:checked ~ label:after{
    opacity: 1;
    -webkit-transition: all 450ms cubic-bezier(.29,.52,.22,1);
    -moz-transition: all 450ms cubic-bezier(.29,.52,.22,1);
    -o-transition: all 450ms cubic-bezier(.29,.52,.22,1);
    transition: all 450ms cubic-bezier(.29,.52,.22,1);
}

/* checkbox */
.checkbox{
    position: relative;
}
.checkbox input{
    display: none;
}
.checkbox label{
    position: relative;
    cursor: pointer;
}
.checkbox label:before{
    font-family: 'signed';
    content: "\e937";
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    border-radius: 20px;
    text-align: center;
    line-height: 0px;
    text-indent: 3px;
    background: rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.1);
    color: rgba(0,0,0,0);
    box-sizing: border-box;
    text-shadow: none;
    margin-right: 10px;
}
.checkbox input[type=checkbox]:checked ~ label:before{
    color: #0A82FD;
    background: #fff;
    border-color: #0A82FD;
    opacity: 1;
    text-shadow: 1px 0px 0px #fff, 2px 0px 0px #fff;
    font-size: 18px;
    line-height: 14px;
}

/* select */
.select{
    background: white;
    border: 2px solid rgba(0,0,0,0.15);
    position: relative;
    display: inline-block;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
}
.select select{
    border: none;
    box-shadow: none;
    background-image: none;
    background: transparent;
    -webkit-appearance: none;
    -moz-appearance:  none;
    padding: 10px 40px 10px 10px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    cursor: pointer;
}
.select select:focus{
    outline: none;
}
.select:before{
    content: "";
    width: 10px;
    height: 10px;
    right: 10px;
    top: 50%;
    margin-top: -6px;
    position: absolute;
    transform: rotate(45deg);
    box-sizing: border-box;
    border: 3px solid rgba(0,0,0,0.15);
    border-left: none;
    border-top: none;
}
.select:hover{
    border-color: rgba(0,0,0,0.5);
}
.select:hover:before{
    border-color: rgba(0,0,0,0.5);
}

/* lightbox */
.lb.animated {
    animation-duration: .3s;
}
.lb{
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vw;
    z-index: 1000;
    display: none;
    overflow: hidden;
}
.lb_frame{
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    overflow-x: hidden;
    overflow-y: auto;
}

.lb_area{
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
}

.lb_cortina{
    background: red;
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.75);
    opacity: 0;
}

.lb_anim_arranque{
    display: block;
}

.lb_anim_arranque .lb_frame{
    margin-left: -100vw;
}
.lb_anim_aberto .lb_frame{
    margin-left: 0px;
}
.lb_anim_fechado .lb_frame{
    margin-left: 100vw;
}

.lb_anim_arranque .lb_cortina{
    opacity: 0;
}
.lb_anim_aberto .lb_cortina{
    opacity: 1;
}
.lb_anim_fechado .lb_cortina{
    opacity: 0;
}

.lb_x{
    position: absolute;
    right: -20px;
    top: -20px;
    width: 40px;
    height: 40px;
    z-index: 2;
    background: #fff;
    border-radius: 40px;
    box-shadow: 0px 2px 15px rgba(0,0,0,0.3);
    transition: all 300ms ease-out;
    cursor: pointer;
}

.lb_x:before,
.lb_x:after{
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 2px;
    background: #999;
    transform: rotate(45deg);
    margin-left: -9px;
    margin-top: -1px;
    border-radius: 2px;
}
.lb_x:after{
    transform: rotate(-45deg);
}
.lb_x:hover{
    transform: scale(1.3,1.3);
}
.lb_in{
    width: 100vw;
    display: flex;
    align-items: center;
    position: relative;
    box-sizing: border-box;
    flex-wrap: wrap;
    height: 100vh;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 20px;
}

.lb_cont{
    background: #fff;
    width: auto;
    max-width: 600px;
    display: block;
    margin: 0px auto;
    position: relative;
    box-sizing: border-box;
    flex: auto;
    padding: 30px;
}


/* accordion */

.accordion{
}

/* slider */

.slider{
    font-size: 0px;
    position: relative;
}

.swiper_bt_anterior,
.swiper_bt_proximo{
    position: absolute;
    width: 50px;
    height: 100%;
    top: 0;
    left: -50px;
    display: block;
    z-index: 2;
    background: -webkit-linear-gradient(left, rgba(0,0,0,0.2) 0%,rgba(0,0,0,0) 100%);
    background: linear-gradient(to right, rgba(0,0,0,0.2) 0%,rgba(0,0,0,0) 100%);
    cursor: pointer;
}

.swiper_bt_proximo{
    left: auto;
    right: -50px;
    background: -webkit-linear-gradient(
        right, rgba(0,0,0,0.2) 0%,rgba(0,0,0,0) 100%
    );
    background: linear-gradient(to left, rgba(0,0,0,0.2) 0%,rgba(0,0,0,0) 100%);
}

.slider:hover > .swiper_bt_anterior{
    left: 0;
}
.slider:hover > .swiper_bt_proximo{
    right: 0;
}

.swiper_bt_anterior.swiper-button-disabled,
.swiper_bt_proximo.swiper-button-disabled{
    opacity: 0;
}
.swiper_bt_anterior:after,
.swiper_bt_proximo:after{
    content: "";
    position: absolute;
    top: 50%;
    width: 25px;
    height: 25px;
    margin-top: -12px;
    box-sizing: border-box;
    border: 2px solid rgba(255,255,255,0.5);
    border-bottom: none;
    border-right: none;
    transform: rotate(-45deg);
    left: 15px;
}
.swiper_bt_proximo:after{
    transform: rotate(135deg);
    left: auto;
    right: 15px;
}
.swiper_bt_anterior:hover::after,
.swiper_bt_proximo:hover::after{
    border-color: rgba(255,255,255,1);
}

.swiper-pagination-bullet{
    background: #fff;
    box-shadow: 0px 0px 5px rgba(0,0,0,1);
}
.swiper-pagination-bullet-active{
    background: #fff;
    box-shadow: 0px 0px 5px rgba(0,0,0,0.3);
}

.swiper-pagination-bullets-dynamic{
    overflow: visible;
}

.swiper-slide.partners_slider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    width: calc(20% - 24px);
}

/*
   ██████████   ███   ███   ███   ██████████  
   ██████████░░ ███░░ ███░░ ███░░ ██████████░░
   ████░░░░░░░░ ███░░ ███░░ ███░░ ████░░░░░░░░
   ██████████   ███░░ ███░░ ███░░ ██████████  
   ██████████░░ ███░░ ███░░ ███░░ ██████████░░
     ░░░░████░░ ███░░ ███░░ ███░░   ░░░░████░░
   ██████████░░ ███████████████░░ ██████████░░
   ██████████░░ ███████████████░░ ██████████░░
     ░░░░░░░░░░  ░░░░░░░░░░░░░░░░   ░░░░░░░░░░
*/

/* GENERAL */
/* CORES */
.c_white{
    color: #FFF;
}

.c_blue{
    color: #024562;
}

.c_dark_blue{
    color: #013E5A;
}

.c_light_blue{
    color: #02A8CD;
}

.c_grey{
    color: #EDEDED;
}

.c_dark_grey{
    color: #99ACB0;
}

.bgc_white{
    background-color: #FFF;
}

.bgc_blue{
    background-color: #024562;
}

.bgc_dark_blue{
    background-color: #013E5A;
}

.bgc_light_blue{
    background-color: #02A8CD;
}

.bgc_grey{
    background-color: #EDEDED;
}

.bgc_gradient{
    background-image: linear-gradient(to bottom right, #02A8CD, #013E5A);
}

.bgc_dark_grey{
    background-color: #99ACB0;
}

.bc_white{
    border-color: #FFF;
}

.bc_blue{
    border-color: #024562;
}

.bc_dark_blue{
    border-color: #013E5A;
}

.bc_light_blue{
    border-color: #02A8CD;
}

.bc_grey{
    border-color: #EDEDED;
}

.bc_dark_grey{
    border-color: #99ACB0;
}

/* TYPOGRAPHY */
.o_b{
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
}

.o_r{
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
}

.r_b{
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
}

.r_m{
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 500;
}

.r_r{
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
}

.r_l{
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
}

/* TEXT STYLES */
.h1{
    font-size: 80px;
    line-height: 112px;
}

.h2{
    font-size: 56px;
    line-height: 64px;
}

.h3{
    font-size: 40px;
    line-height: 48px;
}

.h4{
    font-size: 32px;
    line-height: 40px;
}

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

.h5{
    font-size: 24px;
    line-height: 32px;
}

.h5_b{
    font-size: 20px;
    line-height: 28px;
}

.h6{
    font-size: 16px;
    line-height: 24px;
}

.p{
    font-size: 16px;
    line-height: 24px;
}

.ttu{
    text-transform: uppercase;
}

/* MARGINS */
.m_t_48{
    margin-top: 48px;
}

.m_t_72{
    margin-top: 72px;
}

.m_t_80{
    margin-top: 80px;
}

.m_t_104{
    margin-top: 104px;
}

.m_t_32{
    margin-top: 32px;
}

.m_t_24{
    margin-top: 24px;
}

.m_t_16{
    margin-top: 16px;
}

.m_t_8{
    margin-top: 8px;
}

/* INPUTS */
input, textarea{
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #99ACB0;
}

.input:focus, .text_area:focus, .input:hover, .text_area:hover{
    border-color: #024562;
}

.input::placeholder{ 
    color: #02A8CD;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
    font-size: 16px;
}

.input:-ms-input-placeholder{ 
    color: #02A8CD;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
    font-size: 16px;
}

.input::-ms-input-placeholder{ 
    color: #02A8CD;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
    font-size: 16px;
}

.text_area::placeholder{ 
    color: #02A8CD;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
    font-size: 16px;
}

.text_area:-ms-input-placeholder{ 
    color: #02A8CD;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
    font-size: 16px;
}

.text_area::-ms-input-placeholder{ 
    color: #02A8CD;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
    font-size: 16px;
}

.input, .text_area {
    padding: 16px;
    display: block;
    width: 100%;
    border-bottom: 1px solid rgba(2, 168, 205,1);
    position: relative;
    -webkit-transition: all 450ms cubic-bezier(.29,.52,.22,1);
    -moz-transition: all 450ms cubic-bezier(.29,.52,.22,1);
    -o-transition: all 450ms cubic-bezier(.29,.52,.22,1);
    transition: all 450ms cubic-bezier(.29,.52,.22,1);
}

.error_field{
    border-color: rgb(255, 0, 0)!important;
}

.text_area {
    height: 260px;
    width: 100%;
    min-width: 100%;
    border: 1px solid rgba(2, 168, 205,1);
    box-sizing: border-box;
}

.terms{
    padding: 0 0 0 16px;
}

/* BTNS */
.btn .label{
    font-size: 16px;
    padding: 16px 24px;
    width: 100%;
}

.btn .label span{
    font-size: 24px;
}

.btn.icon_download .icon{
    font-size: 32px;
    padding: 16px 0px 16px 16px;
    opacity: 0.4;
}

.btn.icon_contact .icon{
    font-size: 32px;
    padding: 16px;
    background-color: rgba(0,0,0,0.2);
}

.btn.icon_download .label{
    font-size: 16px;
    width: calc(100% - 48px);
}

.btn.icon_contact .label{
    font-size: 16px;
    width: calc(100% - 64px);
    padding-left: 0px;
}

.btn{
    min-height: 64px;
    min-width: 174px;
    box-shadow:rgba(50, 50, 50, 0.35) 20px 0px 25px -15px, rgba(50, 50, 50, 0.35) -20px 0px 25px -15px;
    cursor: pointer;
}

.budget_btn .btn{
    min-height: 84px;
}

.btn:hover{
    transform: scale(1.1);
}

/* TITLES */
.title.dash .h3:before{
    content: "";
    position: absolute;
    border-top: 1px solid #02A8CD;
    opacity: 0.4;
    left: 0px;
    width: 40px;
    top: 25px;
}

.title.dash .h3{
    padding-left: 48px;
}

/* IMG BORDER */
.img.border .content:after{
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    width: calc(100% - 52px);
    height: calc(100% - 52px);
    border: 2px solid white;
    margin: 24px 24px 24px 24px;
}

/* TEXT LINK */
.text_link{
    text-decoration: underline;
    text-underline-position: under;
}

/* HEADER */
.header_component{
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 3;
}

.nav_bar .nav > .link{
    display: inline;
    margin-right: 16px;
    font-size: 16px;
    line-height: 24px;
    padding: 8px 8px 8px 32px;
    position: relative;
}

.nav_bar{
    margin-right: 24px;
}

.nav_bar .nav > .link:last-child{
    margin-right: 0px;
}

.nav_bar .nav > .link:after{
    content: "";
    position: absolute;
    border-top: 1px solid #FFF;
    opacity: 0.4;
    left: 24px;
    width: 0px;
    top: 18px;
    -webkit-transition: all 450ms cubic-bezier(.29,.52,.22,1);
    -moz-transition: all 450ms cubic-bezier(.29,.52,.22,1);
    -o-transition: all 450ms cubic-bezier(.29,.52,.22,1);
    transition: all 450ms cubic-bezier(.29,.52,.22,1);
}

.nav_bar .nav > .link a{
    font-weight: 400;
    -webkit-transition: all 450ms cubic-bezier(.29,.52,.22,1);
    -moz-transition: all 450ms cubic-bezier(.29,.52,.22,1);
    -o-transition: all 450ms cubic-bezier(.29,.52,.22,1);
    transition: all 450ms cubic-bezier(.29,.52,.22,1);
}

.pag_contactos .nav > .link.contactos a, 
.pag_empresa .nav > .link.empresa a, 
.pag_orcamento .nav > .link.orcamento a, 
.pag_servicos .nav > .link.servicos a{
    font-weight: 700; 
}

.pag_empresa .nav > .link.empresa:after, 
.pag_orcamento .nav > .link.orcamento:after, 
.pag_servicos .nav > .link.servicos:after, 
.pag_contactos .nav > .link.contactos:after, 
.nav_bar .nav > .link:hover:after{
    width: 24px;   
    left: 0px; 
}

.nav_bar_mobile .nav > .link{
    display: inline;
    font-size: 16px;
    line-height: 24px;
    padding: 20px 8px;
}


.pag_servicos .nav_bar_mobile .nav > .link.servicos a{
    font-weight: 700; 
}

.pag_contactos .nav_bar_mobile .nav > .link.contactos a{
    font-weight: 700; 
}

.pag_empresa .nav_bar_mobile .nav > .link.empresa a{
    font-weight: 700; 
}

.pag_orcamento .nav_bar_mobile .nav > .link.orcamento a{
    font-weight: 700; 
}

.partners .swiper-slide{
    width: auto;
}

.header_component .logo{
    margin-left: 40px;
}

.header_component .logo img{
    height: 120px;
}

.pag_servicos .nav_bar .nav > .link a{
    color: #02A8CD;
}

.pag_servicos .nav_bar .nav > .link:after{
    border-color: #02A8CD;
}


/* SECTION */
.section{
    padding: 64px 0;
}

.section.max{
    padding: 128px 0px;
}

/* LINK */
.link .link_in{
    font-size: 24px;
    padding-left: 48px; 
}

.link .link_in:before{
    content: "";
    position: absolute;
    border-top: 1px solid #02A8CD;
    opacity: 0.4;
    left: 0px;
    width: 40px;
    top: 12px;
    -webkit-transition: all 450ms cubic-bezier(.29,.52,.22,1);
    -moz-transition: all 450ms cubic-bezier(.29,.52,.22,1);
    -o-transition: all 450ms cubic-bezier(.29,.52,.22,1);
    transition: all 450ms cubic-bezier(.29,.52,.22,1);
}

.link .link_in:hover:before{
    left: 20px;
    width: 20px;
}

/* HOMEPAGE */
/* PROCESS SECTION */
.process_section{
    padding: 64px 0 128px 0;
}

.process_section .sub_title .h4{
    padding: 16px 24px;
}

/* SERVICES SECTION */
.service .info_in{
    padding: 24px 24px 0px 24px;
}

/* BANNER SECTION */
.banner_section{
    padding: 0px;
}

.banner_section .in{
    height: calc(100vh - 200px);
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
}

.banner_section .title{
    padding: 0 24px;
}

.banner_section{
    padding: 0px;
}

/* ARTICLE_HIGHLIGHT SECTION */
.article_highlight_section .img{
    margin-top: -128px;
}

.article_highlight_section .info{
    max-width: 954px;
}

.swiper-container.about_mission_slider:after{
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    width: calc(100% - 52px);
    height: calc(100% - 52px);
    border: 2px solid white;
    margin: 24px 24px 24px 24px;
    z-index: 1;
}

.about_mission{
    max-width: 715px;
}

/* FOOTER */ 
.footer_component .row{
    padding: 0 24px;
}

.footer_component .row.top{
    padding: 48px 24px; 
}

.footer_component .row.bottom{
    padding: 16px 24px; 
}

.legal .link, .social .link, .contacts .link{
    font-size: 16px;
    line-height: 24px;
}

.contacts .link {
    font-size: 16px;
    line-height: 24px;
    cursor: pointer;
}

.contacts .link:hover a{
    opacity: 0.5;
}

.legal .link a{
    opacity: 0.5;
}

.legal .link:hover a{
    opacity: 1;
}

.social .link{
    cursor: pointer;
}

.social .link:hover a{
    opacity: 0.5;
}

.social .link i{
    font-size: 24px;
    vertical-align: text-bottom;
    padding-right: 8px;
}

.footer_component .row.bottom .copyright, .footer_component .row.bottom .team_logo{
    font-size: 12px;
    line-height: 20px;
    opacity: 0.5;
}

.team_logo:hover{
    opacity: 1!important;
}

/* HEADER */
.header_in{
    padding: 40px 0;
}

.nav_btn{
    display: none;
    margin-right: 40px;
    font-size: 32px;
    cursor: pointer;
}

.nav_btn > .container > .content:after{
    content: '\e979';
    font-family: 'signed';
    font-size: 32px;
    color: #FFF;
}

.nav_btn.opened > .container > .content:after{
    content: '\e9c1';
    font-family: 'signed';
    font-size: 32px;
    color: #FFF;
}

.menu_mobile{
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    margin-top: -100vh;
    z-index: 2;
    padding: 212px 24px 48px 24px;
}

.menu_mobile.opened{
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    margin-top: 0px;
}

/* PAGE_TITLE SECTION */
.page_title_section{
    padding: 0px 0 64px 0;
}

.page_title_section .img{
    padding: 0 40px 0 0;
    left: 0px;
    top: 0px;
}

.page_title_section .img img{
    max-height: 528px;
    min-height: 440px;
    object-fit: cover;
}

.page_title_section .info{
    padding: 0 24px 0 40px;
    width: 50%;
    max-width: 705px;
}

.page_title_section .title{
    padding: 0 0 128px 0;
}

/* PAGE SERVICOS */ 
/* SERVICES SECTION */
.pag_servicos .page_title_section{
    z-index: 1;
}

.pag_servicos .services_section{
    padding: 128px 0 128px 0;
    margin-top: -128px;
}

/* TECHNICAL_INFO SECTION */
.technical_info_section .img{
    margin-top: -128px;
}

.technical_info_section ul{
    position: relative;
}

.technical_info_section ul li > ul{
    position: relative;
    left: 40px;
}

.technical_info_section ul li{
    margin-top: 24px;
}

.technical_info_section ul li:first-child{
    margin-top: 0px;
}

.technical_info_section ul li ul li:first-child{
    margin-top: 16px;
}

.technical_info_section ul li ul li{
    margin-top: 16px;
}

.technical_info_section ul li > ul{
    margin-top: 16px;
}

.technical_info_section ul li:before{
    content: '\e98d';
    font-family:'signed';
    font-size: 16px;
    color: #02A8CD;
    position: absolute;
    left: -24px;
}

.technical_info_section ul li > ul li:before{
    content: '\e93a';
    font-family:'signed';
    font-size: 16px;
    color: #02A8CD;
    position: absolute;
    left: -24px;
}

.technical_info_section .text{
    left: 48px;
}

/* PAGE O QUE NOS DIFERENCIA */ 
.small{
    width: 100%;
    display: flex;
    min-height: 296px;
    align-items: center;
    position: relative;
    box-sizing: border-box;
    flex-wrap: wrap;
}

.difference{
    margin: 0 0 100px 0;
}

.difference_in{
    padding: 80px 80px 80px 80px;
    max-width: 716px;
}

.difference .text{
    padding-left: 48px;
}

.info_section:after{
    content: '';
    position: absolute;
    width: 100%;
    height: 264px;
    bottom: 0px;
    left: 0px;
    background-color: #EDEDED;
    z-index: -1;
}

/* PAGE CONTACTOS */
.contacts_section .title.dash .h3:before{
    border-top: 1px solid #02A8CD;
}

.pag_orcamento .contacts_section .title.dash .h3:before{
    border-color: #FFF;
}

.contacts_section .title .h5{
    padding-left: 48px;
}

.info_section_in .policy{
    word-break: break-word;
}


/* c */

/* The container must be positioned relative: */
.custom-select {
    position: relative;
    font-size: 16px;
    line-height: 24px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
    width: 100%;
}

.custom-select select {
    display: none; /*hide original SELECT element: */
}

.select-selected {
    background-color: #ffffff;
}

/* Style the arrow inside the select element: */
.select-selected:after {
    font-family: 'signed';
    content: "\e99b";
    color: #02A8CD;
    position: absolute;
    top: 0px;
    right: 0px;
    padding: 16px 24px;
    font-size: 16px;
    line-height: 25px;
    width: auto!important;
    cursor: pointer;
    -webkit-transition: all 450ms cubic-bezier(.29,.52,.22,1);
    -moz-transition: all 450ms cubic-bezier(.29,.52,.22,1);
    -o-transition: all 450ms cubic-bezier(.29,.52,.22,1);
    transition: all 450ms cubic-bezier(.29,.52,.22,1);
}

.select-selected:hover:after{
    color: #024562;   
}

.custom-select.first .select-selected:hover{ 
    color: rgba(0, 0, 0, 1);
    margin-top: 0px;
}

.custom-select .select-selected:hover{ 
    border-bottom: 1px solid #024562; 
    border-left: 1px solid #024562; 
    border-right: 1px solid #024562; 
    border-top: 1px solid #024562; 
    color: #024562;
}

.custom-select.first .select-selected:hover{ 
    border-top: 1px solid rgba(0, 0, 0, 0.5); 
}

.custom-select.second .select-selected:hover .custom-select.first .select-selected{ 
    border-bottom: 1px solid rgba(0, 0, 0, 0.5); 
}

.select-selected.toggle_open{
    border-left: 1px solid #024562; 
    border-right: 1px solid #024562; 
    border-bottom: 1px solid #024562; 
    border-top: 1px solid #024562;
    color: #024562;
}

.custom-select.first .select-selected.toggle_open{
    border-top: 1px solid rgba(0, 0, 0, 0.5); 
}

.select-selected.toggle_open:after {
    content: "\e99c";
    color: #024562;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
    border-color: transparent transparent #fff transparent;
}

/* style the items (options), including the selected item: */
.select-items div, .select-selected {
    font-family: 'Roboto Condensed', sans-serif;
    border-left: 1px solid #02A8CD;
    border-right: 1px solid #02A8CD;
    border-bottom: 1px solid #02A8CD;
    color: #FFF;
    padding: 16px 96px 16px 24px;
    width: auto;
    cursor: pointer;
    font-size: 16px;
    line-height: 25px;
    -webkit-transition: all 450ms cubic-bezier(.29,.52,.22,1);
    -moz-transition: all 450ms cubic-bezier(.29,.52,.22,1);
    -o-transition: all 450ms cubic-bezier(.29,.52,.22,1);
    transition: all 450ms cubic-bezier(.29,.52,.22,1);
}

.select-selected {
    font-family: 'Roboto Condensed', sans-serif;
    border-left: 1px solid #02A8CD;
    border-right: 1px solid #02A8CD;
    border-bottom: 1px solid #02A8CD;
    border-top: 1px solid #02A8CD;
    color: #02A8CD;
    padding: 16px 96px 16px 24px;
    width: auto;
    cursor: pointer;
    font-size: 16px;
    line-height: 25px;
    -webkit-transition: all 450ms cubic-bezier(.29,.52,.22,1);
    -moz-transition: all 450ms cubic-bezier(.29,.52,.22,1);
    -o-transition: all 450ms cubic-bezier(.29,.52,.22,1);
    transition: all 450ms cubic-bezier(.29,.52,.22,1);
}

.custom-select.first .select-selected{
    border-top: 1px solid #02A8CD;
}

/* Style items (options): */
.select-items {
    position: absolute;
    background-color: #02A8CD;
    border: none;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}

.select-items div{
    border: none;
}

/* Hide the items when the select box is closed: */
.select-hide {
    display: none;
}

.select-items div:hover, .same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
    color: #FFF;
}

/* BGS */

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

.pag_home .banner_section{
    background-image: url(/_sws/data/img/home/banner.jpg);
}

.mission_highlight_section{
    background-image: url(/_sws/data/img/home/frase.jpg);
}

.pag_404 .banner_section{
    background-image: url(/_sws/data/img/contactos/header.jpg);
}

.pag_contactos .banner_section{
    background-image: url(/_sws/data/img/contactos/header.jpg);
}

.pag_empresa .banner_section{
    background-image: url(/_sws/data/img/quemsomos/header.jpg);
}

.pag_politica_de_privacidade .banner_section{
    background-image: url(/_sws/data/img/contactos/header.jpg);
}

.pag_orcamento .banner_section{
    background-image: url(/_sws/data/img/orcamento/header.jpg);
}

.servicos_swiper{
    position: relative;
    widows: 100%;
}