@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
	--text-color: #232323;
	--text-color-alternate: #232323;

	--primary-color: #720002;
	--primary-color-hover: #5c0002;
	--secondary-color: #3e0102;
	--secondary-color-hover: #5c0002;
	--third-color: #FBFBFB;

	--background-color: #f4f3f3;
	--background-color-2: #e3e1e2;
	--variant-background-color: #720002;
	--variant-background-color-2: #3e0102;

	--header-background-color: #fff;
	--header-background-color-hover: var(--secondary-color);
	--header-text-color: var(--text-color);
	--header-text-color-hover: #fff;

	--footer-background-color: #720002;
	--footer-link-color: #ffb444;

	--cancel-color: #f73e3e;

	--box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	--box-shadow-darker: 0 10px 10px rgba(0, 0, 0, 0.2);

	--border-radius-rounded: 1em;

	--transition-smooth: all 0.3s ease-in-out;
	--transition-smooth-slow: all 1s ease-in-out;

	--max-width: 1100px;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 100px;
}

body {
	max-width: 100%;
	height: 100%;
	min-height: 100vh;
	background: linear-gradient(
		90deg,
		var(--background-color),
		var(--background-color-2)
	);
	background-repeat: no-repeat;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

* {
	font-family: "Poppins", sans-serif;
}

.MaxWidthWrapper {
	position: relative;
	width: 90%;
	max-width: var(--max-width);
	margin: 0 auto;
}

section {
	padding: 50px 0;
}

section[variant] {
	background: linear-gradient(
		90deg,
		var(--variant-background-color),
		var(--variant-background-color-2)
	);
}

::-moz-selection {
	/* Code for Firefox */
	background: var(--primary-color);
	color: #fff;
}

::selection {
	background: var(--primary-color);
	color: #fff;
}

/* width */
::-webkit-scrollbar {
	width: 10px;
	height: 8px;
}

/* Track */
::-webkit-scrollbar-track {
	background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: var(--primary-color);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: var(--primary-color-hover);
}

.displayNone {
	display: none !important;
}

@media (max-width: 1100px) {
	.BigPaddingBottom {
		padding-bottom: 150px;
	}
}
