a,
input,
textarea,
button,
select {
    outline: none;
}

a:hover,
h1:focus,
h2:focus,
h3:focus,
h4:focus,
h5:focus,
h6:focus {
    text-decoration: none;
}

a:focus,
button:focus,
select:focus,
input:focus,
textarea:focus {
    outline: none;
    text-decoration: none;
}

img {
    max-width: 100%;
}

iframe {
    border: 0;
    max-width: 100%;
    width: 100%;
}



/*------------TYPHOGRAPHY--------------- */

* {
    font-family: "Lato", sans-serif;
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    position: relative;
    color: #111;
    margin-top: 0;
    margin-bottom: 10px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
}

h1 {
    font-size: 36px;
}

h2 {
    font-size: 28px;
}

h3 {
    font-size: 22px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 16px;
}

h6 {
    font-size: 12px;
}

p {
    font-size: 15px;
    line-height: 1.5em;
    color: #999;
}

a {
    position: relative;
    text-decoration: none;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.ps-section--page a:hover {
    text-decoration: underline;
}

ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

.popup-heading {
    display: block;
    margin-bottom: 20px;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 25px;
    font-weight: 700;
    color: #9d2235;
    text-transform: uppercase;
}



/* ------------MAIN CSS--------------- */


/* Elements */

.ps-list--arrow a {
    position: relative;
    display: block;
    padding: 5px 0;
    padding-left: 15px;
    font-size: 13px;
    color: #ffffff;
    line-height: 20px;
}

.ps-list--arrow a:before {
    content: "\f101";
    font-family: FontAwesome;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
}

.ps-list--arrow a:hover {
    color: #fff;
}

.ps-list--circle {
    margin-bottom: 30px;
}

.ps-list--circle li {
    padding-left: 15px;
    position: relative;
    display: block;
    margin-bottom: 10px;
    font-family: arial, sans-serif;
    font-size: 14px;
    color: #777;
}

.ps-list--circle li a {
    color: #9d2235;
}

.ps-list--circle li a:hover {
    text-decoration: underline;
}

.ps-list--circle li:before {
    content: "\f18e";
    position: absolute;
    top: 0;
    left: 0;
    font-family: FontAwesome;
    font-size: 10px;
    color: #9d2235;
    line-height: 2.2em;
}

.ps-media-list li {
    padding: 25px 0;
    font-family: arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.57;
    color: #303030;
    line-height: 20px;
    border-bottom: 1px solid #ddd;
}

.ps-media-list li span {
    margin-right: 80px;
    font-weight: 400;
}
 


@media (max-width:767px) {
    .ps-media-list li span {
        display: block;
    }
}

.ps-btn,
button.ps-btn {
    display: inline-block;
    padding: 8px 30px;
    font-family: arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #777777;
    line-height: 20px;
    border: 1px solid #fcb040;
    background-color: #fcb040;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    text-transform: uppercase;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    border-radius: 40px;
}

.ps-btn:hover,
button.ps-btn:hover {
    color: #fff;
    background-color: #9d2235;
    border-color: #9d2235;
    text-decoration: none !important;
}

.menu-toggle {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 36px;
    overflow: hidden;
}

.menu-toggle span,
.menu-toggle:before,
.menu-toggle:after {
    position: absolute;
    right: 8px;
    height: 2px;
    background-color: #666;
    z-index: 100;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.menu-toggle span {
    top: 50%;
    width: 20px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.menu-toggle:before,
.menu-toggle:after {
    content: '';
}

.menu-toggle:before {
    top: 12px;
    width: 20px;
}

.menu-toggle:after {
    bottom: 12px;
    width: 20px;
}

.menu-toggle:hover {
    cursor: pointer;
}

.menu-toggle:hover span,
.menu-toggle:hover:before,
.menu-toggle:hover:after {
    width: 20px;
}

.menu-toggle--active span {
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    visibility: hidden;
    opacity: 0;
}

.menu-toggle--active:before,
.menu-toggle--active:after {
    top: 50%;
    bottom: auto;
    width: 20px;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

.menu-toggle--active:before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.menu-toggle--active:after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.ps-breadcrumb {
    background-color: #ffffff;
    padding: 40px 0 10px 0;
    text-align: left;
}

.ps-breadcrumb .breadcrumb {
    margin: 0;
    padding: 0;
    display: inline-block;
    background-color: transparent;
}

.ps-breadcrumb .breadcrumb li {
    font-family: Lato, sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    line-height: 20px;
    color: #9d2235;
}

.ps-breadcrumb .breadcrumb li:before {
    padding: 0 5px;
    color: #ccc;
    content: "/\00a0";
}

.post.post-page.current-item span {
    font-weight: 900 !important;
}

.ps-breadcrumb .breadcrumb li:first-child:before {
    display: none;
}

.ps-breadcrumb .breadcrumb a {
    font-family: Lato, sans-serif;
    color: #707070;
    font-size: 18px;
    text-transform: uppercase;
    line-height: 20px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.ps-breadcrumb .breadcrumb a:hover {
    color: #9d2235;
}

.ps-breadcrumb .breadcrumb a i {
    margin-right: 5px;
}

@media (max-width:991px) {
    .ps-breadcrumb {
        position: relative;
    }
}

.ps-accordion {
    margin-bottom: 10px;
}

.ps-accordion__header a {
    position: relative;
    display: block;
    padding: 10px 20px;
    font-family: arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    color: #303030;
    background-color: #eee;
}

.ps-accordion__header a span {
    font-weight: 400;
}

.ps-accordion__header a:after {
    content: "\f067";
    font-family: FontAwesome;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 20px;
    font-size: 14px;
    color: #303030;
}

.ps-accordion__header a:hover {
    color: #9d2235;
}

.ps-accordion__content {
    padding: 30px;
}

.ps-accordion.active .ps-accordion__header a {
    background-color: #9d2235;
    color: #fff;
}

.ps-accordion.active .ps-accordion__header a:after {
    content: "\f068";
    color: #fff;
}

.ps-accordion.active .ps-accordion__content {
    display: block;
}

.ps-table {
    border: none;
}

.ps-table thead>tr>th {
    font-family: arial, sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #9d2235;
    background-color: #fcb040;
}

.ps-table tbody>tr>td {
    padding: 10px;
    border-left: none;
    border-top: none;
}

.ps-table tbody>tr>td:first-child {
    border-left: none !important;
}

.ps-table tbody>tr>td:last-child {
    border-right: none !important;
}

.ps-table.ps-table--2 thead>tr>th {
    background-color: #9d2235;
    color: #fff;
}

.ps-table.ps-table--3 thead>tr:first-child>th {
    background-color: #9d2235;
    color: #fff;
}

.ps-table.ps-table--3 thead>tr>th {
    background-color: #fcb040;
    color: #9d2235;
}

.ps-table.ps-table--3 .ps-list--has-span span {
    display: block;
}

.ps-award-wrap {
    position: relative;
    padding-bottom: 100px;
}

.ps-award-wrap:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 2px;
    height: 100%;
    background-color: #fcb040;
}

.ps-award-wrap:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 18px;
    height: 18px;
    background-color: #fcb040;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media (max-width:767px) {
    .ps-award-wrap:before,
    .ps-award-wrap:after {
        display: none;
    }
}

.ps-award {
    position: relative;
    margin-right: 50%;
    padding-top: 40px;
}

.ps-award__year {
    position: absolute;
    top: 0;
    right: 0;
    -webkit-transform: translateX(50%);
    -moz-transform: translateX(50%);
    -ms-transform: translateX(50%);
    -o-transform: translateX(50%);
    transform: translateX(50%);
    display: inline-block;
    padding: 8px 30px;
    font-family: arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1em;
    color: #fcb040;
    border: 2px solid #fcb040;
    background-color: #fff;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    border-radius: 40px;
}

.ps-award__content {
    position: relative;
    margin-right: 75px;
    background-color: #eee;
}

.ps-award__content::after {
    clear: both;
    content: "";
    display: table;
}

.ps-award__content:before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translate(100%, -50%);
    -moz-transform: translate(100%, -50%);
    -ms-transform: translate(100%, -50%);
    -o-transform: translate(100%, -50%);
    transform: translate(100%, -50%);
    height: 0;
    width: 0;
    border-bottom: 15px solid transparent;
    border-left: 15px solid #eee;
    border-top: 15px solid transparent;
}

.ps-award__content p {
    font-family: arial, sans-serif;
    font-size: 14px;
    line-height: 1.57em;
    color: #777777;
}

.ps-award__left {
    position: relative;
    width: 120px;
    float: left;
    text-align: center;
    padding-top: 40px;
}

.ps-award__left img {
    vertical-align: middle;
    max-width: 75px;
}

.ps-award__right {
    float: left;
    width: calc(100% - 120px);
    padding-left: 20px;
    padding: 40px 20px;
    border-left: 1px solid #dedede;
}

.ps-award__circle {
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: 20px;
    margin-left: 2px;
    -webkit-transform: translate(50%, -50%);
    -moz-transform: translate(50%, -50%);
    -ms-transform: translate(50%, -50%);
    -o-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
    width: 30px;
    height: 30px;
    border: 2px solid #fcb040;
    background-color: #fff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
}

.ps-award__circle:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 75%;
    height: 75%;
    background-color: #9d2235;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
}

@media (max-width:991px) {
    .ps-award__left {
        padding: 20px 20px 0;
        width: 100%;
        text-align: left;
    }

    .ps-award__right {
        width: 100%;
        padding: 20px 20px;
        border: none;
    }
}

@media (max-width:767px) {
    .ps-award {
        margin-right: 0;
    }

    .ps-award__year {
        position: relative;
        margin-bottom: 20px;
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -o-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    .ps-award__content {
        margin-right: 0;
    }

    .ps-award__content:before {
        display: none;
    }

    .ps-award__circle {
        display: none;
    }
}

.ps-award--inverse {
    margin-right: 0;
    margin-left: 50%;
}

.ps-award--inverse .ps-award__year {
    right: auto;
    left: 0;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.ps-award--inverse .ps-award__content {
    margin-right: 0;
    margin-left: 75px;
}

.ps-award--inverse .ps-award__content:before {
    right: 0;
    left: 0;
    -webkit-transform: translate(-100%, -50%) rotate(180deg);
    -moz-transform: translate(-100%, -50%) rotate(180deg);
    -ms-transform: translate(-100%, -50%) rotate(180deg);
    -o-transform: translate(-100%, -50%) rotate(180deg);
    transform: translate(-100%, -50%) rotate(180deg);
}

.ps-award--inverse .ps-award__circle {
    right: auto;
    left: 0;
    margin-left: 0;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@media (max-width:767px) {
    .ps-award--inverse {
        margin-left: 0;
    }

    .ps-award--inverse .ps-award__year {
        position: relative;
        margin-bottom: 20px;
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -o-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    .ps-award--inverse .ps-award__content {
        margin-left: 0;
    }
}

.ps-financial {
    text-align: center;
    margin-bottom: 30px;
}

.ps-financial__thumbnail {
    margin-bottom: 20px;
    position: relative;
}

.ps-financial__thumbnail>a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    visibility: hidden;
    opacity: 0;
}

.ps-financial__thumbnail>a img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.ps-financial__thumbnail>a:after {
    content: 'View PDF File';
    margin-top: 50px;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    color: #fff;
    font-weight: 400;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.ps-financial__thumbnail:hover>a {
    visibility: visible;
    opacity: 1;
    background-color: rgba(157, 34, 53, 0.7);
}

.ps-valuation {
    float: left;
    width: 20%;
    padding: 0 15px;
    margin-bottom: 30px;
}

.ps-valuation:first-child {
    margin-left: -15px;
}

.ps-valuation:last-child {
    margin-right: -15px;
}

.ps-valuation img {
    width: 100%;
}

.ps-valuation__content {
    margin-top: 25px;
}

.ps-valuation__content p {
    margin-bottom: 15px;
}

.ps-valuation__content p strong span {
    font-weight: 700;
    color: #fcb040;
}

@media (max-width:991px) {
    .ps-valuation {
        width: 25%;
    }
}

@media (max-width:767px) {
    .ps-valuation {
        width: 50%;
    }

    .ps-valuation:first-child,
    .ps-valuation:last-child {
        margin: 0;
    }
}

@media (max-width:479px) {
    .ps-valuation {
        width: 100%;
    }
}

.ps-step {
    background-color: #fff;
}

.ps-step__header {
    position: relative;
}

.ps-step__header:before,
.ps-step__header:after {
    content: '';
    display: block;
    position: absolute;
    width: 30px;
    height: 30px;
    top: 36px;
    z-index: 10;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    background-color: #fcb040;
    -webkit-transform: translateY(50%);
    -moz-transform: translateY(50%);
    -ms-transform: translateY(50%);
    -o-transform: translateY(50%);
    transform: translateY(50%);
}

.ps-step__header:before {
    left: 0;
}

.ps-step__header:after {
    right: 0;
}

.ps-step__header p {
    color: #343434 !important;
}

.ps-step__number {
    display: inline-block;
    position: relative;
    margin-bottom: 10px;
    width: 130px;
    height: 130px;
    z-index: 100;
    background-color: #fff;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    border: 2px solid #fcb040;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.ps-step__number i {
    margin-top: -10px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-family: arial, sans-serif;
    font-weight: 900;
    color: #000;
    font-size: 38px;
    font-style: normal;
}

.ps-step__number:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background-color: #eee;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
}

.ps-step__title {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin-top: 20px;
    display: block;
    text-transform: uppercase;
    font-family: arial, sans-serif;
    font-weight: 700;
    color: #777;
}

.ps-step__process::after {
    clear: both;
    content: "";
    display: table;
}

.ps-step__process li {
    position: relative;
    float: left;
    width: 25%;
    text-align: center;
}

.ps-step__process li:before {
    content: '';
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #e4e4e4;
    z-index: 10;
}



.ps-step__process li.active:before {
    background-color: #fcb040;
}

.ps-step__process li.active .ps-step__number:before {
    background-color: #9d2235;
}

.ps-step__process li.active .ps-step__number i {
    color: #fff;
}

.ps-step__process li.active .ps-step__number .ps-step__title {
    color: #ff97a7;
}

.ps-step__process a {
    display: block;
}

.ps-step__content {
    position: relative;
    padding-top: 50px;
    min-height: 300px;
    overflow: hidden;
}

.ps-step__tab {
    position: absolute;
    padding: 15px;
    width: 100%;
    background-color: #fff;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    z-index: 100;
    -webkit-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    transition: all 0.8s ease;
}

.ps-step__tab.active {
    display: block;
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
    -webkit-transition-delay: 0.2s;
    -moz-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.ps-step__tab.seen {
    -webkit-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
}

@media (max-width:767px) {
    .ps-step .ps-step__header:before,
    .ps-step .ps-step__header:after {
        display: none;
    }

    .ps-step .ps-step__process {
        text-align: center;
    }

    .ps-step .ps-step__process li {
        float: none;
        margin: 0 auto;
        padding: 20px 0;
    }

    .ps-step .ps-step__process li:before {
        display: none;
    }
}

.ps-pagination {
    margin-bottom: 20px;
    padding: 30px 0 0;
}

.ps-pagination::after {
    clear: both;
    content: "";
    display: table;
}

.ps-pagination .pagination {
    float: right;
    margin: 0;
    margin-bottom: -4px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
}

.ps-pagination .pagination li>a {
    margin-right: 10px;
    position: relative;
    z-index: 20;
    border: none;
    font-family: arial, sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #343434;
    background-color: transparent;
}

.ps-pagination .pagination li>a:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 35px;
    height: 35px;
    z-index: -1;
    background-color: #fff;
    border: 1px solid #dedede;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
}

.ps-pagination .pagination li>a:hover {
    color: #fff;
}

.ps-pagination .pagination li>a:hover:after {
    background-color: #fcb040;
}

.ps-pagination .pagination li:last-child a {
    margin-right: 0;
}

.ps-pagination .pagination li.active>a {
    color: #fff;
    background-color: transparent;
}

.ps-pagination .pagination li.active>a:after {
    border-color: #fcb040;
    background-color: #fcb040;
}

.ps-pagination .pagination li>a.current {
    color: #fff;
}

.ps-pagination .pagination li>a.current:after {
    border-color: #fcb040;
    background-color: #fcb040;
}

.ps-product {
    margin-bottom: 90px;
    text-align: center;
}

.ps-product img {
    width: 100%;
    height: auto !important;
}

.ps-product__content a {
    margin-bottom: 10px;
    font-family: arial, sans-serif;
    font-weight: 700;
    color: #303030;
    display: block;
}

.ps-product__content span {
    font-family: arial, sans-serif;
    font-weight: 400;
    color: #303030;
}

.ps-product-detail {
    border-bottom: 1px solid #dedede;
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.ps-product-detail .product-large {
    border: 1px solid #e6e6e6;
}

.ps-product-detail .product-small .owl-item img {
    cursor: pointer;
    border: 1px solid #e6e6e6;
}

.ps-product-detail .product-small .owl-item img:hover {
    border-color: #fcb040;
}

.ps-product-detail .ps-product__header {
    border-bottom: 1px solid #dedede;
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.ps-product-detail .ps-product__header h3 {
    margin-bottom: 0;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 25px;
    color: #9d2235;
}

.ps-product-detail .ps-product__header p {
    margin-bottom: 0;
    font-family: arial, sans-serif;
    font-weight: 700;
    color: #303030;
}

.ps-product-detail .ps-product__content {
    border-bottom: 1px solid #dedede;
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.ps-product-detail .ps-product__content p {
    margin-bottom: 10px;
}

.ps-product-detail .ps-product__content p strong {
    display: inline-block;
    min-width: 100px;
}

.ps-product-detail .ps-product__footer h4 {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
}

@media (max-width:767px) {
    .ps-product-detail .ps-product__header {
        margin-top: 30px;
    }
}

.ps-product--relate h3 {
    margin-bottom: 50px;
    display: block;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 700;
    font-size: 25px;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #9d2235;
}

.ps-product--relate .owl-slider {
    position: relative;
}

.ps-product--relate .owl-slider .owl-nav {
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    height: 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    visibility: hidden;
    opacity: 0;
}

.ps-product--relate .owl-slider .owl-next,
.ps-product--relate .owl-slider .owl-prev {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    background-color: #d6d6d6;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.ps-product--relate .owl-slider .owl-next i,
.ps-product--relate .owl-slider .owl-prev i {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #fff;
}

.ps-product--relate .owl-slider .owl-next:hover,
.ps-product--relate .owl-slider .owl-prev:hover {
    background-color: #777777;
}

.ps-product--relate .owl-slider .owl-next {
    float: right;
}

.ps-product--relate .owl-slider .owl-prev {
    float: left;
}

.ps-product--relate .owl-slider:hover .owl-nav {
    visibility: visible;
    opacity: 1;
}

.ps-post--home {
    position: relative;
    margin-bottom: 50px;
    padding-left: 100px;
}

.ps-post--home .ps-post__meta {
    display: block;
    width: 70px;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
}

.ps-post--home .ps-post__meta .month {
    display: block;
    background-color: #343434;
    color: #fff;
    font-family: arial, sans-serif;
    font-weight: 400;
    font-size: 15px;
}

.ps-post--home .ps-post__meta .date {
    display: block;
    background-color: #9d2235;
    font-family: arial, sans-serif;
    font-weight: 700;
    font-size: 30px;
    color: #fff;
    line-height: 50px;
}

.ps-post--home .ps-post__title {
    display: block;
    margin-bottom: 10px;
    font-family: "Helvetica", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #9d2235;
}

.ps-post--home .ps-post__title:hover {
    color: #fcb040;
}

.ps-post--home .ps-post__content p {
    font-family: arial, sans-serif;
    font-weight: 400;
    color: #777;
}

.ps-post--home .ps-post__content p a {
    margin-left: 5px;
    text-transform: uppercase;
    font-size: 14px;
    color: #fcb040;
}

.ps-post--home .ps-post__content p a i {
    margin-left: 5px;
}

.ps-post--home .ps-post__content p a:hover {
    color: #fcb040;
}

.ps-feature {
    text-align: center;
    padding: 20px 0;
    float: left;
    width: 50%;
    background-color: #fbfafa;
}

.ps-feature img {
    margin-bottom: 21px;
    max-width: 160px;
}

.ps-feature h3 {
    font-weight: 600;
    margin-bottom: 15px;
    font-family: "Helvetica", sans-serif;
    font-size: 20px;
    color: #303030;
}

.ps-feature p {
    max-width: 430px;
    margin: 0 auto;
    font-family: arial, sans-serif;
    color: #777;
}

.ps-feature:first-child,
.ps-feature:nth-child(4) {
    background-color: #eee;
}

.ps-feature:hover h3,
.ps-feature:hover p {
    text-decoration: underline;
}

@media (max-width:991px) {
    .ps-feature {
        padding: 50px 30px;
    }
}

@media (max-width:767px) {
    .ps-feature {
        width: 50%;
    }

    .ps-feature img {
        max-width: 100px;
    }
}

@media (max-width:400px) {
    .ps-feature {
        padding: 20px 5px;
    }

    .ps-feature h3 {
        font-size: 13px;
    }

    .ps-feature img {
        max-width: 60px;
    }
}



/* Components */

.sub-menu {
    min-width: 290px;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    background-color: #831a2a;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.sub-menu>li {
    display: block;
    margin-right: 0;
    width: 100%;
}

.sub-menu>li>a {
    display: inline-block;
    padding: 10px 15px 10px 30px;
    width: 100%;
    font-family: arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    line-height: 24px;
    border-bottom: 1px solid #9d2235;
}

.sub-menu>li>a:before {
    margin-right: 5px;
    content: "\f101";
    font-family: FontAwesome;
}

.sub-menu>li>a:hover {
    background-color: #fcb040;
    color: #fff;
}

.sub-menu>li>.sub-menu {
    position: relative;
    top: 0;
    left: 0;
}

.sub-menu>li>.sub-menu>li>a {
    padding: 5px 15px 7px;
    padding-left: 50px;
    color: #ee8696;
    border-bottom: none;
}

.sub-menu>li>.sub-menu>li>a:before {
    display: none;
}

.sub-menu>li>.sub-menu>li>a:hover {
    color: #fff;
}

.sub-menu>li>.sub-menu.sub-menu-2>li>a {
    color: #a33546;
}

.sub-menu>li>.sub-menu.sub-menu-2>li>a:before {
    display: inline !important;
    content: "\f0a9";
    font-family: FontAwesome;
}

.sub-menu>li>.sub-menu.sub-menu-2>li>a:hover {
    color: #fff;
    background-color: transparent;
}

.menu {
    // display: block;
    display: -webkit-flex;
    /* Safari */
    -webkit-justify-content: space-around;
    /* Safari 6.1+ */
    display: flex;
    justify-content: space-around;
}

.menu::after {
    clear: both;
    content: "";
    display: table;
}

.menu>li {
    display: inline-block;
    position: relative;
    float: left; margin:0px 20px;
}

.menu>li>a {
    display: inline-block;
    padding: 15px 25px;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 25px;
    text-transform: uppercase;
    color: #fff;
}

.menu>li>a:hover {
    color: #9d2235;
    background-color: #fff;
}

.menu>li .sub-menu {
    visibility: hidden;
    opacity: 0;
}

.menu>li.current>a {
    color: #9d2235;
    background-color: #fff;
}

.menu>li.normal>a {
    color: #fff !important;
    background-color: transparent !important;
}

.menu>li.normal>a:hover {
    color: #9d2235 !important;
    background-color: #fff !important;
}

.menu>li.normal.current>a {
    color: #9d2235 !important;
    background-color: #fff !important;
}

.menu>li:hover .sub-menu {
    visibility: visible;
    opacity: 1;
}

@media (max-width:1199px) {
    .menu {
        position: absolute;
        top: 0%;
        left: 0;
        width: 100%;
        z-index: 100;
        background-color: #fff;
        display: none;
    }

    .menu.active {
        visibility: visible;
        opacity: 1;
    }

    .menu>li {
        display: inline-block;
        float: none;
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .menu>li>a {
        width: 100%;
        padding: 10px 15px;
        font-size: 14px;
        color: #9d2235;
    }

    .menu>li.menu-item-has-children>a {
        position: relative;
    }

    .menu>li.menu-item-has-children>a:after {
        content: "\f107";
        font-family: FontAwesome;
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
        right: 15px;
    }

    .menu .sub-menu {
        padding: 0;
        position: relative;
        -webkit-transition: all 0s ease;
        -moz-transition: all 0s ease;
        transition: all 0s ease;
    }

    .menu .sub-menu>li>a {
        padding: 10px 15px;
    }

    .menu .sub-menu>li:last-child {
        border-bottom: 0;
    }
}

.menu-top {
    display: inline-block;
    margin-bottom: 10px;
}

.menu-top::after {
    clear: both;
    content: "";
    display: table;
}

.menu-top a {
    padding: 10px 20px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 15px;
    line-height: 15px;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    -ms-border-radius: 35px;
    border-radius: 35px;
    color: #9d2235;
}

.menu-top a:hover {
    background-color: #fcb040;
    color: #fff;
}

.menu-top li {
    float: left;
    margin-right: 5px;
    padding-right: 5px;
    position: relative;
}

.menu-top li:after {
    content: '';
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    width: 1px;
    height: 15px;
    border-right: 1px dashed #c6c6c6;
}

.menu-top li.current a {
    background-color: #fcb040;
    color: #9d2235;
}

.menu-top li:last-child {
    margin-right: 0;
    padding-right: 0;
}

.menu-top li:last-child:after {
    display: none;
}

@media (max-width:767px) {
    .menu-top li {
        float: none;
        margin-right: 0;
        padding-right: 0;
        display: inline;
    }

    .menu-top li:after {
        display: none;
    }

    .menu-top li a {
        display: inline-block;
        font-size: 11px;
    }
}

.navigation {
    box-shadow: 0px 3px 3px rgba(0, 0, 0, .2);
    position: relative;
    z-index: 3;
    background-color: #f9f9f9;
}

z {}

nav.navigation {}

nav.navigation {}

.ps-section {
    padding: 30px 0;
}

.ps-section__header {
    position: relative;
    margin-bottom: 45px;
    padding-bottom: 25px;
}

.ps-section__header:before {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0; 
    width: 70px;
    height: 5px;
    background-color: #9C283B;
}

.ps-section__header p {
    margin-bottom: 0;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.3em;
    color: #343434;
}

.ps-section__title {
    margin-bottom: 20px;
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
    font-size: 35px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: .8em;
    color: #343434;
}

.ps-section__content p {
    margin-bottom: 25px;
    color: #777;
}

.ps-section__content p strong {
    color: #303030;
}

.ps-section__content p.has-icon {
    margin-bottom: 15px;
}

.ps-section__content p.has-icon i.fa {
    margin-right: 5px;
    font-size: 10px;
    color: #9d2235;
}

.ps-section__content h4 {
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 700;
    font-size: 25px;
    color: #9d2235;
}

@media (max-width:767px) {
    .ps-section {
        padding: 30px 0;
    }

    .ps-section__title {
        margin-bottom: 10px;
        font-size: 24px;
    }

    .ps-section__header {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
}

.ps-hero img {
    width: 100%;
}

.ps-section--media .year-list {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 18px;
    color: #343434;
}

.ps-section--media .year-list a {
    display: inline-block;
    margin-right: 10px;
    padding-right: 10px;
}

.ps-section--media .year-list a:after {
    content: '';
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    width: 0;
    height: 15px;
    border-right: 1px solid #343434;
}

.ps-section--media .year-list a:hover {
    color: #9d2235;
}

.ps-section--media .year-list a.active {
    color: #9d2235;
    font-weight: 700;
}

.ps-section--media .year-list a:first-child {
    margin-left: 15px;
}

.ps-section--media .year-list a:last-child:after {
    border-right: none;
}

@media (max-width:767px) {
    .ps-section--media .year-list {
        font-size: 14px;
    }
}

.ps-section--home-blog .ps-section__header {
    padding-bottom: 0;
    margin-bottom: 50px;
}

.ps-section--home-blog .ps-section__header:before {
    display: none;
}

.ps-section--home-blog .ps-section__title {
    margin-bottom: 15px;
    font-size: 28px;
}

.ps-section--home-blog .ps-btn--morelink {
    margin-top: 10px;
}

.ps-section--intro {
    padding: 45px 0 50px;
    background-color: #9d2235;
}

.ps-section--intro h3 {
    margin-bottom: 30px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: 32px;
    line-height: 1em;
}

.ps-section--intro a {
    float: right;
    display: inline-block;
    padding: 10px 30px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    color: #fff;
    border: 1px solid #fff;
    line-height: 20px;
    text-transform: uppercase;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    border-radius: 40px;
}

.ps-section--intro a:hover {
    background-color: #fcb040;
    border-color: #fcb040;
}

.ps-section--intro p {
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    float: left;
    max-width: calc(100% - 180px);
}

@media (max-width:1199px) {
    .ps-section--intro h3 {

        margin-bottom: 20px;
    }


    .ps-section--intro p {
        max-width: 100%;
        float: none;
    }

    .ps-section--intro a {
        float: none;
        margin-top: 15px;
    }
}

.ps-section--baner .ps-banner {
    position: relative;
}

.ps-section--baner .ps-banner img {
    width: 100%;
}

.ps-section--baner .ps-banner .ps-banner__content {
    width: 1170px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.ps-section--baner .ps-banner h2 {
    display: block;
    margin-bottom: 30px;
    font-family: arial, sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: 65px;
}

.ps-section--baner .ps-banner h2 span {
    display: block;
    font-family: "Helvetica", sans-serif;
    font-size: 55px;
    color: #fcb040;
    font-weight: 300;
    line-height: 1.3em;
}

.ps-section--baner .ps-banner .ps-btn {
    color: #fff;
}

.ps-section--baner .owl-slider {
    position: relative;
}

.ps-section--baner .owl-slider .owl-dots {
    position: absolute;
    bottom: 45px;
    left: 0;
    width: 100%;
    height: 0;
    text-align: center;
    z-index: 1000;
}

.ps-section--baner .owl-slider .owl-dot {
    display: inline-block;
    margin-right: 5px;
    width: 16px;
    height: 16px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    border: 1px solid #fff;
    background-color: transparent;
    vertical-align: middle;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.ps-section--baner .owl-slider .owl-dot:hover {
    background-color: #fff;
}

.ps-section--baner .owl-slider .owl-dot.active {
    width: 18px;
    height: 18px;
    background-color: #fff;
}

@media (max-width:1199px) {
    .ps-section--baner .ps-banner .ps-banner__content {
        width: 100%;
        padding: 0 30px;
    }

    .ps-section--baner .ps-banner h2 {
        line-height: 1.1em;
        font-size: 50px;
    }

    .ps-section--baner .ps-banner h2 span {
        font-size: 40px;
        line-height: 1.1em;
    }
}

@media (max-width:767px) {
    .ps-section--baner .owl-slider .owl-dot {
        display: none;
    }

    .ps-section--baner .ps-banner .ps-banner__content {
        padding: 0 15px;
    }

    .ps-section--baner .ps-banner h2 {
        margin-bottom: 10px;
        font-size: 28px;
    }

    .ps-section--baner .ps-banner h2 span {
        font-size: 24px;
    }
}

@media (max-width:479px) {
    .ps-section--baner .ps-banner h2 {
        margin-bottom: 10px;
        font-size: 16px;
        line-height: 1.5em;
    }

    .ps-section--baner .ps-banner h2 span {
        font-size: 14px;
    }

    .ps-section--baner .ps-btn {
        padding: 5px 20px;
        font-size: 12px;
    }
}

.ps-stores ul.ps-store-list {
    margin-bottom: 50px;
    display: block;
    border-radius: 50%;
    display: -webkit-flex;
    -webkit-justify-content: space-around;
    display: flex;
    justify-content: space-around;
}


.ps-stores ul.ps-store-list::after {
    clear: both;
    content: "";
    display: table;
}

.ps-stores ul.ps-store-list a {
    display: block;
    padding: 10px 0;
    font-family: arial, sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    line-height: 20px;
    background-color: #9d2235;
    border-right: 3px solid #fff;
}

.ps-stores ul.ps-store-list a:hover {
    color: #fcb040;
}

.ps-stores ul.ps-store-list li {
    text-align: center;
    float: left;
    width: 25%;
}

.ps-stores ul.ps-store-list li:first-child a {
    -webkit-border-radius: 40px 0 0 40px;
    -moz-border-radius: 40px 0 0 40px;
    -ms-border-radius: 40px 0 0 40px;
    border-radius: 40px 0 0 40px;
}

.ps-stores ul.ps-store-list li.current a {
    color: #fcb040;
}

.ps-stores ul.ps-store-list li:last-child a {
    -webkit-border-radius: 0 40px 40px 0;
    -moz-border-radius: 0 40px 40px 0;
    -ms-border-radius: 0 40px 40px 0;
    border-radius: 0 40px 40px 0;
}

@media (max-width: 767px) {
    .ps-stores ul.ps-store-list {
        display: block;
    }
    .ps-stores ul.ps-store-list li {
        width: 100% !important;
    }
    .ps-stores ul.ps-store-list li a:first-child,
    .ps-stores ul.ps-store-list li a:last-child {
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        border-radius: 0;
    }
}

.ps-stores .ps-store {
    margin-bottom: 50px;
    padding-bottom: 15px;
    border-bottom: 1px solid #dedede;
}

.ps-stores .ps-store .ps-store__name {
    margin-bottom: 15px;
    display: block;
    padding: 10px 20px;
    background-color: #9d2235;
}

.ps-stores .ps-store .ps-store__name p {
    margin-bottom: 0;
    font-family: arial, sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    line-height: 20px;
}

.ps-stores .ps-store .ps-store__content p {
    padding: 10px 20px;
    margin-bottom: 0;
    line-height: 20px;
}

.ps-stores .ps-store .ps-store__content p.tel {
    background-color: #eee;
}

.ps-stores .ps-store .ps-store__content p.tel span {
    margin-right: 5px;
    font-weight: 700;
    color: #303030;
}

.ps-stores .ps-store .ps-store__content p.open span {
    display: block;
    margin-right: 5px;
    font-weight: 700;
    color: #303030;
}
.ps-store .ps-store__content .wpb_content_element {
    margin-bottom:  0;
}
.ps-contact .form-control {
    height: 45px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    border: 1px solid #dedede;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    box-shadow: none;
    color: #777;
    font-family: arial, sans-serif;
    font-size: 14px;
    padding: 0 20px;
}

.ps-contact .form-control::-webkit-input-placeholder {
    color: #777;
}

.ps-contact .form-control::-moz-placeholder {
    color: #777;
}

.ps-contact .form-control:-moz-placeholder {
    color: #777;
}

.ps-contact .form-control:-ms-input-placeholder {
    color: #777;
}

.ps-contact .form-control:focus {
    border-color: #9d2235;
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    box-shadow: none;
}

.ps-contact textarea.form-control {
    height: auto;
    padding: 10px 20px;
}

.ps-contact select.form-control {
    padding: 0;
    text-indent: 20px;
}

.ps-contact .form-group.required {
    position: relative;
}

.ps-contact .form-group.required:before {
    content: '*';
    color: #9d2235;
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 14px;
}

.ps-thankyou .ps-section__header {
    margin-bottom: 20px;
    padding-bottom: 30px;
}

.ps-thankyou .ps-section__title {
    font-size: 60px;
    margin-bottom: 10px;
}

.ps-thankyou .ps-section__content {
    text-align: center;
}

.ps-thankyou .ps-section__content p {
    margin-bottom: 15px;
}

.ps-thankyou .ps-list--circle li {
    display: inline-block;
    margin-right: 10px;
}

.ps-thankyou .ps-list--circle li a:hover {
    color: #9d2235;
}

.ps-thankyou .ps-list--circle li.current a {
    color: #9d2235;
}

@media (max-width:991px) {
    .ps-thankyou {
        text-align: center;
    }
}

@media (max-width:767px) {
    .ps-thankyou .ps-section__title {
        font-size: 40px;
    }

    .ps-thankyou .ps-section__header p {
        font-size: 14px;
    }
}

@media (max-width:479px) {
    .ps-thankyou .ps-section__title {
        font-size: 20px;
    }
}

.ps-sidebar__header {
    background-color: #9d2235;
    padding: 10px 20px;
}

.ps-sidebar__header p {
    margin-bottom: 0;
    font-family: arial, sans-serif;
    font-size: 14px;
    color: #fff;
    font-weight: 700;
}

.ps-sidebar .ps-list--circle li {
    border-bottom: 1px solid #dedede;
    margin: 0;
}

.ps-sidebar .ps-list--circle li:before {
    top: 50%;
    left: 20px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.ps-sidebar .ps-list--circle li a {
    padding: 10px 20px;
    display: block;
    line-height: 20px;
    margin-left: 0px;
    color: #777;
}

.ps-sidebar .ps-list--circle li:hover {
    background-color: #eee;
}

.ps-sidebar .ps-list--circle li:hover a {
    color: #9d2235;
    text-decoration: none;
}

.ps-sidebar .ps-list--circle li.current {
    background-color: #eee;
}

.ps-sidebar .ps-list--circle li.current a {
    color: #3d3d3d;
    font-weight: 700;
}

.ps-private__header {
    padding-bottom: 40px;
    border-bottom: 1px solid #dedede;
}

.ps-private__header::after {
    clear: both;
    content: "";
    display: table;
}

.ps-private__header .form-group {
    display: inline-block;
    max-width: 160px;
    float: left;
}

.ps-private__header .form-group .form-control {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
}

.ps-private__header .form-group .form-control:focus {
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    box-shadow: none;
    border-color: #9d2235;
}

.ps-private__header .ps-pagination {
    padding-top: 0;
    display: inline-block;
    float: right;
}

.ps-private__content {
    padding: 60px 0;
    border-bottom: 1px solid #dedede;
}

@media (max-width:767px) {
    .ps-private__content .col-xs-12 {
        width: 50%;
    }
}

@media (max-width:479px) {
    .ps-private__content .col-xs-12 {
        width: 100%;
    }
}



/* Modules */

.header {
    background-color: #f9f9f9;
    border-top: 0px solid #fcb040;
	 
    box-shadow: 0px 3px 3px rgba(0, 0, 0, .2);
}

.header::after {
    clear: both;
    content: "";
    display: table;
}

.header .menu-toggle {
    display: none;
}

.header .ps-logo {
    position: relative;
    top: 15px;
}

.header .header__left {
    float: left;
    width: 320px;
}

.header .header__right {
    padding-top: 30px;
    padding-bottom: 30px;
    float: right;
    width: calc(100% - 320px);
    text-align: right;
}

.header .container {
    position: relative;    
	z-index:20;
}

.header .container-fluid {
    position: relative; 
    box-shadow: 1px 1px 10px rgba(0,0,0,0.15); padding-left:0px; padding-right:0px;
}

.header .header__language {
    position: absolute;
    top: 0;
    right: 15px;
    background-color: #fcb040;
    padding: 0 20px;
}

.header .header__language::after {
    clear: both;
    content: "";
    display: table;
}

.header .header__language a {
    font-family: arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 15px;
    text-transform: uppercase;
    color: #fff;
}

.header .header__language a:hover {
    color: #9d2235;
    text-decoration: underline;
}

.header .header__language li {
    float: left;
    position: relative;
    margin-right: 10px;
    padding: 5px 0;
    padding-right: 10px;
}

.header .header__language li:after {
    content: '';
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    width: 1px;
    height: 15px;
    background-color: #fff;
}

.header .header__language li:last-child {
    margin-right: 0;
    padding-right: 0;
}

.header .header__language li:last-child:after {
    display: none;
}

.header .header__language li.active a {
    color: #9d2235;
    font-weight: 700;
    text-decoration: underline;
}

@media (max-width:1199px) {
    .header .header__left,
    .header .header__right {
        width: 100%;
        text-align: center;
    }

    .header .header__right {
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 0;
        text-align: right;
    }

    .header .ps-logo {
        top: 0;
        display: block;
        padding-top: 20px;

        text-align: left;
    }

    .header .navigation {
        position: relative;
        padding: 0;
    }

    .header .navigation .container {
        position: static;
    }

    .header .menu-toggle {
        position: absolute;
        bottom: 100%;
        right: 15px;
        display: inline-block;
        background-color: #9d2235;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        border-radius: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .header .menu-toggle:before,
    .header .menu-toggle:after,
    .header .menu-toggle span {
        background-color: #fff;
    }
}

.ps-footer {
    position: relative;
    padding-top: 45px;
}

.ps-footer__column {
    float: left;
    width: 20%;
    margin-bottom: 40px;
}

.ps-footer__column h3 {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    color: #fff;
    font-size: 18px;
}

@media (max-width:1199px) {
    .ps-footer__column {
        width: 25%;
    }
}

@media (max-width:991px) {
    .ps-footer__column {
        width: calc(100% /3);
    }
}

@media (max-width:767px) {
    .ps-footer__column {
        width: 50%;
    }
}

@media (max-width:479px) {
    .ps-footer__column {
        width: 100%;
    }
}

.ps-copyright {
    background-color: #801727;
    padding: 15px 0;
}

.ps-copyright .ps-copyright__list {
    display: inline-block;
}

.ps-copyright .ps-copyright__list::after {
    clear: both;
    content: "";
    display: table;
}

.ps-copyright .ps-copyright__list li {
    position: relative;
    float: left;
    margin-right: 10px;
    padding-right: 10px;
}

.ps-copyright .ps-copyright__list li:after {
    content: '';
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    width: 0px;
    height: 15px;
    border-right: 1px solid #fff;
}

.ps-copyright .ps-copyright__list li:last-child:after {
    display: none;
}

.ps-copyright .ps-copyright__list a {
    font-family: arial, sans-serif;
    font-size: 13px;
    color: #fff;
    font-weight: 400;
    line-height: 25px;
}

.ps-copyright .ps-copyright__list a:hover {
    color: #fcb040;
}

.ps-copyright p {
    margin-bottom: 0;
/*    text-align: right;*/
    font-family: arial, sans-serif;
    font-size: 13px;
    color: #fff;
    line-height: 25px;
}

@media (max-width:991px) {
    .ps-copyright {
        text-align: center;
    }

    .ps-copyright p {
        text-align: center;
    }
}

#facebook-icon {
    width: 47px;
    vertical-align: top;
    margin: 5px 0 0;
}

#instagram-icon {
   width: 47px;
    vertical-align: top;
    margin: 5px 0 0 10px;
}


/* Effects */


/* ------------OVEWRITE--------------- */

html .bg--parallax {
    position: relative;
    z-index: 10;
    background-attachment: fixed !important;
    background-repeat: no-repeat !important;
    background-position: 50% 50%;
    background-size: cover !important;
}

.bg--cover {
    background-position: 50% 50% !important;
    background-size: cover !important;
	background:#777777;
}

.bg--overlay {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.5;
    background-color: #000;
    z-index: -5;
}

.margin-0 {
    margin: 0;
}

.mt-0 {
    margin-top: 0px;
}

.mt-5 {
    margin-top: 5px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-25 {
    margin-top: 25px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-35 {
    margin-top: 35px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-45 {
    margin-top: 45px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-55 {
    margin-top: 55px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-65 {
    margin-top: 65px;
}

.mt-70 {
    margin-top: 70px;
}

.mt-75 {
    margin-top: 75px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-85 {
    margin-top: 85px;
}

.mt-90 {
    margin-top: 90px;
}

.mt-95 {
    margin-top: 95px;
}

.mt-100 {
    margin-top: 100px;
}

.mr-0 {
    margin-right: 0px;
}

.mr-5 {
    margin-right: 5px;
}

.mr-10 {
    margin-right: 10px;
}

.mr-15 {
    margin-right: 15px;
}

.mr-20 {
    margin-right: 20px;
}

.mr-25 {
    margin-right: 25px;
}

.mr-30 {
    margin-right: 30px;
}

.mr-35 {
    margin-right: 35px;
}

.mr-40 {
    margin-right: 40px;
}

.mr-45 {
    margin-right: 45px;
}

.mr-50 {
    margin-right: 50px;
}

.mr-55 {
    margin-right: 55px;
}

.mr-60 {
    margin-right: 60px;
}

.mr-65 {
    margin-right: 65px;
}

.mr-70 {
    margin-right: 70px;
}

.mr-75 {
    margin-right: 75px;
}

.mr-80 {
    margin-right: 80px;
}

.mr-85 {
    margin-right: 85px;
}

.mr-90 {
    margin-right: 90px;
}

.mr-95 {
    margin-right: 95px;
}

.mr-100 {
    margin-right: 100px;
}

.mb-0 {
    margin-bottom: 0px;
}

.mb-5 {
    margin-bottom: 5px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-35 {
    margin-bottom: 35px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-45 {
    margin-bottom: 45px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-55 {
    margin-bottom: 55px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-65 {
    margin-bottom: 65px;
}

.mb-70 {
    margin-bottom: 70px;
}

.mb-75 {
    margin-bottom: 75px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-85 {
    margin-bottom: 85px;
}

.mb-90 {
    margin-bottom: 90px;
}

.mb-95 {
    margin-bottom: 95px;
}

.mb-100 {
    margin-bottom: 100px;
}

.ml-0 {
    margin-left: 0px;
}

.ml-5 {
    margin-left: 5px;
}

.ml-10 {
    margin-left: 10px;
}

.ml-15 {
    margin-left: 15px;
}

.ml-20 {
    margin-left: 20px;
}

.ml-25 {
    margin-left: 25px;
}

.ml-30 {
    margin-left: 30px;
}

.ml-35 {
    margin-left: 35px;
}

.ml-40 {
    margin-left: 40px;
}

.ml-45 {
    margin-left: 45px;
}

.ml-50 {
    margin-left: 50px;
}

.ml-55 {
    margin-left: 55px;
}

.ml-60 {
    margin-left: 60px;
}

.ml-65 {
    margin-left: 65px;
}

.ml-70 {
    margin-left: 70px;
}

.ml-75 {
    margin-left: 75px;
}

.ml-80 {
    margin-left: 80px;
}

.ml-85 {
    margin-left: 85px;
}

.ml-90 {
    margin-left: 90px;
}

.ml-95 {
    margin-left: 95px;
}

.ml-100 {
    margin-left: 100px;
}

.padding-0 {
    padding: 0;
}

.pt-0 {
    padding-top: 0px;
}

.pt-5 {
    padding-top: 5px;
}

.pt-10 {
    padding-top: 10px;
}

.pt-15 {
    padding-top: 15px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-25 {
    padding-top: 25px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-35 {
    padding-top: 35px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-45 {
    padding-top: 45px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-55 {
    padding-top: 55px;
}

.pt-60 {
    padding-top: 60px;
}

.pt-65 {
    padding-top: 65px;
}

.pt-70 {
    padding-top: 70px;
}

.pt-75 {
    padding-top: 75px;
}

.pt-80 {
    padding-top: 80px;
}

.pt-85 {
    padding-top: 85px;
}

.pt-90 {
    padding-top: 90px;
}

.pt-95 {
    padding-top: 95px;
}

.pt-100 {
    padding-top: 100px;
}

.pr-0 {
    padding-right: 0px;
}

.pr-5 {
    padding-right: 5px;
}

.pr-10 {
    padding-right: 10px;
}

.pr-15 {
    padding-right: 15px;
}

.pr-20 {
    padding-right: 20px;
}

.pr-25 {
    padding-right: 25px;
}

.pr-30 {
    padding-right: 30px;
}

.pr-35 {
    padding-right: 35px;
}

.pr-40 {
    padding-right: 40px;
}

.pr-45 {
    padding-right: 45px;
}

.pr-50 {
    padding-right: 50px;
}

.pr-55 {
    padding-right: 55px;
}

.pr-60 {
    padding-right: 60px;
}

.pr-65 {
    padding-right: 65px;
}

.pr-70 {
    padding-right: 70px;
}

.pr-75 {
    padding-right: 75px;
}

.pr-80 {
    padding-right: 80px;
}

.pr-85 {
    padding-right: 85px;
}

.pr-90 {
    padding-right: 90px;
}

.pr-95 {
    padding-right: 95px;
}

.pr-100 {
    padding-right: 100px;
}

.pb-0 {
    padding-bottom: 0px;
}

.pb-5 {
    padding-bottom: 5px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-15 {
    padding-bottom: 15px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-25 {
    padding-bottom: 25px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-35 {
    padding-bottom: 35px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-45 {
    padding-bottom: 45px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-55 {
    padding-bottom: 55px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pb-65 {
    padding-bottom: 65px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pb-75 {
    padding-bottom: 75px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pb-85 {
    padding-bottom: 85px;
}

.pb-90 {
    padding-bottom: 90px;
}

.pb-95 {
    padding-bottom: 95px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pl-0 {
    padding-left: 0px;
}

.pl-5 {
    padding-left: 5px;
}

.pl-10 {
    padding-left: 10px;
}

.pl-15 {
    padding-left: 15px;
}

.pl-20 {
    padding-left: 20px;
}

.pl-25 {
    padding-left: 25px;
}

.pl-30 {
    padding-left: 30px;
}

.pl-35 {
    padding-left: 35px;
}

.pl-40 {
    padding-left: 40px;
}

.pl-45 {
    padding-left: 45px;
}

.pl-50 {
    padding-left: 50px;
}

.pl-55 {
    padding-left: 55px;
}

.pl-60 {
    padding-left: 60px;
}

.pl-65 {
    padding-left: 65px;
}

.pl-70 {
    padding-left: 70px;
}

.pl-75 {
    padding-left: 75px;
}

.pl-80 {
    padding-left: 80px;
}

.pl-85 {
    padding-left: 85px;
}

.pl-90 {
    padding-left: 90px;
}

.pl-95 {
    padding-left: 95px;
}

.pl-100 {
    padding-left: 100px;
}



/* ------------CUSTOM HERE---------------*/

.onlineForm .step2-item:hover .item-title {
    color: #9d2235 !important;
}

.onlineForm .input-box2 {
    padding-left: 20px;
    display: inline-block;
    vertical-align: top;
}

@media screen and (max-width:640px) {
    .onlineForm .input-box2 {
        display: block;
        margin-top: 15px;
    }
}

#online_form label {
    min-width: 50%;
}

#online_form .input-box2 {
    width: calc(50% - 20px);
}

#online_form .input-box2 input,
#online_form .input-box2 textarea {
    width: 100%;
}

.input-row .label2,
.form-group .label2 {
    min-width: 50%;
}

.input-row .gold_bars_coins,
.form-group .gold_bars_coins {
    width: calc(50% - 20px);
}

.input-row .gold_bars_coins .photo-box,
.form-group .gold_bars_coins .photo-box,
.input-row .gold_bars_coins .upload-box,
.form-group .gold_bars_coins .upload-box {
    display: inline-block;
    float: left;
}

.input-row .gold_bars_coins .photo-box,
.form-group .gold_bars_coins .photo-box {
    width: 80px;
}

.input-row .gold_bars_coins .upload-box,
.form-group .gold_bars_coins .upload-box {
    width: calc(100% - 80px);
    padding-left: 10px;
}

.form-group .gold_bars_coins .upload-box .submit-btn,
.form-group .gold_bars_coins .upload-box .ps-btn {
    display: inline-block;
    font-family: arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #777777;
    line-height: 20px;
    border: 1px solid #fcb040;
    background-color: #fcb040;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    text-transform: uppercase;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    border-radius: 40px;
    margin-top: 5px;
    font-size: 10px;
    padding: 5px 20px;
    line-height: 15px;
}

.form-group .gold_bars_coins .upload-box .submit-btn:hover,
.form-group .gold_bars_coins .upload-box .ps-btn:hover {
    color: #fff;
    background-color: #9d2235;
    border-color: #9d2235;
}

.input-row .gold_bars_coins .upload-box .ps-btn,
.form-group .gold_bars_coins .upload-box .submit-btn {
    margin-top: 5px;
    font-size: 10px;
    padding: 5px 20px;
    line-height: 15px;
}

.input-row:nth-child(3) .input-box2,
.form-group:nth-child(3) .input-box2 {
    display: block;
    padding-left: 50%;
}

.input-row:nth-child(3) .input-box2 .add-more-images,
.form-group:nth-child(3) .input-box2 .add-more-images {
    margin-top: 10px;
    margin-left: 20px;
}

@media (max-width:767px) {
    #online_form label {
        min-width: 100%;
    }

    #online_form .input-box2 {
        width: 100%;
    }

    .onlineForm .input-box2 {
        padding-left: 0;
    }

    .input-row .label2,
    .input-row .gold_bars_coins,
    .form-group .label2,
    .form-group .gold_bars_coins {
        width: 100%;
    }

    .input-row:nth-child(3) .input-box2,
    .form-group:nth-child(3) .input-box2 {
        display: block;
        padding-left: 0;
    }

    .input-row:nth-child(3) .input-box2 .add-more-images,
    .form-group:nth-child(3) .input-box2 .add-more-images {
        margin-bottom: 30px;
        margin-left: 0;
    }
}

.product-description-box figure {
    margin: 0;
    margin-bottom: 30px;
}

.product-description-box h5.Item-name {
    font-size: 16px;
    color: #981e32;
    padding: 0px;
    font-weight: 700;
    margin: 0px 0px 15px;
}

.product-description-box p {
    margin-bottom: 10px;
    color: #000;
}

.product-description-box p span {
    font-weight: 700;
}

.product-description-box .select-again a {
    color: #981e32;
    text-decoration: underline;
}

.input-row .link-btn.right a {
    display: inline-block;
    padding: 5px 20px;
    font-family: arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #777777;
    line-height: 20px;
    border: 1px solid #fcb040;
    background-color: #fcb040;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    text-transform: uppercase;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    border-radius: 40px;
}

.input-row .link-btn.right a:hover {
    color: #fff !important;
    background-color: #9d2235;
    border-color: #9d2235;
}

.textStyle1 {
    color: #000;
    margin-bottom: 10px;
}

.textStyle1 input {
    display: inline-block;
    margin-right: 5px;
}

.ps-section--page .ps-section__content p a {
    color: #981e32;
    text-decoration: none;
}

.ps-section--page .ps-section__content p a:hover {
    text-decoration: underline;
}

.input-row:after {
    content: '';
    visibility: hidden;
    display: table;
    clear: both;
}

.form-control:focus::-webkit-input-placeholder {
    color: transparent
}

.form-control:focus::-moz-placeholder {
    color: transparent
}

.form-control:focus:-moz-placeholder {
    color: transparent
}

.form-control:focus:-ms-input-placeholder {
    color: transparent
}

.sitemap {
    list-style: disc;
    padding-left: 30px;
}

.sitemap ul {
    padding-left: 30px;
    list-style: circle;
}

form.step_1 {
    margin-left: 50px;
}

@media (max-width:1199px) {
    form.step_1 {
        margin-left: 0;
    }
}

.ps-table a {
    color: #9d2235;
}

.ps-table a:hover {
    text-decoration: underline;
}

.input-box2 .checkbox {
    position: relative;
    display: block;
}

.input-box2 .checkbox input {
    position: absolute;
    visibility: hidden;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.input-box2 .checkbox label {
    position: relative;
    padding-left: 30px;
    font-family: "Montserrat", sans-serif;
    color: #737373;
    font-weight: 400;
    cursor: pointer;
}

.input-box2 .checkbox label:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0px;
    height: 20px;
    width: 20px;
    z-index: 10;
    border: 2px solid #ccc;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
}

.input-box2 .checkbox label:after {
    content: '';
    display: block;
    position: absolute;
    top: 4px;
    left: 7px;
    width: 6px;
    height: 10px;
    border: 3px solid #9d2235;
    border-top: none;
    border-left: none;
    z-index: 5;
    opacity: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.input-box2 .checkbox input[type=checkbox]:checked~label:after {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 1;
}

.input-box2 .checkbox--inline {
    display: inline-block;
}

p strong {
    font-weight: 700;
}

p strong a {
    font-weight: 700;
}

.shop_attributes {
    width: 100%;
}

.shop_attributes tbody tr {
    display: table;
}

.shop_attributes tbody tr th,
.shop_attributes tbody tr td {
    min-width: 200px;
    display: table-cell;
}



.ps-product-detail .ps-product__content>h3 {
    margin-bottom: 0;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 25px;
    color: #9d2235;
}

.ps-product-detail .ps-product__content .price span.amount {
    display: block;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #dedede;
    font-family: arial, sans-serif;
    font-weight: 700;
    color: #303030;
}

.ps-banner__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
}



/* 24-05-2017 */

.ps-section--intro h3 {
    font-size: 20px;
}

.ps-post--home .ps-post__title {
    margin-bottom: 0;
    font-size: 20px;
}

.menu>li>a {
    font-weight: 700;
}

.ps-section--baner .owl-slider .owl-dot {
    border-color: #fdb940;
}

.ps-section--baner .owl-slider .owl-dot:hover {
    color: #fff;
}

.ps-section--baner .owl-slider .owl-dot.active {
    width: 16px;
    height: 16px;
    border-color: #fff;
}

.menu>li.highlight>a {
    background-color: #fcb040;
    color: #9d2235;
}

.menu>li.highlight>a:hover {
    color: #9d2235;
    background-color: #fff;
}

.menu>li.highlight.current>a {
    color: #9d2235;
    background-color: #fff;
}

.menu>li.highlight.current>a:hover {
    color: #9d2235;
    background-color: #fff;
}

@media(max-width:480px) {
    .header .header__right {
        padding: 50px 5px 0;
    }
}

.hermes .tp-bullet {
    background-color: #fdb940;
    box-shadow: inset 0 0 0 2px #fdb940;
}

.hermes .tp-bullet:hover {
    background-color: #fff;
    box-shadow: inset 0 0 0 2px #fff;
}


        .ps-table--custom:after {
            content: '';
            visibility: hidden;
            clear:  both;
            display: table;
        }
        .ps-table--custom .ps-table__column {
            float: left;
        }
        .ps-table--custom[data-column='4'] .ps-table__column {
            width: calc(100% / 4);
        }
        .ps-table--custom .ps-table__header {
            background-color: #9d2235;
            padding:  10px 20px;
        }
        .ps-table--custom .ps-table__header h4 {
            margin-bottom:  0;
            font-family: arial, sans-serif;
            font-weight: 700;
            font-size: 14px;
            color:  #fff;
        }
        .ps-table--custom  .ps-table__column {
            border:  1px solid #ddd;
            border-right: 0;
        }
        .ps-table--custom  .ps-table__column:last-child {
            border-right:  1px solid #ddd;
        }
        .ps-table--custom .ps-table__content {
            padding:  20px;
        }
        @media (max-width: 767px) {
            .ps-table--custom  .ps-table__column {
                position: relative;
                width: 100% !important;
                float: none;
                border-right:  1px solid #ddd;
            }
        }