
@font-face {
	font-family: Montserrat;
	src: url('../fonts/Montserrat/Montserrat-VariableFont_wght.ttf');
}


:root {
	--accent: #d9d9d9;
	--black: #1f1f1f;
	--grey-link: #6f6f6f;
	--grey-light: #ccc;
}



*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
a{
	text-decoration: none;
}


.container{
	max-width: 1210px;
	width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}
.body{
	font-family: "Montserrat", sans-serif;
	background-color: #F5F5F5;
	color: var(--black);
}
.d_flex{
	display: flex;
}
.btn{
	cursor: pointer;
	outline: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	text-decoration: none;
	color: #fff;
	text-transform: uppercase;
	padding: 22px 40px;
	border-radius: 48px;
	background: linear-gradient(0deg, #1f1f1f 0%, #292929 100%);
	font-weight: 700;
	font-size: 15px;
	transition: 0.3s;
}
.green_btn{
	background: linear-gradient(270deg, #a0db58 0%, #3aaa35 100%);
}
.h1{
	font-weight: 700;
	font-size: 44px;
}
.h2{
	font-weight: 700;
	font-size: 32px;
}
.purple{
	background: linear-gradient(270deg, #ba58db 0%, #8d35aa 100%);
}
.green{
	background: linear-gradient(270deg, #a0db58 0%, #3aaa35 100%);
}
.blue{
	background: linear-gradient(270deg, #586edb 0%, #3549aa 100%);
}
.redactor p{
	margin: 20px 0;
	line-height: 140%;
	font-size: 15px;
}
.redactor h2{
	font-size: 44px;
}
.redactor h3{
	font-size: 24px;
}
.input {
    outline: none;
    background-color: #fff;
    border-radius: 30px;
    padding: 21px 28px;
    height: 61px;
    font-size: 15px;
    width: 100%;
    border: none;
    margin-bottom: 12px;
}