/* Сброс стандартных отступов и настроек */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* Убираем подчеркивание у ссылок */
a {
	text-decoration: none;
	color: inherit;
}

/* Убираем обводку у элементов при фокусе */
*:focus {
	outline: none;
}

/* Основной шрифт и размер */
body {
	font-family: "Montserrat", sans-serif;
	font-size: 16px;
}

/* Скрываем скрытые элементы */
[hidden] {
	display: none !important;
}

/* Изображения */
img {
	/*max-width: 100%;*/
	height: auto;
}
.header {
    position: fixed;
    width: 100%;
    background: #fff;
    z-index: 1000;
    box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.2);
}
.banner {
    padding-top: 67px;
}
.container {
	max-width: 1237px;
	margin: 0 auto;
	padding: 0 10px;
}

.header__row {
	padding: 16px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header__logo img {
	width: 169px;
	height: 31px;
}
.header__contents {
	display: flex;
	align-items: center;
	gap: 14px;
}
.header__link {
	font-family: "Open Sans", sans-serif;
	font-weight: 700;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 0.35px;
	color: #2463eb;
}
.header__tg {
	width: 32px;
	height: 32px;
}
.header__forms {
	border-radius: 6px;
	padding: 7px 12px;
	height: 32px;
	background-color: #2463eb;
	font-family: "Open Sans", sans-serif;
	font-weight: 600;
	font-size: 12px;
	line-height: 16px;
	color: #f8fafc;
}

.banner {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}
.banner__row {
	display: flex;
	flex-direction: column;
	padding: 64px 0;
	gap: 24px;
	align-items: center;
}
.banner__tag {
	font-family: "Open Sans", sans-serif;
	font-weight: 700;
	font-size: 14px;
	line-height: 20px;
	text-align: center;
	letter-spacing: 0.35px;
	color: #2463eb;
	background-color: #2463eb1a;
	border-radius: 50px;
	padding: 4px 12px;
}
.banner__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 23px;
}
.banner__title {
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	font-size: 72px;
	line-height: 90px;
	letter-spacing: -1.8px;
	text-align: center;
	color: #0f172b;
	padding: 0 28px;
}
.banner__title span {
	color: #2463eb;
}
.banner__text {
	font-family: "Open Sans", sans-serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 32.5px;
	text-align: center;
	color: #45556c;
	max-width: 568px;
}
.banner__btns {
	display: flex;
	gap: 16px;
	padding-top: 17.5px;
}
.banner__btn {
	background: #2463eb;
	border-radius: 6px;
	padding: 25px 32px;
	font-family: "Open Sans", sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 28px;
	color: #f8fafc;
	display: flex;
	align-items: center;
	gap: 8px;
	box-shadow: 0px 8px 10px -6px #2463eb33;
	box-shadow: 0px 20px 25px -5px #2463eb33;
}
.banner__btn svg {
	width: 24px;
	height: 16px;
}
.banner__btn-more {
	border: 1px solid #0f1729;
	border-radius: 6px;
	padding: 25px 32px;
	font-family: "Open Sans", sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 28px;
	color: #0f1729;
	box-shadow: 0px 1px 2px 0px #0000000d;
	backdrop-filter: blur(8px);
}

.ancors__row {
	padding: 60px 0;
	display: flex;
	justify-content: space-between;
	gap: 32px;
}
.ancors__item {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 25px;
	background: #f8fafc;
	border-radius: 16px;
	border: 1px solid #f1f5f9;
}
.ancors__item-img {
	width: 48px;
	height: 48px;
}
.ancors__item-title {
	color: #0f172b;
	font-size: 20px;
	line-height: 28px;
	font-weight: 700;
	letter-spacing: -0.5px;
}
.ancors__item-text {
	max-width: 220px;
	color: #45556c;
	font-size: 16px;
	line-height: 26px;
	font-weight: 400;
	font-family: "Open Sans", sans-serif;
}

.works__row {
	padding: 96px 0;
	display: flex;
	justify-content: space-between;
	gap: 10px;
}
.works__contents {
	max-width: 576px;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.works__content-tags {
	display: flex;
	align-items: center;
	gap: 8px;
	background: #dbeafe;
	border-radius: 50px;
	padding: 4px 12px;
	color: #1447e6;
	font-size: 14px;
	line-height: 20px;
	font-weight: 400;
	font-family: "Open Sans", sans-serif;
	max-width: 255px;
}
.works__content-title {
	color: #0f172b;
	font-size: 36px;
	line-height: 40px;
	font-weight: 700;
	letter-spacing: -0.9px;
	font-family: "Montserrat", sans-serif;
	max-width: 466px;
}
.works__content-texts {
	padding-top: 14px;
	color: #45556c;
	font-size: 18px;
	line-height: 29px;
	font-weight: 400;
	font-family: "Open Sans", sans-serif;
	display: flex;
	flex-direction: column;
	gap: 22px;
}
.works__content-text-list {
	list-style-type: none;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.works__content-text-list li {
	padding-left: 36px;
	position: relative;
}
.works__content-text-list li::after {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 24px;
	height: 24px;
	background: url("../img/Background.svg") no-repeat center;
}
.works__content-prices {
	padding-top: 14px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.works__content-prices-text {
	color: #62748e;
	font-size: 14px;
	line-height: 20px;
	font-weight: 400;
	letter-spacing: 0.7px;
	font-family: "Open Sans", sans-serif;
	text-transform: uppercase;
}
.works__content-price {
	color: #0f172b;
	font-size: 48px;
	line-height: 48px;
	font-weight: 700;
	font-family: "Open Sans", sans-serif;
}
.works__content-price span {
	color: #62748e;
	font-size: 20px;
	line-height: 28px;
	font-weight: 400;
	font-family: "Open Sans", sans-serif;
	vertical-align: middle;
}
.works__sladers {
	background-color: #fff;
	max-width: 608px;
	width: 100%;
	padding: 16px;
	box-shadow: 0px 5px 26px 10px rgb(182, 211, 255);
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	position: relative;
	padding: 26px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.works__sladers-title {
	color: #0f1729;
	font-size: 24px;
	line-height: 32px;
	font-weight: 700;
	letter-spacing: -0.6px;
	font-family: "Montserrat", sans-serif;
}
.works__sladers-text {
	padding-top: 24px;
	color: #62748e;
	font-size: 14px;
	line-height: 20px;
	font-weight: 400;
	font-family: "Open Sans", sans-serif;
	font-style: italic;
	text-align: center;
}
.works__swiper {
	width: 100%;
	height: auto;
	max-height: 540px;
	overflow: hidden;
	background: #fff;
}
.works__swiper .swiper-slide {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0;
}
.works__swiper .swiper-slide img {
	/*width: 100%;*/
	height: auto;
	object-fit: cover;
}
.works__sladers .swiper-button-next,
.works__sladers .swiper-button-prev {
	color: #fff;
	opacity: 1;
	transition: opacity 0.3s ease;
	background: #2b7fff1a;
	border-radius: 12px;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
}
.works__sladers .swiper-button-next:after,
.works__sladers .swiper-button-prev:after {
	font-size: 24px;
	color: #2b7fff;
	font-weight: 600;
}
.works__sladers .swiper-button-next:hover,
.works__sladers .swiper-button-prev:hover {
	opacity: 1;
}
.works__sladers .swiper-button-next {
	right: 12px;
}
.works__sladers .swiper-button-prev {
	left: 12px;
}

.otziv__row {
	padding: 30px 0;
	display: flex;
	justify-content: space-between;
	gap: 32px;
}
.otziv__comment {
	max-width: 600px;
	width: 100%;
}
.otziv__content {
	max-width: 600px;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	justify-content: center;
}
.otziv__content-item {
	max-width: 166px;
	width: 100%;
	height: 179px;
	margin-bottom: 20px;
}
.otziv__content-item--empty {
	font-weight: 500;
	font-size: 18px;
	line-height: 34px;
	text-align: center;
	color: #ffffff;
	display: flex;
	flex-direction: column;
	position: relative;
}
.otziv__content-item-title {
	margin-top: 13px;
	font-weight: 700;
	font-size: 39px;
	line-height: 100%;
	text-align: center;
	display: flex;
	flex-direction: column;
}
.otziv__content-item-title span {
	font-weight: 400;
	font-size: 14px;
	line-height: 100%;
}
.otziv__content-item-text {
	margin-top: 10px;
	font-weight: 400;
	font-size: 14px;
	line-height: 100%;
}
.otziv__content-item--empty:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 50px 0 0 83px;
	border-color: transparent transparent transparent #ffffff;
}
.otziv__content-item--empty:after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 50px 83px;
	border-color: transparent transparent #ffffff transparent;
}
.otziv__content-item--empty-1 {
	background: linear-gradient(90deg, #14d6c2 -30.77%, #36f298 100%);
}
.otziv__content-item--empty-2 {
	background: linear-gradient(90.05deg, #db40a2 0.05%, #ffa6bb 99.96%);
}
.otziv__content-item--empty-3 {
	background: linear-gradient(89.7deg, #0d81d8 0.29%, #1ebdfe 99.77%);
}

.forms {
	background: #0f172b;
}
.forms__row {
	padding: 96px 0;
	display: flex;
	justify-content: center;
}
.form {
	max-width: 896px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}
.forms__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}
.forms__content-title {
	color: #ffffff;
	font-weight: 700;
	font-size: 48px;
	line-height: 100%;
	text-align: center;
	letter-spacing: -1.2px;
}
.forms__content-text {
	color: #cad5e2;
	max-width: 830px;
	font-weight: 400;
	font-size: 20px;
	line-height: 28px;
	text-align: center;
	font-family: "Open Sans", sans-serif;
}
.forms__form {
	display: flex;
	gap: 16px;
	padding-top: 24px;
}
.forms__form-input-tel {
	border: 1px solid #ffffff33;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	padding: 19px 22px;
	font-family: "Open Sans", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 100%;
	color: #ffffff;
	max-width: 299px;
	width: 100%;
}
.forms__form-button {
	box-shadow: 0px 4px 6px -4px #2463eb40;
	box-shadow: 0px 10px 15px -3px #2463eb40;
	background: #2463eb;
	border-radius: 6px;
	padding: 16px 32px;
	font-family: "Open Sans", sans-serif;
	font-weight: 700;
	font-size: 18px;
	line-height: 28px;
	color: #ffffff;
	border: none;
	cursor: pointer;
}
.forms_politic {
	color: #62748e;
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	text-align: center;
	font-family: "Open Sans", sans-serif;
}

.footer {
	background-color: #020618;
}
.footer__row {
	padding: 48px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.footer__content-link {
	color: #2463eb;
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	font-family: "Open Sans", sans-serif;
}
.footer__content-text {
	color: #62748e;
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	font-family: "Open Sans", sans-serif;
}


.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1000;
}
.modal {
	background: white;
	border-radius: 12px;
	width: 100%;
	max-width: 500px;
	position: relative;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.modal__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	padding: 30px 30px 10px;
	width: 100%;
}
.modal__title {
	margin: 0;
	font-size: 24px;
	font-weight: bold;
	color: #1e293b;
	text-align: center;
	width: 100%;
}
.modal__close {
	position: absolute;
	top: -10px;
	right: -10px;
	background: #3b82f6;
	border-radius: 50%;
	padding: 3px 10px;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: #fff;
}
.modal__body {
	display: flex;
	flex-direction: column;
	padding: 15px 30px 30px;
}
.modal__description {
	margin-bottom: 20px;
	color: #64748b;
	font-size: 14px;
}
.modal__input-group {
	margin-bottom: 20px;
}
.modal__input {
	width: 100%;
	padding: 12px;
	border: 1px solid #cbd5e1;
	border-radius: 6px;
	font-size: 16px;
	box-sizing: border-box;
}
.modal__checkbox-group {
	margin-bottom: 20px;
	display: flex;
	align-items: flex-start;
}
.modal__checkbox-label {
	display: flex;
	align-items: center;
	cursor: pointer;
	font-size: 14px;
	color: #64748b;
}
.modal__checkbox-label input[type="checkbox"] {
	margin-right: 10px;
}
.modal__submit-btn {
	background-color: #3b82f6;
	color: white;
	border: none;
	padding: 12px 20px;
	border-radius: 6px;
	font-size: 16px;
	cursor: pointer;
	width: 100%;
}
.modal__submit-btn:disabled {
	background-color: #cbd5e1;
	cursor: not-allowed;
}
