@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* USER VARIABLES SECTION */

:root {
	--accent: #30B72E;
	--text: #000000;
	--regular-text: 16px;
	--lineheight: 1.4;
	--userfont: Montserrat, sans-serif;
	--systemfont: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

/* GENERAL CSS SETTINGS */

::placeholder {
	color: #A8A8A8;
}

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

input,
textarea {
	outline: none;
}

input:focus:required:invalid,
textarea:focus:required:invalid {
	border-color: red;
}

input:required:valid,
textarea:required:valid {
	border-color: green;
}

body {
	font-family: var(--userfont);
	font-size: var(--regular-text);
	line-height: var(--lineheight);
	color: var(--text);
	min-width: 320px;
	position: relative;
	overflow-x: hidden;

}

/* USER STYLES */

.image {
	max-width: 100%;
	margin-bottom: var(--bs-gutter-x);
	border-radius: 4px;
}

.accent {
	color: var(--accent);
	font-weight: bold;
}

.container {
	max-width: 640px;
	padding-left: 20px;
	padding-right: 20px;
	margin-left: auto;
	margin-right: auto;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
	display: flex;
	align-items: center;
	justify-content: center;
	bottom: 0;
	margin-top: 15px;
}

body .swiper-pagination-bullet {
	opacity: 1;
	background: #E4E4E4;
}

body .swiper-pagination-bullet-active {
	background-color: var(--accent);
}


.s-title {
	margin: 0;
	font-weight: 700;
	font-size: 24px;
	line-height: 120%;
	margin-bottom: 13px;
}

