.b-block-home-footer {
	background-color: #0b1438;
	border-radius: var(--global-block-border-radius);
	padding: 8rem 4rem;
	position: relative;
	margin-bottom: calc(var(--global-block-margin-bottom) * 2);
	color: #fff;
	text-align: center;
}

.b-block-home-footer__header{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}

.b-block-home-footer__header-inner{
	width: 20%;
	height: 60px;
    padding: 10px 15px;
    display: block;
    margin: 0 auto;
    position: relative;
    background: #f1f5f8;
    border-radius: 0 0 25px 25px;
}

.b-block-home-footer__header-inner::before,
.b-block-home-footer__header-inner::after{
	content: "";
    position: absolute;
    top: 0px;
	height: 50px;
	width: 25px;
}

.b-block-home-footer__header-inner::before {
    left: -25px;
    border-top-right-radius: 25px;
    box-shadow: 0 -25px 0 0 #f1f5f8;
}

.b-block-home-footer__header-inner::after {
    right: -25px;
    border-top-left-radius: 25px;
    box-shadow: 0 -25px 0 0 #f1f5f8;
}

.b-block-home-footer__header-logo{
	background: url(images/logotype.svg) center no-repeat;
	background-size: contain;
	width: 60px;
	height: 40px;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -20px 0 0 -30px;
}

.b-block-home-footer__bg{
	background-color: transparent;
	background-size: contain;
	background-position: 0px 0px;
	background-repeat: no-repeat;
	position: absolute;
	z-index: 1;
	opacity: .7;
}

.b-block-home-footer__bg._bg-1{
	background-image: url(images/bg.svg);
	bottom: 30px;
    left: 30px;
	width: 259px;
	height: 120px;
}

.b-block-home-footer__bg._bg-2{
	background-image: url(images/bg.svg);
	top: 30px;
    right: 30px;
	width: 183px;
	height: 85px;
}

.b-block-home-footer__inner{
	position: relative;
	z-index: 3;
}

.b-block-home-footer__title{
	font-size: var(--global-font-size-h1);
    font-weight: 900;
	margin-bottom: 60px;
	color: #fff;
}

.b-block-home-footer__action-btn{
	padding: var(--global-btn-size-base-padding-vertical) var(--global-btn-size-base-padding-horizontal);
    font-size: var(--global-btn-size-base-font-size);
    line-height: var(--global-btn-size-base-line-height);
    border-radius: var(--global-btn-size-base-border-radius);
	color: #fff;
	border: #fff solid 2px;
	font-weight: bold;
}

/* МОБИЛЬНАЯ ВЕРСИЯ */

@media (max-width: 767px) 
{
	.b-block-home-footer{
		margin-top: calc(var(--global-block-margin-bottom) * 2);
		margin-bottom: var(--global-block-margin-bottom);
	}

	.b-block-home-footer__header-inner{
		width: 30%;
	}
}

@media (max-width: 600px) 
{
	.b-block-home-footer{
		padding: 6rem 2rem;
	}

	.b-block-home-footer__header-inner{
		width: 40%;
	}
}

@media (max-width: 480px) 
{
	.b-block-home-footer__title{
		font-size: var(--global-font-size-h2);
	}
}

@media (max-width: 380px) 
{
	.b-block-home-footer__header-inner{
		width: 50%;
	}

	.b-block-home-footer__title{
		font-size: var(--global-font-size-h3);
	}
}