body {
    font-family: Raleway, san-serif;
}

.section {
    width: 100%;
	
}

.section-header {
    position: relative;
    color: #fff;
    background-color: #333;
    text-align: center;
    background-image: url(./image-8.jpg); /* Change background image */
    background-position: center center;
    background-width: 100%;
    background-height: 100%;	
    z-index: 1;
}

.header-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: -1;
}

.section-header-inner {
    padding-top: 100px;
    padding-bottom: 100px;
}


.header-title {
    font-size: 100px;/* Header Title Size */
}

.header-description {
    font-size: 25px;/* Header Description Size */
}

.section-content {
    color: #333;
    margin-bottom: 40px;
    margin-top: 40px;
}

.content-title {
    font-size: 40px;
    margin-top: 50px;
    margin-bottom: 40px;
    text-align: center;
}

.section-title {
    font-size: 40px;
    margin-top: 40px;
    margin-bottom: 40px;
    text-align: center;
}

.content-item {
    margin-bottom: 60px;
}

.content-item-image {
    position: relative;
}

.content-item.new .content-item-image:before {
    content: 'NEW';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 70px;
    height: 70px;
    line-height: 70px;
    padding: 0 14px;
    font-family: "Open Sans", "Helvetica Neue", "Lucida Grande", Arial, Verdana, sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    border-radius: 50%;
    background-color: #8B41BD;
    z-index: 1;
}

.content-item-link {
    display: block;
    position: relative;
    border: 1px solid #ccc;
    background-color: #000;
    -webkit-transition: all 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition: all 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.content-item-link:before {
    content: " ";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    background-color: #000;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.content-item-link:hover {
    -webkit-box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.4);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.4);
}

.content-item-link:hover:before {
    opacity: 0.3;
}

.content-item-title {
    text-align: center;
    font-size: 24px;
    margin-top: 10px;
}
