﻿@charset "utf-8";
/*******************************************************************************************************
	Note: This is set of CSS rules that resets the styling of all HTML elements to a consistent baseline.
										***//*** Created By:- MUKESH(HTML DEVELOPER)***//***
********************************************************************************************************/

* {
	padding:0;
	margin:0;
}

*, *::after, *::before {
	-webkit-box-sizing:border-box; 
	   -moz-box-sizing:border-box; 
	        box-sizing:border-box;
}

html {
	font-family: sans-serif;
  line-height: 1.15;
	-webkit-text-size-adjust:100%;
	    -ms-text-size-adjust:100%;
	        text-size-adjust:100%;
	-webkit-font-smoothing:antialiased;
	   -moz-font-smoothing:antialiased;
	        font-smoothing:antialiased;
}

@-ms-viewport {
  width: device-width;
}

body {
	padding:0;
	margin:0;
	font-family: 'Montserrat', sans-serif;
	font-size:1rem;
  font-weight:400;
  line-height:1.5;
  color:var(--body-text-color);
}

html, body {
	min-height: 100%;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	/*background:transparent;*/
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section { 
	display:block;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
	margin-bottom: 1rem;
  font-family: inherit;
  font-weight: 600;
  line-height: 1.2;
  color: inherit;
}

h1, .h1 {
  font-size: 2.5rem;
}
h2, .h2 {
  font-size: 2rem;
}
h3, .h3 {
  font-size: 1.75rem;
}
h4, .h4 {
  font-size: 1.5rem;
}
h5, .h5 {
  font-size: 1.25rem;
}
h6, .h6 {
  font-size: 1rem;
}

h1 small, h2 small, h3 small,
.h1 small, .h2 small, .h3 small {
	font-weight:normal;
	font-size:75%;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol, ul {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol, ul ul, ol ul, ul ol {
  margin-bottom: 0;
}

blockquote {
  margin: 0 0 1rem;
}

a { 
	color:var(--anchor-base);
	background-color:transparent;
	cursor:pointer;
	font-weight:500;
	text-decoration:none;
	-webkit-transition:all 0.15s ease-in-out;
		 -moz-transition:all 0.15s ease-in-out;
					transition:all 0.15s ease-in-out;

}

a:active, a:hover {
	outline: 0;
}

a:hover {
	color:var(--anchor-hover);
}

b, 
strong,
.b, 
.strong {
	font-weight: 600;
}

small,
.small {
	font-size: 80%;
}

sub, sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

mark {
	background-color:#ff9;
	font-style:italic;
	font-weight:600;
}

del {
	text-decoration:line-through;
}

img {
	border:none;
	vertical-align: middle;
	max-width:100%;
}

img.circle {
	border-radius:50%;
}

a img {
	border:none;
	outline:none;
}

:focus {
	outline:none;
}

hr {
	box-sizing: content-box;
  height: 0;
  overflow: visible;
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid var(--border-default);
}

:root {
	/*text-color*/
	--text-white: #fff;
	--text-gray: #b5b5b5;
	--text-black: #000;
	--text-primary: #f2efe8;
	--text-secondary: #b7a660;
	--text-success: #28a745;
  --text-danger: #dc3545;
	--text-warning: #ffc107;
	--text-info: #17a2b8;
	--text-muted: #c7c7c7;
	--body-text-color: #6a6a6a;
	/*background*/
	--bg-white: #fff;
	--bg-gray: #ededef;
	--bg-black: #282329;
  --bg-primary: #f2efe8;
  --bg-secondary: #b7a660;
	--bg-success: #d4edda;
  --bg-danger: #f8d7da;
  --bg-warning: #fff3cd;
  --bg-info: #d1ecf1;
	--bg-muted: #f6f6f6;

	/*border*/
	--border-default: #dadada;
	--border-white: #ffffff;
	--border-primary: #f2efe8;
  --border-secondary: #b7a660;
	--border-success: #c3e6cb;
  --border-danger: #f5c6cb;
  --border-warning: #ffeeba;
  --border-info: #bee5eb;
	--border-muted: #d2d2d2;
	/*anchor*/
	--anchor-base: #b7a660;
	--anchor-hover: #282329;
	/*media query breakpoint*/
	--breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
}