/* ------------------------------------------
	Documentation Style 
------------------------------------------ */

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

/*** General Style ***/
html,
body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-smoothing: antialiased;
}
body {
    font-size: 15px;
    line-height: 1.75em;
    font-weight: 400;
    color: #777;
    font-family: 'Mukta', sans-serif;
    background: #fff url('../images/bg.jpg');
}
p {
    font-size: 15px;
    line-height: 1.75em;
    font-weight: 400;
    color: #777;
    font-family: 'Mukta', sans-serif;
}
p i {
    color: #fff;
    font-style: normal;
}
a {
    color: #c29032;
    text-decoration: none;
}
a:hover {
    color: #c29032;
    text-decoration: underline;
}
ol,
ul {
    margin-top: 0;
    margin-bottom: 30px;
}
ul {
    list-style: none;
    padding: 0;
}
li {
    padding-left: 1.5em;
    font-family: 'Mukta', sans-serif;
}
li:before {
    content: "\e64c";
    font-family: "themify";
    display: inline-block;
    margin-left: -1.5em;
    width: 1.5em;
    color: #1b1b1b;
}
b,
strong {
    font-weight: 500;
    color: #c29032;
}
hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid transparent;
}
.mb-60 {
    margin-bottom: 60px;
}


/*** Header ***/
.header {
    margin: 60px 0;
    text-align: center;
}
.header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 27px;
    font-weight: 500;
    color: #c29032;
    margin: 0;
}
.header h1 span {
    color: #fff;
}
.header h2 {
    font-size: 13px;
    letter-spacing: 3px;
    color: #999;
    font-weight: 400;
    line-height: 1.75em;
    font-family: 'Mukta', sans-serif;
    text-transform: uppercase;
    margin: 5px 0 5px 0;
}
.logo {
    width: 130px;
    max-width: 130px;
    margin-bottom: 10px;
}


/*** Title ***/
.title {
    font-size: 20px;
    line-height: 1.5em;
    color: #1b1b1b;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}
.title span {
    color: #1b1b1b;
    font-size: 15px;
    line-height: 1.5em;
    font-weight: 400;
}
.title b {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    line-height: 1.5em;
    font-weight: 500;
}


/*** Content ***/
.content {
    margin-bottom: 0px;
    padding: 60px 0;
    background: #fff;
    border-radius: 6px;
}


/*** Footer ***/
.footer-section {
    background: #1b1b1b;
}
footer p {
    color: #777;
    text-align: center;
    line-height: 1.5em;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
}


/*** toTop ***/
.toTop {
    width: 40px;
    right: 30px;
    border-radius: 6px;
    background-repeat: no-repeat;
    background-position: center 15px;
    background-color: #c29032;
    z-index: 999;
    padding: 20px 0;
    position: fixed;
    display: none;
    top: 90%;
    color: #fff;
}
.toTop-vissible {
    right: 10px;
    opacity: 1;
}
.toTop:before {
    position: absolute;
    content: "\e627";
    top: 13px;
    left: 50%;
    margin-left: -7px;
    font-size: 14px;
    display: inline-block;
    font-family: "themify";
    font-style: normal;
    font-weight: 400;
    line-height: 1;
}
.toTop:hover {
    color: #fff;
}
.toTop:focus {
    color: #fff;
}