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, font, 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,
caption, tbody, tfoot, thead{
	margin: 0;
	padding: 0;
	border: none;
	outline: 0;
	vertical-align: baseline;
}
:root {
	--color_White: #fff;
	--color_Coal: #1C1C22;
	--color_Midnight: #1B1160;
	--color_Indigo: #2F13B7;
	--color_Violet: #3D3894;
	--color_Lavender: #A5A3DF;
	--color_Cotton: #F1F2FF;
	--color_Copper: #E97C00;
	--gradient_Indigo_Midnight: linear-gradient(45deg,rgba(47, 19, 183, 1) 0%, rgba(27, 17, 96, 1) 100%);
	--gradient_Copper_Orange: linear-gradient(45deg,rgba(233, 124, 0, 1) 0%, rgba(255, 184, 104, 1) 100%);
	--font-family: 'Inter';
}
* {
	box-sizing: border-box;
}	
html, body {
    width: 100%;
	height: 100%;
	font-family: var(--font-family);
	font-size: 14px;
	line-height: 16px;
	color: var(--color_Coal);
	background: var(--color_White);
}
body {
    display: flex;
    flex-direction: column;
}
label{
	cursor: pointer;
}
p {
	margin: 0 0 16px 0;
}
ol, ul {
	list-style-type: none;
	margin: 16px 0 16px 0;
	padding: 0;
}	
p a:hover, ul a:hover, ol a:hover {
	text-decoration: underline;
}
ul li{
	margin: 0 0 5px 15px;
	list-style: disc;
}
ol li{
	margin: 0 0 5px 15px;
	list-style: decimal;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
input:focus {
	outline: none;
}
textarea:focus {
	outline: none;
}
select:focus {
	outline: none;
}
sup {
	vertical-align: top;
	font-size: 10px;
}
sub {
	vertical-align: bottom;
	font-size: 10px;
}
a {
	color: inherit;
	text-decoration: none;
	transition: 1s;
}
a:hover {
	transition: 1s;
}
 
h1, .h1 {
	position: relative;
	margin: 0 0 30px 0;
	color: var(--color_Midnight);
    font-size: 30px;
    line-height: 110%;
    font-weight: 900;
}
h2, .h2 {
	position: relative;
	margin: 0 0 20px 0;
	color: var(--color_Lavender);
	font-size: 30px;
	line-height: 110%;
	font-weight: 900;
}
h3, .h3 {
	position: relative;
	margin: 0 0 20px 0;
	color: var(--color_Copper);
	font-size: 24px;
    line-height: 30px;
    font-weight: 700;
}
h4, .h4 {
	position: relative;
	margin: 0 0 15px 0;
	color: var(--color_Midnight);
	font-size: 22px;
    line-height: 26px;
    font-weight: 900;
}
h5, .h5 {
	margin: 0 0 15px 0;
}
 
img {
	width: 100%;
	height: auto;
	display: block;
}		

.wrapper {
	position: relative;
	flex: 1 0 auto;
}

.btn {
	position: relative;
	display: inline-block;
	padding: 10px 40px;
	color: var(--color_White);
	font-size: 14px;
	line-height: 20px;
	font-weight: 700;
	background: var(--color_Indigo);
	background: var(--gradient_Indigo_Midnight);
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}
.btn:hover {
	background: var(--color_Lavender);
}	
 	
.btnOpen {
	min-width: 90px;
	position: relative;
	display: inline-block;
	padding: 5px 20px;
	color: var(--color_White);
	font-size: 14px;
	line-height: 20px;
	font-weight: 700;
	text-align: center;
	background: var(--color_Copper);
	background: var(--gradient_Copper_Orange);
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}
.btnOpen:hover {
	background: var(--color_Lavender);
} 	
 
/* header */
.header {
	width: 100%;
	max-width: 1360px;
	position: relative;
	padding: 20px 40px;
	margin: 20px auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
    align-items: center;
	z-index: 100;
}
.header.fixed {
	background: rgba(255, 255, 255, 0.20);
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(5.8px);
	-webkit-backdrop-filter: blur(5.8px);
	border: 1px solid rgba(255, 255, 255, 0.5);
}

.headerLeft {
	position: relative;	
	display: flex;
	flex-wrap: wrap;
    align-items: center;
	gap: 70px;
}	
.headerLeft .logo {
	position: relative;	
	display: block;
}
.headerLeft .logo .svgIcon {
    width: 30px;
    height: 40px;
    display: block;
	fill: var(--color_Midnight);
}
.headerLeft .logo:hover .svgIcon {
	fill: var(--color_Copper);
}	

.headerLeft .menu {
	position: relative;	
}	
.headerLeft .menu ul {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	margin: 0;	
}
.headerLeft .menu li {
	position: relative;
	margin: 0;		
	list-style: none;
}
.headerLeft .menu li a {
	color: var(--color_Midnight);
	font-size: 16px;
    line-height: 30px;
    font-weight: 700;
	display: block;
}
.headerLeft .menu li a:hover {
	color: var(--color_Copper);
	text-decoration: none;
}
.headerLeft .menu li.act a {
	color: var(--color_Copper);
}
.headerBtn {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}	
.headerBtn .onlineBtn {
	position: relative;
    display: inline-block;
    padding: 10px 40px;
    color: var(--color_White);
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    background: var(--color_Indigo);
    background: var(--gradient_Indigo_Midnight);
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}
.headerBtn .onlineBtn:hover {
	background: var(--color_Lavender);
}		
.headerBtn .vedBtn {
	position: relative;
	display: inline-block;
    padding: 10px 20px;
	font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    text-align: center;
    color: var(--color_White);
    background: var(--color_Copper);
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}
.headerBtn .vedBtn:hover {
	background: var(--color_Midnight);
}	
.burger {
	width: 40px;
	height: 40px;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	background: var(--color_Midnight);
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	cursor: pointer;
}	
.burger .svgIcon {
	width: 24px;
    height: 20px;
    display: block;
	fill: var(--color_White);
}
.burger:hover {
	background: var(--color_Copper);
}	

/* popupMenu */	
.popupMenu {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	padding-bottom: 40px;
	overflow-y: auto;
	background: var(--color_White);
	z-index: 1000;
	display: none;
}
.popupMenu .menu {
	position: relative;	
	margin-bottom: 20px;
}	
.popupMenu .menu ul {
	position: relative;	
	margin: 0;
}	
.popupMenu .menu li {
	position: relative;
	margin: 0;		
	list-style: none;
}
.popupMenu .menu li a {
	color: var(--color_Midnight);
	font-size: 16px;
    line-height: 30px;
    font-weight: 700;
	display: block;
}
.popupMenu .menu li a:hover {
	color: var(--color_Copper);
	text-decoration: none;
}
.popupMenu .btn {
	color: var(--color_Midnight);
	border: 2px solid var(--color_Midnight);
	background: none;
}
.popupMenu .btn:hover {
	color: var(--color_White);
	border-color: var(--color_Lavender);
	background: var(--color_Lavender);
}	
.close {
	position: absolute;
	top: 20px;
	right: 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.close .svgIcon {
    width: 24px;
    height: 24px;
    display: block;
	fill: var(--color_Midnight);
}
.close:hover .svgIcon {
	fill: var(--color_Copper);
}

.menuFlex {
	position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    gap: 40px;
	padding: 40px 0;
}
	
 	
/* footer */	
.footer {
	position: relative;
	flex: 0 0 auto;
	padding: 40px 0;
	background: var(--color_Midnight); 
}
.footerWp {
	max-width: 1360px;
	position: relative;
	padding: 0 40px;
	margin: 0 auto;
	display: grid;
    gap: 40px;
	grid-template-columns: 200px 220px 220px auto;
	align-items: stretch;
}
.footerMenu, .footerMenu .menu {
	position: relative;	
}
.footerMenu .menu ul {
	position: relative;
	margin: 0;
}		
.footerMenu .menu li {
	position: relative;	
	margin: 0 0 15px 0;
	list-style: none;
}
.footerMenu .menu li:last-child {
	margin-bottom: 0;
}	
.footerMenu .menu li a {
	color: var(--color_Lavender);
	font-size: 16px;
    line-height: 20px;
    font-weight: 700;
	display: block;
}
.footerMenu .menu li a:hover {
	color: var(--color_Copper);
	text-decoration: none;
}	
.footerContacts {
	position: relative;	
	display: grid;
    grid-template-columns: repeat(1, 1fr);
	align-items: flex-start;
	gap: 20px;
}
.footerContacts__item {
	position: relative;	
}
.footerContacts__item span {
	color: var(--color_Lavender);
	font-size: 12px;
    line-height: 16px;
    font-weight: 700;
	display: block;
	margin-bottom: 5px;
}	
.footerContacts__item p {
	color: var(--color_White);	
	font-size: 12px;
    line-height: 16px;
}
.footerContacts__item p {
	margin: 0;
}
.footerContacts__item a:hover {
	color: var(--color_Copper);
}
.footerContacts__general a {
	font-size: 20px;
    line-height: 30px;
}		

.footerCopyright {
	color: var(--color_Lavender);
	font-size: 12px;
	line-height: 14px;
}
.footerCopyright p {
	margin-bottom: 15px;
}
.footerCopyright p:last-child {
	margin-bottom: 0;
}	


/* content */	
.content {
	position: relative;	
	margin: 40px 0;
}	
.wp {
	max-width: 1160px;
    position: relative;
    padding: 0 40px;
	margin: 0 auto;
}

.container {
	max-width: 1380px;
    position: relative;
    padding: 0 40px;
    margin: 0 auto;
}

.bread-crumbs {
	position: relative;
	display: flex;
	flex-wrap: wrap;
}
.bread-item {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	color: var(--color_Lavender);
	font-size: 12px;
    line-height: 14px;
    font-weight: 700;
}
.bread-item a {
	position: relative;
}
.bread-item a:hover {
	color: var(--color_Copper);
}	
.bread-item:after {
	position: relative;
	padding: 0 5px;
	content: '—';
}
.bread-item:last-child:after {
	display: none;
}

.snippet {
	position: relative;
	font-size: 16px;
	line-height: 18px;
}
.snippet p {
	margin-bottom: 18px;
}	
.snippet p:last-child {
	margin-bottom: 0;
}

.top40 {
	margin-top: 40px;
}
.bottom40 {
	margin-bottom: 40px;
}	
 
/* Type 1 */
.topInner {
	position: relative;	
	margin-bottom: 40px;
}
.topInner h1 {
	margin-top: 10px;
}

/* Type 2 */
.topBanner {
	position: relative;	
	margin-bottom: 20px;
}	
.infoBanner {
    min-height: 360px;
	position: relative;
	display: flex;
    flex-wrap: wrap;
	margin-bottom: 40px;
    align-items: center;
	background-repeat: no-repeat;
	background-position: center right;
	background-size: cover;
	-webkit-border-radius: 40px;
	-moz-border-radius: 40px;
	border-radius: 40px;
}		
.infoBanner__info {
	position: relative;
	padding: 40px 110px;
}	
.infoBanner__info h1 {
	font-size: 50px;
}
.infoBanner__info .snippet {
	max-width: 460px;
	color: var(--color_Midnight);
}
#business {
	background-image: url(/images/banner/business.jpg); 
}
#deposits {
	background-image: url(/images/banner/deposits.jpg); 
}
#crediting {
	background-image: url(/images/banner/crediting.jpg); 
}

.slider {
	max-width: 1380px;
    position: relative;
    padding: 0 40px;
    margin: 0 auto;
}
.slider__item {
	height: 490px;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	-webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 40px;
}	
.slider__item__mob {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	display: none;
}	
.slider__item__info {
	position: relative;
	padding: 40px 110px;
}
.slider__item__info-title {
	max-width: 600px;
	color: var(--color_White);
	font-size: 50px;
    line-height: 56px;
    font-weight: 900;
}
.slider__item__info-btn {
	margin-top: 30px;
}	

.slider-carousel .owl-nav {
	position: absolute;
	right: 30px;
	bottom: 30px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 5px;
}
.slider-carousel .owl-prev, .slider-carousel .owl-next {
	width: 60px;
	height: 60px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	border: none;
	background: transparent;
}
.slider-carousel .owl-prev svg, .slider-carousel .owl-next svg {
	width: 60px;
	height: 60px;
	display: block;
	fill: var(--color_Cotton);
}		
.slider-carousel .owl-prev.disabled, .slider-carousel .owl-next.disabled {
	opacity: 0.2;
	filter: alpha(opacity=20);
}
.slider-carousel .owl-prev:hover svg, .slider-carousel .owl-next:hover svg {
	fill: var(--color_Lavender);
}

.slider-carousel .owl-dots {
	position: absolute;
	top: 80px;
	left: 20px;
}
.slider-carousel .owl-dots .owl-dot {
	width: 6px;
	height: 6px;
	display: block;
	margin-bottom: 3px;
	border: none;
	background: var(--color_White);
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
}		
.slider-carousel .owl-dots .owl-dot.active {
	background: var(--color_Midnight);
}	


.sliderBtn {
	position: relative;
	display: inline-block;
	padding: 20px 50px;
	color: var(--color_White);
	font-size: 24px;
	line-height: 30px;
	font-weight: 700;
	background: var(--color_Copper);
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}	
.sliderBtn:hover {
	background: var(--color_Lavender);
}


.mainTabs {
	position: relative;
}
.mainTabs .tabs {
	max-width: 640px;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	background: var(--color_Cotton);
	-webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    border-radius: 60px;
}	
.mainTabs .tabs .tab {
	height: 40px;
	padding: 0 30px;
	flex: 1 1 33.333%;
	display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
	color: var(--color_Midnight);
	font-size: 14px;
	line-height: 100%;
	font-weight: 700;
	text-align: center;	
	-webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    border-radius: 60px;
	cursor: pointer;
}	
.mainTabs .tabs .tab.active {
	color: var(--color_White);
	background: var(--color_Midnight);
}	

.tabsInfo {
	position: relative;	
	margin-top: 40px;
}
.tabsInfo .item {
	position: relative;	
	display: none;
}
.tabsInfo .item.active {
	display: block;
}

.services {
	position: relative;	
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
	gap: 20px;
}	
.services__item {
	width: 200px;
	height: 230px;
	position: relative;	
	padding: 20px;
	display: none;
	background: var(--color_Cotton);
	-webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}
.services__item:nth-child(-n+5) {
	display: block;
}	
.services.open-all .services__item {
	display: block;
}
.services__item img {
	width: 156px;
	display: block;
}
.services__item span {
	height: 40px;
	display: flex;
    flex-wrap: wrap;
    align-items: center;
	justify-content: center;
    text-align: center;
	font-size: 16px;
	line-height: 18px;
	font-weight: bold;
	color: var(--color_Midnight);
}	
.services-more {
	position: relative;	
	margin-top: 40px;
	display: flex;
    flex-wrap: wrap;
	justify-content: center;
}

.about {
	position: relative;	
	display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
    gap: 20px;
}
.about p a, .about ul a, .about ol a {
	color: var(--color_Copper);
}		

.mainNews {
	position: relative;
	margin-top: 60px;	
}
.mainNews__title {
	position: relative;	
	display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.mainNews__title a {
	display: block;
    margin-bottom: 20px;
	font-size: 14px;
	line-height: 20px;
	font-weight: bold;
	color: var(--color_Lavender);
}	
.mainNews__title a:hover {
	text-decoration: underline;
}
.mainNews__news {
	position: relative;	
}	
.news {
	position: relative;	
	display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
    gap: 20px;
}		
.news__item {
	position: relative;
	padding-left: 200px;
	display: grid;
    grid-template-columns: repeat(1, 1fr);
    align-items: stretch;
	background: var(--color_Cotton);
	-webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}
.news__img {
	width: 200px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.news__img img {
	width: 100%;
    height: 100%;
	object-fit: contain;
}	
.news__info {
	position: relative;
	padding: 20px;
	align-self: start;
}
.news__date {
	margin-bottom: 5px;
	font-size: 12px;
	line-height: 14px;
	font-weight: bold;
	color: var(--color_Midnight);
}
.news__text {
	font-size: 12px;
	line-height: 14px;
	display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news__btn {
	align-self: end;
	padding: 0 20px 20px 20px;
} 
.news-more {
	position: relative;	
	margin-top: 40px;
	display: flex;
    flex-wrap: wrap;
	justify-content: center;
}

.news-period {
	position: relative;
	overflow: hidden;
	margin-bottom: 40px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.news-period__current {
	width: 80px;
	position: relative;
	font-size: 22px;
	line-height: 30px;
	font-weight: 500;
	color: var(--color_White);
	text-align: center;
	background: var(--color_Violet);
	-webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
	flex-shrink: 0;
}	
.news-period__list {
	width: calc(100% - 80px);
	position: relative;
	padding: 0 60px;
}	
.news-year {
	font-size: 20px;
	line-height: 30px;
	font-weight: 500;
	color: var(--color_Lavender);
}	
.years-carousel .owl-nav {
	position: absolute;
	right: -60px;
	top: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 5px;
}
.years-carousel .owl-prev, .years-carousel .owl-next {
	width: 30px;
	height: 30px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	border: none;
	background: transparent;
}
.years-carousel .owl-prev svg, .years-carousel .owl-next svg {
	width: 30px;
	height: 30px;
	display: block;
	fill: var(--color_Copper);
}		
.years-carousel .owl-prev.disabled, .years-carousel .owl-next.disabled {
	display: none;
}
.years-carousel .owl-prev:hover svg, .years-carousel .owl-next:hover svg {
	fill: var(--color_Lavender);
}

.newsDetail {
	max-width: 760px;
	position: relative;
	font-size: 16px;
	line-height: 18px;
}		
.newsDetail p {
	margin-bottom: 18px;
}		
.newsDetail p a {
	color: var(--color_Copper);
}	
.newsDetail p a:hover {
	text-decoration: underline;
}
.newsDetail ul, .newsDetail ol {
	margin-bottom: 18px;
}
.newsDetail ul li {
	margin: 0 0 0 20px;
	list-style: disc;
}
.newsDetail ol li {
	margin: 0 0 0 20px;
	list-style: decimal;
}		

.img404 {
	width: 70%;
	max-width: 520px;
	position: relative;
	margin: 0 auto;
}	

/* contacts */
.contact__item {
	position: relative;
}
.contact__item-name {
	color: var(--color_Lavender);
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
	text-transform: uppercase;
}
.contact__item-address {
	margin-top: 10px;
	color: var(--color_Midnight);
	font-size: 18px;
	line-height: 20px;
	font-weight: 500;
}
.contact__item-address a {
	display: block;
}	
.contact__item-address a[href^="mailto:"] {
	text-decoration: underline;
}
.contact__item-address a:hover {
	color: var(--color_Copper);
}		
.contact__item-phone {
	margin-top: 15px;
	color: var(--color_Midnight);
	font-size: 18px;
	line-height: 20px;
	font-weight: 500;
}
.contact__item-phone a {
	display: block;
}
.contact__item-phone:hover a {
	color: var(--color_Copper);
}
.contact__item-text {
	margin-top: 10px;
	font-size: 12px;
	line-height: 16px;
	font-weight: 500;
}	
.contact__item-text p {
	margin: 0;
}	
.contact__item-text a {
	text-decoration: underline;
}
.contact__item-text a:hover a {
	color: var(--color_Copper);
}

.contactsOffices {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column-reverse;
    gap: 40px;
}	

.contactsList {
	width: 100%;
	position: relative;
    display: grid;
    gap: 40px 20px;
	grid-template-columns: repeat(5, 1fr);
	align-items: stretch;
}
.contactsCash {
	width: 100%;
	position: relative;
	color: var(--color_Copper);
}	
.contactsCash span {
	display: block;
	margin-bottom: 5px;
	font-size: 18px;
	line-height: 20px;
	font-weight: 700;
}
.contactsCash a {
	display: block;
	font-size: 18px;
	line-height: 20px;
	font-weight: 500;
}	
.contactsMob {
	display: none;
}		

.contactsMap {
	height: 400px;
	position: relative;
}
.contactsMap iframe	{
	width: 100%;
	height: 100%;
	display: block;
}	

.contactsATMs {
	position: relative;
}
.contactsATMs__item {
	position: relative;
	margin-bottom: 40px;
}
.contactsATMs__item:last-child {
	margin-bottom: 0;
}

/* about */
.aboutBanner {
    position: relative;
	display: flex;
    flex-wrap: wrap;
    align-items: center;
	margin-bottom: 20px;
	background-image: url(/images/banner/about.jpg);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 40px;
}	
.aboutBanner__info {
	position: relative;
	padding: 40px 110px;
}
.aboutBanner__text {
	position: relative;
}
.aboutBanner__text h1 {
    color: var(--color_White);
    font-size: 50px;
}
.aboutBanner__text .snippet {
    max-width: 530px;
    color: var(--color_White);
}
.aboutBanner__tags {
	position: relative;
	margin-top: 60px;
	display: flex;
    flex-wrap: wrap;
	gap: 20px;
}	
.aboutBanner__tags .tag {
	width: 200px;
	height: 40px;
	position: relative;
	display: flex;
    flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	line-height: 12px;
	text-align: center;
	color: var(--color_Copper);
	font-weight: 700;
	border: 1px solid var(--color_Copper);
	-webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    border-radius: 60px;
}	

.history {
	position: relative;
    display: grid;
    gap: 20px;
	grid-template-columns: repeat(4, 1fr);
	align-items: stretch;
}	
.history__item {
	position: relative;
	padding: 20px;
	color: var(--color_White);
	background: var(--color_Lavender);
	-webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}
.history__item-year {
	margin-bottom: 15px;
	font-size: 100px;
	line-height: 100px;
	font-weight: 900;
}	
.history__item-text {
	position: relative;
}	

.docsBlock {
	position: relative;
}	
.docsBlock__btn {
	position: relative;	
	margin-top: 20px;
    display: none;
    flex-wrap: wrap;
    justify-content: center;
}	

.docs {
	position: relative;
    display: grid;
    gap: 20px;
	grid-template-columns: repeat(4, 1fr);
	align-items: stretch;
}
.docs.grid4 {
	grid-template-columns: repeat(4, 1fr);
}
.docs.grid3 {
	grid-template-columns: repeat(3, 1fr);
}
.doc {
	min-height: 30px;
	padding-left: 40px;
	display: flex;
    flex-wrap: wrap;
	align-items: center;
	color: var(--color_Midnight);
	font-size: 12px;
	line-height: 14px;
	text-decoration: underline;
	background-image: url(/images/doc.svg);
    background-repeat: no-repeat;
	background-position: left center;
}
.doc:hover {	
	text-decoration: none;
	background-image: url(/images/doc-blue.svg);
}

.file {
	padding-left: 20px;
	color: var(--color_Midnight);
	background-image: url(/images/doc.svg);
    background-repeat: no-repeat;
	background-position: left center;
	background-size: 16px;
}
.file:hover {	
	text-decoration: none;
	background-image: url(/images/doc-blue.svg);
}

/* Сервисы */
.service-grid {
	display: grid;
    gap: 20px;
	grid-template-columns: repeat(1, 1fr);
	align-items: stretch;
}
.service-start {
	align-self: start;
}
.service-end {
	align-self: end;
}
.service-title {
	position: relative;
}
.service-tags {
	position: relative;
	display: flex;
    flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 15px;
}	
.service-tags .tag {
	height: 30px;
	position: relative;
	padding: 0 10px;
	display: flex;
    flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	line-height: 12px;
	text-align: center;
	color: var(--color_Copper);
	font-weight: 700;
	border: 1px solid var(--color_Copper);
	-webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    border-radius: 60px;
}
.service-text {
	position: relative;
}
.service-img {
	align-self: end;
	display: flex;
	flex-wrap: wrap;
}
.service-img img {
	max-width: 320px;
}	

/* business */
.servicesList {
	position: relative;
    display: grid;
    gap: 20px;
	grid-template-columns: repeat(4, 1fr);
	align-items: stretch;
}	
.servicesList__item {
	position: relative;
	padding: 30px 20px;
	color: var(--color_White);
	background: var(--gradient_Copper_Orange);
	-webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}	
.servicesList__item .h4 {
	color: var(--color_White);
}
.servicesList__item .btn {
	color: var(--color_Copper);
	background: var(--color_White);
}
.servicesList__item .btn:hover {
	color: var(--color_White);
	background: var(--color_Lavender);
} 	
.servicesListMob {
	position: relative;
	margin: 20px 0;
	display: none;
}		

.plusBusiness {
	position: relative;
    display: grid;
    gap: 20px;
	grid-template-columns: repeat(4, 1fr);
	align-items: stretch;
}	
.plusBusiness__item {
	position: relative;
	padding: 30px 20px 0 20px;
	background: var(--color_Cotton);
	-webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}	
.plusBusiness__item .h4 {
	color: var(--color_Violet);
}	
.plusBusiness__item .service-img  {
	justify-content: center;
}

/* crediting */
.plusCrediting {
	position: relative;
    display: grid;
    gap: 20px;
	grid-template-columns: repeat(4, 1fr);
	align-items: stretch;
}	
.plusCrediting__item {
	position: relative;
	padding: 0 20px 30px 20px;
	background: var(--color_Cotton);
	-webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}	
.plusCrediting__item .service-title {
	max-width: 190px;
	padding-top: 20px;
}	
.plusCrediting__item .h4 {
	color: var(--color_Violet);
}
.plusCrediting__item .service-img {
	justify-content: flex-end;
}

/* deposits */
.deposits {
	position: relative;
    display: grid;
    gap: 20px;
	grid-template-columns: auto auto 420px;
	align-items: stretch;
}	
.deposits__item {
	position: relative;
	overflow: hidden;
	padding: 20px;
	background: var(--color_Cotton);
	-webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}	
.deposits__item .service-title {
	max-width: 190px;
}	
.deposits__item .h4 {
	color: var(--color_Violet);
}
.deposits__item .service-img {
	max-width: 320px;
	position: absolute;
	top: 0;
	right: 0;
}
.deposits__item .service-title {
	padding-top: 90px;
}		
.deposits__item:last-child {
	color: var(--color_White);
	background: var(--gradient_Copper_Orange);
}
.deposits__item:last-child .h4 {
	color: var(--color_White);
}
.deposits__item:last-child .service-tags .tag {
	color: var(--color_White);
	border: 1px solid var(--color_White);
}
.deposits__item:last-child .btn {
	color: var(--color_Copper);
	background: var(--color_White);
}
.deposits__item:last-child .btn:hover {
	color: var(--color_White);
	background: var(--color_Lavender);
} 		

/* scheme */
.scheme {
	position: relative;	
	position: relative;
    display: grid;
    gap: 20px;
	grid-template-columns: repeat(5, 1fr);
	align-items: stretch;
}	
.scheme__item {
	position: relative;	
	padding: 10px 10px 20px 10px;
	display: flex;
    flex-wrap: wrap;
	align-items: flex-start;
	justify-content: center;
	background: var(--gradient_Indigo_Midnight);
	-webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}	
.scheme__item img {
	max-width: 156px;
}
.scheme__item span {
    text-align: center;
	font-size: 16px;
	line-height: 18px;
	font-weight: bold;
	color: var(--color_White);
}	
.note {
	max-width: 380px;
	position: relative;	
	color: var(--color_Copper);
	font-size: 12px;
	line-height: 14px;
}	

/* ved */
/*
.vedBanner {
	height: 490px;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	background-image: url(../images/banner/ved.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	-webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 40px;
}	
.vedBanner__info {
	position: relative;
	padding: 40px 110px;
}
.vedBanner__info-title {
	max-width: 600px;
	color: var(--color_Midnight);
	font-size: 50px;
    line-height: 56px;
    font-weight: 900;
}
.vedBanner__info-btn {
	margin-top: 30px;
}	
*/

.vedList {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
    gap: 20px;
}
.vedList__item {
	height: 260px;
	position: relative;
	overflow: hidden;
	padding: 40px 20px 40px 220px;
	display: grid;
    grid-template-columns: repeat(1, 1fr);
    align-items: stretch;
	background-color: var(--color_Cotton);
	background-repeat: no-repeat;
	background-size: 70% auto;
    background-position: -120px -40px;
	-webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}
.vedList__info {
	position: relative;
	align-self: start;
}
.vedList__info .h4 {
	color: var(--color_Violet);
}
.vedList__info p {
	font-size: 12px;
    line-height: 14px;
}		
.vedList__btn {
	align-self: end;
}

.vedPlus .vedList__info {
    align-self: center;
}
	
.vedPromo {
	min-height: 260px;
	position: relative;
	overflow: hidden;
	padding: 40px 0;
	display: flex;
    flex-wrap: wrap;
	align-items: center;
	background-color: var(--color_Cotton);
	background-repeat: no-repeat;
	background-size: auto 100%;
	-webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}	
.vedPromo__info {
	width: 50%;
	position: relative;
	display: flex;
    flex-wrap: wrap;
	justify-content: center;
}
.vedPromo__text {
	max-width: 360px;
	position: relative;
}	
.vedPromo__info .h4 {
	color: var(--color_Violet);
}
.vedPromo__info ul li {
	font-size: 12px;
    line-height: 16px;
	list-style: disc;
	margin: 0 0 0 15px;
}	
.vedPartners {
	justify-content: flex-end;
	background-image: url(../images/banner/vedFon1.png);
	background-position: top left;
}
.vedScore {
	justify-content: flex-start;
	background-image: url(../images/banner/vedFon2.png);
	background-position: top right;
}

.vedForm {
	min-height: 280px;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 40px 0 40px 220px;
	background-image: url(../images/banner/vedForm1.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	-webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}	
.vedForm .form {
	max-width: 420px;
	position: relative;
}
.vedForm .form .h4 {
	color: var(--color_White);
}		

.form-item {
	position: relative;
	margin: 0 0 10px 0
}	
.form-item input {
	width: 100%;
	height: 40px;
	padding: 0 20px;
    margin: 0;
	font-family: var(--font-family);
	color: var(--color_Indigo);
	font-size: 12px;
    font-weight: 500;
	border: none;
    background: var(--color_White);
    box-sizing: border-box;
	-webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}	
.form ::-webkit-input-placeholder {color: var(--color_Violet);}
.form ::-moz-placeholder {color: var(--color_Violet);}
.form :-moz-placeholder {color: var(--color_Violet);}
.form :-ms-input-placeholder {color: var(--color_Violet);}	

.form span {
	display: block;
	margin-top: 10px;
	color: var(--color_Lavender);
	font-size: 12px;
	line-height: 14px;
    font-weight: 500;
}	
.form span a {
	color: var(--color_Copper);
}
.form span a:hover {
	text-decoration: underline;
}
.form-button {
	position: relative;
}
.form-button input[type="submit"] {
	position: relative;
	display: inline-block;
	color: var(--color_White);
	font-weight: 700;
	padding: 10px 30px;
	font-size: 14px;
	line-height: 20px;
	border: none;
	background: var(--color_Copper);
	background: var(--gradient_Copper_Orange);
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	cursor: pointer;
    box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	transition: 1s;
}
.form-button input[type="submit"]:hover {
	background: var(--color_Lavender);
	transition: 1s;
} 
.form-button .check {
	margin-bottom: 20px;
	display: block;
}	
.form-button .checkbox {
	display: none;
}		

.vedOrder {
	position: relative;
	padding: 25px 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	background: var(--color_Indigo);
	background: var(--gradient_Indigo_Midnight);
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}	
.vedOrder__info {
	display: flex;
	align-items: center;
	gap: 40px;
}	
.vedOrder__info-text {
	color: var(--color_White);
}
.vedOrder__info-text .h4 {
	margin-bottom: 0;
	color: var(--color_White);
}
.vedOrder__info-text p {
	font-size: 12px;
	line-height: 16px;
}	
.vedOrder__info-btn .btn {
	background: var(--color_Copper);
    background: var(--gradient_Copper_Orange);
}
.vedOrder__info-btn .btn:hover {
	background: var(--color_Lavender);
}

.popupForm {
	width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    padding: 40px 0;
    background: rgba(0,0,0,0.6);
    z-index: 1000;
    display: none;
}	
.popupFormWp {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.popupFormWp .wp {
	flex: 1;
}
.vedFormPopup {
    min-height: 320px;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 40px 0 40px 270px;
    background-image: url(../images/banner/vedForm2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}
.vedFormPopup .form {
    max-width: 420px;
    position: relative;
}
.vedFormPopup .h4, .vedFormPopup span  {
    color: var(--color_Midnight);
}
.vedFormPopup .close {
	width: 26px;
	height: 26px;
	border: 1px solid var(--color_White);
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}
.vedFormPopup .close .svgIcon {
	width: 12px;
    height: 12px;
	fill: var(--color_White);
}	

.column {
	position: relative;
	-webkit-column-count: 2;
	-moz-column-count: 2;
	column-count: 2;
	-webkit-column-gap: 30px;
	-moz-column-gap: 30px;
	column-gap: 30px;
}
.image {
	margin: 20px 0;
	-webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 40px;
}

/* textTabs */
.textTabs {
    position: relative;
}
.textTabs-item {
    position: relative;
    padding: 15px 0;
    border-bottom: 2px solid var(--color_Cotton);
}	
.textTabs-item_title {
    position: relative;
	padding-right: 40px;
	font-size: 16px;
    line-height: 24px;
    font-weight: bold;
    color: var(--color_Midnight);
}
.textTabs-item_title:after {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    background: url(/images/open.svg) no-repeat center;
	background-size: 100%;
    content: '';
	cursor: pointer;
    transition: 0.5s;
}
.textTabs-item_info {
    position: relative;
    margin-top: 20px;
    display: none;
}
.textTabs-item.open .textTabs-item_info {
	display: block;
}
.textTabs-item.open .textTabs-item_title:after {
	transform: rotate(180deg);
	transition: 0.5s;
}	