
/*===============
Css Indexing
=================
* Base CSS

=================*/

/*=============
Base CSS 
==============*/

@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700,800,900');

.alignleft {
    float: left;
    margin-right: 15px;
}
.alignright {
    float: right;
    margin-left: 15px;
}
.aligncenter {
    display: block;
    margin: 0 auto 15px;
}
a:focus { outline: 0 solid }
img {
    max-width: 100%;
    height: auto;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 15px;
    font-weight: 600;
	color:#373737;
}
body {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}
a:hover { 
    text-decoration: none 
}
.main-menu {
    background: #ddd;
}
.boxed-btn:focus{
    outline: none;
    text-decoration: none;
}
.boxed-btn {
    color: #fff;
    background: #db3134;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 25px;
}

.boxed-btn:hover {
    color: #fff;
}
.header-area{
    padding: 100px 0;
    position: relative;
    z-index: 1;
}
.header-area:after{
    position: absolute;
    background: #000;
    width: 100%;
    height: 100%;
    content: "";
    left: 0;
    top: 0;
    opacity: .8;
    z-index: -1;
}
.header-bg{
    background: url(../img/header-bg.jpg);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}
.page-showcase {
    background: #fff;
    padding: 100px 0;
}
.header-area h1 {
    font-size: 60px;
    color: #db3134;
    text-transform: uppercase;
}

.header-area p {
    font-size: 20px;
    color: #fff;
}
.showcase-thumb {
    position: relative;
}
.showcase-thumb:after{
    background: #000;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    position: absolute;
    opacity: .6;
    transition: .5s;
    visibility: hidden;
    opacity: 0;
}
.showcase-thumb img{
    height: 250px;
}
.showcase-thumb a {
    position: absolute;
    left: 35%;
    top: 44%;
    color: #fff;
    background: #db3134;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 16px;
    transition: .5s;
    visibility: hidden;
    opacity: 0;
}
.showcase-thumb:hover:after{
    visibility: visible;
    opacity: .6;
}
.showcase-thumb:hover a{
    opacity: 1;
    visibility: visible;
    transform: scale(1.2);
    z-index: 2;
}
.single-showcase {
    margin-bottom: 50px;
}

.single-showcase h1 {
    background: #ddd;
    padding: 10px;
    font-size: 30px;
    text-transform: UPPERCASE;
}
.footer-section {
    background: #333;
    color: #fff;
    padding: 20px;
    font-size: 14px;
}
.social-links.text-right a {
    background: #db3134;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-block;
    font-size: 16px;
    text-align: center;
    padding-top: 5px;
    color: #fff;
}