@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@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');
@import url('https://fonts.googleapis.com/css2?family=Carter+One&display=swap');

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

* {
	scrollbar-width: thin;
}

:root {
--color-white: #FFFFFF;
--color-blue-light: #e6f3fa;
--color-blue: #005db4;
--color-blue-hover: #005F9E;
--color-yellow: #fadc3c;
--color-yellow-hover: #FFC300;
--color-gray: #6b7179;
--color-light-grey: #CCC;
--color-dark-black: #0b2240;
--color-neutral-dark-blue: #26354e;
--color-black: #000000;
--color-card-hover: #c3dbf2;
--primary-ont: 'Carter One', cursive;
--secondary-font: 'Montserrat', sans-serif;
--body-text-size: 16px;
}

::selection {
	background: #666;
	color: var(--color-white);
}

body {
	background-color: var(--color-white);
	font-size: var(--body-text-size);
	font-family: var(--secondary-font);
	color: var(--color-neutral-dark-blue);
	font-weight: normal;
	padding-top: 108px;
}

body::-webkit-scrollbar {
	width: 7px;
	height: 5px;
}

body::-webkit-scrollbar-track {
	background: #f3f1ec;
}

body::-webkit-scrollbar-thumb {
	background: var(--color-neutral-dark-blue);
	border-radius: 10px;
}

body.noScroll {
	overflow: hidden;
}

ul {
	margin: 0;
	padding: 0;
	list-style: disc;
}

a {
	text-decoration: none;
	transition: all 0.5s;
}

a:hover {
	transition: all 0.5s;
	text-decoration: none;
}

p {
	line-height: 28px;
}

img {
	max-width: 100%;
}

h1, h2 {
	font-weight: 700;
}

h1 {
	font-size: 47px;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 24px;
}

@media (max-width: 1127px) {
	body {
	  padding-top: 36px; 
	}
}

@media (max-width: 1024px) {
	h1 {
		font-size: 36px;
	}
}

@media (max-width: 991px) {
	p {
		line-height: 26px;
	}
}

@media (max-width: 767px) {
	p {
		font-size: 14px;
	}

	h1 {
		font-size: 32px;
	}

	h2 {
		font-size: 24px;
	}

	h3 {
		font-size: 20px;
	}
}