@font-face {
	font-family: ZuumeRough;
	src: url(../assets/fonts/ZuumeRough/ZuumeRough-Bold.woff);
	font-weight: 700;
}
@font-face {
	font-family: Montserrat;
	src: url(../assets/fonts/Montserrat/Montserrat-Light.woff);
	font-weight: 300;
}
@font-face {
	font-family: Montserrat;
	src: url(../assets/fonts/Montserrat/Montserrat-Regular.woff);
	font-weight: 400;
}
@font-face {
	font-family: Montserrat;
	src: url(../assets/fonts/Montserrat/Montserrat-Medium.woff);
	font-weight: 500;
}
@font-face {
	font-family: Montserrat;
	src: url(../assets/fonts/Montserrat/Montserrat-SemiBold.woff);
	font-weight: 600;
}
@font-face {
	font-family: Montserrat;
	src: url(../assets/fonts/Montserrat/Montserrat-Bold.woff);
	font-weight: 700;
}
@font-face {
	font-family: Montserrat;
	src: url(../assets/fonts/Montserrat/Montserrat-ExtraBold.woff);
	font-weight: 800;
}
@font-face {
	font-family: Roboto_Slab;
	src: url(../assets/fonts/Roboto_Slab/RobotoSlab-Regular.woff);
	font-weight: 400;
}


html {
  scroll-behavior: smooth;
}
:root {
	--textcolour: #000;
	--yellow: #FFBE0C;
	--orange: #df7c58;
}
body{
	font-family: Montserrat;
}
/* General Styles */
.container{
	width: 100%;
	max-width: 1300px;
	padding: 0 20px;
	margin: 0 auto;
}
.Button, body .vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern {
	background-color: var(--yellow);
	padding: 9px 22px 8px 22px;
	color: #000;
	font-weight: 700;
	display: inline-block;
	text-transform: uppercase;
	line-height: 1.2em;
	background-image: none;
	border: 0;
	border-radius: 0;
	font-size: 16px;
}
.Button:hover, body .vc_btn3.vc_btn3-color-grey.vc_btn3-style-modern:hover{
	background-color: var(--orange);
	color: #fff;
}
body .vc_general.vc_btn3.vc_btn3-size-lg.vc_btn3-shape-rounded.vc_btn3-style-modern.vc_btn3-color-grey{
	font-size: 20px;
}
/* End General Styles */
/* Font Style */
h1, h2, h3, h4, h5, h6{
	font-family: ZuumeRough;
	color: var(--textcolour);
	margin-bottom: 20px;
	font-weight: 700;
}
h1{
	font-size: 90px;
}
h2{
	font-size: 80px;
}
h3{
	font-size: 70px;
}
h4{
	font-size: 60px;
}
h5{
	font-size: 50px;
}
h6{
	font-size: 40px;
}
p, li, a, td, th {
	font-size: 16px;
	line-height: 1.6em;
	font-weight: 400;
	color: var(--textcolour);
}
img {
	max-width: 100%;
	height: auto;
}
p, ul, ol, table{
	margin-bottom: 20px;
}
p:last-child{
	margin-bottom: 0;
}
blockquote{
	margin-bottom: 20px;
}
blockquote p {
	font-weight: 600;
	font-size: 20px;
	line-height: 1.4em;
}
ul, ol {
	padding-left: 20px;
	margin-top: -10px;
}
ul{
	list-style-type: disc;
}
ol{
	list-style-type: decimal;
}
ul ul, ol ol, ul ol, ol ul{
	margin-bottom: 0;
	margin-top: 0;
}
strong{
	font-weight: 600;
}
table{
	width: 100%;
}
table th {
	background-color: #999999;
	color: #000;
	font-weight: 600;
	text-align: left;
}
table th, table td{
	padding: 5px;
	border: 1px solid #999;
}
table tr:nth-child(2n){
	background-color: #eee;
}
a, i{
	transition: all .5s ease-in-out;
}
a{
	color: var(--orange);
	text-decoration: none;
}
a:hover{
	color: #000;
}
