html,
body {
    width: 100%;
    height: 100%;
}

body {
    background: url('../images/main_bgr.jpg') center top no-repeat;
    background-size: 100% auto;
}

body#careers {
    background-image: url('../images/def-bgr.png');
}

.stripes {
    position: relative;
    margin-bottom: 90px;
}

.stripes:after {
    content: '';
    position: absolute;
    bottom: -45px;
    left: 0;
    width: 91px;
    height: 5px;
    background: url('../images/stripes.png') no-repeat center;
    background-size: cover;
}

h1,
.sectionTitle,
.pageTitle {
    font-family: 'NoirPro', sans-serif;
    font-weight: bold;
    font-size: 74px;
    color: #424242;
}

.pageTitle {
    font-size: 80px;
    margin-bottom: 60px;
}

p {
    font-family: 'ArticulatCF', sans-serif;
    font-size: 18px;
    color: #000;
    line-height: normal;
}

.def-btn {
    font-family: 'NoirPro', sans-serif;
    font-weight: bold;
    font-size: 18px;
    line-height: 36px;
    padding: 0 35px;
    cursor: pointer;
    border-radius: 3px;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: background-color .3s;
}

.def-btn.red {
    background-color: #cf1f24;
    color: #fff;
}

.def-btn.darkred {
    background-color: #961f24;
    color: #fff;
}

.def-btn.gray {
    background-color: #424242;
    color: #fff;
}

.def-btn.red:hover {
    background-color: #e9393e;
}

.def-btn.darkred:hover {
    background-color: #e9393e;
}

.def-btn.gray:hover {
    background-color: #515151;
}

.arrow-btn {
    width: 43px;
    height: 43px;
    cursor: pointer;
    background: url('../images/sprite.png') no-repeat;
    border: 1px solid #6f6f6f;
    border-radius: 100%;
    display: inline-block;
}

.arrow-btn.down {
    background-position: -93px -32px;
}

.arrow-btn.left {
    background-position: -167px -35px;
    margin-right: 10px;
}

.arrow-btn.right {
    background-position: -127px -35px;
}

.arrow-btn.hidden {
    display: none;
}

.white-box {
    background-color: #fff;
    box-shadow: 0 0 110px 0 rgba(0, 0, 0, .17);
    border-radius: 10px;
}

.col-half {
    width: 100%;
    max-width: 600px;
    display: inline-block;
    vertical-align: top;
    padding: 25px;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    padding: 25px 30px;
    width: 100%;
    z-index: 2;
}

header .mainLogo img {
    width: 140px;
    transition: .5s;
}

header nav {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 0;
}

header nav .btn-holder {
    display: inline-block;
    vertical-align: middle;
}

header nav .btn-holder.mobile {
    display: none;
}

header nav a {
    font-family: 'NoirPro', sans-serif;
    color: #000;
    font-size: 18px;
    margin: 0 20px;
}

header nav .lang-btn {
    width: 40px;
    height: 40px;
    background-color: #424242;
    font-size: 20px;
    line-height: 40px;
    text-align: center;
    display: inline-block;
    color: #fff;
    border-radius: 100%;
}

header .mobileMenu {
    position: absolute;
    top: 13px;
    right: 20px;
    width: 26px;
    cursor: pointer;
    display: none;
    transition: .5s;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

header .mobileMenu span {
    display: block;
    width: 100%;
    height: 4px;
    background-color: #eda5a7;
    border-radius: 2px;
    margin-bottom: 6px;
    transition: .5s;
}

header .mobileMenu span:last-child {
    margin-bottom: 0;
}

header .mobileMenu.open span:first-child {
    transform: rotate(43deg);
    transform-origin: left center;
}

header .mobileMenu.open span:nth-child(2) {
    opacity: 0;
}

header .mobileMenu.open span:last-child {
    transform: rotate(-43deg);
    transform-origin: left center;
}

header.open {
    height: 100%;
    padding-top: 20px;
    background: url('../images/mobile-menu-bgr.png') center top no-repeat;
    background-size: cover;
}

header.open .mobileMenu {
    top: 24px;
    width: 29px;
}

header.open .mainLogo img {
    width: 110px;
}

header.open nav {
    position: static;
    width: 100%;
}

header.open .btn-holder {
    display: block;
    text-align: center;
    padding: 20px 0;
}

header.open nav .btn-holder.desktop {
    display: none;
}

header.open nav .btn-holder.mobile {
    display: block;
}

header.open a:not(.lang-btn):not(.def-btn) {
    font-size: 24px;
}

.sticky-nav {
    position: fixed;
    right: 0;
    z-index: 9999;
    top: 40%;
    display: none;
}

.sticky-nav a {
    display: block;
    position: relative;
    font-family: 'NoirPro', sans-serif;
    font-weight: 300;
    font-size: 11px;
    padding-right: 30px;
    color: #424242;
    text-transform: uppercase;
    text-align: right;
    margin: 15px 0;
    height: 18px;
    line-height: 18px;
    transition: .3s;
}

.sticky-nav a:after {
    content: '';
    position: absolute;
    width: 6px;
    height: 1px;
    background-color: #424242;
    right: 10px;
    top: 8px;
    transition: .1s;
}

.sticky-nav a.active {
    font-size: 17px;
    font-weight: bold;
}

.sticky-nav a.active span {
    display: inline;
}

.sticky-nav a.active:after {
    width: 17px;
    height: 6px;
    right: 0;
    background-color: #d01e23;
    top: 6px;
}

.sticky-nav a span {
    display: none;
}

.section-num {
    position: absolute;
    z-index: 0;
    text-align: center;
    font-family: 'NoirPro', sans-serif;
    font-weight: bold;
    color: #d21e23;
    opacity: .1;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.section-num .section-name {
    font-size: 50px;
    text-transform: uppercase;
}

.section-num .section-number {
    font-size: 260px;
    line-height: 200px;
}

section#s01 .section-num {
    bottom: 0;
    right: 0;
}

section#s02 .section-num {
    bottom: 0;
    left: 0;
}

section#s03 .section-num {
    top: 0;
    right: 0;
}

section#s04 .section-num {
    bottom: 0;
    left: 0;
}

section {
    padding: 150px 0;
    /*height: 100%;*/
    position: relative;
    z-index: 1;
}

section#main {
    width: 1170px;
    margin: 150px auto;
    /*border-radius: 10px;*/
    padding: 80px 150px;
}

section#header {
    text-align: center;
    height: 100%;
}

section#header #pb_logo {
    width: 250px;
    margin-bottom: 30px;
}

section#header h1 {
    color: #000;
    width: 100%;
    max-width: 800px;
    font-size: 64px;
    display: inline-block;
}

section#header h1:after {
    right: 0;
    margin: 0 auto;
}

section#header .arrow-btn-holder {
    position: relative;
    padding-top: 110px;
}

section#header .arrow-btn-holder:after {
    content: '';
    position: absolute;
    width: 1px;
    height: 55px;
    background-color: #6d6d6d;
    top: 35px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

section#s01 {
    text-align: center;
    font-size: 0;
    position: relative;
    height: 1000px;
    overflow: hidden;
}

section#s01 .boxes-holder {
    position: absolute;
    width: 1845px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

section#s01 .boxes-holder .slider-holder {
    position: relative;
}

section#s01 .interactive-box-holder {
    display: inline-block;
    vertical-align: middle;
}

section#s01 .interactive-box {
    /*border-radius: 10px;*/
    width: 615px;
    padding: 60px;
    /*display: inline-block;*/
    /*vertical-align: middle;*/
    text-align: left;
    transition: .4s;
    transform: scale(.8);
}

section#s01 .interactive-box.active {
    transform: scale(1);
}

section#s01 .interactive-box:not(.active) {
    cursor: pointer;
}

.box-title {
    font-family: 'NoirPro', sans-serif;
    font-weight: 300;
    font-size: 20px;
    margin-bottom: 40px;
    text-align: left;
    margin-bottom: 60px;
}

.box-title:after {
    bottom: -10px;
}

section#s01 .interactive-box .title {
    font-family: 'NoirPro', sans-serif;
    font-weight: bold;
    color: #424242;
    font-size: 68px;
    margin-bottom: 60px;
}

section#s01 .interactive-box p {
    margin-bottom: 60px;
}

section#s01 .interactive-box .def-btn {
    margin-right: 20px;
}

section#s01 .interactive-box .def-btn:last-child {
    margin-right: 0;
}

section#s01 .interactive-box:not(.active) .def-btn {
    pointer-events: none;
}

section#s01 .interactive-box-holder:nth-child(1) .interactive-box {
    margin-right: -80px;
}

section#s01 .interactive-box-holder:nth-child(3) .interactive-box {
    margin-left: -80px;
}

section#s01 .dots-nav {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
}

section#s01 .dots-nav .dot {
    display: inline-block;
    vertical-align: middle;
    padding: 10px;
    cursor: pointer;
    font-size: 0;
    transition: .5s;
}

section#s01 .dots-nav .dot span {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background-color: #424242;
    transition: .5s;
}

section#s01 .dots-nav .dot.active {
    padding: 8px;
}

section#s01 .dots-nav .dot.active span {
    width: 14px;
    height: 14px;
    background-color: #d21e23;
}

section#s02 {
    text-align: center;
    background: url('../images/red-circle.png') center bottom no-repeat;
    background-size: 100% auto;
}

section#s02 .sectionTitle,
section#s02 p {
    text-align: left;
}

section#s02 .stats {
    position: relative;
}

section#s02 .stats-box {
    padding: 60px 0;
    font-size: 0;
    /*border-radius: 10px;*/
}

section#s02 .stats-box .s {
    display: inline-block;
    position: relative;
    width: 50%;
    text-align: center;
}

section#s02 .stats-box .s:nth-child(odd):after {
    content: '';
    position: absolute;
    left: 100%;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 1px;
    height: 35px;
    background-color: #424242;
}

section#s02 .stats-box .num {
    font-family: 'NoirPro', sans-serif;
    font-weight: 900;
    font-size: 86px;
    line-height: 75px;
    color: #424242;
    margin-bottom: 20px;
}

section#s02 .stats-box .num span {
    position: relative;
}

section#s02 .stats-box .label {
    font-family: 'NoirPro', sans-serif;
    font-weight: bold;
    font-size: 20px;
    color: #d71d24;
    text-transform: uppercase;
}

section#s02 .stats-box .num span:after {
    content: 'M';
    font-family: 'NoirPro', sans-serif;
    font-weight: normal;
    position: absolute;
    left: 100%;
    bottom: 0;
    font-size: 43px;
}

section#s02 .brands {
    /*width: 1075px;*/
    width: 1155px;
    margin: 200px auto 0;
    padding-left: 400px;
    padding-right: 80px;
    position: relative;
}

section#s02 .brands .logo-holder {
    position: absolute;
    width: 400px;
    height: 80%;
    left: 0;
    top: 10%;
    z-index: 1;
}

section#s02 .brands .logo-holder .logo-box {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    height: 100%;
}

section#s02 .brands .logo-holder .logo-box img {
    max-width: 90%;
    max-height: 80%;
}

section#s02 .brands .dots-nav {
    position: absolute;
    width: 80px;
    height: 100%;
    top: 0;
    right: 0;
}

section#s02 .brands .dots-nav .dot {
    padding: 10px 20px;
    cursor: pointer;
    font-size: 0;
    transition: .5s;
}

section#s02 .brands .dots-nav .dot span {
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 100%;
    background-color: #424242;
    transition: .5s;
}

section#s02 .brands .dots-nav .dot.active {
    padding: 8px 20px;
}

section#s02 .brands .dots-nav .dot.active span {
    width: 8px;
    height: 8px;
    background-color: #d21e23;
}

section#s02 .brands .white-box {
    padding: 60px;
    position: relative;
    z-index: 2;
}

section#s02 .brands .white-box .box-title {
    min-height: 20px;
}

section#s02 .brands .white-box .sectionTitle {
    margin: 100px 0 50px;
    min-height: 180px;
    font-size: 68px;
}

section#s02 .brands .white-box p {
    min-height: 70px;
    overflow: hidden;
}

section#s02 .brands .white-box p span {
    position: relative;
}

section#s02 .brands .white-box .brand-nav {
    margin-top: 100px;
}

section#s02 .brands .white-box .brand-nav .def-btn {
    float: left;
}

section#s02 .brands .white-box .brand-nav .arrow-btn-holder {
    float: right;
    position: relative;
    padding-right: 130px;
}

section#s02 .brands .white-box .brand-nav .arrow-btn-holder:after {
    content: '';
    position: absolute;
    width: 120px;
    height: 1px;
    background-color: #747474;
    top: 21px;
    right: 0;
}

section#s02 .brands .white-box .brand-nav .arrow-btn-holder .pages {
    font-family: 'ArticulatCF', sans-serif;
    position: absolute;
    font-size: 19px;
    color: #424242;
    bottom: 0;
    right: 0;
}

section#s03 {
    text-align: center;
}

section#s03 .col-half {
    text-align: left;
}

section#s03 .interactive-map .map-holder {
    position: relative;
}

section#s03 .interactive-map .st0 {
    fill: #D21E23;
}

section#s03 .interactive-map .st1 {
    fill: none;
}

section#s03 .interactive-map g.continent {
    cursor: pointer;
    outline: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

section#s03 .interactive-map g.continent:not(.active):hover .st0,
section#s03 .interactive-map g.continent:not(.active).hover .st0 {
    fill: #ab1b1f;
}

section#s03 .interactive-map g.continent.active .st0 {
    fill: #424242;
}

section#s03 .interactive-map .pin {
    width: 26px;
    height: 37px;
    position: absolute;
    background: url('../images/sprite.png') -52px -32px no-repeat;
    pointer-events: none;
}

section#s03 .interactive-map .pin.active {
    background-position: -26px -32px;
}

section#s03 .interactive-map .pin.north-america {
    top: 30%;
    left: 16%;
}

section#s03 .interactive-map .pin.south-america {
    top: 64%;
    left: 28%;
}

section#s03 .interactive-map .pin.europe {
    top: 23%;
    left: 50%;
}

section#s03 .interactive-map .pin.asia {
    top: 30%;
    left: 70%;
}

section#s03 .interactive-map .pin.africa {
    top: 53%;
    left: 51%;
}

section#s03 .interactive-map .pin.australia {
    top: 70%;
    left: 81%;
}

section#s03 .interactive-map .continent-info {
    font-family: 'ArticulatCF', sans-serif;
    font-size: 18px;
    text-align: center;
}

section#s03 .interactive-map .pin-icon {
    display: inline-block;
    width: 26px;
    height: 37px;
    background: url('../images/sprite.png') 0 -32px no-repeat;
    vertical-align: middle;
    margin-right: 10px;
}

section#s03 .interactive-map .continent-name {
    font-weight: 900;
}

section#s03 .interactive-map .value {
    font-weight: normal;
}

section#s04 {
    text-align: center;
    font-size: 0;
}

section#s04>#separator {
    display: none;
}

section#s04 .col-left,
section#s04 .col-right {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    text-align: left;
}

section#s04 .col-left {
    max-width: 500px;
    padding: 0 40px;
}

section#s04 .col-right {
    max-width: 570px;
    font-size: 0;
}

section#s04 .col-right .long,
section#s04 .col-right .short {
    display: inline-block;
    vertical-align: top;
}

section#s04 .col-right .long {
    width: 300px;
    margin-right: 10px;
}

section#s04 .col-right .short {
    width: 260px;
}

section#s04 .col-right input[type="text"],
section#s04 .col-right input[type="email"],
section#s04 .col-right textarea {
    font-family: 'ArticulatCF', sans-serif;
    width: 100%;
    border: 1px solid #6e6e6e;
    border-radius: 3px;
    margin-bottom: 15px;
    color: #000;
    font-size: 15px;
}

section#s04 .col-right input {
    height: 35px;
    line-height: 35px;
    padding: 0 10px;
}

section#s04 .col-right textarea {
    padding: 10px;
    height: 120px;
    margin-bottom: 20px;
}

.checkbox {
    display: block;
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    font-family: 'ArticulatCF', sans-serif;
    font-size: 14px;
    color: #747474;
    line-height: normal;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.checkbox a,
.checkbox a:hover,
.checkbox a:focus {
    color: #747474;
    text-decoration: underline;
}

.checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 15px;
    width: 15px;
    background: none;
    border: 1px solid #6e6e6e;
    border-radius: 3px;
}

.checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox:hover input~.checkmark {
    background-color: #eee;
}

.checkbox input:checked~.checkmark:after {
    display: block;
}

.checkbox .checkmark:after {
    left: 3px;
    top: 1px;
    width: 3px;
    height: 6px;
    border: solid #6e6e6e;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.custom-table {
    width: 100%;
}

.custom-table .table-head {
    font-size: 0;
    width: 100%;
    background-color: #cc1d22;
    border-radius: 4px;
    color: #fff;
    margin-bottom: 35px;
}

.custom-table .tc {
    font-family: 'ArticulatCF', sans-serif;
    font-size: 18px;
    width: 33%;
    display: inline-block;
    padding: 6px 30px;
    vertical-align: middle;
}

.custom-table .table-row {
    border-top: 1px solid #f1bbbd;
    color: #000;
    font-size: 0;
    position: relative;
}

.custom-table .table-row .cols {
    cursor: pointer;
}

.custom-table .table-row.active .tc {
    font-weight: 900;
}

.custom-table .table-row:before {
    content: '';
    position: absolute;
    width: 9px;
    height: 8px;
    left: 10px;
    top: 11px;
    background: url('../images/sprite.png') -8px -77px no-repeat;
    opacity: 0;
    transition: .5s;
}

.custom-table .table-row.active:before {
    opacity: 1;
}

.custom-table .table-row .job-info {
    padding: 40px 30px;
    display: none;
    font-size: 0;
}

.custom-table .table-row .job-info .half-col {
    width: calc(50% - 25px);
    display: inline-block;
    vertical-align: top;
}

.custom-table .table-row .job-info .half-col:first-child {
    margin-right: 50px;
}

.custom-table .table-row .job-info .info-box {
    margin-bottom: 40px;
}

.custom-table .table-row .job-info .info-box h3 {
    font-family: 'ArticulatCF', sans-serif;
    font-size: 18px;
    color: #cc1d22;
    margin-bottom: 20px;
}

footer {
    padding-top: 90px;
    font-family: 'ArticulatCF', sans-serif;
    font-size: 14px;
    color: #fff;
    position: relative;
}

footer .top-slope {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: url('../images/footer_bgr.png') top center no-repeat;
    background-size: 100% 100%;
}

footer a {
    font-weight: 800;
    color: #fff;
}

footer .content-holder {
    width: 100%;
    background-color: #d21e23;
    padding: 30px 0;
    text-align: center;
}

footer .social {
    margin-bottom: 10px;
}

footer .social .facebook,
footer .social .instagram,
footer .social .linkedin {
    display: inline-block;
    width: 32px;
    height: 32px;
    /*background: url('../images/sprite.png') no-repeat;*/
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 10px;
    vertical-align: middle;
}

footer .social .facebook {
    background-image: url('../images/facebook.svg');
}

footer .social .instagram {
    background-image: url('../images/instagram.svg');
}

footer .social .linkedin {
    background-image: url('../images/linkedin.svg');
}

footer .social .social-links {
    display: inline-block;
    padding-right: 5px;
    border-right: 1px solid rgba(255, 255, 255, .2);
}

footer .social .pb {
    display: inline-block;
    vertical-align: middle;
    width: 100px;
    height: 32px;
    background: url('../images/powerbrands_logo-white.png') center no-repeat;
    background-size: auto 100%;
    margin-left: 10px;
}

footer nav {
    margin: 40px 0;
}

footer nav a {
    font-family: 'NoirPro', sans-serif;
    font-weight: 300;
    display: inline-block;
    text-transform: uppercase;
    color: #fff;
    margin: 0 30px;
}

footer .copy {
    margin-bottom: 20px;
}

footer .copy span {
    padding: 0 10px;
}

.cookies-box {
    display: none;
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 550px;
    padding: 20px;
    text-align: center;
    /*border-radius: 10px;*/
    z-index: 99999;
}

.cookies-box h2 {
    font-family: 'ArticulatCF', sans-serif;
    font-weight: 900;
    font-size: 18px;
}

.cookies-box h2,
.cookies-box p {
    margin-bottom: 20px;
}

.cookies-box .def-btn:first-child {
    margin-right: 20px;
}


/* === add checkbox error === */

.error {
    -webkit-box-shadow: 0px 0px 0px 1px rgba(255, 0, 0, 1)!important;
    -moz-box-shadow: 0px 0px 0px 1px rgba(255, 0, 0, 1)!important;
    box-shadow: 0px 0px 0px 1px rgba(255, 0, 0, 1)!important;
}