@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap");

:root {
	--primary-color: #2488f6;
	--color-red: #ea3223;
	--color-green: #a3cb38;
	--text-color: #333;
	--text-color-light: #4f4f4f;
	--text-white: #fff;
	--color-blue: #2488f6;
	--color-gray1: #333333;
	--color-gray3: #828282;
	--color-gray4: #bdbdbd;
	--color-gray5: #e0e0e0;
	--color-orange: #f48c06;
	--color-yellow: #fde404;
	--color-white: #fff;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}
* {
	margin: 0;
}

html,
body {
	height: 100%;
	font-size: unset;
}
body {
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
	font-size: 22px;
	line-height: 1.6;
}

img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
}
input,
button,
textarea,
select {
	font: inherit;
	outline: none;
	border: none;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
	overflow-wrap: break-word;
	margin: 0;
	padding: 0;
}

ul,
li {
	list-style-type: none;
}

a {
	text-decoration: none;
	cursor: pointer;
}

a:hover {
	transform: scale(0.99);
}

h2 {
	font-weight: 800;
	font-size: 30px;
	/* color: var(--text-color); */
	margin-bottom: 20px;
}

.text-center {
	text-align: center;
}

.error-msg {
	font-size: 12px;
	color: red;
	font-style: italic;
}
.alertify-notifier {
	font-size: 12px;
}
/* footer */
/* footer {
  background-color: var(--color-gray1);
  color: var(--color-gray5);
  line-height: 1.8;
  width: 100%;
  padding-bottom: 1rem;
  margin-top: auto;
}
footer h1{
  font-size: 1.85rem;
  line-height: 1.4;
  padding: 2rem 0 1rem;
  font-weight: 900;
}

footer p {
  font-size: 18px;
} */
footer {
	background-color: #333;
	color: #fff;
	line-height: 1.8;
	width: 100%;
	padding-bottom: 1rem;
	margin-top: auto;
	text-align: center;
}
.footer-naviagtor-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	row-gap: 0.2em;
	column-gap: 0.8em;
	margin-block: 0.5em;
}
.footer-link {
	font-size: 1.025rem;
	color: hsl(0, 0%, 100%);
	text-decoration: none;
	cursor: pointer;
}

.footer-logo {
	width: 120px;
	margin-inline: auto;
	padding-top: 20px;
}
footer h1 {
	font-size: 1.25rem;
	line-height: 1.4;
	padding: 1.25rem 0 0.2rem;
	font-weight: 900;
	text-transform: uppercase;
}

footer p {
	font-size: 0.875rem;
	line-height: 1.4;
	color: hsl(0, 0%, 70%);

	i {
		position: relative;
		top: 2px;
		margin-right: 0.2em;
	}
}
@media screen and (min-width: 970px) {
	.hide-on-desktop {
		display: none;
	}
}

@media screen and (max-width: 969px) {
	.hide-on-mobile-tablet {
		display: none;
	}
}
