/* -------------------
    INTRO CSS 
---------------------- */
/* Google Fonts */
@import url('https://fonts.googleapis.com/css?family=Mukta:400,500|Playfair+Display:400,500&display=swap');
@import 'bootstrap.min.css';

/* General Style */
html,
body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-smoothing: antialiased;
}
html {
    font-family: 'Mukta', sans-serif;
    font-size: 15px;
    line-height: 1.75em;
    font-weight: 400;
    color: #fff;
}
body {
    font-family: 'Mukta', sans-serif;
    font-size: 15px;
    line-height: 1.75em;
    font-weight: 400;
    color: #fff;
    height: 100%;
    background: #1b1b1b;
}
p {
    font-family: 'Mukta', sans-serif;
    font-size: 15px;
    line-height: 1.75em;
    font-weight: 400;
    color: #fff;
}
h3,
.h3 {
    font-weight: 400;
    font-family: 'Mukta', sans-serif;
    font-size: 13px;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 40px;
}
h3 a,
.h3 a {
    color: inherit
}
.h3 a:hover {
    text-decoration: none
}
a {
    color: #1b1b1b;
    -webkit-transition: color .3s ease-out;
    -o-transition: color .3s ease-out;
    transition: color .3s ease-out
}
a:hover,
a:focus {
    color: #c29032;
    outline: none
}
a:focus {
    text-decoration: none
}

/* Selection */
::selection {
    background-color: #1b1b1b;
    color: #fff
}
-webkit-::selection {
    background-color: #1b1b1b;
    color: #fff
}
::-moz-selection {
    background-color: #1b1b1b;
    color: #fff
}

/* Logo */
.div-logo p {
    font-size: 13px;
    letter-spacing: 3px;
    color: #ccc;
    font-weight: 400;
    line-height: 1.75em;
    font-family: 'Mukta', sans-serif;
    text-transform: uppercase;
    margin: 5px 0 5px 0;
}
.logo {
    width: 100px;
    max-width: 100px;
    text-align: center;
    margin-bottom: 10px;
}
.brand {
    font-family: 'Playfair Display', serif;
    font-size: 27px;
    font-weight: 500;
    color: #c29032;
    margin: 0;
}

/* Background Image */
.layout {
    background: #191919 url("../img/bg.jpg") no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

/* Main */
.main {
    padding: 60px 0;
    text-align: center
}

/* Margin & Padding */
.mt-60 {
    margin-top: 60px;
}
.mb-60 {
    margin-bottom: 60px;
}

.mb-30 {
    margin-bottom: 30px;
}

/* Demo Hover */
.demo-hover figure {
    position: relative
}
.demo-hover figure img {
    display: block
}
.demo-hover figcaption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}
.demo-hover figcaption .inner {
    position: absolute;
    top: 50%;
    width: 100%;
    text-align: center;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%)
}
.demo-hover figure:hover figcaption {
    opacity: 1
}

/* Button */
.btn {
    font-family: "Mukta", sans-serif;
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1.5em;
    background: #c29032;
    color: #fff;
    border: 1px solid #c29032;
    border-radius: 30px;
    text-decoration: none;
    -webkit-transition: all .3s ease-out!important;
    transition: all .3s ease-out!important
}
.btn:hover,
.btn:focus {
    background: #1b1b1b;
    border: 1px solid #1b1b1b;
    color: #c29032;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none!important
}


/* Animate Box */
.js .animate-box {
    opacity: 0;
}

/* Buy now */
.duru-buy-now {
		position: fixed;
		right: 30px;
		bottom: 30px;
		z-index: 999;
	}
.duru-buy-now a {
    text-decoration: none;
}
.duru-buy-now-btn,
.duru-buy-now-btn:active,
.duru-buy-now-btn:focus {
		display: inline-flex;
		padding: 15px 27px;
		align-items: center;
		border: none;
		border-radius: 50em;
		background: #272727;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
		font-size: 13px;
		line-height: 1.5em;
		color: #fff;
		transition: all 0.3s;
	}
.duru-buy-now-btn svg {
		margin-right: 12px;
	}
.duru-buy-now-btn:hover {
		background: #c29032;
		color: #fff;
		transform: translateY(-2px);
	}
.duru-buy-now-btn:hover svg {
		fill: currentColor;
	}