/* Sub page */

.sub-banner {
    height: 40vh;
    position: relative;
}

.sub-banner .banner {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.sub-banner .banner .filter {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.sub-banner .banner .filter::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background: rgba(35,42,53, .35);
}

.sub-banner .banner .filter::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    background: url(img/bg-trans.png);
    opacity: .4;
}

.sub-banner .container h1 {
    font-family: 'AquawaxPro-UltraBold', sans-serif;
    color: #fff;
    font-size: 60px;
    letter-spacing: 1px;
    line-height: 1.1;
    font-weight: 700;
}


/* Content */

.main-content {
    background: url(img/bg2.png) no-repeat;
    background-size: auto;
    background-position: bottom center;
}

.main-content .content {
    border-left: 1px solid #eee;
}

.main-content .content .img-style-left {
    float: left !important;
    margin-right: 45px;
    margin-bottom: 30px;
    position: relative;
}

.main-content .content .img-style-left img {
    position: relative;
    z-index: 1;
    border: 1px solid;
}

.main-content .content .img-style-left:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #b21a22;
    left: 19px;
    top: 14px;
}

.main-content .content .img-style-right {
    float: right !important;
    margin-left: 30px;
    margin-bottom: 30px;
    position: relative;
    margin-right: 20px;
}

.main-content .content .img-style-right img {
    position: relative;
    z-index: 1;
    border: 1px solid;
}

.main-content .content .img-style-right:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #b21a22;
    left: 19px;
    top: 14px;
}

table.table_two_columns td:first-child {
    padding-right: 15px;
}

table.table_two_columns td:last-child {
    padding-left: 15px;
}

.main-content .content h1:first-letter,
.main-content .content h2:first-letter,
.main-content .content h3:first-letter {
    color: #b21a22;
}

.main-content .content h1,
.main-content .content h2,
.main-content .content h3 {
    text-transform: capitalize;
}

.main-content .content .clear-p {
    display: block;
    clear: both;
    content: "";
}

.main-content .content strong {
    font-family: 'AquawaxPro-UltraBold', sans-serif;
}

/* Sidebar */

#sticky-div.sticky {
    position: sticky;
    top: 100px;
}

#sticky-div {
    z-index: 1;
    position: relative;
}

.sidebar {
    background: #fff;
    border-bottom: 3px solid #b21a22 !important;
    border: 1px solid #eee;
    -webkit-box-shadow: 0px 2px 6px 1px rgba(0,0,0,0.05); 
    box-shadow: 0px 2px 6px 1px rgba(0,0,0,0.05);
}

.sidebar p {
    font-weight: 600;
}


/* Featured */

a.featured {
    display: block;
    height: 100%;
    position: relative;
    padding: 10px;
    text-decoration: none !important;
    transform: scale(1);
    transition: .3s;
}

a.featured:hover {
    transform: scale(1.05);
    transition: .3s;
}

a.featured .img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #f8f8f8;
    border:  1px solid #ddd;
    border-bottom: 8px solid #b21a22;
}

a.featured .inner {
    padding: 50px 20px;
    position: relative;
    z-index: 4;
}

a.featured .inner h5 {
    margin-bottom: 0;
    text-decoration: none;
}

a.featured:hover .inner h5 {
    text-decoration: none !important;
}

a.featured .arrow {
    position: absolute;
    z-index: 3;
    bottom: 10px;
    right: 18px;
    font-size: 30px;
    color: #b21a22;
    transform: scale(1);
    transition: .3s;
}

a.featured:hover .arrow {
    transform: scale(1.15);
    transition: .3s;
}


/* Breadcrumb */

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
    margin-top: 40px;
    padding-top: 10px;
    border-top: 1px solid #ddd !important;
    color: #aaa;
}

.breadcrumb ul {
    padding-left: 0;
  margin-left: 0;
}

.breadcrumb ul li {
    display: inline-block;
    margin-bottom: 0;
    margin-right: 4px;
}

.breadcrumb ul li:first-child {
  display: none;
}

.breadcrumb ul li a {
    display: block;
    color: #888;
    line-height: 1;
}

.breadcrumb ul li a i {
    color: #888;
    margin-right: 3px;
}

.breadcrumb a.home-link {
    color: #888;
    margin-right: 5px;
}

.breadcrumb a:hover {
  color: #b21a22;
  text-decoration: none;
}

.breadcrumb .current {
  color: #b21a22;
}