.career-container {
    position: relative;
    display: block;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.career-back {
    position: fixed;
    display: block;
    width: 100%;
    height: 100vh;
    left: 0px;
    top: 0px;
    background: url('../../img/front/career/career-background.jpg') no-repeat;
    background-position: 50% !important;
    background-size: cover !important;
    background-attachment: fixed;

    -webkit-transition: left 0.8s;
	-moz-transition: left 0.8s;
	-ms-transition: left 0.8s;
	transition: left 0.8s;
}

.container.contact-active .career-back {
	left: -600px;

	-webkit-transition: left 0.8s;
	-moz-transition: left 0.8s;
	-ms-transition: left 0.8s;
	transition: left 0.8s;
}

.career-back:before {
    content: "";
    position: absolute;
    display: block;
    width: 200px;
    height: 196px;
    bottom: 0px;
    left: -200px;
    background: url('../../img/front/loading/corner-image.png') no-repeat;
    /* background-position: 50% !important; */
    background-position: -558px 0px;
    background-size: 558px 196px !important;
    /* background-size: contain !important; */
    z-index: 1;
    
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    
    -webkit-animation: imrktopbefore 2.8s linear infinite;
    -moz-animation: imrktopbefore 2.8s linear infinite;
    -ms-animation: imrktopbefore 2.8s linear infinite;
    animation: imrktopbefore 2.8s linear infinite;
}

@keyframes imrktopbefore {
    0% { 
        left: -200px;
        background-position: -558px 0px;
    }
    10% { 
        left: -200px;
        background-position: -558px 0px;
    }
    90% { 
        left: 558px;
        background-position: 200px 0px;
    }
	100% { 
        left: 558px;
        background-position: 200px 0px;
    }
}

.career-back:after {
    content: "";
    position: absolute;
    display: block;
    width: 200px;
    height: 196px;
    top: 0px;
    right: -200px;
    background: url('../../img/front/loading/corner-image.png') no-repeat;
    /* background-position: 50% !important; */
    /* background-size: contain !important; */
    background-position: -558px 0px;
    background-size: 558px 196px !important;
    
    -webkit-animation: imrktopafter 2.8s linear infinite;
    -moz-animation: imrktopafter 2.8s linear infinite;
    -ms-animation: imrktopafter 2.8s linear infinite;
    animation: imrktopafter 2.8s linear infinite;
}

@keyframes imrktopafter {
    0% { 
        right: -200px;
        background-position: -558px 0px;
    }
    10% { 
        right: -200px;
        background-position: -558px 0px;
    }
    90% { 
        right: 558px;
        background-position: 200px 0px;
    }
	100% { 
        right: 558px;
        background-position: 200px 0px;
    }
}

.career-content {
    position: relative;
    display: block;
    width: calc(100% - 50px);
    max-width: 448px;
    margin: 0px auto;
    padding: 130px 0px 130px;
}

.career-title {
    position: relative;
    display: table;
    text-align: center;
    margin: 0px auto 40px;
    line-height: 27px;
    font-size: 36px;
    font-family: gotham;
    color: #fff;
    padding: 0px 5px;
}

.career-title:before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 30px;
    background: #da241d;
    top: 13px;
    left: 0px;
}

.career-title span {
    position: relative;
    display: block;
}

.career-desc {
    position: relative;
    display: block;
    font-size: 14px;
    font-family: roboto;
    line-height: 24px;
    color: #fff;
    text-align: center;
    margin-bottom: 45px;
}

.career-list-container {
    position: relative;
    display: block;
}

.career-list {
    position: relative;
    display: block;
    background: #fff;
    margin-bottom: 20px;
}

.career-list:last-child {
    margin-bottom: 0px;
}

.career-list-title {
    position: relative;
    display: block;
    width: 100%;
    padding: 16px 80px 16px 30px;
    font-family: gotham;
    font-size: 16px;
    color: #222;
    cursor: pointer;
}

.career-list-icon {
    position: absolute;
    display: block;
    width: 50px;
    height: 100%;
    background: #da241d;
    right: 0px;
    top: 0px;
}

.career-list-icon:before {
    content: "";
    position: absolute;
    display: block;
    width: 14px;
    height: 1px;
    background: #fff;
    left: calc(50% - 7px);
    top: calc(50% - 1px);
}

.career-list-icon:after {
    content: "";
    position: absolute;
    display: block;
    width: 14px;
    height: 1px;
    background: #fff;
    left: calc(50% - 7px);
    top: calc(50% - 1px);
    opacity: 1;
    
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);

    -webkit-transition: opacity 0.4s;
    -moz-transition: opacity 0.4s;
    -ms-transition: opacity 0.4s;
    transition: opacity 0.4s;
}

.career-list-title.active .career-list-icon:after {
    opacity: 0;

    -webkit-transition: opacity 0.4s;
    -moz-transition: opacity 0.4s;
    -ms-transition: opacity 0.4s;
    transition: opacity 0.4s;
}

.career-list-desc {
    position: relative;
    display: none;
    padding: 30px;
    border-top: 1px solid #da251d;
    font-size: 14px;
    font-family: roboto;
    line-height: 24px;
    color: #222;
}

.career-list-desc p:first-child {
    margin-top: 0px;
    padding-top: 0px;
}

.career-list-desc p:last-child {
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.career-list-desc ol, ul {
    padding-left: 18px;
    margin: 0px;
}

.opening-anim {
    top: 300px;
    opacity: 0;
}


/* Desktops and laptops */
@media screen and (min-width : 1224px) {

}

/* Tablet */
@media screen and (max-width: 1024px) {
	
}

/* Mobile */
@media screen and (max-width: 768px) {
	
}

@media screen and (max-width: 768px) and (orientation: landscape) {
	.career-container {
        background-size: 100vw auto !important;
    }
}

@media screen and (max-width: 768px) and (orientation: portrait) {
	.career-container {
        background-size: auto 100vh !important;
    }
}

@media screen and (max-width : 500px) {
    .career-container {
        background-size: auto 100vh !important;
    }

	.career-title {
        font-size: 32px;
    }

    .career-title:before {
        height: 28px;
        top: 10px;
    }

    .career-desc {
        font-size: 13px;
    }

    .career-desc br {
        display: none;
    }

    .career-list-title {
        font-size: 14px;
        padding: 16px 80px 16px 20px;
    }

    .career-list-desc {
        padding: 20px;
        font-size: 13px;
        line-height: 22px;
    }
}