/* ======= General style ======= */
html,
body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-smoothing: antialiased;
}
body {
    color: #fff;
    line-height: 1.75em;
    font-size: 15px;
    font-family: "Didact Gothic", sans-serif;
    font-weight: 400;
    height: 100%;
    background: #101010;
}
a {
    color: #fff;
    text-decoration: none;
}
a:hover {
    color: #f5634b;
    text-decoration: none;
}
a:focus,
a:hover {
    color: #f5634b;
    text-decoration: none;
}
p {
    margin: 0 0 15px;
    color: #fff;
    line-height: 1.75em;
    font-size: 15px;
    font-family: "Didact Gothic", sans-serif;
    font-weight: 400;
}
b,
strong {
    color: #fff;
}
.js .animate-box {
    opacity: 0;
}
img {
    width: 100%;
    height: auto;
}
img {
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    color: #fff;
}
.mb-120 {
    margin-bottom: 120px;
}
.mb-90 {
    margin-bottom: 90px;
}
.mb-60 {
    margin-bottom: 60px;
}
.mb-30 {
    margin-bottom: 30px;
}


/* ======= Header style ======= */
header {
    padding: 75px 15px 30px 15px;
    background: transparent;
    text-align: center;
}
header .logo {
    width: 200px;
    margin-bottom: 20px;
}
header h2 {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    font-size: 15px;
    color: #999;
    text-align: center;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0;
}


/* ======= Content style ======= */
.content {
    padding: 75px 0 30px 0;
    background: transparent;
}
.content .item {
    position: relative;
    width: 100%;
    padding: 0;
    border: none;
    background-color: transparent;
    text-align: center;
}
.content .item h4 {
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
    font-size: 15px;
    color: #999;
    text-align: center;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0;
}
.content .item .item-img {
    position: relative;
}
.content .item .item-img .img {
    padding: 0 30px 30px 15px;
    position: relative;
}
.content .item .item-img .img img {
    position: relative;
    z-index: 2;
}
.content .item .item-img .img img:hover {
    transform: scale(0.95);
}
.content .item .img:before {
    content: '';
    position: absolute;
    top: 30px;
    right: 0;
    left: 45px;
    bottom: 0;
    background: #1b1b1b;
}


/* ======= Footer style ======= */
.bottom {
    padding: 0 0 90px 0;
    text-align: center;
}
.bottom p {
    font-family: "Didact Gothic", sans-serif;
    font-size: 14px;
    line-height: 1.5em;
    color: #999;
    text-align: center;
    font-weight: 400;
    margin: 0;
}


/* ======= Buy Double Button style ======= */
.btn-double {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 999;
}
.btn-double img { 
    position: absolute;
    left: 50%;
    top: 9px;
    margin-left: -27px;
    width: 27px;
    height: 27px;
    line-height: 25px;
    text-align: center;
    background: #fff;
    border-radius: 100%;
    padding: 5px;
}
.btn-double > a + a {
	margin-left: 0px;
}
.btn-double > a {
    display: inline-block;
    font-family: "Didact Gothic", sans-serif;
    font-size: 12px;
    font-weight: 400;
    text-decoration: none;
    transition: color .3s ease;
    color: #666;
}
.btn-double > a span {
    font-size: 11px;
    margin-right: 0px;
}
.btn-double > a:nth-of-type(1) {
    background: #222;
    color: #fff;
    border-radius: 27px 0 0 27px;
    padding: 10px 27px 8px 20px;
}
.btn-double > a:nth-of-type(1):hover {
	background: #333;
    color: #fff;
}
.btn-double > a:nth-of-type(2) {
    background: #222;
    color: #fff;
    border-radius: 0 27px 27px 0;
    padding: 10px 20px 8px 27px;
}
.btn-double > a:nth-of-type(2):hover {
	background: #333;
    color: #fff;
}