 @font-face {
	font-family: 'Archivo';
	src: url('fonts/Archivo-Regular.woff2') format('woff2'),
		 url('fonts/Archivo-Regular.woff') format('woff'),
		 url('fonts/Archivo-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}
 @font-face {
	font-family: 'Sarpanch';
	src: url('fonts/Sarpanch-Regular.woff2') format('woff2'),
		 url('fonts/Sarpanch-Regular.woff') format('woff'),
		 url('fonts/Sarpanch-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
	font: inherit;
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
	display: block;
}
html {
	font-size: 17px;
}
body {
	font-family: 'Archivo', sans-serif;
	font-weight: normal;
	cursor: default;
	color: #000;
	background-color: #C2D52F;
	/* overflow: hidden; */

	-webkit-hyphens: none;
	-moz-hyphens: none;
	-ms-hyphens: none;
	-o-hyphens: none;
	hyphens: none;

	/* background-image: url('back.jpg');
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover; */
}
img {
	width: 100%;
	height: auto;
	border: 0;
	-ms-interpolation-mode: bicubic;
}
svg {
	width: 100%;
	height: auto;
	fill: #000;
}
a {
	text-decoration: none;
	outline: none;
	color: inherit;
	fill: #000;

	-o-transition: color 0.2s;
	-moz-transition: color 0.2s;
	-webkit-transition: color 0.2s;
	transition: color 0.2s;
}
a svg {
	fill: inherit;

	-o-transition: fill 0.2s;
	-moz-transition: fill 0.2s;
	-webkit-transition: fill 0.2s;
	transition: fill 0.2s;
}
a:hover {
	color: #666 !important;
	fill: #666 !important;
	text-decoration: underline;
}
hr {
	height: 1px;
	border: 0;
	background-color: #000;
}
ol, ul, li {
	list-style: none;
}
table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
}
strong, b, .strong {
	font-weight: bold;
}
em, i {
	font-style: italic;
}
sup {
	vertical-align: super;
	font-size: 0.7em;
}
sub {
	vertical-align: sub;
	font-size: 0.7em;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
}
p {
	margin-bottom: 1em;
}
h1, h2, h3, h4, h5, h6 {
	line-height: 1.3;
}
h1 {
	font-size: 1.4em;
}
h2, h3 {
	font-size: 1.2em;
}
h4, h5, h6 {
	font-size: 1.1em;
}

.highlight {
	color: #666;
}
.alt-font {
	font-family: serif;
}
.uppercase {
	text-transform: uppercase;
}

.table-center {
	display: table;
	width: 100%;
	height: 100%;
}
.table-center.inline {
	display: inline-table;
}
.table-center > * {
	display: table-cell;
	width: 100%;
	height: 100%;
	text-align: center;
	vertical-align: middle;
}

.h-center {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}
.v-center {
	position: relative;
	top: 50%;

	-webkit-transform: perspective(1px) translateY(-50%);
	-ms-transform: perspective(1px) translateY(-50%);
	transform: perspective(1px) translateY(-50%);
}
@media all and (max-width: 800px) {
	.v-center.v-center-no-mobile {
		top: auto;

		-webkit-transform: perspective(0) translateY(0);
		-ms-transform: perspective(0) translateY(0);
		transform: perspective(0) translateY(0);
	}
}

.over {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	pointer-events: none;
}
.over > * {
	pointer-events: all;
}
@media all and (max-width: 800px) {
	.over.over-no-mobile {
		position: relative;
		width: 100%;
		height: auto;
		left: auto;
		top: auto;
	}
}

.hide,
.hidden {
	display: none;
}

.pull-left {
	float: left;
}
.pull-right {
	float: right;
}

.border-box {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.round {
	font-size: 0;
	overflow: hidden;

	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

.no-pointer-events {
	pointer-events: none;
}

.background-image {
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% auto;
}

.background-contain {
	background-repeat: no-repeat;
	background-position: center;

	-webkit-background-size: contain;
	-moz-background-size: contain;
	-o-background-size: contain;
	background-size: contain;
}

.background-cover {
	background-repeat: no-repeat;
	background-position: center;

	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

.svg-span > * {
	display: inline-block;
	vertical-align: middle;
}
.svg-span > svg {
	width: auto;
	height: 1.4em;
	fill: inherit;
}
.svg-span > *:first-child {
	margin-right: 0.7em;
}

.clearfix:before,
.clearfix:after {
	content: "";
	display: table;
}
.clearfix:after {
	clear: both;
}

section {
	position: relative;
	margin-bottom: 60px;
}
section.small-margin {
	margin-bottom: 20px;
}
section.large-margin {
	margin-bottom: 120px;
}
section.no-margin {
	margin-bottom: -1px;
}
.container {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
}
.container.full-width {
	max-width: none;
}
.container.limited-width {
	max-width: 720px;
}
.container.no-padding {
	padding-left: 0;
	padding-right: 0;
}
@media all and (max-width: 800px) {
	section {
		margin-bottom: 40px;
	}
	section.small-margin {
		margin-bottom: 20px;
	}
	section.large-margin {
		margin-bottom: 60px;
	}
	.container {
		padding: 0 20px;
	}
}

.text-content {
	font-size: 1rem;
	line-height: 1.7;
}
.text-content > * {
	margin-bottom: 1.6em;
}
.text-content > *:last-child {
	margin-bottom: 0;
}
.text-content > *.no-margin {
	margin-bottom: 0;
}
.text-content h1 {
	font-size: 2.11em;
	line-height: 1;
	letter-spacing: 0.01em;
	margin-bottom: 0.35em;
}
@media all and (max-width: 600px) {
	.text-content {
		font-size: 16px;
	}
}

.alt-font {
	font-family: 'Sarpanch', 'sans-serif';
}

.btn,
.text-content .btn,
button,
input[type="submit"] {
	color: #fff;
	font-family: 'Sarpanch', 'sans-serif';
	font-size: 1.4rem;
	text-transform: uppercase;
	line-height: 1;
	padding: 6px 10px 4px 10px;
	background-color: #3B1C53;
	border-color: #3B1C53;
}
.btn:hover,
.text-content .btn:hover,
button:hover,
input[type="submit"]:hover {
	text-decoration: none;
	background-color: #542c73 !important;
	border-color: #542c73 !important;
}
.btn:hover,
.text-content .btn:hover {
	color: #fff !important;
	fill: #fff !important;
}
@media all and (max-width: 800px) {
	.btn,
	.text-content .btn,
	button,
	input[type="submit"] {
		font-size: 1.2rem;
	}
}


/* main content */
.page #main-block {
	margin-bottom: 0;
}
.page #main-block > .container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page #main-block > .container > .text-holder {
	display: flex;
	flex-direction: column;
	background-color: #fff;
	padding: 40px;
	margin: 20px 0;
}
.page #main-block > .container > .text-holder .text-content {
	display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.page #main-block > .container > .text-holder .text-content p {
	max-width: 270px;
	line-height: 1.4;
	margin-bottom: 0.7em;
}
.page #main-block > .container > .text-holder .text-content img {
	display: block;
	max-width: 100px;
	margin: 0 auto;
}
.page #main-block > .container > .text-holder .text-content .btn {
	margin-bottom: 0;
}