/*
 * Base CSS
 *
 * @author  Andy Bui
 * @website https://abui.top
 * @project XE DỊCH VỤ HOÀNG DUY
 */

:root {
	--hd-primary-color: #c9933e;
	--hd-primary-hover: #b58230;
	--hd-secondary-color: #1a1c20;
	--hd-text-color: #333333;
	--hd-text-light: #666666;
	--hd-bg-light: #f9f9f9;
	--hd-white: #ffffff;
	--hd-border-color: #e5e5e5;
	--hd-font-main: 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	--hd-transition: all 0.3s ease;
	--hd-container-width: 1200px;
}

/* Local Font: Be Vietnam Pro */
@font-face {
  font-family: 'Be Vietnam Pro';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/be-vietnam-pro-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Be Vietnam Pro';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/be-vietnam-pro-semibold.woff2') format('woff2');
}

@font-face {
  font-family: 'Be Vietnam Pro';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/be-vietnam-pro-bold.woff2') format('woff2');
}

@font-face {
  font-family: 'Be Vietnam Pro';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/be-vietnam-pro-extrabold.woff2') format('woff2');
}

body, h1, h2, h3, h4, h5, h6, p, a, span, button, input, select, textarea, .alt-font, .heading-font {
	font-family: 'Be Vietnam Pro', sans-serif !important;
}

body {
	color: var(--hd-text-color);
	line-height: 1.6;
	margin: 0;
	padding: 0;
	background-color: var(--hd-white);
}

.container {
	max-width: var(--hd-container-width);
	margin: 0 auto;
	padding: 0 15px;
	width: 100%;
}

a {
	color: var(--hd-text-color);
	text-decoration: none;
	transition: var(--hd-transition);
}

a:hover {
	color: var(--hd-primary-color);
}

.hd-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	vertical-align: middle;
	line-height: 1;
}

.hd-icon svg {
	width: 1em;
	height: 1em;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* Reset Flatsome margins */
p {
	margin-bottom: 15px;
}

h1, h2, h3, h4, h5, h6 {
	margin-top: 0;
	margin-bottom: 15px;
	font-weight: 700;
	color: var(--hd-secondary-color);
}
