@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');

body {
	background: #DCE1F2;
	font-family: 'Open Sans', serif;
	font-style: normal;
	font-weight: 400;
	font-size: 20px;
	line-height: 160%;
	color: #353535;
}
img,
svg {
	max-width: 100%;
	height: auto;
}
a,
button,
input,
a:hover,
button:hover,
input:hover {
	transition: all .3s;
}
.h1 {
	font-weight: 500;
	font-size: 48px;
	line-height: 140%;
	color: #353535;
	margin-top: 0;
	margin-bottom: 30px;
}
p {
	margin-bottom: 20px;
}
p:last-of-type {
	margin-bottom: 0;
}
.intro-text {
	background: #FFFFFF;
	box-shadow: 0px 6px 24px rgba(0, 0, 0, 0.05);
	border-radius: 25px;
	padding: 83px 140px;
	margin-bottom: 100px;
}
@media (max-width: 991px) {
	.intro-text {
		padding: 44px 56px;
	}
}
@media (max-width: 575px) {
	.intro-text {
		padding: 24px 24px;
	}
	.h1 {
		font-size: 28px;
		line-height: 120%;
	}
	body {
		font-size: 16px;
	}
}
.projects-wrapper {
	border-top: 2px solid rgba(0, 0, 0, 0.1);
}
.projects-block {
	padding-top: 80px;
	padding-bottom: 156px;
	position: relative;
}
.projects-block::before {
	content: '';
	position: absolute;
	top: -4px;
	left: 15px;
	background: #0057CA;
	width: 200px;
	height: 5px;
}
.h2 {
	font-weight: 500;
	font-size: 36px;
	line-height: 140%;
	color: #353535;
	margin-top: 0;
	margin-bottom: 112px;
}
.projects-block-item {
	display: block;
	overflow: hidden;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	border-radius: 25px;
	margin-bottom: 40px;
}
.projects-block-item::before {
    float: left;
    padding-top: 100%;
    content: "";
}
.projects-block-item-title {
    font-weight: 500;
	font-size: 24px;
	line-height: 140%;
	color: #353535;
	margin-bottom: 68px;
}
.header-top {
	margin-bottom: 20px;
	margin-top: 20px;
}
.header-top-addr {
	background: url(../img/marker.svg) no-repeat center left / 15px auto;
	font-weight: 400;
	font-size: 14px;
	line-height: 14px;
	height: 20px;
	color: #353535;
	padding-left: 30px;
}
.slider {
	margin-bottom: 100px;
	position: relative;
}
.slider img {
	width: 100%;
}
.slick-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
	border: none;
	text-indent: -12000px;
	background: no-repeat center center / 100% auto;
	width: 70px;
	height: 70px;
	cursor: pointer;
}
.slick-arrow:focus {
	outline:none;
}
.slick-prev {
	left: -15px;
	background-image: url(../img/arrow-left.svg);
}
.slick-next {
	right: -15px;
	background-image: url(../img/arrow-right.svg);
}
.slick-slide {
	padding: 0 16px;
}