::-webkit-scrollbar-track {
	border-left: 1px solid #e0e0e0;
	margin: 0px;
}
::-webkit-scrollbar {
	width: 4px;
	background-color: #fff;
}
::-webkit-scrollbar-thumb {
	border-radius: 25px;
	background-color: #d2d3d5;
}

:root {
	--font-Barlow: "Barlow", sans-serif;
	--font-Lora: "Lora", serif;
	--font-Fira-Sans: "Fira Sans", sans-serif;
	--font-Barlow-Condensed: "Barlow Condensed", sans-serif;
	--font-Architects-Daughter: "Architects Daughter", cursive;
	--font-Inter: "Inter", sans-serif;
	--font-Roboto: "Roboto", sans-serif;
	--font-Poppins: "Poppins", sans-serif;
	--white: #FFFFFF;
	--body-text: #1B1B1B;
	--grey-light: #383838;
	--grey-medium: #B3B3B3;
	--grey-dark: #979797;
	--grey-heavy-dark: #535353;
	--black: #191919;
	/*--gold:#A58055;*/
	--green: #94C840;
	--green-light: #ECF0BF;
	--orange-bg: #FFAA30;
}

body,
html {
	/*overflow-x: hidden;*/
	font-family: var(--font-Barlow) !important;
	font-size: 16px;
	font-weight: 500;
	color: var(--grey-light);
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	/* background: var(--white); */
}
a {
	text-decoration: none;
	color: var(--black);
}
ul {
	padding-inline-start: 0;
	list-style: none;
	margin: 0;
}
h1 {
	font-size: 80px;
	font-weight: bold;
	font-family: var(--font-Lora);
	color: #1A2428;
	text-align: left;
	line-height: 80px;
}
h2 {
	font-size: 48px;
	font-weight: bold;
	color: var(--black);
	font-family: var(--font-Barlow-Condensed);
}
h3 {
	font-size: 40px;
	font-weight: bold;
	color: var(--black);
	font-family: var(--font-Barlow-Condensed);
}
p {
	color: var(--font-Barlow);
	font-size: 16px;
	font-weight: 500;
	line-height: 170%;
	color: var(--grey-light)
}
.primary-btn {
	min-width: 260px;
	min-height: 53px;
	font-size: 16px;
	text-align: center;
	text-transform: uppercase;
	border: 2px solid transparent;
	border-radius: 0;
	line-height: 250%;
	padding: 5px 10px;
	font-weight: 500;
	cursor: pointer;
}
.primary-fill-btn {
	background: var(--gold-button);
	color: var(--white);
}
.primary-fill-btn:hover {
	transition: 0.5s all;
	border-color: var(--gold-button);
}
.primary-outline-btn {
	background: transparent;
	color: var(--gold-button);
	border: 2px solid #D8D8D8;
	color: #A58055;
}
.primary-outline-btn:hover {
	transition: 0.5s all;
	background: var(--gold-button);
	border-color: var(--gold-button);
	color: var(--white);
}

#back_to_top {
	position: fixed;
	right: 10px;
	bottom: 10px;
	cursor: pointer;
	width: 50px;
	height: 50px;
	background-color: var(--black);
	text-indent: -9999px;
	display: none;
	-webkit-border-radius: 60px;
	-moz-border-radius: 60px;
	border-radius: 60px;
	z-index: 999;
	border: 2px solid var(--white);
}
#back_to_top .arrow-ic {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -8px;
	margin-top: -12px;
	height: 0;
	width: 0;
	border: 8px solid transparent;
	border-bottom-color: var(--white);
}
#back_to_top:hover {
	background-color: var(--gold-button);
	opacity: 1;
	filter: "alpha(opacity=100)";
	-ms-filter: "alpha(opacity=100)";
}

@media (max-width: 1600px) {
    h1 {
        font-size: 60px;
        line-height: normal;
    }
}
@media (max-width: 1400px) {
    h1 {
        font-size: 50px;
        line-height: normal;
    }
}
@media (max-width: 1280px) {
	h1 {
        font-size: 45px;
        line-height: normal;
    }
}
@media (max-width: 1024px) {
	h1 {
        font-size: 35px;
        line-height: normal;
    }
}