@import url("https://fonts.googleapis.com/css2?family=Montserrat: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;
	--primary-color: #4561bd;
	--primary-color-hover: #314ca5;
	--secondary-color: #f0e63a;
	--secondary-color-hover: #f0d400;
	--background-color: #e8f1ff;
	--background-color-2: #d4e1f4;
	--variant-background-color: #314ca5;
	--variant-background-color-2: #283a73;
	--cancel-color: #f73e3e;

	--max-width: 1100px;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 100px;
}

body {
	width: 100vw;
	height: 100%;
	min-height: 100vh;
	background: linear-gradient(90deg, #e8f1ff, #d4e1f4);
	background-repeat: no-repeat;
	overflow-x: hidden;
}

* {
	font-family: "Montserrat", 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;
}

/* 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;
}