html {
  scroll-behavior: smooth;
}

body {
	margin: 0;
	padding: 0 0 0;
	border: 0;
	font-family: 'Noto Sans', sans-serif;
	background: #edf2f7;
	color: #464749;
}

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}

a,
a:hover,
a:focus {
    color: #2c74bf;
    text-decoration: none;
	outline: none;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
}

a {
	color: #2c74bf;
	transition: color .2s ease;
}
a:hover {
	color: #7fa9d5;
}
a:active {
	color: #2c74bf;
}

strong {
	font-weight: 600;
}

button {
	padding: 0 20px;
	/*padding: 0 20px 0 55px;*/
	box-sizing: border-box;
	line-height: 47px;
	border-radius: 50px;
	border: none;
	background: #514bb0;
	border: 1px solid #514bb0;
	color: #FFF;
	text-align: center;
	font-size: 19px;
	font-weight: 600;
	font-family: 'Noto Sans', sans-serif;
	white-space: nowrap;
	cursor: pointer;
	outline: none;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	transition: all .18s ease;
}

button:hover {
	background: #635fd0;
	border: 1px solid #635fd0;
	transform: translateY(-1px);
	box-shadow: 0 8px 20px rgb(81 75 176 / 22%);
}

button:active {
	background: #514bb0;
	border-color: #514bb0;
	transform: translateY(0);
	box-shadow: none;
	transition: none;
}

button:focus {
    outline: none !important;
}

button ico.contacts {
    background: url(../img/contacts.svg) 0 0 no-repeat;
}

button.menu {
	display: none;
}

button.menu ico {
	display: inline-block;
    background: url(../img/menu.svg) 0 0 no-repeat;
	margin: 0;
}

button ico.gotoTOP {
    background: url(../img/top.svg) 0 0 no-repeat;
}

button:hover ico.gotoTOP {
    background-position: 0 -50px;
	transition: .25s ease-in-out;
}

button ico {
    display: inline-block;
    width: 22px;
    height: 22px;
    line-height: 0;
    margin-right: 10px;
	background-repeat: no-repeat;
	background-position: 0 0;
    vertical-align: -4px;
}

button.black-outline {
	padding: 0 20px;
	box-sizing: border-box;
	line-height: 44px;
	border-radius: 50px;
	border: 1px solid #FFF;
	background: #FFF;
    color: #605ca9;
	text-align: center;
	font-size: 17px;
	font-weight: 600;
	font-family: 'Noto Sans', sans-serif;
	cursor: pointer;
	transition: all .15s;
}

button.black-outline:hover {
	border-color: #7471ab66;
}

button.black-outline:active {
	
}

.overlay {
	visibility: hidden;
    position: fixed;
	top: 0;
	left: 0;
    width: 100vw;
    height: 100vh;
	background: rgb(0 16 16 / 65%);
    z-index: 999;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.overlay.active {
	visibility: visible;
    opacity: 1;
}

header{
	padding: 40px 0 40px;
	background: #FFF;
	text-align: center;
	border-bottom: 8px solid #3bb900;
	box-shadow: 0 18px 70px rgb(0 0 0 / 14%);
}

header .logo{
	margin-bottom: 20px;
	padding: 0 20px;
}

header .logo img{
	max-height: 120px;
	width: 100%;
}

header .moto {
	max-width: 920px;
	margin: 0 auto;
	padding: 0 20px;
	font-size: 31px;
	line-height: 40px;
	font-weight: 700;
	color: #2f9f00;
}

header info {
	display: block;
	margin-top: 18px;
	margin-bottom: -10px;
	font-size: 18px;
	letter-spacing: 2px;
	font-weight: 500;
	color: #6b7280;
}

header button {
	margin-top: 30px;
}

.headerHiden {
	top: -120px;
}

main {
	display: grid;
	grid-template-areas: 
		'page menu';
	grid-template-columns:  1fr 270px;
	grid-template-rows: auto;
	grid-gap: 48px;	
	width: 100%;
	max-width: 1350px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

main page	{ grid-area: page; }
main menu	{ grid-area: menu; }

main {
	width: 100%;
	max-width: 1350px;
	margin: 40px auto 0;
	padding: 0 20px;
	box-sizing: border-box;
}

main.whole {
	width: 100%;
	max-width: inherit;
	padding: 0 20px;
}

main menu,
.sidebar menu{ 
	margin: 0;
	padding-inline-start: 0;
}

main menu box,
.sidebar menu box{
	position: sticky;
	top: 100px;
	display: block;
}

main menu box a,
.sidebar menu box a{ 
	display: block;
	padding: 13px 15px;
	padding-left: 24px;
	font-size: 16px;
	line-height: 22px;
	background: #f2f3f5;
	margin-bottom: 1px;
	border-top: 1px solid #FFF;
	transition: background .15s ease-in-out;
}

main menu box a:first-of-type,
.sidebar menu box a:first-of-type { 
	border-top: none;
}

main menu box a:hover,
.sidebar menu box a:hover { 
	background: #FFF;
}

main menu box a.active,
.sidebar menu box a.active { 
	padding-left: 18px;
	background-color: #FFF;
	border-left: 6px solid #3bb900;
	color: #24262a;
	font-weight: 700;
}

menu box a.contacts {
	color: #5a55a7;
	font-weight: 700;
	background-image: url("../img/contacts-black.svg") !important;
	background-position: 24px center !important;
	background-repeat: no-repeat!important;
	padding-left: 56px;
}

main page box {
	display: block;
	margin-bottom: 50px;
}

main page box.pic pic {
	display: block;
	background: #FFF;
	padding: 30px 30px;
	box-sizing: border-box;
	border-radius: 30px;
	line-height: 0;
}

main page box.pic img {
	width: 100%;
}

main page box h1 {
	display: block;
	margin: 0 0 25px;
	font-size: 38px;
	line-height: 46px;
	font-weight: 800;
	letter-spacing: -0.5px;
	text-align: center;
	color: #25272b;
}

main page box h2 {
	display: block;
	max-width: 980px;
	margin: -15px auto 28px;
	font-size: 27px;
	line-height: 36px;
	font-weight: 300;
	text-align: center;
}

main page box proposition {
	display: grid;
	grid-template-columns:  1fr 1fr 1fr;
	grid-gap: 20px;
}

main page box proposition item {
	display: block;
    text-align: center;
    background: #95a0c9;
    padding: 20px 30px;
    box-sizing: border-box;
	color: #FFF;
    font-size: 22px;
    font-weight: 600;
    border-radius: 24px;
}

main page box proposition item.C1 {
	background: #a2a9cd;
}
main page box proposition item.C2 {
	background: #95a0c9;
}
main page box proposition item.C3 {
	background: #8793c7;
}

main page box proposition item ico {
	display: block;
	margin: 0 auto 8px;
	width: 42px;
	height: 42px;
	background-size: 42px auto;
	background-image: url("../img/cb.svg");
	background-repeat: no-repeat;
	background-position: center center;
}

main page box bullets {
	display: grid;
	grid-template-columns:  1fr 1fr 1fr;
	grid-gap: 20px;
}

main page box bullets item {
	display: block;
    text-align: center;
    background: #FFF;
    padding: 26px 32px;
    box-sizing: border-box;
    font-size: 18px;
    font-weight: 300;
    border-radius: 24px;
	box-shadow: 0 12px 30px rgb(33 43 54 / 8%);
	transition: transform .18s ease, box-shadow .18s ease;
}

main page box bullets item:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 38px rgb(33 43 54 / 12%);
}

main page box bullets item ico {
	display: block;
	margin: 0 auto 20px;
	width: 32px;
	height: 32px;
	background-size: 32px auto;
	background-image: url("../img/icon.svg");
	background-repeat: no-repeat;
	background-position: center center;
}

main page box bullets item span {
	display: block;
	margin-top: 10px;
	font-size: 16px;
	color: #999;
}

main page box bullets item strong {
	display: block;
	margin-bottom: 10px;
	font-size: 22px;
	color: #33a600;
}

main page box bullets item num {
	display: inline-block;
    margin: 0 auto 15px;
    width: 42px;
    height: 42px;
    background: #6e71da;
    border-radius: 50px;
    line-height: 42px;
    color: #FFF;
    font-size: 20px;
    font-weight: 500;
	text-align: center;
}

main page box bullets.double {
	display: grid;
	grid-template-columns: 1fr 1fr !important;
	grid-gap: 20px;
}

main page box bullets.double item {
	padding: 20px 30px;
    font-size: 18px;
    font-weight: 500;	
	font-size: 22px;
    font-weight: 500;
    color: #6e71da;
}

main page box text {
	display: block;
	background: #FFF;
    border-radius: 24px;
    padding: 20px 30px;
    box-sizing: border-box;
}

main page box text a {
	display: inline-block;
	font-weight: 600;
}

main page box text p {
	font-size: 18px;
	line-height: 29px;
	font-weight: 300;
}

main page box text .accent p {
    background-image: url(../img/cb-green.svg);
    background-size: 28px auto;
    background-repeat: no-repeat;
    background-position: 0 0px;
    padding-left: 42px;
}

main page box text .links p {
    background-image: url(../img/link.svg);
	background-size: 20px auto;
    background-repeat: no-repeat;
    background-position: 0 3px;
	padding-left: 36px;
}

main page box text h2{
	font-size: 20px;
	font-weight: 700;
	text-align: left;
	margin: 20px 0;
}

main page box ofchart {
	display: block;
}

main page box ofchart img {
	width: 100%;
}

main page box team {
	display: grid;
	grid-template-columns:  1fr 1fr 1fr;
	grid-gap: 20px;
}

main page box team item {
	display: block;
	margin-top: 115px;
	text-align: center;
	background: #FFF;
	border-radius: 24px;
	padding: 20px 30px;
	box-sizing: border-box;
	font-size: 16px;
	font-weight: 400;
	box-shadow: 0 12px 30px rgb(33 43 54 / 8%);
}

main page box team item name {
	display: block;
	font-size: 24px;
    font-weight: 700;
	margin-bottom: 10px;
}

main page box team item name .pro {
	font-size: 20px;
	font-weight: 600;
}

main page box team item info {
	display: block;
	text-align: center;
	font-size: 18px;
    font-weight: 300;
}

main page box team item a.in {
	display: block;
	width: 40px;
	height: 40px;
	margin: 20px auto 0;
	border-radius: 4px;
	background: url("../img/in.svg") center center no-repeat;
	background-size: 26px 26px;
	background-color: #2966c1;
	transition: .15s ease-in-out;
}

main page box team item a.in:hover {
	transform: scale(1.3);
	background-color: #0946a1;
}

main page box team item a.in:active {
	transform: scale(1.2);
	transition: .05s ease-in-out;
}


main page box team item pic {
	transition: .15s ease-in-out;	
}

main page box team item pic:hover {
	transform: scale(1.12);
}

main page box team item pic:active {
	transform: scale(1.08);
}

main page box team item a.name {
	display: block;
	color: #464749;
	line-height: 27px;
}

main page box team item a.name:hover {
	color: #3866c0;
}


main page box team item pic {
	display: block;
	margin: -135px auto 22px;
	width: 220px;
	height: 220px;
	border-radius: 220px;
	overflow: hidden;
	box-shadow: 0 12px 30px rgb(0 0 0 / 16%);
}

main page box team item pic img {
	width: 100%;
	height: 100%;
}

main page .btn {
	margin-top: -20px;
	margin-bottom: 10px;
	text-align: center;
}

main page .btn button {
    padding: 0 30px;
    line-height: 64px;
    font-size: 26px;
	width: 100%;
}

main page .btn button ico {
    display: inline-block;
    width: 32px;
    height: 32px;
    margin-right: 15px;
	background-size: 32px auto;
    vertical-align: -6px;
}

main page .btn button:last-of-type {
    margin-top: 10px;
}

.contactsBox {
    position: fixed;
    z-index: 999998;
    width: 100%;
    bottom: -685px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	height: 100%;
    max-height: 685px;
	padding: 0 20px;
	box-sizing: border-box;
	border-radius: 20px 20px 0 0;
    background: #fff;
    color: #464749;
    transition: all 0.15s;	
    box-shadow: 0px -3px 7px rgb(0 16 16 / 20%);
}

.contactsBox.active {
    bottom: 0;
    transition: all 0.3s;
}

.contactsBox .box {
	display: grid;
	grid-template-areas: 
		'header'
		'items';
	grid-template-columns:  1fr;
	grid-template-rows: 70px 1fr;
	grid-gap: 0;
	height: 100%;
}

.contactsBox .header {
	position: relative;
	align-self: center;
	width: 100%;
	overflow: hidden;
}

.contactsBox a.contactsClose {
    position: absolute;
	z-index: 2;
    top: 8px;
    right: 10px;
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background: url(../img/menu-close.svg) center center no-repeat;
    transition: all .18s ease;
}

.contactsBox .header a.contactsClose:hover {
    background-color: #F3F3F3;
}

.contactsBox .header .title {
	font-size: 21px;
	font-weight: 600;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	padding-right: 40px;	
	background: url("../img/contacts-black.svg") 0 center no-repeat;
	background-size: auto 26px;
	padding-left: 36px;
	font-size: 24px;
    line-height: 24px;
	padding-bottom: 2px;
    font-weight: 500;
}

.contactsBox .header .title.lastSearches {
	background: url(../img/ico/history.svg) left 0px no-repeat;
    background-size: 28px auto;
    padding-left: 40px;
}

.contactsBox .header .title.abonament {
	background: url(../img/menu/email.svg) left 0px no-repeat;
    background-size: 28px auto;
    padding-left: 40px;
}

.contactsBox .header .title.problem {
	background: url(../img/ico/report-link.svg) left 0px no-repeat;
    background-size: 28px auto;
    padding-left: 40px;
}

.contactsBox .logo {
	text-align: center;
}

.contactsBox .logo img {
	width: 100%;
	max-width: 300px;
}

.contactsBox .address {
	text-align: center;
	font-size: 26px;
	line-height: 36px;
	font-weight: 300;
	margin-bottom: 20px;
}

.contactsBox .address strong {
	font-size: 36px;
	line-height: 48px;
}

.contactsBox .email {
	display: inline-block;
	margin-top: -18px;
	margin-bottom: 5px;
	background: url("../img/email.svg") 0 center no-repeat;
	background-size: auto 26px;
	padding-left: 36px;
	font-size: 24px;
    line-height: 24px;
	padding-bottom: 3px;
    font-weight: 300;
}

.contactsBox .MAP iframe {
	width: 100%;
	height: 450px;
	border: none;
}

footer{
	margin-top: 40px;
	padding: 40px 0 40px;
	background: #FFF;
	text-align: center;
	border-top: 8px solid #3bb900;
	box-shadow: 0 18px 70px rgb(0 0 0 / 14%);
}
footer .logo{
	margin-bottom: 20px;
}
footer .logo img{
	height: 43px;
}
footer .moto{
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 10px;
}
footer .copyright {
	margin-top: 0px;
	text-align: center;
	font-size: 15px;
	color: #777;
	font-weight: 300;
}
footer .copyright a {
	font-weight: 600;
    color: #464749;
}
footer .copyright a:hover {
	color: #8ba8db;
}

headerscroll {
	display: grid;
	z-index: 1000;
    grid-template-columns: 256px 1fr 176px;
    grid-template-rows: auto;
    grid-gap: 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 10px 25px;
    background: #FFF;
	box-shadow: 0 0px 12px #00000033;
	transition: top 0.5s cubic-bezier(0.8, 0.2, 0.2, 0.8);
}

headerscroll .logo {
	line-height: 0;
}

headerscroll .logo a {
	display: block;
	line-height: 0;
}

headerscroll .moto {
	align-self: center;
	color: #666;
	font-size: 20px;
	line-height: 24px;
	font-weight: 600;
	text-align: center;
}

headerscroll .btn {
	text-align: right;
}

.sidebar {
    width: 320px;
    position: fixed;
    top: 0;
    right: -330px;
    height: 100%;
    z-index: 999999;
	overflow-y: auto;	
	background: #e4eaf1;
    color: #000;
    transition: all 0.3s;
	overflow-y: auto;
    box-shadow: -3px 0px 7px rgb(0 16 16 / 20%);
}

.sidebar.active {
    right: 0;
}

.sidebar .sidebarTitle {
	font-weight: 600;
	font-size: 20px;
	padding-left: 20px;
	margin-bottom: 15px;
}

.sidebar a.menuClose {
	position: absolute;
	top: 11px;
	right: 10px;
	display: block;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background: url("../img/menu-close.svg") center center no-repeat;
    background-color: #FFF;
    transition: all .18s ease;
}

.sidebar a.menuClose:hover {
    background-color: #F3F3F3;
}

.sidebar .box {
    padding: 15px 15px 0 15px;
}

.sidebar .boxWide {
    padding: 15px 0 0;
}

.sidebar .boxWide.menuItems a {
    display: block;
	line-height: 42px;
	padding: 0 15px 0 60px;
	margin-bottom: 1px;
	color: #464749;
	font-size: 16px;
	font-weight: 400;
	background-position: 20px center;
	background-repeat: no-repeat;
	transition: all .15s;
}

.sidebar .boxWide.menuItems a:hover {
    background-color: #eff2f5;
	padding: 0 15px 0 55px;
	color: #222;
}

.sidebar .boxWide.menuItems a.active {
    background-color: #eff2f5;
    color: #222;
	font-weight: 600;
}   

.sidebar .boxWide.menuItems a.logo {
	display: inline-block;
	width: 225px;
	padding: 0 !important;
    background-image:url("../img/logo.svg");
	background-color: transparent !important;
	background-size: auto 39px;
	margin-bottom: 10px;
}
	

/* Layout refinements: clearer spacing between blocks and cards */
main {
	grid-template-columns: minmax(0, 1fr) 280px;
	grid-gap: 54px;
}

main page {
	min-width: 0;
}

main page box {
	margin-bottom: 78px;
	clear: both;
}

main page box > text,
main page box > bullets,
main page box > proposition,
main page box > team,
main page box > ofchart {
	margin-top: 24px;
}

main page box h1 + h2 {
	margin-bottom: 32px;
}

main page box text + proposition,
main page box bullets + text,
main page box ofchart + text,
main page box team + text {
	margin-top: 28px;
}

main page box proposition {
	align-items: stretch;
}

main page box proposition item {
	min-height: 144px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	line-height: 30px;
	box-shadow: 0 12px 30px rgb(33 43 54 / 12%);
	border: 2px solid rgb(255 255 255 / 72%);
	transition: transform .18s ease, box-shadow .18s ease;
}

main page box proposition item:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 42px rgb(33 43 54 / 16%);
}

main page box proposition item ico {
	margin-bottom: 14px;
}

main page box bullets {
	align-items: stretch;
}

main page box bullets item {
	min-height: 178px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	line-height: 25px;
}

main page box bullets item strong {
	line-height: 29px;
}

main page box bullets.double item {
	min-height: 180px;
}

main page box text {
	box-shadow: 0 12px 30px rgb(33 43 54 / 6%);
}

main page box text p:first-child {
	margin-top: 0;
}

main page box text p:last-child {
	margin-bottom: 0;
}

main page box text .accent p + p {
	margin-top: 22px;
}

main page box team {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	justify-content: stretch;
	align-items: stretch;
	grid-gap: 24px;
}

main page box team item {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: 360px;
}

main page box team item info {
	flex: 1;
}

main menu box {
	background: #fff;
	border-radius: 0 0 18px 18px;
	overflow: hidden;
	box-shadow: 0 14px 34px rgb(33 43 54 / 8%);
}

main menu box a,
.sidebar menu box a {
	padding-top: 15px;
	padding-bottom: 15px;
}

footer {
	margin-top: 10px;
}


/* Contact panel: online-first contact experience */
.contactsBox {
    bottom: -470px;
    max-height: 470px;
}

.contactsBox .contactsItems {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

.contactsBox .contactPanel {
    padding: 5px 0 25px;
}

.contactsBox .contactIntro {
    text-align: center;
    margin: 0 auto 22px;
    max-width: 760px;
}

.contactsBox .contactIntro strong {
    display: block;
    font-size: 34px;
    line-height: 42px;
    color: #25272b;
    margin-bottom: 8px;
}

.contactsBox .contactIntro p {
    margin: 0;
    font-size: 18px;
    line-height: 28px;
    font-weight: 300;
    color: #5f6368;
}

.contactsBox .contactGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 18px;
}

.contactsBox .contactCard {
    display: block;
    background: #f5f7fb;
    border: 1px solid #e6ebf2;
    border-radius: 22px;
    padding: 22px 24px;
    box-sizing: border-box;
    text-align: center;
    box-shadow: 0 10px 24px rgb(33 43 54 / 6%);
}

.contactsBox .contactCard.primary {
    background: #ffffff;
    border-color: rgb(59 185 0 / 25%);
}

.contactsBox .contactLabel {
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 20px;
    font-weight: 700;
    color: #2f9f00;
    text-transform: uppercase;
    letter-spacing: .8px;
}

.contactsBox .contactCard a,
.contactsBox .contactCard span {
    display: inline-block;
    font-size: 21px;
    line-height: 28px;
    font-weight: 600;
}

.contactsBox .contactCard span {
    color: #464749;
}

/* Legacy map/address block is intentionally not used in the new contact panel. */
.contactsBox .MAP {
    display: none;
}
