@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@900&display=swap");

.main-screen {
	height: 550px;
	position: relative;
	color: #fff;
	background-position: center;
	background-size: cover;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: #11162d;
}
.main-screen__title {
	color: #ffffff;
}
.main-screen__scroll {
	position: absolute;
	bottom: 50px;
	left: 50%;
	transform: translateX(-50%);
	line-height: 0;
}

.main-screen__descr .button-o {
	margin-left: 20px;
}

@media (max-width: 1199px) {
	.main-screen {
		height: 500px;
	}
	.main-screen__scroll {
		bottom: 40px;
		max-width: 30px;
	}
}
@media (max-width: 991px) {
	.main-screen {
		height: 450px;
	}
	.main-screen__scroll {
		bottom: 30px;
		max-width: 20px;
	}
}
@media (max-width: 600px) {
	.main-screen__descr .button-o {
		margin: 20px auto 0;
	}
}
@media (max-width: 370px) {
	.main-screen__scroll {
		display: none;
	}
}

.call-section__wrap {
	position: relative;
}
.call-section__overlay {
	position: absolute;
	width: 100vw;
	height: 100%;
	left: 0;
	top: 0;
	background-color: #ebf1f7;
	z-index: -1;
}

/*
 *
 * Steps list
 *
 */
.steps-list {
	list-style: none;
	margin: 0;
	padding: 0;
	counter-reset: counter;
}
.steps-list__count {
	counter-increment: counter;
	font-family: "Montserrat", sans-serif;
	font-weight: 900;
	font-size: 64px;
	line-height: 78px;
	color: #15162f;
	margin-bottom: 20px;
}
.steps-list__count:before {
	content: "0" counter(counter);
}
.steps-list__item {
	height: 315px;
	position: relative;
	/*overflow: hidden;*/
	padding: 0;
}
.steps-list__item:before,
.steps-list__item:after {
	content: "";
	width: 190px;
	height: 2px;
	background-color: #aec1d6;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	opacity: 0;
	transition: opacity ease-in-out 200ms;
}
.steps-list__item:before {
	right: calc(100% + 30px);
}
.steps-list__item:after {
	left: calc(100% + 30px);
}
.steps-list__item:not(:last-child) {
	margin-bottom: 30px;
}
.steps-list__item-front,
.steps-list__item-back {
	padding: 42px 79px;
}
.steps-list__item-back {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	opacity: 0;
	background: #fff;
	transition: all linear 200ms;
}
.steps-list__item-front {
	display: flex;
	height: 100%;
}
.steps-list__icon {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.steps-list__round {
	background: #ebf1f7;
	width: 153px;
	height: 153px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}
.steps-list__descr {
	padding-right: 70px;
	color: #000000;
}
.steps-list__item:hover .steps-list__item-back {
	opacity: 1;
	z-index: 1;
}
.steps-list__item:hover:before,
.steps-list__item:hover:after {
	opacity: 1;
}

.style2 {
	position: relative;
}
.style2:before {
	content: "";
	background-image: url(/wp-content/themes/arp/src/images/svg/step-list-line.svg);
	position: absolute;
	top: 162px;
	height: 2px;
	left: 10%;
	right: 10%;
	z-index: -1;
}
.style2 .steps-list__item {
	padding-left: 15px;
	padding-right: 15px;
	height: auto;
	min-height: auto;
}
.style2 .steps-list__item:before,
.style2 .steps-list__item:after {
	display: none;
}
.steps-list__inner {
	max-width: 200px;
	margin: 0 auto;
	text-align: center;
}
.style2 .steps-list__icon {
	align-items: center;
	margin-bottom: 15px;
}
.style2 .steps-list__round {
	width: 120px;
	height: 120px;
}
.style2 .steps-list__descr {
	padding-right: 0;
	text-align: left;
}
.style2 .steps-list__count {
	color: #454969;
}

@media (max-width: 1199px) {
	.steps-list__item {
		height: 270px;
	}
	.steps-list__descr {
		padding-right: 40px;
	}
	.steps-list__round {
		width: 120px;
		height: 120px;
	}
	.steps-list__round img {
		max-width: 80px;
	}
}
@media (max-width: 991px) {
	.steps-list__count {
		font-size: 56px;
		line-height: 60px;
	}
	.steps-list__item {
		height: 230px;
	}
	.steps-list__round img {
		max-width: 70px;
	}
	.steps-list__round,
	.style2 .steps-list__round {
		width: 100px;
		height: 100px;
	}
	.style2:before {
		top: 133px;
	}
	.style2 .steps-list__round img {
		max-width: 50px;
	}
}
@media (max-width: 767px) {
	.steps-list__count {
		font-size: 45px;
		line-height: 45px;
	}
	.steps-list__item-front,
	.steps-list__item-back {
		padding: 30px 40px;
	}
	.steps-list__descr {
		padding-right: 15px;
	}
	.style2 {
		max-width: 525px;
		margin: 0 auto;
	}
	.style2:before {
		width: 2px;
		bottom: 30px;
		background: transparent;
		border-left: 2px dashed #aec1d6;
		height: auto;
		left: 143px;
		top: 30px;
	}
	.style2 .steps-list__descr {
		max-width: 300px;
	}
	.steps-list__inner {
		max-width: 100%;
		text-align: left;
		display: flex;
		align-items: center;
	}
	.style2 .tooltipster {
		display: flex;
		align-items: center;
	}
	.style2 .steps-list__icon {
		margin: 0 15px;
	}
	.style2 .steps-list__count {
		min-width: 65px;
	}
}
@media (max-width: 576px) {
	.steps-list__item {
		height: auto;
		min-height: 180px;
	}
	.steps-list__item:not(:last-child) {
		margin-bottom: 20px;
	}
	.steps-list__item-front,
	.steps-list__item-back {
		padding: 20px 30px;
	}
	.steps-list__item-front,
	.steps-list__item-back {
		padding: 20px 30px;
	}
	.steps-list__round img,
	.style2 .steps-list__round img {
		max-width: 40px;
	}
	.steps-list__round,
	.style2 .steps-list__round {
		width: 60px;
		height: 60px;
	}
	.style2 .steps-list__count {
		min-width: 50px;
		font-size: 35px;
		line-height: 35px;
	}
	.style2:before {
		left: 109px;
	}
}

.tooltipster-sidetip .tooltipster-content {
	color: #ffffff;
	padding: 10px;
	font-weight: 500;
	font-size: 14px;
	line-height: 18px;
	box-shadow: 0px 4px 10px rgb(0 0 0 / 10%);
}
.tooltipster-sidetip .tooltipster-box {
	background: #454969;
	border-radius: 7px;
	border: none;
}
.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border {
	border-top-color: #454969;
	border-radius: 7px;
}
.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-border,
.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background {
	border-right-color: #454969;
}
.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
	border-top-color: transparent;
}
.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-border,
.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background {
	border-left-color: #454969;
}

.services__top {
	padding-top: 80px;
	padding-bottom: 80px;
	background: #a4a6b4;
	margin-bottom: -2px;
}
.services__title {
	color: #ffffff;
}
.services__item {
	height: 220px;
	position: relative;
	display: flex;
	align-items: center;
	box-shadow: 0px 4px 50px rgba(10, 11, 30, 0.4);
	transition: all linear 200ms;
}
.services__item-icon {
	margin-right: 10px;
	min-width: 100px;
}

.services__item-link {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.services__item:hover {
	transform: translateY(-10px);
}
@media (max-width: 1199px) {
	.services__item-icon {
		min-width: 80px;
		width: 80px;
	}
	.services__item {
		height: 190px;
	}
}
@media (max-width: 991px) {
	.services__item {
		margin-bottom: 20px;
	}
	.services__item-icon {
		min-width: 70px;
		width: 70px;
	}
}
@media (max-width: 576px) {
	.services__top {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.services__item {
		height: auto;
	}
}

/*
 *
 * Documents
 * 
 */
.documents {
	background-image: url(/wp-content/themes/arp/src/images/home/documents/docs-bg.jpg);
	background-color: #f8f9fc;
	padding-bottom: 34px;
	margin-bottom: 66px;
}
.documents__angle {
	width: 100%;
	height: auto;
}
.documents__decor {
	position: relative;
	line-height: 0;
}
.documents__decor-icon {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 20px;
}

@media (max-width: 767px) {
	.practic__content .hidden-md {
		display: block;
	}
	.practic__content-item {
		margin-bottom: 20px;
	}
}
