h1 {
    margin-bottom: 30px;
}

h2, h3, .h2, .h3 {
    margin-top: 70px;
    margin-bottom: 35px;
    padding: 0;
}

@media (width <= 767.98px) {
    h2, h3, .h2, .h3 {
        margin-block: 2rem 1rem;
    }
}

.h3 {
    text-transform: initial;
    font-size: 28px;
    font-weight: bold;
}

.h4 {
    margin-top: 28px;
    margin-bottom: 14px;
    font-size: 22px;
    font-weight: 600;
}

.h5 {
    font-size: 16px;
    font-weight: 600;
}

.sm-link {
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 16px;
    line-height: 1;
    color: #c2c2c2;
}

.b-hero {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 45px;
    padding: 20px 60px 60px;
    height: 400px;
    border-radius: 8px;
    background: #f6f6f6 no-repeat center/cover url(/images/sozdanie-sajta-it/bg_it.jpg);
}
.b-hero__title {
    margin-bottom: 40px;
    max-width: 360px;
    text-transform: uppercase;
    font-size: 42px;
    font-weight: 600;
    color: #fff;
}
.b-hero__text {
    max-width: 260px;
    text-transform: uppercase;
    font-size: 22px;
    font-weight: bold;
    color: #fff;
}
@media (width <= 767.98px) {
    .b-hero {
        height: auto;
        padding: 40px 20px 80px;
        /* background-position-x: 70%; */
    }
    .b-hero__title {
        max-width: 60%;
        font-size: 28px;
    }
    .b-hero::after {
        display: none;
    }
}

.b-site-obj-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.b-site-obj {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
	position: relative;
    z-index: 1;
	border-radius: 8px;
    overflow: hidden;
	padding: 234px 20px 25px;
    background-color: #4caacc;
}
.b-site-obj__img {
	position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.b-site-obj__img img {
	width: 100%;
    height: 100% !important;
    object-fit: cover;
}
.b-site-obj__content {
	padding-inline: 20px;
}
.b-site-obj__title {
	margin-top: -30px;
	margin-bottom: 25px;
	font-size: 20px;
	font-weight: 600;
	color: #fff;
}
.b-site-obj__title a {
    color: inherit;
}
.b-site-obj__text {
	bottom: 85px;
	font-size: 14px;
    line-height: 1.13;
	color: #fff;
}
@media (width <= 991.98px) {
	.b-site-obj-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (width <= 575.98px) {
	.b-site-obj-grid {
		grid-template-columns: 1fr;
	}
}