/*! NORMALIZE */*,::after,::before{box-sizing:border-box;border:0 solid currentColor}html{line-height:normal;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent;height:100%;-moz-tab-size:4;tab-size:4}body{margin:0;line-height:inherit;min-height:100%}hr{height:0;color:inherit;border-top-width:1px}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit;margin:0}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-size:100%;font-weight:inherit;line-height:inherit;color:inherit;margin:0;padding:0;outline:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;background:0 0;cursor:pointer}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,fieldset,figure,hr,legend,menu,ol,p,pre,ul{margin:0;padding:0}menu,ol,ul{list-style:none}textarea{resize:vertical}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block}img,video{max-width:100%;height:auto}[hidden]{display:none!important}

:root {
	--black: #101010;
	--black2: #252525;
	--white: #fff;
	--brand: #749EFF;
	--brand2: #6291FF;
	--gray: #E6E6E6;
	--dark-gray: #DBDBDB;
	--gray2: #F4F4F4;
	--blue: #0075FF;
}

body {
	background-color: var(--white);
	color: var(--black);
	scroll-behavior: smooth;
}
.container {
	max-width: 1400px;
	padding: 0 20px;
	margin: 0 auto;
}
.btn {
	display: inline-block;
	text-align: center;
	font-size: 1.5rem;
	line-height: 2rem;
	font-weight: 500;
	padding: 0.875rem 2rem;
	background-color: #8a60f6;
	transition: all .3s;
	border-radius: 16px;
	color: var(--white);
}
.btn-big {
	padding: 1.5rem 2rem;
}

.btn-white {
	background-color: var(--white);
	color: var(--black2);
}
.btn-white:hover {
	background-color: var(--white);
	opacity: 0.85;
}
.field + .field {
	margin-top: 1.5rem;
}
.field_label {
	color: var(--black2);
	font-size: 1.25rem;
}
.input {
	display: block;
	width: 100%;
	background: var(--white);
	font-size: 1.25rem;
	line-height: 1.5rem;
	padding: 0.75rem 1.25rem;
	border-radius: 6px;
	margin-top: 1rem;
	color: #000;
}
textarea.input {
	resize: none;
}
.section_title {
	font-size: 3rem;
	line-height: 1.2;
	font-weight: 500;
	margin-bottom: 3rem;
	font-weight: 700;
	font-size: 34px;
	font-family: "Sansation",Oxygen,Ubuntu,Cantarell,"Open Sans","Helvetica Neue",sans-serif;
}
.section_desc {
	font-size: 1.5rem;
}
section {
	margin: 8rem 0;
}
.flex {
	display: flex;
}
.flex-wrap {
	flex-wrap: wrap;
}
.align-items-start {
	align-items: flex-start;
}
.align-items-center {
	align-items: center;
}
.justify-content-between {
	justify-content: space-between;
}
.flex-column {
	flex-direction: column;
}
.grid {
	display: grid;
}
.color-red {
	color: #f00;
}
.text-center {
	text-align: center;
}

.s_hero {
	padding-top: 6rem;
	margin: 0;
}
.s_hero .section_desc {
	margin-top: 3rem;
	max-width: 920px;
}
.s_hero .actions {
	margin-top: 5.5rem;
	gap: 2rem;
}
.s_hero .desc {
	font-size: 1.5rem;
	max-width: 540px;
}
.s_hero .logo {
	width: 5rem;
}
.s_hero .btn {
	flex: none;
}

.why_list {
	grid-template-columns: 1fr 1fr;
	gap: 4rem 8rem;
}
.why_list .item {
	gap: 2.5rem;
}
.why_list .i_img {
	flex: none;
}
.why_list .i_title {
	line-height: 1.1;
	font-family: "Inter";
	font-weight: 500;
	font-size: 18px;
}
.why_list .i_desc {
	line-height: 1.1;
	margin-top: 1rem;
	font-family: "Inter";
	font-weight: 300;
	font-size: 16px;
}

.slider {
	overflow: hidden;
	position: relative;
}
.slides {
	display: flex;
	transition: transform 0.5s;
}
.slides .item {
	border-radius: 10px;
}
.slider_nav_btn {
	position: absolute;
	top: calc(50% - 1.75rem);
	background-color: rgba(0, 0, 0, 0.5);
	border-radius: 50%;
	transition: all .3s;
	width: 3.5rem;
	height: 3.5rem;
	z-index: 10;
	cursor: pointer;
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.slider_nav_btn > svg {
	display: block;
	margin: auto;
	pointer-events: none;
}
.slider_nav_btn:hover {
	background-color: var(--black);
}
.slider_nav_btn.is-prev {
	left: 5rem;
}
.slider_nav_btn.is-next {
	right: 5rem;
}
.slider_dots {
	display: flex;
	justify-content: center;
	gap: 0.75rem;
	z-index: 10;
	position: absolute;
	bottom: 3rem;
	left: 0;
	right: 0;
}
.slider_dot {
	width: 1.25rem;
	height: 1.25rem;
	background-color: rgba(255, 255, 255, 0.5);
	border-radius: 50%;
}

.isp_title {
	margin-bottom: 3rem;
}

.slider_dot:hover, .slider_dot.is-active {
	background-color: #FFF;
}

.services_list {
	grid-template-columns: repeat(6, 1fr);
	gap: 20px;
}
.services_list .item {
	grid-column: span 2 / span 2;
	background-color: #121315;
	border-radius: 25px;
	padding: 2rem 2.5rem;
	gap: 1.5rem;
}
.services_list .item-big {
	grid-column: span 3 / span 3;
}
.services_list .i_title {
	font-family: "Sansation",Oxygen,Ubuntu,Cantarell,"Open Sans","Helvetica Neue",sans-serif;
	font-weight: 700;
	font-size: 18px;
}
.services_list .i_desc {
	margin-top: 1.5rem;
	font-family: "Inter";
	font-weight: 300;
	font-size: 16px;
}
.services_list .i_img {
	margin-left: auto;
	flex: none;
}

.products_list {
	grid-template-columns: 1fr 1fr 1fr;
	gap: 20px;
	margin-top: 2.5rem;
}
.products_list + .section_desc {
	margin-top: 50px;
}
.products_list .item {
	background: var(--gray2);
	border-radius: 25px;
	padding: 2rem 3rem;
	color: var(--black2);
}
.products_list .i_title {
	font-size: 3.75rem;
}
.products_list .i_desc {
	font-size: 1.5rem;
	margin-top: 0.75rem;
	flex: 1;
}
.products_list .i_price {
	font-weight: 600;
	font-size: 2.75rem;
	margin-top: 4rem;
}
.products_list .btn {
	display: block;
	margin-top: 2.5rem;
}

.banner_wrapper {
	background: url('https://xeinhost.ru/ispmanager/assets/img/banner-bg.jpg') no-repeat center / cover;
	border-radius: 1.75rem;
	padding: 3.25rem 5rem 3rem;
	color: var(--white);
	gap: 2rem;
}
.banner_wrapper .banner_title {
	font-weight: 500;
	font-size: 3.75rem;
	max-width: 680px;
}
.banner_wrapper .banner_desc {
	font-size: 1.5rem;
	max-width: 450px;
	margin-left: auto;
}
.banner_wrapper .banner_desc p + p {
	margin-top: 1.5rem;
}
.banner_wrapper .btn {
	margin-top: 4rem;
}

.s_callback .form {
	background: #EDF2FF;
	border-radius: 25px;
	padding: 3.75rem;
}
.s_callback .fields_wrapper {
	gap: 3.75rem;
}
.s_callback .fields {
	flex: 1;
}
.s_callback .btn {
	margin-top: 3rem;
	padding-left: 2.5rem;
	padding-right: 2.5rem;
}

@media (max-width: 1400px) {
	html {
		font-size: 75%;
	}
}

@media (max-width: 1024px) {
	.s_hero .actions {
		flex-wrap: wrap;
	}
	.services_list, .why_list {
		grid-template-columns: 1fr;
	}
	.services_list .i_img {
		max-height: 80px;
	}
	.services_list .item, .services_list .item-big {
		grid-column: auto / auto;
	}
	.products_list {
		grid-template-columns: 1fr;
	}
	.banner_wrapper {
		flex-direction: column;
		align-items: flex-start;
	}
	.banner_wrapper .banner_desc {
		margin-left: 0;
	}
}

@media (max-width: 768px) {
	.section_title {
		font-size: 2.5rem;
	}
	.section_title br {
		display: none;
	}
	section {
		margin: 6rem 0;
	}
	.s_hero {
		padding: 5rem 0;
	}
	.s_callback .form .flex {
		display: block;
	}
	.s_callback .fields-right {
		margin-top: 1.5rem;
	}
	.slider_nav_btn {
		width: 3rem;
		height: 3rem;
		top: calc(50% - 1.5rem);
	}
	.slider_nav_btn.is-prev {
		left: 2rem;
	}
	.slider_nav_btn.is-next {
		right: 2rem;
	}
	.slider_dots {
		bottom: 2rem;
	}
	.slider_dot {
		width: 1rem;
		height: 1rem;
	}
	.banner_wrapper {
		padding: 3rem;
	}
	.banner_wrapper .banner_title {
		font-size: 2.5rem;
	}
	.s_callback .form {
		padding: 2rem;
	}
}