html, body {
	position: relative;
	max-width: 90vw;;
	height: 100%;
	margin: 0 auto;
}

body {
	color: #333;
	padding: 8px;
	box-sizing: border-box;
	font-family: Manrope, sans-serif;
}

body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-thumb {
  background-color: rgb(0, 89, 255);
  border-radius: 20px;
}

a {
	color: rgb(0,100,200);
	text-decoration: none;
}

hr {
	color: rgba(203, 203, 203, 1);
	background-color: rgba(203, 203, 203, 1);
	height: 1px;
	border: none;
	margin: 0;
}

a:hover {
	text-decoration: underline;
}

a:visited {
	color: rgb(0,80,160);
}

label {
	display: block;
}

input, button, select, textarea {
	font-family: inherit;
	font-size: inherit;
	-webkit-padding: 0.4em 0;
	padding: 0.4em;
	margin: 0 0 0.5em 0;
	box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 2px;
}

input:disabled {
	color: #ccc;
}

button {
	color: #333;
	background-color: #f4f4f4;
	outline: none;
}

button:disabled {
	color: #999;
}

button:not(:disabled):active {
	background-color: #ddd;
}

button:focus {
	border-color: #666;
}

.titleInGrid {
	font-family: Tektur;
	font-weight: 500;
	font-size: 48px;
	color: rgba(0, 0, 0, 1);
	max-width: 500px;

	@media screen and (max-width: 1200px) {
		font-size: 28px;
	}
}

.textInGrid {
	font-size: 24px;
	font-weight: 400;
	color: rgba(51, 51, 51, 1);
	max-width: max-content;

	.subText {
		color: rgba(0, 89, 255, 1);
	}
	.block {
		margin-bottom: 1rem;
	}
}

.galleryActive {
	img {
		object-fit: contain;
		object-position: top 50%;
		border-radius: 10px;
		margin-right: 10px;
	}
}

.galleryNoActive {
	img {
		object-fit: contain;
		object-position: top 50%;
		border-radius: 10px;
		filter: grayscale(90%);
	}
}

.circle {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: rgba(0, 89, 255, 0.5);
    position: relative;
  }

.minCircle {
	border-radius: 50%;
	position: relative;
	background: rgba(0, 89, 255, 1);
	width: 10px;
	height: 10px;
	top: 7.5px;
	left: 7.5px;
}
