/*
==== Normalize */
html{box-sizing:border-box}*,*:before,*:after{box-sizing:inherit}
html{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}
article,aside,details,figcaption,figure,footer,header,main,menu,nav,section{display:block}summary{display:list-item}
audio,canvas,progress,video{display:inline-block}progress{vertical-align:baseline}
audio:not([controls]){display:none;height:0}[hidden],template{display:none}
a{background-color:transparent}a:active,a:hover{outline-width:0}
abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}
b,strong{font-weight:bolder}dfn{font-style:italic}mark{background:#ff0;color:#000}
small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}
sub{bottom:-0.25em}sup{top:-0.5em}figure{margin:1em 40px}img{border-style:none}
code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}hr{box-sizing:content-box;height:0;overflow:visible}
button,input,select,textarea,optgroup{font:inherit;margin:0}optgroup{font-weight:bold}
button,input{overflow:visible}button,select{text-transform:none}
button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}
button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{border-style:none;padding:0}
button:-moz-focusring,[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring{outline:1px dotted ButtonText}
fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:.35em .625em .75em}
legend{color:inherit;display:table;max-width:100%;padding:0;white-space:normal}textarea{overflow:auto}
[type=checkbox],[type=radio]{padding:0}
[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}
[type=search]{-webkit-appearance:textfield;outline-offset:-2px}
[type=search]::-webkit-search-decoration{-webkit-appearance:none}
::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}
html{overflow-x:hidden}

body, body * {
	font-family: var(--main-font);
	font-weight: normal;
	font-size: 22px;
	color: var(--textcolor);
	box-sizing: border-box;
  line-height:1.5;
}
font,
body * * {font:inherit;}
body:not(.home) {
	padding-top:236px;
}
a *,
font {color:inherit;}
h1,h2,h3,h4,h5,h6{font-weight:600;margin: 0 0 32px}
form textarea {
	max-width: 100%;
	width: 100% !important;
	min-width: 100%;
	max-height: 120px;
	height: 96px;
	min-height: 39px;
}
em {
	font-style: italic;
}
.icon_carret.active .l1 {display:none;}
.icon_carret.active .icon {
	transform: rotate(180deg);
}
.section {overflow: hidden;}
.section_title {font-size:62px;line-height: 62px;text-align: center;}
.afr, .afr * {
  font-family: var(--accent-font);
  font-weight:normal;
}
.afb, .afb * {
  font-family: var(--accent-font);
  font-weight:bold;
}
.mc {color:var(--maincolor)}
.container {
  width:100%;
  max-width:1600px;
  margin-left:auto;
  margin-right:auto;
}
.clear {
  margin:0;
  padding:0;
}
ul.clear, ol.clear {
  list-style-type:none;
}
.bgnr {
  background-repeat:no-repeat;
}
body p strong {
	font-weight: bold;
}
body img {
	max-width: 100%;
}


.dflex {display:flex;}
.fwrap {flex-wrap:wrap;}
.fdcol {flex-direction:column;}
.aicenter {align-items:center;}
.aistart {align-items:flex-start;}
.aiend {align-items:flex-end;}
.jccenter {justify-content:center;}
.jcend {justify-content:flex-end;}
.jcsb {justify-content: space-between;}
.jcse {justify-content: space-evenly;}
.jcsa {justify-content: space-around;}
.g8 {gap:8px;}
.g16 {gap:16px;}
.g24 {gap:24px;}
.g32 {gap:32px;}
.g48 {gap:48px;}
.g64 {gap:64px;}
.g96 {gap:96px;}

.mc__btn {
	background-color: var(--maincolor);
	border-radius: 8px;	
	box-shadow: 0 8px 10px 0 rgba(0,0,0,0.25);
  padding: 16px 32px;
  cursor:pointer;
}
.mc__btn .label {
	color: var(--white);
	font-weight: 600;
}
.mc__btn:hover {background-color: var(--mhcolor);}