

/* Start:/bitrix/templates/mtb/template_styles.css?17709865678753*/
html {
	width:100%;
	height: 100%;
}
body {
	height:100%;
	margin:0;
	padding:0;
	font-family: 'Montserrat', sans-serif;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
img {
	max-width: 100%;
}
/* Header */
.header {
	width: 100%;
	position: relative;
	margin-bottom: 0;
	box-shadow: 0px 5px 10px rgba(0,0,0,.1);
	position: relative;
	z-index: 10;
}
.logo svg
{
	max-width: 100%;
	height: 50px;
}
.navbar-toggler {
  outline: none;
  border: none;
  text-decoration: none;
  width: 1.625em;
  height: 0.875em;
  position: relative;
  display: block;
}

.navbar-toggler span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
  transform: translateX(0) translateY(-50%);
  -webkit-transform: translateX(0) translateY(-50%);
  -moz-transform: translateX(0) translateY(-50%);
  -ms-transform: translateX(0) translateY(-50%);
  -o-transform: translateX(0) translateY(-50%);
}

.navbar-toggler::before, .navbar-toggler::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  height: 2px;
  background-color: #000;
  transition: all 0.4s ease-in 0s;
  -webkit-transition: all 0.4s ease-in 0s;
  -moz-transition: all 0.4s ease-in 0s;
  -ms-transition: all 0.4s ease-in 0s;
  -o-transition: all 0.4s ease-in 0s;
}

.navbar-toggler::before {
  top: 0;
  width: 100%;
}

.navbar-toggler::after {
  bottom: 0;
  width: 75%;
}

.navbar-toggler:hover::after {
  width: 100%;
}

.navbar-toggler.active span {
  opacity: 0;
  visibility: hidden;
}

.navbar-toggler.active::before {
  top: 50%;
  transform: translateX(0) translateY(-50%) rotate(45deg);
  -webkit-transform: translateX(0) translateY(-50%) rotate(45deg);
  -moz-transform: translateX(0) translateY(-50%) rotate(45deg);
  -ms-transform: translateX(0) translateY(-50%) rotate(45deg);
  -o-transform: translateX(0) translateY(-50%) rotate(45deg);
}

.navbar-toggler.active::after {
  top: 50%;
  width: 100%;
  bottom: initial;
  transform: translateX(0) translateY(-50%) rotate(-45deg);
  -webkit-transform: translateX(0) translateY(-50%) rotate(-45deg);
  -moz-transform: translateX(0) translateY(-50%) rotate(-45deg);
  -ms-transform: translateX(0) translateY(-50%) rotate(-45deg);
  -o-transform: translateX(0) translateY(-50%) rotate(-45deg);
}
.header > .container
{
    position: relative;
    z-index: 3;
}
.navbar {
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
}
.navbar-brand {
	display: flex;
	align-items: center;
}
.logo-text {
	font-weight: 700;
	font-size: 24px;
	line-height: 32px;
	letter-spacing: 0.1px;
	background: white;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
}
.navbar-nav
{
	position: absolute;
	top: 100%;
	left: 0px;
	width: 100%;
	box-shadow: 0px 5px 10px rgba(0,0,0,.1);
	list-style: none;
	margin: 0;
	padding: 0;
	background: #fff;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease;
}
.nav-link {
	font-weight: 600;
	font-size: 14px;
	line-height: 24px;
	letter-spacing: 0.2px;
	color: #000;
	text-decoration: none;
	display: block;
	padding: 10px 15px;
	padding-right: calc(var(--bs-gutter-x) * 1);
    padding-left: calc(var(--bs-gutter-x) * 1);
	border-bottom: solid 1px #d8d8d8;
}
.active + .navbar-nav
{
	opacity: 1;
	visibility: visible;
}

.header-bg {
	position: relative;
	display: block;
	height: 160px;
		background-position: center center;
		background-size: cover;
}
.header-bg img {
	display: none;
}
/* Фильтр (затемнение фона) — можно временно отключить */
.header-bg::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 2;
	display: none;
	top: 0px;
	left: 0px;
}
/* About Us Section */
.about-us {
	width: 100%;
	/*padding: 30px 0;  было 120px — уменьшили */
	padding-top: 30px;
	padding-bottom: 30px;
	background: rgba(255, 255, 255, 0.9);
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.about-us .section-title {
	font-weight: 700;
	font-size: 40px;
	line-height: 57px;
	letter-spacing: 0.2px;
	color: #252B42;
	text-align: center;
	margin-bottom: 30px;
}
.about-content {
	max-width: 1900px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	text-align: center;
}
.about-text {
	font-weight: 800;
	font-size: 16px;
	line-height: 28px;
	letter-spacing: 0.2px;
	color: #555555;
}
/* Testimonials Section */
.testimonials {
	width: 100%;
	/* min-height: 800px; можно оставить min-height, если нужно */
	background: #FAFAFA;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 50px;
	padding-bottom: 15px;
	padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
	box-sizing: border-box;
}
.section-title {
	font-weight: 700;
	font-size: 40px;
	line-height: 57px;
	letter-spacing: 0.2px;
	color: #252B42;
	text-align: center;
	margin-bottom: 30px;
}
/* Контейнер для карточек — все в одну строку */
.cards-row > div {
	padding-bottom: 35px;
}
/* Карточки */
.card-item {
	background: #FFFFFF;
	box-shadow: 0px 13px 19px rgba(0, 0, 0, 0.07);
	border-radius: 8px;
	padding: 35px 40px;
	display: flex;
	flex-direction: column;
	height: 100%;
	gap: 10px;
	flex-shrink: 0;
}
.card-item.wide {
	width: 328px;
	min-height: 387px;
}
.card-item.medium {
	min-height: 305px;
}
.card-title {
	font-weight: 700;
	font-size: 24px;
	line-height: 32px;
	letter-spacing: 0.1px;
	color: #000000;
}
.card-title-dark {
	color: #252B42;
}
.card-text {
	font-weight: 500;
	font-size: 10px;
	line-height: 20px;
	letter-spacing: 0.2px;
	color: #737373;
}
/* Footer */
.footer {
	background: #FAFAFA;
	position: relative;
	padding-top: 20px;
}
.footer-links {
	display: flex;
	padding-top: 0px;
	justify-content: center;
}
.footer-column {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding-bottom: 35px;
}
.footer-column h5 {
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0.1px;
	color: #252B42;
}
.footer-link {
	font-weight: 600;
	font-size: 14px;
	line-height: 24px;
	letter-spacing: 0.2px;
	color: #737373;
	text-decoration: none;
}
.contact-item {
	display: flex;
	gap: 10px;
}
.icon {
	width: 24px;
	height: 24px;
	min-width: 24px;
	background: #2A7CC7;
	border-radius: 4px;
}
.contact-text {
	font-weight: 600;
	font-size: 14px;
	line-height: 24px;
	color: #737373;
}
.contact-text a
{
	color: #737373;
	text-decoration: none;
}
.footer-bottom {
	padding-top: 50px;
	padding-bottom: 20px;
}
.footer-content {
}
.copyright {
	font-weight: 600;
	font-size: 14px;
	line-height: 24px;
	letter-spacing: 0.2px;
	color: #737373;
}
.phones .contact-text
{
	white-space: nowrap;	
}


@media (min-width: 576px)
{
	.navbar
	{
		height: 120px;
	}
	.navbar-nav {
		display: flex;
		gap: 21px;
		position: relative;
		opacity: 1;
		visibility: visible;
		box-shadow: none;
		background: none;
	}
	.nav-link {
		font-weight: 600;
		font-size: 14px;
		line-height: 24px;
		text-align: center;
		letter-spacing: 0.2px;
		padding: 0px;
		color: #fff;
		text-decoration: none;
		transition: all 0.3s ease;
		border-bottom: solid 1px rgba(255,255,255,0.2);
	}
	.nav-link:hover
	{
		border-bottom: solid 1px rgba(255,255,255,0.5);
	}
	.navbar-toggler
	{
		display: none;
	}
	.header-bg
	{
		display: block;
		z-index: 1;
		height: 250px;
	}
	.header-bg::before
	{
		display: block;
	}
	.header > .container
	{
		position: relative;
		z-index: 3;
		margin-bottom: -120px;
	}
	.logo svg
	{
		height: 70px;
	}
	.logo svg path
	{
		fill: #fff;
	}
	.footer
	{
		padding-top: 45px;
	}
}
@media (min-width: 768px)
{
	.header-bg
	{
		height: 400px;
	}
	.footer
	{
		padding-top: 65px;
		padding-bottom: 15px;
	}
}

@media (min-width: 992px)
{
	.header-bg
	{
		height: 582px;
	}
	.header-bg::before
	{
		display: none;
	}
	.navbar
	{
		height: 150px;
	}
	.header > .container
	{
		margin-bottom: -150px;
		max-width: 1332px;
	}
	.cards-row
	{
		max-width: 1332px;
        margin: 0px auto;
	}
	.logo svg
	{
		height: 100px;
	}
	.testimonials
	{
		padding: 100px 20px 65px;
	}
	.section-title
	{
		margin-bottom: 81px;
	}
}
/* End */
/* /bitrix/templates/mtb/template_styles.css?17709865678753 */
