
/*------------------------------------*\
    11. PRICING SECTION
\*------------------------------------*/
.pricing--section {
    position: relative;
    z-index: 0;
}

.pricing--section .section--title,
.pricing--section .section--title .h2 {
    color: #fff;
}

.pricing--section .section--title .h2:before,
.pricing--section .section--title .h2:after {
    background-color: #fff;
}

.pricing--section .row > div {
    position: static;
}

/* 11.1. PRICING BACKGROUND IMAGE */
.pricing--bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
}

/* 11.2. PRICING ITEM */
.pricing--item {
    margin-bottom: 60px;
    -webkit-transition: box-shadow .25s ease-in-out;
    transition: box-shadow .25s ease-in-out;
    text-align: center;
}

.pricing--item:hover,
.pricing--item.active {
    box-shadow: 0 5px 25px rgba(17, 158, 230, 0.2);
}

.pricing--item .header {
    position: relative;
    color: #fff;
    border-style: solid;
    border-width: 1px 1px 0;
    border-color: transparent;
    -webkit-transition: border-color .25s;
    transition: border-color .25s;
    z-index: 0;
}

.pricing--item:hover .header,
.pricing--item.active .header {
    border-color: #C58D24;
}

.pricing--item .header:before {
    content: " ";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background-color: #C58D24;
    opacity: 0.2;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
    z-index: -1;
}

.pricing--item .header .h5 {
    position: relative;
    margin: 0;
    padding: 33px 20px 22px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing--item .header .h5:before {
    content: " ";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    width: 1px;
    height: 9px;
    margin: 0 auto;
    background-color: #fff;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
}

.pricing--item .header .price {
    padding: 27px 20px 12px;
}

.pricing--item .header .price strong {
    font-size: 36px;
    line-height: 36px;
    vertical-align: top;
}

.pricing--item .features {
    background-color: #fff;
    border-style: solid;
    border-width: 0 1px;
    border-color: #f2f2f2;
    -webkit-transition: border-color .25s;
    transition: border-color .25s;
}

.pricing--item:hover .features,
.pricing--item.active .features {
    border-color: #C58D24;
}

.pricing--item .features ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.pricing--item .features ul li {
    padding: 14px 20px 16px;
    color: #393939;
    font-weight: 400;
}

.pricing--item .features ul li:nth-child(2n) {
    background-color: #f5f5f5;
}

.pricing--item .features ul li:nth-child(2n):last-child {
    margin-bottom: 20px;
}

.pricing--item .action {
    padding: 20px 0 40px;
    background-color: #fff;
    border-style: solid;
    border-width: 0 1px 1px;
    border-color: #f2f2f2;
    -webkit-transition: border-color .25s;
    transition: border-color .25s;
}

.pricing--item:hover .action,
.pricing--item.active .action {
    border-color: #C58D24;
}

.pricing--item .action .btn {
    -webkit-transition-property: color, border-color, background-color, box-shadow;
    transition-property: color, border-color, background-color, box-shadow;
    -webkit-transition-duration: .25s;
            transition-duration: .25s;
    -webkit-transition-timing-function: ease, ease, ease-in-out, ease-in-out;
            transition-timing-function: ease, ease, ease-in-out, ease-in-out;
}

.pricing--item:hover .action .btn,
.pricing--item.active .action .btn {
    color: #fff;
    background-color: #C58D24;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/*------------------------------------*\
    12. PRICING TABLE SECTION
\*------------------------------------*/
.pricing-table {
    position: relative;
    margin: -10px -30px;
    z-index: 0;
}

.pricing-table:before {
    content: " ";
    position: absolute;
    top: 10px;
    left: 30px;
    right: 30px;
    height: 72px;
    background: -webkit-linear-gradient(#C58D24 100%, transparent 100%);
    background: linear-gradient(#C58D24 100%, transparent 100%);
    border-radius: 25px 25px 0 0;
    opacity: 0.2;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
    z-index: -1;
}

.pricing-table:after {
    content: " ";
    position: absolute;
    top: 82px;
    left: 30px;
    right: 30px;
    bottom: 10px;
    background: url(img/pricing-table-img/white-stripe.png);
    border-radius: 0 0 6px 6px;
    opacity: 0.2;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
    z-index: -1;
}

.pricing-table .table {
    margin-bottom: 0;
    border-collapse: separate;
    border-spacing: 30px 10px;
    table-layout: fixed;
    text-align: center;
}

.pricing-table .table thead tr th,
.pricing-table .table tbody tr td {
    padding: 0;
    border: 0;
}

.pricing-table .table thead tr th {
    padding: 23px 20px 21px;
    color: #fff;
    background-color: #C58D24;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
}

.pricing-table .table thead tr th:first-child {
    border-top-left-radius: 10px;
}

.pricing-table .table thead tr th:last-child {
    border-top-right-radius: 10px;
}

.pricing-table .table tbody tr td {
    padding: 10px;
    color: #333;
    background-color: #f7f7f7;
    font-size: 16px;
    line-height: 26px;
    vertical-align: middle;
    text-transform: uppercase;
}

.pricing-table .table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 2px;
}

.pricing-table .table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 2px;
}

.pricing-table .table tbody tr td .btn {
    width: 100%;
    max-width: 126px;
    padding-left: 0;
    padding-right: 0;
}

/*------------------------------------*\