@font-face {
	font-family: "GoogleSans";
	src: url(../fonts/GoogleSans-Regular.woff2);
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "GoogleSans";
	src: url(../fonts/GoogleSans-Italic.woff2);
	font-weight: 400;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: "GoogleSans";
	src: url(../fonts/GoogleSans-SemiBold.woff2);
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "GoogleSans";
	src: url(../fonts/GoogleSans-SemiBoldItalic.woff2);
	font-weight: 600;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: "GoogleSans";
	src: url(../fonts/GoogleSans-Bold.woff2);
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "GoogleSans";
	src: url(../fonts/GoogleSans-BoldItalic.woff2);
	font-weight: 700;
	font-style: italic;
	font-display: swap;
}

:root {
	--clr-primary: #b18d6a;
	--clr-secondary: #e2c29a;
	--clr-dark: #222;
	--clr-light: #fff;
	--clr-gray: #626262;
	--clr-text: #000;
	--clr-cream-beige: #f0e4d5;
	--clr-divider: #B3B3B3;

	--clr-button__txt: #222;
	--clr-button__bd: #e2c29a;
	--clr-button__bg: #e2c29a;
	--clr-button__txt-hover: #fff;
	--clr-button__bg-hover: #b18d6a;
	--clr-button__bd-hover: #b18d6a;
	--clr-button--outline: #212121;

	--transition: all .35s ease-in-out;
}

html {
	/* font-size: 10px; */
	scroll-behavior: smooth;
	/* scroll-padding-top: 120px; */
}

body {
	font-family: "GoogleSans";
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--clr-text);
}

body * {
	font-family: "GoogleSans" !important;
	font-size: 16px;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
.h1,
.h2,
.h3,
.h4,
.h5 {
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 0;
}

h1,
.h1 {
	font-size: 60px;
}

h2,
.h2 {
	font-size: 48px;
}

h3,
.h3 {
	font-size: 40px;
}

h4,
.h4 {
	font-size: 36px;
}

h5,
.h5 {
	font-size: 32px;
}

h6,
.h6 {
	font-size: 24px;
}

@media (max-width: 767px) {
	h1,
	.h1 {
		font-size: 34px;
	}

	h2,
	.h2 {
		font-size: 24px;
	}

	h3,
	.h3 {
		font-size: 22px;
	}

	h4,
	.h4 {
		font-size: 20px;
	}

	h5,
	.h5 {
		font-size: 18px;
	}

	h6,
	.h6 {
		font-size: 16px;
	}
}

section {
	display: flex;
	flex-direction: column;
	padding-inline: clamp(10px, 3vw, 100px);
	overflow: hidden;
}

.container {
	width: 1240px;
	max-width: 100%;
	margin-inline: auto;
	padding-left: 0;
	padding-right: 0;
}

button,
.button {
	cursor: pointer;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 30px;
	min-height: 44px;
	min-width: 164px;
	width: max-content;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.25;
	text-align: center;
	color: var(--clr-button__txt);
	background: var(--clr-button__bg);
	border: 1px solid var(--clr-button__bd);
	border-radius: 100px;
	outline: none !important;
	transition: var(--transition);
}

:where(button, .button).button--large {
	min-width: 245px;
	min-height: 48px;
}

:where(button, .button).button--primary {
	color: var(--clr-light);
	background: var(--clr-primary);
	border-color: var(--clr-primary);
}

:where(button, .button).button--secondary {
	color: var(--clr-dark);
	background: var(--clr-secondary);
	border-color: var(--clr-secondary);
}

:where(button, .button).button--dark {
	background: var(--clr-dark);
	border-color: var(--clr-dark);
	color: var(--clr-light);
}

:where(button, .button).button--light {
	background: var(--clr-light);
	border-color: var(--clr-light);
	color: var(--clr-dark);
}

:where(button, .button).outline {
	--main-clr: var(--clr-button--outline);

	color: var(--main-clr);
	border-color: var(--main-clr);
	background: transparent;
}

:where(button, .button).outline.button--primary {
	--main-clr: var(--clr-primary);
}

:where(button, .button).outline.button--secondary {
	--main-clr: var(--clr-secondary);
}

:where(button, .button).outline.button--dark {
	--main-clr: var(--clr-dark);
}

:where(button, .button).outline.button--light {
	--main-clr: var(--clr-light);
}

:where(button, .button) svg path {
	stroke: currentColor;
}

:where(button, .button):hover {
	color: var(--clr-button__txt-hover);
	background: var(--clr-button__bg-hover);
	border-color: var(--clr-button__bg-hover);
}

#main-menu-inner .btn-gradient {
	color: var(--clr-dark);
    background: var(--clr-secondary);
    border-color: var(--clr-secondary);
	transition: var(--transition);
}
#main-menu-inner .btn-gradient.outline {
    color: var(--clr-dark);
	background: var(--clr-light);
    border-color: var(--clr-light);
}
#main-menu-inner .btn-gradient.outline::before {
	content: none;
}

#main-menu-inner .btn-gradient:hover {
	color: var(--clr-button__txt-hover);
    background: var(--clr-button__bg-hover);
    border-color: var(--clr-button__bg-hover);
}

/* 
 * COMMON CLASSES
 */
.subheading {
	color: var(--clr-light);
	text-transform: uppercase;
	text-align: center;
	padding: 1px 10px 0;
	background-color: var(--clr-primary);
	border: 1px solid var(--clr-primary);
	border-radius: 28px;
	width: max-content;
	min-height: 25px;
}

.block-space--base {
	padding-block: 120px;
}

@media (max-width: 991px) {
	.block-space--base {
		padding-block: 80px;
	}	
}