/* ==========================================================================
GLOBAL STYLES
========================================================================== */

.nopadding {
    padding-left: 0;
    margin: 0;
}

.nopadding:last-child {
    padding-left: 15px;
    }

/* ==========================================================================
HERO-ALTERNATIVO
========================================================================== */

.hero-alt {
    background: url("../img/images/hero-img.jpg") center center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    margin-bottom: 22px;
}

    .hero-alt h1 {
        color: #fff;
        margin-bottom: 40px;
    }

    .hero-alt .hero-content {
        padding-top: 140px;
        padding-bottom: 60px;
    }

.logo-placeholder {
    width: 50px;
    height: 50px;
    position: absolute;
    bottom: -25px;
    left: 50%;
    padding-top: 10px;
    background: #8dc63f;
    border-radius: 50%;
    text-align: center;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    transition: all 220ms cubic-bezier(0.420, 0.000, 0.580, 1.000); /* ease-in-out */
    transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000); /* ease-in-out */
}

.hero-alt .logo-placeholder:hover {
    width: 56px;
    height: 56px;
    position: absolute;
    bottom: -27px;
    left: 50%;
    padding-top: 14px;
    background: #8dc63f;
    border-radius: 50%;
    text-align: center;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}


/* ==========================================================================
INTRO HR
========================================================================== */

.intro-hr h2 {
    margin-top: 0px;
    padding-bottom: 40px;
}

.intro-hr .media {
    margin-top: 0px;
}

.intro-hr .media > .pull-left {
    width: 28px;
    padding-top: 6px;
}

.intro-hr .media > .pull-right {
    width: 28px;
    padding-top: 12px;
}

.intro-hr .box {
    border: solid 1px #f4f4f4;
    padding: 40px 50px 10px 50px;
    margin: 30px 0 50px;
    border-radius:4px;
    transition: all 0.8s ease;
}

.intro-hr .box:hover {
    border: solid 1px #dfdfdf;
}

.intro-hr .box .title {
    position: absolute;
    top: 20px;
    background: #fff;
    padding: 0 20px;
    width: 238px;
    left: 0;
    right: 0;
    margin-left:auto;
    margin-right:auto;
    
    font-size: 15px;
    color: #142539;
    text-transform: uppercase;
    font-weight: 500;
}

@media screen and (max-width: 991px) {
.intro-hr .box .title {
    top: -10px;    
}
}

@media screen and (max-width: 480px) {
.intro-hr .box {
    padding: 40px 30px 10px 30px;
}
.intro-hr .box .title {
    top: -10px;    
}
}


/* ==========================================================================
SUB-MENU
========================================================================== */

.sub-menu {
    margin-top: -20px;
    background-color: #F5F5F5;
    padding: 50px 0;
    box-shadow: inset 0px 0px 10px rgba(150,150,150,0.20);
}

.sub-menu h5 {
    padding-top: 0px;
}

.sub-menu img {
    padding-top: 10px;
}

.sub-menu .box1 {
    height: 160px;
    background-color: #FFF;
    border-top: 1px solid #f5f5f5;
    border-left: 1px solid #f5f5f5;
    border-bottom: 3px solid #EBEBEB;
    transition: all 0.3s linear;
}

.sub-menu .box1-last {
    border-right: 1px solid #f5f5f5;
}

.sub-menu .box1:hover {
    border-bottom: 3px solid #8dc63f;
    background-color: #FFF;
}

.pointer {
    cursor: pointer;
}

@media only screen and (max-width : 768px) {
    .sub-menu .box1 {
        margin: 15px;
        border-right: 1px solid #f5f5f5;
    }
}

/*************** MODAL LIST ****************/

.modal ul {
    padding: 0;
}

.modal li {
    list-style: none;
    display: inline-block;
    width: calc(33% - 2px);
    padding: 8px 8px 8px 20px;
    background: url("../img/icons/bullet.svg") no-repeat scroll 0px transparent;
}

@media only screen and (max-width : 992px) {
    .modal li {
        width: calc(49% - 2px);
    }
}

@media only screen and (max-width : 640px) {
    .modal li {
        width: 100%;
    }
}

/*************** MODAL STYLES ****************/

.modal p {
    padding-bottom: 10px;
}

body.modal-open {
    overflow: hidden !important;
}

.modal-content {
    border-radius: 0px;
    border: 0;
}

.modal-header {
    border-bottom: 0px;
    margin: 0px;
    padding: 45px;
}

.modal-title {
    margin: 0px;
    font-size: 30px;
    color: #8dc63f;
}

.modal-body {
    position: relative;
    padding: 0px 45px 45px 45px;
}

.close {
    font-size: 38px;
    margin-left: 10px;
}

@media only screen and (max-width : 480px) {
    .modal-header {
        padding: 25px;
    }

    .modal-title {
        margin: 0px;
        font-size: 30px;
        color: #8dc63f;
    }

    .modal-body {
        position: relative;
        padding: 0px 25px 25px 25px;
    }
}

/*********** V-ALIGN MODAL ************/

.modal {
    text-align: center;
    padding: 0 !important;
}

    .modal:before {
        content: '';
        display: inline-block;
        height: 100%;
        vertical-align: middle;
        margin-right: -4px; /* Adjusts for spacing */
    }

.modal-dialog {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
}

/*********** MODAL ANIMATION ************/

.modal.fade .modal-dialog {
    -webkit-transform: scale(0.1);
    -moz-transform: scale(0.1);
    -ms-transform: scale(0.1);
    transform: scale(0.1);
    top: 300px;
    opacity: 0;
    -webkit-transition: all 0.45s;
    -moz-transition: all 0.45s;
    transition: all 0.45s;
}

.modal.fade.in .modal-dialog {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transform: translate3d(0, -300px, 0);
    transform: translate3d(0, -300px, 0);
    opacity: 1;
}

/*********** AMBIENTE DE TRABALHO ************/

blockquote {
padding: 0px;
line-height: 1.60;
position: relative;
border: none;
margin: 12px 0 12px 12px;
font-size:16px;
}

blockquote cite {
color: #09233f;
font-size: 15px;
display: block;
margin-top:8px;

}

.hr-ambiente-trabalho {
margin: 20px 0 20px;
}

/*********** CARREIRAS ***+++++++++++*********/

.carreiras {
    margin-bottom: 20px;
}

.carreiras strong {
    font-weight: 500;
}

.carreiras .hr1 {
    width: 20%;
    margin-top: 10px;
    margin-bottom: 10px;
    border-top: 1px solid #f4f4f4;
}

.carreiras .hr2 {
    width: 40%;
    margin-top: 10px;
    margin-bottom: 10px;
    border-top: 2px solid #f4f4f4;
}

/* ==========================================================================
CANDIDATURA ESPONTANEA
========================================================================== */

.candidatura {
    background: url("../img/images/recruitment-img.jpg") center center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    padding-top: 60px;
    padding-bottom: 50px;
}

.candidatura h2 {
    margin-top: 0px;
    padding-bottom: 30px;
    color: #FFF;
}

.candidatura .lead {
    font-size: 20px;
    line-height: 32px;
    color: #FFF;
    margin-bottom: 10px;
    }

.candidatura h5 {
    color: #FFF;
    font-weight: 500;
    font-size: 14px;
    margin-top: 15px;
    margin-bottom: 0px;
    text-align: center;
}

.candidatura a {
    text-decoration: none;
    color: #FFF;
}

.candidatura a:hover {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: #86b743;
}

.candidatura .align-text {
     text-align: right;
}

.separator {
    width: 100%;
}

.separatorWrapper {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    width: 60%;
}

.line1, .line2 {
    width: 40%;
    float: left;
}

.line1 hr, .line2 hr {
    border-color: #8dc63f;
    }

.ou {
    width: 20%;
    float: left;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 38px;
    color: white;
}

@media screen and (max-width: 480px) {
    .line1, .line2 {
    width: 30%;
    float: left;
    }
    
    .ou {
    width: 40%;
    }
}


.clearfix {
    clear: both;
}

.subscribe-form {
    width: 100%;
    padding: 9px;
    background-color: rgba(255,255,255,0.15);
    border-radius: 6px;
}

.has-icon-left {
    position: relative;
}

.has-icon-left:before {
    position: absolute;
    top: 14px;
    left: 48px;
    width: 1px;
    height: 1.8125rem;
    content: "";
    background-color: #ededef;
}

.subscribe-info, .subscribe-form {
    float: left;
}

.subscribe-form input {
    height: 46px;
    width: 71.5% !important;
    background: #fff;
    border: 0px solid #FFFFFF;
    border-radius: 4px;
    box-shadow: none;
    padding-left: 62px;
    color: rgb(180,180,180);
    float: left;
}

.form-control {
    box-shadow: none;
    border: 0px;
}

.form-control-feedback {
    position: absolute;
    top: 6px;
    left: 6px;
    z-index: 2;
    display: block;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    color: rgb(180,180,180);
}

.subscribe-form .btn {
    margin-right: 0;
    float: right;
}

.btn, .btn:hover {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-color: #86b743;
    color: #FFF;
}

.btn {
    width: 27%;
    display: inline-block;
    border: 0;
    border-radius: 4px;
    padding: 14px;
    text-transform: uppercase;
    color: #fff;
    background-color: #8dc63f;
    font-size: 13px;
    font-weight: normal;
}

@media screen and (max-width: 991px) {
    .subscribe-info, .subscribe-form {
        text-align: center;
        margin-bottom: 30px;
        display: inline-block;
        width: 100%;
    }

        .subscribe-form input, .subscribe-form .btn {
            width: 100% !important;
        }

        .subscribe-form input, .subscribe-box.text-center .subscribe-form input {
            margin-bottom: 10px;
            display: inline-block;
        }

    .candidatura .align-text {
        text-align: center;
    }
}


/* ==========================================================================
ESTÁGIOS
========================================================================== */

.programa-estagios h2 {
    margin-top: 20px;
    padding-bottom: 40px;
}

.programa-estagios h5 {
    margin-top: 3px;
    margin-bottom: 5px;
}

.programa-estagios .media {
    margin-top: 0px;
}

    .programa-estagios .media p {
        padding-bottom: 0px;
        margin-bottom: 33px;
    }

    .programa-estagios .media > .pull-left {
        width: 52px;
        padding-top: 2px;
        padding-right: 10px;
    }

.programa-estagios .media-body {
    display: table-cell;
    vertical-align: top;
    padding-left: 8px;
}

/* =========================================================================
FAQS
========================================================================== */


.faqs h2 {
    margin-top: 0px;
    padding-bottom: 40px;
}

.actives {
    background-color: #8dc63f !important;
}

.panel {
    border: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.panel-heading {
    color: #09233f;
    background-color: #FFF;
    border: solid 1px #f5f5f5;
    border-radius: 4px;
    transition: 0.3s all ease;
    padding: 15px;
    margin-bottom: 12px;
}

.panel-heading:hover {
    color: #8dc63f;
    border: solid 1px #8dc63f;
}

.panel-title {
    position: relative;
    border:0;
    font-size:14px
}

.panel-icon {
    position: absolute;
    margin-top: -4px;

}

.panel-heading i {
    position: absolute;
    top: 0px;
    right: 0px;
}

/*.panel-title {
    font-size: 14px;
    color: #09233f;
    text-transform: uppercase;
    padding: 15px;
    background-color: #FFF;
    border: solid 1px #f5f5f5;
    border-radius: 4px;
    margin-bottom: 10px;
    transition: 0.3s all ease;
}

.panel-heading :hover {
    color: #FFF;
    background-color: #8dc63f;

    border-radius: 4px;
    transition: 0.3s all ease;
}


.panel-icon {
    margin-top: -5px;
    margin-left: 15px !important;
    padding-left: 15px;
}

*/

.faqText {
    width: 92%;
}

/*************** PANEL STYLES **************/

.panel-group .panel {
    border-radius: 0;
}

.panel-group .panel-heading {
    border-bottom: solid 1px #f5f5f5;
}

.panel-group .panel-heading:hover {
    border-bottom: solid 1px #8dc63f;
}

.panel-group .panel + .panel {
    margin-top: 0;
}

.panel-group .panel-heading + .panel-collapse > .panel-body, .panel-group .panel-heading + .panel-collapse > .list-group {
    border-top: 0;
}

.panel-body {
    padding: 5px 15px 0px 15px;
}
