﻿body {
	font-family: 'Montserrat', sans-serif;;
}


.nav-link {
	cursor: pointer;
}

.nav-link * {
	color: var(--blue_main);
}


.link {
	color: var(--blue_main);
}

.link:hover {
	text-decoration: underline;
}

.w-full {
	width: 100%;
}

.desktop {
	display: block;
}

.laptop {
	display: none;
}

.desktop_laptop {
	display: block;
}

.tablet {
	display: none;
}

.smart_phone {
	display: none;
}

.tablet_phone {
	display: none;
}

.icon {
	cursor: pointer;
}

.flex {
	display: flex;
}

.grecaptcha-badge {
	display: none !important;
}

.phone {
	display: none;
}

.scroll {
	scrollbar-color: var(--Black) transparent !important;
}

@media only screen  and (min-width: 1024px) and (max-width: 1750px) {
	.desktop {
		display: none;
	}

	.laptop {
		display: block;
	}


	.desktop_laptop {
		display: block;
	}


	.tablet {
		display: none;
	}

	.smart_phone {
		display: none;
	}


	.tablet_phone {
		display: none;
	}

}


@media only screen and (max-width: 1024px) and (min-width: 640px) {
	.desktop {
		display: none;
	}

	.laptop {
		display: none;
	}


	.desktop_laptop {
		display: none;
	}

	.tablet {
		display: block;
	}

	.smart_phone {
		display: none;
	}


	.tablet_phone {
		display: block;
	}
}

@media only screen and (max-width: 640px) {
	.desktop {
		display: none;
	}

	.laptop {
		display: none;
	}


	.desktop_laptop {
		display: none;
	}


	.tablet_phone {
		display: block;
	}

	.tablet {
		display: none;
	}

	.smart_phone {
		display: block;
	}
}