/* Global */
* {
	box-sizing: border-box;
	padding: 0px;
	margin: 0px;
	border: none;
	outline: none;
	background: transparent;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	text-decoration: none !important;
	color: inherit;
	list-style-type: none;
	font-family: inherit;
	word-wrap: break-word;
}

:root {
	--time: 0.28s;
}

body {
	color: #000;
	font-family: "degular-display", sans-serif;
	overflow-x: hidden;
	max-width: 100vw;
}

img {
	width: 100%;
}

/* p {
	max-width: 800px;
} */

.icon {
	/* max-width: 20px; */
	max-height: 20px;
	width: 20px;
}
/* Helpers */
.flex-center {
	display: flex;
	align-items: center;
}

.flex-center-left {
	display: flex;
	align-items: center;
	justify-content: left;
}

.flex-start {
	display: flex;
	align-items: start;
}

.flex-end {
	display: flex;
	align-items: end;
}

.space-between {
	justify-content: space-between;
}

.no-bottom-padding {
	padding-bottom: 0px !important;
}

.center {
	text-align: center;
}

.right {
	text-align: right;
}

.left {
	text-align: left;
}

.white-color {
	color: #fff;
}

.center p {
	margin-left: auto;
	margin-right: auto;
}

.clear {
	clear: both;
}

/*EXTEND BOOTSTRAP*/
.py-9 {
	padding: 80px 0px;
}

/*ANIMATIONS*/
.push {
	transform: scale(1);
	transition: var(--time);
}

	.push:hover {
		transform: scale(0.90);
	}

.btn-wrapper.btn-left {
	display: flex;
	justify-content: left;
}

.btn-wrapper.btn-center {
	display: flex;
	justify-content: center;
}

.btn-wrapper.btn-right {
	display: flex;
	justify-content: right;
}

.no-bg {
	background-color: transparent !important;
}

.no-margin {
	margin: 0px;
}

.full-width {
	width: 100%;
	max-width: unset;
}
