@CHARSET "UTF-8";

body {
	text-align: center;
	font-family: 'Lato', Arial, Verdana, Tahoma;
	font-size: 16px;
    font-weight :300;
	color: #444;
	margin: 0px;
	padding: 0px;
	background: #fff;
}

a, a:hover, a:focus, a:active {
    color: inherit;
    text-decoration: none;
}

.panel {
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}
.btn {
    padding: 10px 40px;
    cursor: pointer;
    border: 1px solid #d8d8d8;
    border-radius: 30px;
    color: #666;
    display: inline-block;
    font-weight: 400;
}
.btn:hover {
    background: linear-gradient(90deg, #78c130, #a8dc73);
    color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.btn-primary {
    background: linear-gradient(90deg, #78c130, #a8dc73);
    border-color: #78c130;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 18px;
    color: #fff;
}
.btn-primary:hover {
    background: linear-gradient(90deg, #78c130 30%, #a8dc73);
}


.sectionPad {
	padding: 50px 0;
}

@media(max-width: 768px) {
    .sectionPad {
        padding: 20px 0;
    }
    .col-xs-12 {
        margin-bottom: 30px;
    }
}


.rotator {
	background: #fff url(../image/bgHeader.png) repeat-y top center;
	background-size: 100% auto;
    padding: 70px 0;
    margin-top: -1px
}
@media(max-width: 768px) {
    .rotator {
        background: linear-gradient(90deg, #860f12, #ff2124 70%);
        padding: 20px 0;
    }
}
.rotator .itemRotator {
    position: relative;
}
.rotator .itemRotator .thumb {
    width: 100%;
    height: 100%;
}
.rotator .itemRotator .thumb img {
    display: block;
}
.rotator .itemRotator .body {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}


.rotator .itemRotator .blend {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 100%;
    background: url(../image/rotatorblend.png) repeat-y top left;
    background-size: 100% 100%;
}

.rotator .itemRotator.center .body .bodyT {
    display: table;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    text-align: center;
}
.rotator .itemRotator.center .body .bodyTD {
    display: table-cell;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    text-align: center;
}

.rotator .itemRotator.topleft .body {
     top: 100px;
     left: 100px;
     text-align: left;
     width: auto;
     height: auto;
 }
.rotator .itemRotator.bottomleft .body {
    top: auto;
    bottom: 100px;
    left: 100px;
    text-align: left;
    width: auto;
    height: auto;
}




.rotator .itemRotator.topright .body {
    top: 100px;
    left: auto;
    right: 100px;
    text-align: right;
    width: auto;
    height: auto;
}
.rotator .itemRotator.bottomright .body {
    top: auto;
    bottom: 100px;
    left: auto;
    right: 100px;
    text-align: right;
    width: auto;
    height: auto;
}



.rotator .title {
    font-weight: 600;
    color: #000;
    font-size: 40px;
}
.rotator .title span {
    color: #ff2124;
}
.rotator .lead {
    font-weight: 600;
    color: #000;
    font-size: 30px;
}
.rotator .more {
    margin-top: 20px;
}

@media(max-width: 1200px) {
    .rotator .title {
        font-size: 30px;
    }

    .rotator .lead {
        font-size: 20px;
    }
}




@media(max-width: 768px) {
    .rotator .itemRotator .body {
        position: relative;
        padding: 40px;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
    }
    .rotator .itemRotator .blend {
        display: none;
    }


    .rotator .itemRotator .thumb img {
        position: relative;
        left: -50%;
        width: 150% !important;
        max-width: none;
    }
}


header {
    border-bottom: 1px solid #eee;
}
header .container {
	position: relative;
}
header .loginPortal {
	position: absolute;
	top: 10px;
	right: 0;
}
header .logo {
    padding: 20px 0;
    float: left;
}
header nav {
    float: right;
}
nav.main ul {
    list-style-type: none;
}
nav.main ul li {
    display: inline-block;
}
nav.main ul li a {
    text-transform: uppercase;
    color: #999;
    display: block;
    padding: 50px 10px 30px 10px;
    font-weight: 400;
}
nav.main ul li:hover a {
    color: #f41f27;
}
nav.main ul li.active a {
    font-weight: 600;
    color: #f41f27;
}


@media(max-width: 1200px) {
    header .logo {
        padding: 10px 0;
        float: none;
        text-align: center;
    }
    header .logo img {
        display: inline-block;
    }
    header nav {
        float: none;
        text-align: center;
    }
    nav.main ul li a {
        padding: 20px 10px;
    }
	
	header .loginPortal {
	position: absolute;
	top: 0px;
	right: auto;
	left: 0;
	}
}

@media(max-width: 768px) {
	header .loginPortal {
		display :none;
	}
}


.mobileMenuSwitch {
    display: none;
    z-index: 10000;
}
.mobileMenuSwitch a {
    display: block;
}
.mobileMenuSwitch i {
    display: block;
    background: #ff2124;
    font-size: 30px;
    color: #fff;
    padding: 8px 12px;
}
.mobileMenuSwitch i.fa-close {
    display: none;
}

header.active .mobileMenuSwitch i.fa-close {
    display: block;
}
header.active .mobileMenuSwitch i.fa-navicon {
    display: none;
}

@media(max-width: 990px) {
    .mobileMenuSwitch {
        display: block;
        position: fixed;
        top: 0;
        right: 0px;
    }

    header nav.main {
        background: #fff;
        z-index: 10000;
        width: 100%;
        position: fixed;
        top: 0px;
        right: -110%;
        box-shadow: 0 0 20px rgba(0,0,0,0.3);
        transition: 0.2s all ease-in-out;
    }
    nav.main ul li {
        display: block;
        border-top: 1px solid #eee;
    }
    nav.main ul li:first-child {
        border-top: 0;
    }
    header.active nav.main {
        right: 0;
    }

}


footer {
	background: linear-gradient(90deg, #860f12, #ff2124 70%);
	color: #fff;
	text-align: left;
}
footer .logo {
    margin-bottom: 20px;
}
footer nav ul {
    list-style-type: none;
}
footer nav ul li {
    display: block;
}
footer nav ul li a {
    display: block;
    padding: 3px 0;
    opacity: 0.7;
}
footer nav ul li a:hover {
    opacity: 1;
    text-decoration: underline;
}
footer .fTitle {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}
footer p {
    margin-bottom: 15px;
}


@media(max-width: 768px) {
    footer {
        text-align: center;
    }
    footer .logo img {
        display: inline-block;
    }
    footer nav {
        margin-bottom: 30px;
    }
}


.intro1 {
    background: url(../image/bgIntroC1.png) top 50px left -40px no-repeat, url(../image/bgIntroC2.png) bottom 50px right -100px no-repeat;
}
.intro .container {
    padding: 0;
    margin: 0;
}
.supHead {
    color: #ff2124;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: 2px;
}
.intro1 .text1 .supHead {
    float: left;
}
.intro1 .text1 h1 {
    font-weight: 600;
    text-align: left;
    font-size: 2.5em;
    float: left;
    width: 46%;
    clear: left;
    line-height: 1.2em;
}

.intro1 .text1 p {
    font-weight: 400;
    text-align: left;
    font-size: 18px;
    float: left;
    width: 46%;
    margin-left: 4%;
    color: #999;
    margin-bottom: 20px;
}

.intro1 .thumb {
    clear: both;
    float: right;
    margin-top: 40px;
    margin-bottom: -150px;
}

.intro1 .text2 {
    clear: both;
    background: linear-gradient(90deg, #262629, #3e3f43);
    padding: 30px;
    color: #ddd;
    text-align: left;
    width: 50%;
    position: relative;
    margin-top: -50px;
}
.intro1 .text2 p {
    margin-bottom: 20px;
    font-size: 18px;
}

@media(max-width: 990px) {
    .intro1 .text2 {
        margin-top: -30px;
        width: 75%;
    }
    .intro1 {
        background-size: 30% auto, 20% auto;
    }
}



@media(max-width: 768px) {
    .intro1 .text1 h1 {
        font-size: 1.9em;
        margin-bottom: 10px;
    }
    .intro1 .text1 p {
        font-size: 1em;
    }
    .intro1 .text1 h1, .intro1 .text1 p {
        float: none;
        width: 100%;
        margin-left: 0;
    }
    .intro1 .thumb{
        margin: 0;
    }
    .intro1 .text2 {
        margin-top: 20px;
        width: 100%;

    }
    .intro1 .text2 p {
        font-size: 1em;
    }
}





.intro2 .panel1 {
    background: url(../image/bgIntro2.png) no-repeat bottom left, linear-gradient(45deg, #781050, #c41937, #f41f27);

    font-size: 17px;
    text-align: left;
    color: #fff;
}



.intro2 .panel1 .panel {
    padding: 50px;
}
.intro2 .panel2 .panel {
    padding: 50px;
}

.intro2 .supHead {
    color: #fff;
}
.intro2 h2 {
    font-weight: 400;
    text-align: left;
    font-size: 2em;
    line-height: 1em;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.intro2 p {
    margin-bottom: 20px;
}

@media(max-width: 990px) {
    .intro2 .panel1 {
        background-size: 90% auto, auto auto;
    }
    .intro2 .panel2 .panel {
        padding: 20px;
    }
}
@media(max-width: 768px) {
    .intro2 .panel1 {
        background-size: 50% auto, auto auto;
    }
    .intro2 h2 {
        font-size: 1.9em;
    }
}



.module {
    background: linear-gradient(90deg, #f5f5f5, #d3d0d0);
    margin-top: 70px;
}
.module2 {
    background: linear-gradient(-90deg, #f5f5f5, #d3d0d0);
    margin-top: 140px;
}

.module .thumb {
    float: right;
    width: 48%;
    position: relative;
    top: 50px;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}
.module .text {
    float: left;
    width: 48%;
    padding: 50px 0;
    text-align: left;
}
.module2 .thumb {
    float: left;
    top: -50px;
}
.module2 .text {
    float: right;
}
.module h2 {
    font-size: 2em;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.module .text p {
    margin-bottom: 20px;
}
@media(max-width: 768px) {
    .module {
        padding: 30px 0;
        margin-top: 30px;
    }
    .module .thumb {
        float: none;
        width: 100%;
        top: 0px;
        margin-bottom: 10px;
    }
    .module .thumb img {
        width: 100%;
    }
    .module .text {
        float: none;
        width: 100%;
        padding: 0;
    }
    .module2 .thumb {
        float: none;
        top: 0px;
    }
    .module2 .text {
        float: none;
    }
}


.trainingIndex .item {
    margin-bottom: 50px;
    text-align: center;
}
.trainingIndex .item .title {
    font-size: 18px;
    color: #000;
    margin-top: 20px;
    text-transform: uppercase;
    line-height: 1.2em;
    font-weight: 400;
}
.trainingIndex .item .thumb {
    background: linear-gradient(90deg, #f5f5f5, #d2cfcf);
    border-radius: 50%;
    padding: 10px;
    margin: 0 25%;
}
.trainingIndex .item .thumb .thumbBody {
    background: #fff;
    border-radius: 50%;
}
.trainingIndex .item .thumb .thumbBody img {
    border-radius: 50%;
}
@media(max-width: 768px) {
    .trainingIndex .item .thumb {
        margin: 0 30%;
    }
}


.trainingSection {
    background: linear-gradient(90deg, #e83324, #ac0d00);
    background: url(../image/bgIntro2.png) no-repeat bottom right, linear-gradient(45deg, #781050, #c41937, #f41f27);
    color: #fff;
}
.trainingSection .trainingIndex .item .title {
    color: #fff;
}


.training {
    background: #fff;
    text-align: center;
}
.training .more {
    text-align: center;
}
.training .container {
    position: relative;
    text-align: left;
}
.training .subThumb {
    position: absolute;
    top: 0;
    left: -150px;
}
.training .subThumb img {
    display: block;
}
.training .supHead {
    margin-top: 40px;
}
.training h2 {
    font-size: 2em;
    text-transform: uppercase;
}
.training .lead {
    margin-top: 0px;
    font-size: 1.3em;
    color: #999;
}
.training .trainingIndex {
    margin-top: 80px;
}




.featureIndex .item {
    margin-top: 30px;
    text-align: left;
    display: table;
}
.featureIndex .item .td {
    display: table-cell;
    vertical-align: middle;
}
.featureIndex .item .td {
    display: table-cell;
    vertical-align: middle;
}
.featureIndex .item .td:first-child {
    width: 100px;
}
.featureIndex .item .thumb {
    background: linear-gradient(90deg, #f5f5f5, #d2cfcf);
    border-radius: 50%;
    padding: 10px;
}
.featureIndex .item .thumb .thumbBody {
    background: #fff;
    border-radius: 50%;
}
.featureIndex .item .thumb .thumbBody img {
    border-radius: 50%;
}
.featureIndex .item .title {
    padding-left: 30px;
    font-size: 1.3em;
    font-weight: 600;
    line-height: 1.1em;
}
@media(max-width: 768px) {
    .featureIndex .item {
        margin-top: 20px;
    }
    .featureIndex .item .title {
        padding-left: 20px;
        font-size: 1.1em;
    }
}


#googleMap {
    height: 500px;
    border-bottom: 10px solid #eee;
    box-shadow: 0 0 30px rgba(0,0,0,0.1);
}

.contactForm {
    background: linear-gradient(90deg, #aaa, #eee);
}
.contactForm p:first-child {
    font-size: 2em;
}

.form {
    margin-top: 40px;
}
.form input[type="text"], .form textarea {
    box-sizing: border-box;
    width: 100%;
    padding: 15px;
    color: #31241d;
    font-size: 18px;
    border: 2px solid #fff;
    font-weight: 600;
    background: rgba(255,255,255,0.8);
}
.form textarea {
    height: 200px;
}

@media(max-width: 768px) {
    .form input[type="text"], .form textarea {
        padding: 5px 15px;
        font-size: 14px;
    }
    .form textarea {
        height: 100px;
    }
}

.form .errors    {
    list-style-type: none;
}
.form .error, .form .errors  {
    font-size: 12px;
    background-color: #ff9c00;
    color: #fff;
    margin-top: 2px;
    padding: 10px;
}

.form .formItem {
    margin-bottom: 20px;
}
.form .rulez {
    font-size: 0.8em;
    color: #000;
    margin-bottom: 30px;
}
@media(max-width: 768px) {
    .form .rulez {
        font-size: 0.6em;
        color: #000;
    }
}
.form .rulez .ruleItem {
    margin-bottom: 20px;
    position: relative;
}
.form .rulez .ruleItem input {
    display: block;
    top: 1px;
    left: 0;
    position: absolute;
    width: 16px;
    height: 16px;
}
.form .rulez .ruleItem p {
    display: block;
    margin-left: 30px;
    text-align: left;
    font-weight: 400;
    font-size: 0.9em;
    text-transform: none;
    margin-bottom: 5px;
}



.company .supHead {
    margin-top: 40px;
}
.company .container {
    position: relative;
}
.company .subThumb {
    position: absolute;
    top: 0;
    left: -150px;
}
.company .subThumb img {
    display: block;
}
.company .customContent {
    position: relative;
}


.companyOffer {
    background: linear-gradient(90deg, #f5f5f6, #d9d6d7);
    text-align: left;
}
.companyOffer h2, .companyOffer h3, .companyOffer h4, .companyOffer h5 {
    text-transform: uppercase;
    font-size: 30px;
    margin-bottom: 15px;
}
.companyOffer ul {
    list-style-type: none;
}
.companyOffer ul li {
    float: left;
    width: 50%;
    box-sizing: border-box;
    padding: 10px 0 10px 20px;
    font-size: 1.3em;
    background: url(../image/dot.png) no-repeat left center;
}
@media(max-width: 480px) {
    .companyOffer ul li {
        float: none;
        width: 100%;
    }
}


.page h1 {
    background: linear-gradient(90deg, #f5f5f6, #d9d6d7);
    padding: 40px 40px;
    margin-bottom: 40px;
    text-transform: uppercase;
}



.redBox {
    background: linear-gradient(45deg, #781050, #c41937, #f41f27);
    padding: 40px;
    color: #fff;
    margin-bottom: 30px;
}

.contact .icon {
    font-size: 40px;
    color: #ff2124;
    margin-bottom: 20px;
}
.contact p {
    margin-bottom: 10px;
}
@media(max-width: 768px) {

}





.articleIndex {
    text-align: left;
    background: url(../image/bgNews.png) top left repeat;
}
.articleIndex .sHead {
    color: #f41f27;
    margin-bottom: 20px;
    font-size: 30px;
    text-transform: uppercase;
}
.articleIndex .item {
    margin-bottom: 50px;
}
.articleIndex .date span {
    background: #eee;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8em;

}
.articleIndex .date {
    margin-bottom: 10px;
}
.articleIndex .title {
    font-size: 1.2em;
    margin-bottom: 10px;
    font-weight: 600;
}
.articleIndex .more {
    margin-top: 10px;
}
.articleIndex .more a {
    color: #f41f27;
    font-weight: 400;
    text-decoration: underline;
}
.articleIndexAlso {
    border-left: 1px solid #eee;
    padding-left: 20px;

}
@media(max-width: 768px) {
    .articleIndexAlso {
        margin-top: 40px;
        border-top: 1px solid #eee;
        border-left: 0;
        padding: 20px;
    }
}

.pages {
    text-align: right;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #ddd;
}
.pages a {
    display: inline-block;
    border: 1px solid #ddd;
    padding: 5px 8px;
    font-size: 12px;
}
.pages a:hover {
    border-color: #f41f27;
    color: #f41f27;
}
.pages a.active {
    background: #f41f27;
    color: #fff;
    border-color: #f41f27;
}


.recruitmentIndex {
    border-left: 1px solid #eee;
    padding-left: 20px;
}

.recruitmentIndex .item {
    border-top: 1px solid #eee;
    margin-bottom: 20px;
    padding-top: 30px;
    text-align: left;
}
.recruitmentIndex .sHead {
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1.3em;
    margin-bottom: 20px;
}
.recruitmentIndex .refno {
    background: linear-gradient(90deg, #f5f5f5, #d3d0d0);
    padding: 10px;
}
.recruitmentIndex .title {
    font-weight: 600;
    font-size: 1.2em;
    color: #f41f27;
}
.recruitmentIndex .lead {
    font-size: 0.9em;
    color: #666;
    margin-top: 5px;
}
.recruitmentIndex .city {
    margin-top: 5px;
    font-weight :600;
}
.recruitmentIndex .more {
    margin-top :10px;
    text-align: right;
}
.recruitmentIndex .more a {
    padding: 4px 10px;
    font-size: 12px;
    text-transform: uppercase;
}
.recruitmentIndex .body {
    padding: 10px;
}
.recruitmentShow .city {
    margin-bottom: 20px;
    margin-top: -20px;
}
.recruitmentShow .city span {
    font-size: 1.3em;
    font-weight :600;
}
.recruitmentShow h1 {
    padding: 18px 20px;
}
.recruitmentShow h1 span {
    font-size: 0.7em;
    color: #999;
}
.recruitmentShow .rulez {
    font-size: 12px;
    text-align: left;
    border-top: 1px solid #eee;
    padding: 10px;
    margin-top: 30px;
}
.recruitmentShow .address {
    margin-top: 30px;
}
.recruitmentShow .address p {
    margin-bottom: 5px;
}

.recruitmentForm  {
    padding: 20px;
    background: linear-gradient(0deg, #f5f5f5, #fafafa);
    border-left: 1px solid #ddd;
}

.recruitmentForm  .sHead {
    background: linear-gradient(90deg, #860f12, #ff2124 70%);
    color: #fff;
    margin: -20px -20px 10px -20px;
    padding: 20px;
}
.recruitmentForm  input[type="text"] {
    width: 100%;
    box-sizing: border-box;
    padding: 5px 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
}
.recruitmentForm  input[type="file"] {
    font-size: 12px;
}
.recruitmentForm .formItem {
    margin-bottom: 15px;
}
.recruitmentForm  .formItemFile {
    border: 1px solid #eee;
    padding: 10px;
    background: #fafafa;
}
.recruitmentForm  .formItemFile .label{
    background: #eee;
    font-weight: 400;
    padding: 5px;
    margin: -10px -10px 5px -10px;
}
.recruitmentForm .filereset {
    display: none;
}
.recruitmentForm .rulez {
    font-size: 10px;
    text-align: justify;
}
.messages {
    background: linear-gradient(90deg, #860f12, #ff2124 70%);
    padding: 30px 0;
    color: #fff;
    font-weight: 600;
    margin-bottom: 30px;
    margin-top: -50px;
    font-size: 1.4em;
}



.faqIndex .item {
	margin-top: 40px;
	text-align: left;
}
.faqIndex .number {
	margin-bottom: 10px;
	text-align: center;
}
.faqIndex .number span {
	display: inline-block;
	width: 60px;
	height: 60px;
	line-height: 52px;
	font-size: 24px;
	font-weight: 600;
	background: #fff;
	border: 3px solid #ddd;
	border-radius: 50%;
	color: #ddd;
	
}
.faqIndex .title {
	color: #ff2124;
	font-size: 1.3em;
	line-height: 1.1em;
	margin-bottom: 10px;
}

.faqNav {
	border-right: 1px solid #eee;
	background: #fafafa;
	padding: 20px;
}
.faqNav ol {
	margin: 0 0 0 10px;
	padding :0;
}
.faqNav ol li {
	margin: 0;
	padding :0;
	text-align: left;
	margin-bottom: 10px;
	line-height: 1.2em;
}

.faqNav ol li.active {
	color: #ff2124;
	font-weight: 400;
}

.cookie {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: rgba(15, 22, 23, 0.9);
    padding: 10px 0;
    left: 0;
    z-index: 200;
}
.cookie  .lead{
    font-size: 10px;
    color: #ffffff;
    margin-bottom: 5px;
}
.cookie  .accept {
    padding: 3px 10px;
    font-size: 10px;
}
.cookie  .accept span{
    font-size: 10px;
    margin: -3px -10px -3px 10px;
}

.cookie .info {
    padding: 3px 10px;
    font-size: 10px;
}
.cookie .info span{
    font-size: 10px;
    margin: -3px -10px -3px 10px;
}