.careers_polaroids{
    display: none;
}

@media only screen and (min-width: 1100px){
    .careers_header{
        position: relative;
    }
    .careers_polaroids{
        display: block;
    }
    
    .careers_polaroids{
        position: absolute;
        right: 150px;
        top: 200px;
    }

    .careers_polaroids_item{
        background-color: #FFF;
        padding: 20px 20px 20px 20px;
        position: absolute;
        top: 0;
        box-shadow: 1px 32px 20px rgba(0, 0, 0, 0.08);
        width: 250px;
    }

    .careers_polaroids_item1{
        transform: rotate(-20deg);
        left: -185px;
        animation-name: polaroid1;
        animation-duration: 3s;
        top: 0;
    }

    @keyframes polaroid1 {
        0% {
            top: -300px;
            transform: rotate(0deg);
        }
        80% {
            top: 0;
            transform: rotate(-20deg);
        }
    }

    .careers_polaroids_item2{
        transform: rotate(9deg);
        top: -50px;
        animation-name: polaroid2;
        animation-duration: 4s;
    }

    @keyframes polaroid2 {
        0% {
            top: -350px;
            transform: rotate(0deg);
            opacity: 0;
        }
        30% {
            opacity: 0;
            top: -350px;
            transform: rotate(0deg);
        }
        50% {
            opacity: 1;
        }
        100% {
            top: -50px;
            transform: rotate(9deg);
            opacity: 1;
        }
    }

    .careers_polaroids_item3{
        transform: rotate(-17deg);
        top: -50px;
        left: -185px;
        animation-name: polaroid3;
        animation-duration: 6s;
    }

    @keyframes polaroid3 {
        0% {
            top: -350px;
            transform: rotate(0deg);
            opacity: 0;
        }
        40% {
            opacity: 0;
            top: -350px;
            transform: rotate(0deg);
        }
        50% {
            opacity: 1;
        }
        100% {
            top: -50px;
            transform: rotate(-17deg);
            opacity: 1;
        }
    }


    .careers_polaroids_item4{
        transform: rotate(7deg);
        left: 10px;
        animation-name: polaroid4;
        animation-duration: 7s;
    }

    @keyframes polaroid4 {
        0% {
            top: -350px;
            transform: rotate(0deg);
            opacity: 0;
        }
        40% {
            opacity: 0;
            top: -350px;
            transform: rotate(0deg);
        }
        50% {
            opacity: 1;
        }
        100% {
            top: 0px;
            transform: rotate(7deg);
            opacity: 1;
        }
    }

    .careers_polaroids_item5{
        transform: rotate(-14deg);
        top: -50px;
        left: -185px;
        animation-name: polaroid5;
        animation-duration: 10s;
    }

    @keyframes polaroid5 {
        0% {
            top: -350px;
            transform: rotate(0deg);
            opacity: 0;
        }
        50% {
            opacity: 0;
            top: -350px;
            transform: rotate(0deg);
        }
        60% {
            opacity: 1;
        }
        100% {
            top: -50px;
            transform: rotate(-14deg);
            opacity: 1;
        }
    }

    .careers_polaroids_item6{
        transform: rotate(4deg);
        width: 450px;
        top: -72px;
        left: -219px;
        animation-name: polaroid6;
        animation-duration: 11s;
    }

    @keyframes polaroid6 {
        0% {
            top: -350px;
            transform: rotate(0deg);
            opacity: 0;
        }
        65% {
            opacity: 0;
            top: -350px;
            transform: rotate(0deg);
        }
        75% {
            opacity: 1;
        }
        100% {
            top: -72px;
            transform: rotate(4deg);
            opacity: 1;
        }
    }

    .careers_polaroids_item_image{
        width: 100%;
    }
}

/* Features Nav */

.features_nav_button{
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #212121;
    color: #FFF;
    height: 40px;
    width: 40px;
    text-align: center;
    border-radius: 4px;
    line-height: 40px;
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 106;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.features_nav_button_active{ border-radius: 0px; }

.features_nav_button:hover{
    background-color: #20b7e6;
}

.features_nav{
    background-color: #FFFFFF;
    width: 300px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 105;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0px 0px 5px #b5b5b5;
}

.features_nav_active{
    opacity: 1;
    visibility: visible;
}

.features_nav_item{
    display: block;
    line-height: 40px;
    padding: 0px 20px;
    font-size: 1rem;
    font-weight: bold;
    border-bottom: 1px solid #fff;
    cursor: pointer;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.features_nav_item:last-child{
    border-bottom: none;
}

.features_nav_item:hover{
    background-color: rgba(32,183,230, 0.8);
    color: #FFF;
}

.features_nav_item i{
    display: inline-block;
    width: 30px;
    text-align: center;
}


@media only screen and (min-width:750px){
    .features_nav_button{
        display: none;
    }
    
    .features_nav{
        position: inherit;
        opacity: 1;
        visibility: visible;
        background-color: #212121;
        width: 100%;
        text-align: center;
    }
    
    .features_nav_item{
        display: inline-block;
        border-bottom: none;
        color: #FFF;
        height: 100px;
        padding-top: 25px;
        padding: 25px 10px 0 10px;
    }
    
    .features_nav_item span{
        color: #7b7b7b;
        -webkit-transition: all 0.4s ease;
        -moz-transition: all 0.4s ease;
        -ms-transition: all 0.4s ease;
        -o-transition: all 0.4s ease;
        transition: all 0.4s ease;
        font-size: 0.8rem;
    }
    
    .features_nav_item i{
        display: block;
        width: auto;
        font-size: 1.4rem;
    }
    
    .features_nav_item:hover{
        background-color: inherit;
    }
    
    .features_nav_item:hover span{
        color: #FFF;
    }
    
}

@media only screen and (min-width:1050px){
    .features_nav_item{
        padding: 25px 20px 0 20px;
    }
    .features_nav_item i{
        font-size: 1.6rem;
    }
    .features_nav_item span{
        font-size: 1rem;
    }
}





/* Careers Info Section */

.careers_info_container{
    background-color: #20b7e6;
    padding: 50px 0px;
}

.careers_info_container .careers_info{
    width: 80%;
    margin: 0 auto;
}

.careers_info_item{
    margin-top: 40px;
    overflow: hidden;
    width: 100%;
    position: relative;
    color: #FFF;
    text-align: center;
    border-radius: 4px;
    top: 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.careers_info_item:hover{
    top: -5px;
}

.careers_info_item_image_container{
    display: block;
    height: 200px;
}

.careers_info_item_image_container img{
    width: 100%;
    max-width: 200px;
}

.careers_info_item_title{
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 1.5rem;
    font-family: sansationbold;
}

.careers_info_item_description{
    font-size: 1rem;
    line-height: 1.4rem;
    padding: 0 20px;
    position: relative;
}

@media only screen and (min-width:1000px){
    
    .careers_info_item:first-child, .careers_info_item:nth-child(2n){
        float: left;
        width: 45%;
        min-height: 250px;
        margin-bottom: 20px;
    }
    
    .careers_info_item:nth-child(2n){
        float: right;
        
    }
    
}

@media only screen and (min-width:1400px){
    
    .careers_info_item{
        float: left !important;
        width: 30% !important;
        margin: 0px 1.66% !important;
        min-height: 250px !important;
    }
    
}

/* Benefits */

.careers_benefits{
    text-align: center;
    color: #FFF;
    max-width: 1000px;
    margin: 0px auto 0 auto;
}

.careers_benefits h3{
    margin-bottom: 20px;
}

.careers_benefits_container{
    margin-top: 40px;
}

.careers_benefits_item{
    background-color: #228AAB;
    display: inline-block;
    padding: 0px 20px;
    line-height: 50px;
    margin: 10px;
    border-radius: 4px;
}


/* Vacancies */

.vacancies_item{
    box-shadow: 0 15px 35px rgba(50,50,93,.1), 0 5px 15px rgba(0,0,0,.07);
    background-color: #FFF;
    padding: 20px;
    margin-bottom: 40px;
    position: relative;
    top: 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.vacancies_item:hover{
    top: -5px;
}

.vacancies_item::after{
    content: '';
    clear: both;
    display: block;
}

.vacancies_item_title{
    margin-bottom: 10px;
    font-size: 1.5rem;
    font-family: sansationbold;
    color: #ea1686;
    display: block;
}

.vacancies_item_description{
    font-size: 1rem;
    line-height: 1.4rem;
    margin-bottom: 10px;
}

.vacancies_item_salary{
    font-size: 1.5rem;
    font-family: sansationbold;
}


@media only screen and (min-width:1000px){
    .vacancies_container{
        margin-top: 50px;
    }
    
    .vacancies_item_left{
        float: left;
        width: 60%;
    }
    
    .vacancies_item_right{
        float: left;
        width: 30%;
        margin-left: 10%;
        text-align: right;
    }
    
    .vacancies_item_title{
        margin-bottom: 20px;
    }
}


.breadcrumbs{
    background-color: #e7e7e8;
}

.breadcrumbs_inner{
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

@media only screen and (min-width: 900px){
    .breadcrumbs_inner{
        width: 70%;
    }
}

.breadcrumbs_inner a{
    display: inline-block;
    line-height: 50px;
    color: #212121;
    font-size: 1rem;
}

.breadcrumbs_inner a:hover{
    color: #ea1686;
}

.breadcrumbs_inner a::after{
    content: '/';
    display: inline-block;
    margin: 0px 10px;
    color: #212121 !important;
}

.breadcrumbs_inner a:last-child{
    cursor: inherit;
    font-weight: bold;
}

.breadcrumbs_inner a:last-child:hover{
    color: #212121;
}

.breadcrumbs_inner a:last-child::after{
    display: none;
}

@media only screen and (min-width:1100px){
    
    .jobs_left{
        float: left;
        width: 55%;
    }
    
    .jobs_right{
        float: left;
        width: 40%;
        margin-left: 5%;
    }
    
}


/* Jobs Section */

.jobs_left_title{
    font-size: 1.5rem;
    font-family: sansationbold; 
    margin-bottom: 20px;
}

.jobs_left ul{
    font-size: 1rem;
    line-height: 1.6rem;
    margin: 0 0 20px 20px;
}

.jobs_apply_panel{
    box-shadow: 0 15px 35px rgba(50,50,93,.1), 0 5px 15px rgba(0,0,0,.07);
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.jobs_apply_title{
    font-size: 1.5rem;
    font-family: sansationbold; 
    margin-bottom:30px;
}

.jobs_apply_info{
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.6rem;
}

.jobs_apply_info_item{
    margin-bottom: 10px;
}

.jobs_apply_info_item span{
    margin-left: 5px;
}


/* Share Button */
.job_share_button{
    background-color: #20b7e6;
    color: #FFF;
    border-radius: 4px;
    line-height: 40px;
    display: inline-block;
    padding: 0px 20px;
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.job_share_button i{
    margin-right: 15px;
}

#job_share_facebook{ background-color: #3b5998; }
#job_share_facebook:hover{ background-color: #30487b; }

#job_share_twitter{ background-color: #55ACEE; }
#job_share_twitter:hover{ background-color: #55ACEE; }