:root {
	--box-shadow: 1px 1px 17px 1px rgba(0, 0, 0, 0.1);
	--main-color: #0071B8;
	--color-link: #0071B8;
	--white-color: white;
	--background-color: #F1F4F7;
	--text-color: #1E1E1E;
	--title-font: "Unbounded", sans-serif;
	--text-font: "DIN Pro", sans-serif;
}

/**
*Временные стили
*/
.tabs__nav {
	display: none;
}
/** Конец*/

.checkbox-row {
	display: flex;
	align-items: center;
	margin-top: 20px;
}

.checkbox {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	appearance: none;
	position: relative;
	width: 16px;
	height: 16px;
	background: var(--main-color);
	border-radius: 4px;
	border: 1px solid var(--white-color);
	transition: 0.3s;
}

.bkg-white .checkbox {
	background-color: var(--white-color);
	border: 1px solid var(--main-color);
}

.range-output {
    display: inline-flex;
	gap: 3px;
    text-transform: lowercase;
}

.checkbox-label {
	font-weight: 700;
	padding-left: 8px;
}

.checkbox::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  font-size: 16px;
  background-repeat: no-repeat;
  background-position: center;
  transition: 0.3s;
}

.checkbox-white:checked::after{
  background-image: url("../img/icons/checkbox-white.svg");
}

.checkbox-blue:checked::after,
.bkg-white .checkbox::after {
  background-image: url("../img/icons/checkbox-blue.svg");
}


.checkbox:disabled {
  background: #ccc;
}

.checkbox:disabled::after {
  filter: grayscale(100%);
}

.hidden {
	display: none;
}

.page-banner {
	position: absolute;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 100%;
	border-bottom-right-radius: 40px;
	border-bottom-left-radius: 40px;
	overflow: hidden;
	z-index: -1;
}
.page-banner:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* background: linear-gradient(0deg, rgba(0, 0, 0, 0) 48.46%, rgba(0, 0, 0, 0.2) 100%), rgba(0, 0, 0, 0.3); */
	
}

.select_container {
	margin-bottom: 10px;
}

.add_btn {
	font-size: 14px;
	text-decoration: underline;
	cursor: pointer;
}

.disk_close::after {
	content: '';
	display: block;
	cursor: pointer;
	width: 40px;
	height: 40px;
	background-image: url(../img/icons/close-white.svg);
	background-repeat: no-repeat;
	background-position: center;
    background-size: contain;
	transition: transform .3s;
}

.disk_close:hover::after {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}


.disk_close {
	position: absolute;
    top: 30px;
    right: -40px;
	transition: transform .3s;
}

.header {
	position: relative;
	color: var(--white-color);
	margin-bottom: 13px;
	padding-bottom: 8px;
}

.header-single {
	color: var(--text-color);
	background: none;
}

.header-wrapper {
	display: flex;
    flex-direction: column;
    justify-content: space-between;
	width: 1440px;
    height: 780px;
    margin: 0 auto;
    position: relative;
    /* overflow: hidden; */
    border-bottom-right-radius: 40px;
    border-bottom-left-radius: 40px;
}

.header h1 {
	margin-bottom: 50px;
}
.header-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
	margin-bottom: 35px;
}
.header-top .logo {
	position: relative;
	background-color: rgb(255 255 255 / 20%);
	padding: 24px 60px 24px 0px;
	border-bottom-right-radius: 20px;
}
.header-single .header-top .logo {
	background-color: var(--main-color);
}
.header-top .logo:before {
	content: '';
	display: block;
	position: absolute;
	width: 10000px;
	height: 100%;
	background-color: rgb(255 255 255 / 20%);
	top: 0px;
	left: -10000px;
}
.header-single .header-top .logo:before {
	background-color: var(--main-color);
}
.header-single .header-top .logo:after {
	background-color: var(--main-color);
}
.header-top .logo:after {
	content: '';
	display: block;
	background-color: rgb(255 255 255 / 20%);
	width: 10px;
	height: 10px;
	border-radius: 50%;
	position: absolute;
	right: -5px;
	bottom: -5px;
}

.header-menu {
	display: flex;
	gap: 60px;
}
.header-menu .link {
	text-transform: uppercase;
	font-weight: 400;
	font-size: 14px;
}
.header-menu .menu-item {
	position: relative;
    box-sizing: border-box;
    margin: 20px 0;
	padding: 20px 0;
}
/* .header-menu .menu-item:hover {
	background-color: var(--main-color);
} */
.header-menu .sub-menu {
	display: none;
	top: 56px;
	position: absolute;
	padding: 24px 30px;
	width: 356px;
	border-radius: 25px;
	background-color: var(--white-color);
	z-index: 99;
	
}
.header-menu .sub-menu::before {
	content: '';
    display: block;
    background-color: var(--white-color);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: absolute;
    left: -5px;
    top: -5px;
}
.header-menu .sub-menu .menu-item {
	margin: 0;
	margin-bottom: 20px;
	padding: 0;
}
.header-menu .sub-menu a {
	display: block;
	color: var(--text-color);
	font-weight: 400;
	font-size: 14px;
	text-transform: none;
}

#main_menu .sub-menu .menu-item:hover a {
	text-decoration: underline ;
}

.header-menu .menu-item:hover .sub-menu {
	display: block;
}
.lk svg,
.header_nav__lk {
	fill: var(--white-color);
}
.header .lk {
	font-size: 14px;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	gap: 12px;
}
.header .lk img {
	width: 16px;
}
.header-single .lk {
	color: var(--main-color);
}
.header-single .lk svg {
	fill: var(--main-color);
}
.header .phone {
	font-size: 16px;
	font-weight: bold;
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 0;
}
.header-single .phone {
	color: var(--main-color);
}

.header-container {
	max-width: 1440px;
	display: flex;
	margin: 0 auto;
	padding-left: 60px;
	padding-right: 60px;
}
#breadcrumbs {
	display: flex;
	align-items: center;
	gap: 10px;
	max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
}
#breadcrumbs > * {
	font-weight: 400;
	font-size: 14px;
	line-height: 16px;
	letter-spacing: 0;	
}

.header-bottom {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	padding-bottom: 10px;
}
.header-bottom-block {
	width: 50%;
}
.header-bottom .right {
	background: rgba(217, 217, 217, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(7px);
	border-radius: 40px;
	padding: 50px 50px;
	width: 42%;
}
	
.header-bottom .right .content p {
	font-size: 20px;
	line-height: 140%;
	margin-bottom: 38px;
}
.header-bottom .right .content li {
	font-size: 16px;
	line-height: 140%;
	margin-bottom: 8px;
}

/* HEADER BLACK */
.header-black .logo,
.header-black .header-top .logo:after,
.header-black .header-top .logo:before {
	background-color: var(--main-color);
}
.header-black .header-top .logo:before {
	content: '';
	display: block;
	height: 100%;
	position: absolute;
	width: 1100px;
	left: -1000px;
	z-index: -1;
}
.header-black .header-top .header-menu .link {
	color: var(--text-color);
}
.header-black .lk,
.header-black .phone {
	color: var(--main-color);
}
.header-black .breadcrumbs a {
	color: #70828E;
}
.header-black .breadcrumbs span {
	color: var(--text-color);
}

.header-top {
	margin-bottom: 65px;
}
.single .header-top,
.archive .header-top {
	margin-bottom: 30px;
}

.header-bottom .left {
	width: 740px;
	font-size: 28px;
	line-height: 130%;
}
.frontpage h1 {
	font-family: var(--text-font);
	font-weight: 400;
	font-size: 28px;
	line-height: 130%;
	letter-spacing: 0.02em;
	vertical-align: bottom;	
}
.single-services h1 {
	font-family: var(--title-font);
}
#main_menu li:hover a {
	text-decoration: underline;
}

#main_menu li:hover .sub-menu a {
	text-decoration: none;
}
.single h1 {
	font-weight: 500;
	font-size: 52px;
	line-height: 100%;
	letter-spacing: -2px;
	text-transform: uppercase;
}
.single .header-bottom .right .content {
	font-weight: 500;
	font-size: 20px;
}
.single .header-bottom .right .content li {
	font-weight: 400;
	font-size: 16px;
}
.header-bottom .right {
	width: 40%;
}

.header-bottom .right h2 {
	margin-bottom: 40px;
}

.single .header-bottom .right .content {
	margin-bottom: 84px;
}	
.header-bottom .right .content p {
	font-size: 18px;
	line-height: 140%;
	margin-bottom: 20px;
}
.header-bottom .right .content li {
	font-size: 18px;
	margin-bottom: 0;
	font-weight: normal;
}
.list-hashtag li:before {
	background-image: none;
	content: '#';
	width: auto;
	margin-right: 0;
}

/* Slider banner on main page */
.slider {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.slider-track {
	display: flex;
	transition: transform 0.5s ease;
}

.slide {
	flex-shrink: 0;
	width: 100%;
}

.slider-controls {
	display: flex;
	justify-content: space-between;
	align-items: center;
	align-items: flex-end;
}

.slider-controls .arrows {
	display: flex;
	gap: 4px;
}
.slider-controls .arrow {
	cursor: pointer;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background-color: var(--white-color);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 9px;
}
.slider-controls .arrow:active,
.slider-controls .arrow:focus {
	background-color: var(--main-color);
}

.slider-controls .prev-btn {
	background-image: url('../img/icons/arrow-left-blue.svg');
}
.slider-controls .next-btn {
	background-image: url('../img/icons/arrow-right-blue.svg');
}

.slider-controls .prev-btn:active, 
.slider-controls .prev-btn:focus {
	background-image: url('../img/icons/arrow-left.svg');
}


.slider-controls .next-btn:active, 
.slider-controls .next-btn:focus {
	background-image: url('../img/icons/arrow-right.svg');
}

/* SLIDER MAIN */
.slider-main .slide {
	color: var(--white-color);
	align-content: center;
}

.slider-main .slide h2{
	font-family: var(--text-font);
	font-weight: 500;
	font-size: 30px;
	display: block;
	word-break:break-word;
}

.slider-main .fslider-controls {
	margin-top: 75px;
}
.slider-main .slider-controls .arrow {
	background-color: #494A4D;
}
.slider-main .slider-controls .arrow:active,
.slider-main .slider-controls .arrow:focus {
	background-color: var(--white-color);
}
.slider-main .slider-controls .prev-btn {
	background-image: url('../img/icons/arrow-left.svg');
}
.slider-main .slider-controls .next-btn {
	background-image: url('../img/icons/arrow-right.svg');
}
.slider-main .slider-controls .prev-btn:active,
.slider-main .slider-controls .prev-btn:focus {
	background-image: url('../img/icons/arrow-left-blue.svg');
}
.slider-main .slider-controls .next-btn:active,
.slider-main .slider-controls .next-btn:focus {
	background-image: url('../img/icons/arrow-right-blue.svg');
}

.slider-counter {
	display: flex;
	font-weight: 500;
	line-height: 100%;
	font-family: var(--title-font);
	gap: 6px;
	padding: 17px 0px;
}
.slider-counter span:not(:first-child) {
	font-size: 26px;
}
.slider-counter span:first-child {
	font-size: 54px;
	margin-top: 10px;
}
.post-archive {
	margin-top: 80px;
	margin-bottom: 125px;
}
.post-archive h1 {
	margin-bottom: 24px;
}
.blog-type {
	width: 870px;
	margin: 0 auto;
	margin-top: 80px;
}
.archive .type-post {
	display: flex;
	gap: 92px;
	width: 100%;
	margin-top: 60px;
}
.archive .thumbnail {
	flex: 1 0 300px;
}
.archive .thumbnail img {
    border-radius: 20px;
    overflow: hidden;
}
.archive .entry-title {
	font-family: var(--text-font);
	font-weight: 700;
	font-size: 18px;
	line-height: 120%;
	margin-bottom: 12px;
}
.archive .entry-content {
	font-weight: 400;
	font-size: 14px;
	line-height: 130%;
	margin-top: 52px;
	padding-bottom: 60px;
}
.archive .post-link {
	flex: 1 0 176px;
}
.archive .post-link a {
	color: var(--main-color);
	font-weight: 700;
	font-size: 18px;
	line-height: 140%;
	text-transform: uppercase;
}
.archive .entry-meta {
	color: #70828E;
}
.archive .post-link a::after {
	content: '';
	display: inline-flex;
	width: 18px;
	height: 18px;
	background-image: url('../img/icons/arrow-btn.svg');
	background-size: cover;
	background-repeat: no-repeat;
	margin-left: 4px;
}
.blog-type h1 {
	font-weight: 500;
	font-size: 36px;
	text-transform: uppercase;
	margin-bottom: 32px;
}
.entry-meta {
	font-size: 14px;
	font-weight: 400;
}
.post-thumbnail {
	margin-top: 32px;
	margin-bottom: 60px;
	border-radius: 20px;
	overflow: hidden;
}
.entry-content {
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	padding-bottom: 125px;
}
.knowledge h1,
.entry-content h1,
.post-archive h1 {
	font-family: var(--title-font);
	font-size: 36px;
	font-weight: 500;
}

.entry-content h2 {
	font-family: var(--text-font);
	width: 70%;
	font-weight: 700;
	font-size: 22px;
	margin-top: 60px;
	margin-bottom: 20px;
}
.entry-content h3 {
	font-family: var(--text-font);
	font-weight: 500;
	font-size: 18px;
	margin-top: 60px;
	margin-bottom: 20px;
}
.entry-content p {
	margin-bottom: 20px;
}
.entry-content blockquote {
	background-color: rgba(0, 113, 184, 0.1);
	padding: 30px;
	border-radius: 20px;
	overflow: hidden;
	margin: 60px 0;
}
.entry-content blockquote h2, 
.entry-content blockquote h3 {
	font-size: 22px;
	font-weight: 700;
	color: var(--main-color);
	text-transform: none;
	margin-top: 0;
}
.entry-content blockquote li {
	color: var(--main-color);
	font-weight: 700;
	margin-bottom: 16px;
}
.entry-content table {
	width: 100%;
	background-color: var(--white-color);
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 20px;
	margin: 28px 0;
	overflow: hidden;
}

.entry-content td,
.entry-content th {
	text-align: start;
	border: 1px solid rgba(0, 0, 0, 0.1);
	padding: 14px 30px;
}
.entry-content th {
	color: var(--main-color);
	font-weight: 700;
}
.entry-content td {
	font-weight: 400;
}
/* Server Config form */
.bkg-blue {
	color: var(--white-color);
    background-color: var(--main-color);
    border-radius: 40px;
    max-width: 1440px;
    margin: 0 auto;
}
.server-form {
	display: flex;
	justify-content: space-between;
	padding: 60px 0;
	gap: 258px;
}

form .row {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

form .row:last-child {
	border-bottom: none;
}


.server-form > div {
	width: 50%;
}

.server-form select {
	font-weight: 700;
	font-size: 14px;
	text-overflow: ellipsis;
	width: 100%;
	border: none;
	border-radius: 62px;
	padding: 18px 24px;
	padding-right: 61px;
	appearance:none;
	background-image: url('../img/icons/arrow-bottom.svg');
    background-position: right 22px center;
    background-size: 16px;
	background-repeat: no-repeat;
	cursor: pointer;
	position: relative;
}

.server-form select:disabled {
	background-image: none;
	color: #1E1E1E;
	cursor: default;
}

.select_container {
	position: relative;
}

.server-form option {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  padding: 10px;
  transition: 0.4s;
}

.server-form option:first-of-type {
  border-radius: 8px 8px 0 0;
}

.server-form option:last-of-type {
  border-radius: 0 0 8px 8px;
}

.server-form option:not(option:last-of-type) {
  border-bottom: none;
}


.calc select:focus-visible
{
	outline: none;
}
.server-form .left .radio-group {
	width: 100%;
	display: inline-flex;
	gap: 9px;
	overflow: hidden;
	margin-bottom: 10px;
}
.server-form .left .radio-group > div {
	width: 50%;
}
.server-form .left .radio-item {
	display: inline-flex;
}
.left .radio-group label {
	font-size: 14px;
	font-weight: 700;
	display: inline-block;
	width: 100%;
	text-align: center;
	padding: 18px 0;
	border-radius: 62px;
	cursor: pointer;
	user-select: none;
	color: var(--white-color);
	background: rgba(255, 255, 255, 0.2);
}
.server-form .left input[type=radio]:checked + label {
	background-color: var(--white-color);
	color: var(--main-color);
}
.server-form .left .radio-group input[type=radio] {
	display: none;
}
.server-form hr {
	border: 1px solid rgba(255, 255, 255, 0.1);
	margin: 10px 0;
}
.server-form h3 {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: 'DIN Pro';
	text-transform: none;
	font-weight: 700;
	font-size: 22px;
}

.nvme-pcie {
	margin-top: 20px;
}

.icon {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.prepared-config .icon::before {
	content: none;
}
.icon::before{
	content: '';
	display: inline-flex;
	width: 24px;
	height: 24px;
	background-size: contain;
}
.icon_info {
	background-image: url('../img/icons/question-circle.svg');
	cursor: pointer;
}

.icon_db::before,
.icon_vmm_backup_switch::before {
	background-image: url('../img/icons/icon_db.png');
}
.cpu_icon::before,
.icon_ncpu::before {
	background-image: url('../img/icons/config/01.svg');
}
.icon_ram::before,
.icon_mem::before {
	background-image: url('../img/icons/config/ram.svg');
}
.hdd_icon::before,
.icon_s3_bucket_size::before,
.icon_disc::before,
.icon_nvme_pcie::before {
	background-image: url('../img/icons/config/03.svg');
}
.gpu_icon::before {
	background-image: url('../img/icons/config/04.svg');
}
.speed_icon::before,
.icon_s3_access_speed::before {
	background-image: url('../img/icons/config/02.svg');
}
.ip_icon::before,
.icon_ip::before {
	background-image: url('../img/icons/config/05.svg');
}
.os_icon::before,
.icon_ostempl::before {
	background-image: url('../img/icons/config/os-white.svg');
}
.soft_icon::before,
.icon_recipe::before {
	background-image: url('../img/icons/config/soft-white.svg');
}
/* Наши услуги */
.services .tabs__panel .items {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}
.services .tabs__panel .item {
	width: 419px;
	border-radius: 20px;
	height: 294px;
	padding: 30px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	background-color: var(--white-color);
	/* transition: background-color 0.7s ease; */
	overflow: hidden;
}

.services .tabs__panel .item .image-bg,
.security-services__card .image-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	background-size: cover;
	z-index: 0;
}
.security-services__card .image-bg::before {
    content: '';
	border-bottom-right-radius: 20px;
    background-color: var(--text-color);
	opacity: 0.5;
    display: block;
    width: 100%;
    height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
.services .tabs__panel .item .image-bg img,
.security-services__card .image-bg img{
	object-fit: cover;
	border-bottom-right-radius: 20px;
	width: 100%;
	height: 100%;
	filter: grayscale(1);
}
.services .tabs__panel .item .image-bg,
.security-services__card .image-bg {
	top: 0;
	left: 0;
	visibility: hidden;
	opacity: 0;
	transition: opacity ease-out .5s;
}
.services .tabs__panel .item:hover .image-bg,
.security-services__card:hover .image-bg {
	visibility: visible;
	opacity: 1;
  }
/* .services .tabs__panel .item:nth-child(2) .image-bg,
.security-services__card:nth-child(2) .image-bg {
	bottom: -1000px;
	right: 0;
}
.services .tabs__panel .item:nth-child(2):hover .image-bg,
.security-services__card:nth-child(2):hover .image-bg {
	bottom: 0px;
}

.services .tabs__panel .item:nth-child(3) .image-bg,
.security-services__card:nth-child(3) .image-bg {
	left: -1000px;
	top: 0;
}
.services .tabs__panel .item:nth-child(3):hover .image-bg,
.security-services__card:nth-child(3):hover .image-bg {
	left: 0px;
}

.services .tabs__panel .item:nth-child(4) .image-bg,
.security-services__card:nth-child(4) .image-bg {
	bottom: -1000px;
	right: 0;
}
.services .tabs__panel .item:nth-child(4):hover .image-bg,
.security-services__card:nth-child(4):hover .image-bg {
	bottom: 0px;
}

.services .tabs__panel .item:nth-child(5) .image-bg,
.security-services__card:nth-child(5) .image-bg {
	bottom: -1000px;
	right: 0;
}
.services .tabs__panel .item:nth-child(5):hover .image-bg,
.security-services__card:nth-child(5):hover .image-bg {
	bottom: 0px;
}

.services .tabs__panel .item:nth-child(6) .image-bg,
.security-services__card:nth-child(6) .image-bg {
	top: -1000px;
	right: 0;
}
.services .tabs__panel .item:nth-child(6):hover .image-bg,
.security-services__card:nth-child(6):hover .image-bg {
	top: 0px;
} */
.services .tabs__panel .item .item-top,
.services .tabs__panel .item .item-bottom {
	position: relative;
	z-index: 10;
}

@media screen and (max-width: 1350px) {
	.services .tabs__panel .item {
		width: 31%;
	}
}

.services .tabs__panel .item .title {
	font-size: 22px;
	font-weight: bold;
	line-height: 100%;
	margin-bottom: 20px;
}
.services .tabs__panel .item .text {
	font-size: 14px;
	line-height: 130%;
}
.services .tabs__panel .item-bottom {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}
.services .tabs__panel .item-bottom .link {
	position: relative;
	color: var(--main-color);
	font-size: 16px;
	font-weight: bold;
	align-items: center;
	display: flex;
	gap: 8px;
	cursor: pointer;
}
.services .tabs__panel .item-bottom .link:after {
	content: '';
	display: inline-flex;
	width: 15px;
	height: 15px;
	background-image: url('../img/icons/arrow-btn.svg');
	background-size: cover;
	background-repeat: no-repeat;
}

.services .tabs__panel .item:hover,
.security-services__card:hover {
	position: relative;
	color: var(--white-color);
	transition: .4s;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-left-radius: 0px;
	transition: border-top-left-radius .4s;
	background-color: transparent;
	overflow: visible;
}

.services .tabs__panel .item .icon-hover {
	display: none;
}
.services .tabs__panel .item:hover .icon {
	display: none;
}
.services .tabs__panel .item:hover .icon-hover {
	display: block;
}

.services .tabs__panel .item:hover:after,
.security-services__card:hover:after {
	content: '';
    display: block;	
    background-color: rgba(0, 0, 0, 0.5);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: absolute;
    right: -5px;
    bottom: -5px;

}
.services .tabs__panel .item:hover .link,
.security-services__card:hover a {
	color: var(--white-color);
}
.services .tabs__panel .item:hover .link:after{
	background-image: url('../img/icons/arrow-btn-white.svg');
}

/* Наши преимущества */
.advantages {
	background-image: url('../img/adv-bg.jpg');
	background-size: cover;
	margin: 0 auto;
	border-radius: 40px;
	margin-top: 120px;
	padding-top: 119px;
	padding-bottom: 0;
	max-width: 1440px;
    height: 1290px;
}
.advantages h2 {
	color: var(--white-color);
	width: 560px;
    font-weight: 500;
    font-size: 36px;
    text-transform: uppercase;
}
.advantages .items {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
	gap: 32px;
	padding-top: 33px;
}
.advantages .items .item:nth-child(2) {
    grid-column: 3;
    grid-row: 1;
}
.advantages .items .item:nth-child(3) {
    grid-column: 4;
    grid-row: 1;
}

.advantages .items .item:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
}

.advantages .items .item:nth-child(5) {
    grid-column: 3;
    grid-row: 3;
}
.advantages .items .item {
	color: var(--white-color);
	border-radius: 20px;
	padding: 30px 30px 48px 30px;
	background: rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(17px);
}
.advantages .items .item .title {
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 20px;
	line-height: 100%;
}
.advantages .items .item .text {
	font-size: 14px;
	line-height: 130%;
}

/* Наши клиенты */
.clients h2 {
	width: 380px;
    font-weight: 500;
    font-size: 36px;
    text-transform: uppercase;
}

.phone_icon_white::before {
	content: "";
	background-image: url('../img/icons/phone.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	width: 18px;
	height: 18px;
}

/* Блок с картой */
.map {
	position: relative;
	margin-top: 120px;
	padding-bottom: 120px;
	z-index: 1;
}
.map::before {
	content: "";
	position: absolute;
	background-image: url('../img/map.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
    width: 84%;
    height: 84%;
	z-index: -1;
}
.map h2 {
	display: block;
    max-width: 540px;
    font-weight: 500;
}

.map h3 {
	font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 100%;
	text-transform: none;
}

.map .wrapper {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.map .item {
	width: 306px;
	position: relative;
	color: var(--white-color);
	background: rgba(30, 30, 30, 0.2);
	backdrop-filter: blur(17px);
	border-radius: 20px;
	padding: 30px;
	overflow: hidden;
}

.map p {
	
	font-size: 14px;
	line-height: 130%;
}

.map .item:hover {
	color: var(--text-color);
	background-repeat: no-repeat;
	background-position: right center;
	box-shadow: var(--box-shadow);
}

.map .bkg-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.map .item:hover .bkg-image {
	opacity: 1;
    visibility: visible;
}

.map .item .bkg-image {
	position: absolute;
    opacity: 0;
    visibility: hidden;
    top: 0;
    left: 0;
    filter: grayscale(1);
    z-index: -1;
	width: 100%;
	height: 100%;
	transition: all 0.3s ease;
}

.map .item .bkg-image::before {
	content: '';
	display: block;
	position: absolute;
	opacity: 0.8;
	width: 100%;
	height: 100%;
	background-color: var(--white-color);
	/* transition: all 0.s ease; */
	z-index: 0;
}

.map .item:not(:last-child) {
	margin-bottom: 12px;
} 

/* .map .item:nth-child(1) .bkg-image {
	left: 0;
	transform: translateY(100%);
}

.map .item:nth-child(1):hover .bkg-image {
	transform: translateY(0);
}

.map .item:nth-child(2) .bkg-image {
	top: 0;
	transform: translateX(-100%);
}

.map .item:nth-child(2):hover .bkg-image {
	transform: translateX(0);
}

.map .item:nth-child(3) .bkg-image {
	left: 0;
	transform: translateY(-100%);
}

.map .item:nth-child(3):hover .bkg-image {
	transform: translateY(0);
} */

.home .header-bottom {
	justify-content: space-between;
	width: 100%;
}

.home .slide {
	display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 30px;
}

.slide a {
	width: fit-content;
}

/* Наши проекты */
.home_projects {
	background-color: var(--white-color);
	margin-top: -40px;
	padding-top: 200px;
	padding-bottom: 120px;
}
.home_projects .inner {
	display: grid;
    grid-template-columns: repeat(2, 1fr); /* Авторазметка */
    gap: 62px;
	grid-template-areas: 
		"left right"
		"bottom right";
	justify-content: space-between;
	align-items: flex-start;
}
.home_projects .projects__header {
	grid-area: left;
}
.home_projects .left {
	grid-area: bottom;
}
.home_projects .image {
	grid-area: right;
}
.home_projects .inner > div {
	width: 100%;
}
.home_projects .inner .left {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	height: 100%;
}
.home_projects h2 {
	margin-bottom: 0px;
    max-width: 321px;
    font-weight: 500;
    height: 0px;
}
.home_projects .desc {
	font-weight: bold;
	font-size: 22px;
	line-height: 120%;
	margin-bottom: 28px;
	max-width: 413px;
    font-weight: 700;
}
.home_projects .text {
	font-size: 16px;
	line-height: 150%;
}
.home_projects .link {
	background-color: var(--main-color);
	color: var(--white-color);
	border-radius: 62px;
	padding: 0px 24px;
	height: 50px;
	font-size: 14px;
	font-weight: bold;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

/* Форма bottom */
.form-bottom .container {
	display: flex;
	justify-content: flex-end;
	position: relative;
}

.form-bottom {
	padding-top: 120px;
}
.form-bottom .content {
	position: relative;
}

.message_sent {
    position: absolute;
    top: 35px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.modal .message_sent {
	top: 200px;
	left: 0;
	width: 100%;
}

.modal.btn {
	display: block;
}

.message_sent::before {
	content: '';
	width: 120px;
	height: 120px;
	background-image: url(../img/checkmark.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
.form-image {
    display: block;
    width: 155%;
    height: 88%;
    background-repeat: no-repeat;
    background-position-x: right;
    background-size: cover;
    background-position-y: center;
    position: relative;
    left: -276px;
    overflow: visible;
}
.form-bottom .wrapper {
	width: 50%;
}
.form-bottom .wrapper::before {
    content: '';
    display: block;
    background-image: url(../img/infinity.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 1021px;
    height: 600px;
	position: absolute;
    left: -400px;
    background-position: center;
}
.form-bottom .inner {
	display: flex;
}
.form-bottom .inner > div {
	width: 100%;
}
.form-bottom h2 span {
	color: var(--main-color);
}
.form-bottom form {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.form-bottom p {
	margin-bottom: 0 !important;
}

.form-input, textarea {
	width: 100%;
}

.form-bottom form .form-input,
.form-bottom form textarea {
	border: none;
	outline: none;
	font-size: 14px;
}
.form-bottom form .form-input {
	border-radius: 62px;
	height: 50px;
	padding-left: 24px;
}
.form-bottom form textarea {
	border-radius: 25px;
	padding: 18px 24px;
	height: 150px;
}
.form-bottom .captcha {
	width: 300px;
}
.form-bottom .bottom {
	margin-top: 40px;
	display: flex;
	gap: 41px;
}
.form-bottom input[type="submit"] {
	border: none;
	outline: none;
	background-color: var(--main-color);
	border-radius: 62px;
	padding: 0 24px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: bold;
	line-height: 100%;
	color: var(--white-color);
}

.form-bottom .bottom .text {
	color: #95A2B0;
	font-size: 14px;
	line-height: 130%;
}
.form-bottom .bottom .text a {
	color: var(--main-color);
	text-decoration: underline;
}

/* FAQ */
/* .faq {
	min-height: 700px;
} */
.faq h2 {
    font-weight: 500;
    font-size: 36px;
    text-transform: uppercase;
}
.accordion {
	display: flex;
	gap: 32px;
}
.accordion > div {
	width: 50%;
}
.accordion-item {
	border-radius: 25px;
	background-color: var(--white-color);
	margin-bottom: 12px;
}

.accordion-header {
	font-size: 14px;
	font-weight: bold;
	padding: 13px 24px;
	display: flex;
	gap: 14px;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	line-height: 24px;
}

.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-out;
	padding: 20px 24px;
	overflow: hidden;
	opacity: 0;
	display: none;
	border-top: 1px solid #E9E9E9;
}
.accordion-content,
.accordion-content p,
.accordion-content li {
	font-size: 14px;
	/* line-height: 100%; */
	line-height: 20px;
}
.accordion-content p {
	margin-bottom: 24px;
}
.accordion-header::after {
	content: "";
	display: inline-flex;
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	background-image: url('../img/icons/plus.svg');
	background-repeat: no-repeat;
	background-size: 18px;
	background-position: right;
	transition: transform 0.3s;
	align-self: center;
}

.accordion-item.active .accordion-header::after {
	transform: rotate(180deg);
	padding-left: 0;
	background-image: url('../img/icons/minus.svg');
}
.accordion-item.active .accordion-content {
	opacity: 1;
	display: block;
}

/* Footer */
.footer {
	background-color: var(--main-color);
	color: var(--white-color);
	padding-top: 101px;
	padding-bottom: 60px;
	margin-top: 125px;
}
.footer .inner {
	display: flex;
}
.footer .col {
	width: 25%;
	font-size: 14px;
}
.footer .col-3 {
	width: 34%;
}
.footer .logo {
	margin-bottom: 46px;
}
.footer .logo img {
	width: 98px;
	height: auto;
}
.footer a {
	display: block;
}
.footer .phone, 
.footer .email {
	font-size: 16px;
	font-weight: 500;
}
.footer .phone img, 
.footer .email img {
	margin-right: 2px;
}
.footer .phone {
	margin-bottom: 8px;
}
.footer .email {
	margin-bottom: 40px;
}
.footer .social {
	margin-bottom: 40px;
}
.footer .social .title {
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 7px;
}
.social .icons {
	display: flex;
	gap: 8px;
}
.social a {
	width: 44px;
	height: 44px;
	display: inline-flex;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 50%;
}
.footer .social a {
	background-color: var(--white-color);
}
.social .vk {
	background-image: url('../img/icons/vk.svg');
}
.social .vk-white {
	background-image: url('../img/icons/vk-white.svg');
}
.social .telegram {
	background-image: url('../img/icons/telegram.svg');
}
.social .tg-white {
	background-image: url('../img/icons/tg-white.svg');
}
.social .habr {
	background-image: url('../img/icons/habr_icon.png');
}
.social .habr-white {
	background-image: url('../img/icons/habr-white.svg');
}
.social .vc {
	background-image: url('../img/icons/vc_icon.svg');
}
.social .vc-white {
	background-image: url('../img/icons/vc-white.svg');
}
.tg {
	margin-top: 24px;
	margin-bottom: 57px;
}
.footer .social .button {
	display: inline-flex;
    justify-content: center;
    border-radius: 62px;
    padding: 0px 20px;
	width: auto;
    color: var(--main-color);
    text-decoration: none;
    font-size: 14px;
    vertical-align: text-top;
    font-weight: 700;
    align-items: center;
}
	
.footer .tg .title {
	font-size: 14px;
	font-weight: bold;
}
.footer .tg a {
	text-decoration: underline;
}
.footer .copy {
	color: var(--white-color);
	font-size: 14px;
	font-weight: 300;
}
.footer .menu-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 25px;
}
.footer .menu a {
	margin-bottom: 20px;
	font-size: 14px;
}
.footer .polytics {
	text-decoration: underline;
	font-size: 14px;
	font-weight: 300;
}
.footer-bottom .col-2 {
	width: 50%;
}
.footer .rights {
	font-size: 14px;
	font-weight: 300;
}

/* Страница "Аренда выделенного сервера" */
.slider-home_projects .slide {
	width: 22%;
	height: 234px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	background-color: var(--white-color);
	border-radius: 20px;
	padding: 30px;
	margin-right: 50px;
}
.slider-projects .slider-counter {
	display: none;
}
.slider-projects .slider-top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.slider-projects .slide img {
	height: 80px;
	width: auto;
}
.slider-projects .slide .text {
	font-size: 22px;
	font-weight: bold;
	line-height: 100%;
}

.output-mark {
	position: relative;
	margin-top: 25px;
}
.output-mark .range-output {
	position: absolute;
	top: -16px;
	font-weight: 700;
	font-size: 14px;
}

/* 
 Закомментировано, т.к. на разных элементах ведет себя неправильно
.output-mark output::after {
	content: "шт.";
	margin-left: 2px;	
} */

.range-input__bottom {
	position: relative;
	top: 20px;
	display: flex;
	justify-content: space-between;
	font-weight: 400;
	font-size: 12px;
	margin-bottom: 40px;
}
.range-input .range-input__bottom span {
	position: relative;
	color: rgba(255, 255, 255, 0.8);
}

input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  background-image: linear-gradient(#fff, #fff);
  background-size: 0% 100%;
  background-repeat: no-repeat;
}

.range-white input[type="range"] {
	-webkit-appearance: none;
	width: 100%;
	height: 4px;
	background: rgba(0, 113, 184, 0.2);
	border-radius: 5px;
	background-image: linear-gradient(var(--main-color), var(--main-color));
	background-size: 0% 100%;
  	background-repeat: no-repeat;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 15px;
    height: 15px;
    background: var(--main-color);
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    z-index: 1;
	margin-top: -5px;
	border: 3px solid var(--white-color);
}
.range-white input[type="range"]::-webkit-slider-thumb,
.bkg-white input[type="range"]::-webkit-slider-thumb {
	background: var(--white-color);
	border: 3px solid var(--main-color);
}
.bkg-white .range-output {
	color: var(--main-color);
}
input[type="range"]::-moz-range-thumb {
	appearance: none;
    width: 10px;
    height: 10px;
    background: var(--main-color);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    position: relative;
    z-index: 1;
	border: 3px solid var(--white-color);
	margin-top: -15px;
}
.range-white input[type="range"]::-moz-range-thumb,
.bkg-white input[type="range"]::-moz-range-thumb {
	background: var(--white-color);
	border: 3px solid var(--main-color);
}
input[type="range"]::-ms-thumb {
	appearance: none;
    width: 15px;
    height: 15px;
    background: var(--main-color);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    position: relative;
	border: 3px solid var(--white-color);
    z-index: 1;
}
.range-white input[type="range"]::-ms-thumb,
.bkg-white input[type="range"]::-ms-thumb {
	background: var(--white-color);
	border: 3px solid var(--main-color);
}

input[type="range"]::-webkit-slider-runnable-track {
	-webkit-appearance: none;
	appearance: none;
    background: transparent;
	border: none;
    border-radius: 30px;
    height: 4px;
}
input[type="range"]::-moz-range-track {
	-webkit-appearance: none;
	appearance: none;
    background: transparent;
    border-radius: 30px;
    height: 5px;
}
input[type="range"]::-ms-track {
	-webkit-appearance: none;
	appearance: none;
    background: transparent;
    border-radius: 30px;
    height: 5px;
}


.add-link {
	text-decoration: underline;
	font-size: 14px;
	margin-top: 8px;
	display: inline-block;
}

.server-form .checkout-card {
	background-color: var(--white-color);
	color: var(--text-color);
	border-radius: 20px;
	padding: 30px;
}
.server-form .checkout-card h3 {
	color: var(--main-color);
	font-size: 22px;
	font-weight: bold;
	padding-bottom: 30px;
	width: 100%;
	border-bottom: 1px solid #EBEEF1;
	margin-bottom: 30px;
}
.server-form .checkout-card .period {
	padding-bottom: 30px;
	border-bottom: 1px solid #EBEEF1;
}
.server-form .right .period-title {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 20px;
}
.server-form .right .radio-group {
	display: flex;
	gap: 24px;
	margin-top: 20px;
}
.server-form .right .radio-item {
	cursor: pointer;
	display: flex;
	gap: 4px;
}
.server-form .right .radio-item label {
	color: var(--text-color);
	font-size: 14px;
	font-weight: 400;
}
.server-form .right .summary {
	padding-top: 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 32px;
}
.server-form .right .price {
	color: var(--main-color);
}
.old_price {
	/* color: rgba(var(--main-color), 0.2); */
    font-size: 18px;
	font-weight: 500;
    margin-right: 1em;
    text-decoration: line-through;
}
.server-form .right .info {
	background-color: #E5F1F8;
	border-radius: 10px;
	text-align: center;
	padding: 27px;
	margin-bottom: 30px;
}
.server-form .right .info span {
	color: var(--main-color);
}
.server-form .right input[type="submit"] {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 50px;
	color: var(--white-color);
	font-size: 14px;
	font-weight: bold;
	border: none;
	outline: none;
	background-color: var(--main-color);
	border-radius: 62px;
	cursor: pointer;
} */

/* Готовые серверы  */
.ready-servers .item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: var(--white-color);
	border-radius: 20px;
	margin-bottom: 12px;
	padding: 38px 30px; 
	font-size: 16px;
}
.ready-servers .item .col {
	width: 22%;
}
.ready-servers .item .col:last-child {
	text-align: right;
	width: auto;
}
.order-btn {
	font-weight: bold;
	color: var(--main-color);
	display: flex;
	align-items: center;
	gap: 10px;
}

/* При заказе с каждым сервером */
.additional .inner {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	gap: 32px;
}
.additional .col {
	border-radius: 20px;
	padding: 30px;
}
.additional .col .title {
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 28px;
}
.additional .col li {
	margin-bottom: 8px;
	position: relative;
	height: 24px;
	background-size: 24px;
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 39px;
	line-height: 140%;
}
.additional .left {
	background-color: var(--white-color);
}
.additional .right {
	color: var(--white-color);
	background-color: var(--main-color);
	background-image: url('../img/icons/hand1.svg');
	background-repeat: no-repeat;
	background-position: right center;
	background-size: contain;
}
.additional .right ul {
	width: 65%;
	padding-bottom: 20px;
}
.additional .left li {
	background-image: url('../img/icons/check.svg');
}
.additional .right li {
	background-image: url('../img/icons/plus1.svg');
}

/* НАШИ ПРЕИМУЩЕСТВА */
.our-advantages {
	background-color: var(--main-color);
	color: var(--white-color);
	border-radius: 60px;
	padding-top: 125px;
	padding-bottom: 125px;
}
.our-advantages h2 {
	margin-bottom: 60px;
}
.our-advantages .items {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 32px;
}
.our-advantages .item {
	border-radius: 20px;
	background-color: #1A80BF;
	color: var(--white-color);
	width: 25%;
	padding: 30px;
}
.our-advantages .item .icon {
	margin-bottom: 76px;
}
.our-advantages .item img {
	width: 80px;
	height: auto;
}
.our-advantages .item .title {
	font-size: 22px;
	font-weight: bold;
	line-height: 100%;
	margin-bottom: 20px;
}
.our-advantages .item .text {
	font-size: 14px;
	line-height: 130%;
}

/* Всего 5 шагов к безопасности */
.five_steps .item:first-child {
	border-top: 1px solid #CEDBE8;
}
.five_steps .item {
	border-bottom: 1px solid #CEDBE8;
	padding: 7px 0px;
	display: flex;
	justify-content: space-between;
}
.five_steps .item .left {
	display: flex;
	width: 50%;
	justify-content: space-between;
	padding-right: 50px;
}
.five_steps .item .right {
	padding-left: 30px;
}
.five_steps .item .left .item-head {
	display: flex;
}
.five_steps .item .number {
	font-size: 22px;
	font-weight: 700;
	line-height: 100%;
	color: var(--main-color);
	margin-top: 25px;
	margin-right: 46px;
}
.five_steps .item .title {
	font-size: 22px;
	font-weight: 700;
	line-height: 100%;
	margin-top: 25px;
}
.five_steps .item .image {
	width: 20%;
	justify-self: flex-end;
}
.five_steps .item .image {
	width: 205px;
	height: auto;
}
.five_steps .item .text {
	width: 50%;
	font-size: 14px;
	line-height: 20px;
	margin-top: 25px;
}

/* Официальный партнёр */
.official-partner .inner {
	display: flex;
	gap: 32px;
}
.official-partner .inner .col {
	width: 50%;
}
.official-partner .inner .left {
	padding-right: 100px;
}
.official-partner .inner h2 {
	margin-bottom: 48px;
}
.official-partner .inner .text {
	font-size: 20px;
	line-height: 140%;
}

/* Из отчёта Вы узнаете */
.report-info {
	background-color: var(--white-color);
	border-radius: 40px;
	padding-bottom: 0;
	margin-bottom: 125px;
}
.report-info-inner {
	display: flex;
}
.report-info .left {
	width: 45%;
}
.report-info .left li {
	margin-bottom: 8px;
	display: flex;
	align-items: center;
}

.list-checked li,
.list-checked-white li {
	position: relative;
	padding-left: 38px;
	margin-bottom: 12px;
}

.list-checked li:last-child {
	margin-bottom: 0;
}

.list-checked li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 2px;
	display: inline-block;
	width: 24px;
	height: 24px;
	background-image: url('../img/icons/check.svg');
	background-repeat: no-repeat;
	background-size: 24px;
	background-position: center;
	margin-right: 14px;
}
.list-checked-white li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 2px;
	display: inline-block;
	width: 24px;
	height: 24px;
	background-image: url('../img/icons/checks.svg');
	background-repeat: no-repeat;
	background-size: 24px;
	margin-right: 14px;
}
.marker-plus-white li::before {
	content: '';
	display: inline-block;
	width: 24px;
	height: 24px;
	background-image: url('../img/icons/config/plus-white.svg');
	background-repeat: no-repeat;
	background-size: 24px;
	background-position: bottom;
	margin-right: 14px;
}
.report-info .right {
	width: 55%;
}

/* АКЦИИ */
.promo-page .promos {
	padding-bottom: 125px;
}
.promos .items {
	display: flex;
	flex-wrap: wrap;
	gap: 32px;
}
.promos .item {
	position: relative;
	width: 23%;
	background-color: var(--white-color);
	border-radius: 20px;
}
.promos .item .image {
	width: 100%;
	height: 182px;
	overflow: hidden;
	border-radius: 20px;
}
.promos .item .image img {
	width: 100%;
	height: auto;
}
.promos .item .content {
	padding: 30px;
}
.promos .item .title {
	font-size: 18px;
	font-weight: bold;
	line-height: 100%;
	margin-bottom: 20px;
}
.promos .item .text {
	font-size: 14px;
	line-height: 130%;
	margin-bottom: 20px;
}
.promos .item .links a {
	color: var(--main-color);
	font-size: 14px;
	text-decoration: underline;
	line-height: 140%;
	display: block;
}
.promos .item .links {
	margin-bottom: 40px;
}
.promos .item .more {
	position: absolute;
	display: flex;
	align-items: center;
	color: var(--main-color);
	font-weight: bold;
	font-size: 16px;
	cursor: pointer;
	bottom: 30px;
	left: 30px;
}
.promos .item .more img {
	margin-left: 9px;
}
.archive-description {
	width: 35%;
}
.post-filter {
	margin-top: 32px;
}
.post-filter ul {
	display: flex;
}
.post-filter a {
	display: inline-block;
	border-radius: 62px;
	font-weight: 700;
	font-size: 14px;
	padding: 18px 24px;
}
.post-filter .active a {
	background-color: var(--main-color);
	color: var(--white-color);
}
/*Pagination*/
.page-numbers {
    display: inline-flex;
	border-radius: 50px;
	align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
	text-transform: lowercase;
    padding: 10px;
    width: 38px;
    height: 38px;
}
.page-numbers:hover {
	background-color: rgba(0, 113, 184, 0.4);
}
.pagination .current {
	background-color: var(--main-color);
	color: var(--white-color);
}
.pagination .next {
	margin-right: 10px;
	width: auto;
}
.pagination .prev {
	margin-left: 10px;
	width: auto;
}

/*Swiper*/

.clients-swiper .image {
	display: inline-flex;
	justify-content: center;
	/* background-color: var(--white-color); */
	/* border-radius: 20px; */
	padding: 20px;
}

.clients .items img {
	height: 105px;
	object-fit: contain;
}

.clients .swiper-pagination {
	position: relative;
	margin-top: 20px;
}

.header_nav {
	display: flex;
	flex-direction: row;
}

.hamburger {
	display: none;
}

.header_nav__lk {
	display: none;
	margin-top: 80px;
}

.header_nav__lk a {
	background-color: var(--white-color);;
	color: var(--main-color);
	border-radius: 50px;
	width: 100%;
	display: block;
	padding-top: 10px;
	padding-bottom: 10px;
	font-size: 14px;
	font-weight: 400;
	text-align: center;
}

.service-features h2 {
	max-width: 683px;
}

.service-features header {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.service-features .items {
	display: flex;
	flex-direction: row;
}

.service-features .slider-nav {
	display: flex;
	gap: 4px;
}

.nav-mobile,
.mobile {
	display: none !important;
	margin-top: 40px;
}

.button-prev,
.button-next {
	background: var(--main-color);
    width: 44px;
    height: 44px;
	border-radius: 80px;
	background-repeat: no-repeat;
    display: inline-flex;
	background-position: center;
	cursor: pointer;
}

.swiper-button-disabled {
	background: var(--white-color);
}

.button-prev.swiper-button-disabled {
	background-image: url(../img/icons/arrow-left-blue.svg);
	background-repeat: no-repeat;
	background-position: center;
	cursor: default;
}

.button-next.swiper-button-disabled {
	background-image: url(../img/icons/arrow-right-blue.svg);
	background-repeat: no-repeat;
	background-position: center;
	cursor: default;
}

.button-prev {
	background-image: url(../img/icons/arrow-left.svg);
}

.button-next {
	background-image: url(../img/icons/arrow-right.svg);
}

.service-features .swiper-slide {
	filter: grayscale(0);
    opacity: 1;
	height: auto;
}

/* Когда 3 слайда */
.audit-ib .service-features .swiper-slide,
.skzi .service-features .swiper-slide {
	width: 419px !important;
}

.slide-item {
	background-color: var(--white-color);
	padding: 30px;
	width: 306px;
	min-height: 234px;
	border-radius: 20px;
}

.slide-item img {
	width: 80px;
}

.entry-header h1 {
	font-family: var(--title-font);
	font-size: 36px;
	font-weight: 500;
}

.slide-item p {
	margin-top: 30px;
	font-weight: 700;
	font-size: 22px;
	line-height: 1;
}

.attestacziya-fstek .slide-item p,
.soprovozhdenie-ib .slide-item p {
	font-weight: 400;
	font-size: 18px;
	line-height: 1.2;
}

.steps {
	padding-bottom: 125px;
}
.steps .step-row {
	display: flex;
	gap: 60px;
	flex-wrap: nowrap;
	border-bottom: 1px solid #CEDBE8;
	padding: 13px 0;
	transition: all .3s;
}

.steps .step-row:first {
	border-top: 1px solid #CEDBE8;
}

.step-position {
	display: block;
	flex: 0 0 46px;
	font-weight: 700;
	font-size: 22px;
	color: var(--main-color);
	margin-top: 32px;
}

.step-title {
	font-family: var(--text-font);
	min-width: 364px;
	font-weight: 700;
	font-size: 22px;
	margin-top: 32px;
}
.step-thumbnail img {
	visibility: hidden;
	opacity: 0;
	transition: visibility 0s, opacity 0.3s linear;
}

/* .step-row:hover {
	background-color: var(--white-color);
} */

.step-row:hover img {
	visibility: visible;
	opacity: 1;
}

.step-thumbnail {
    flex: 0 0 205px;
    height: auto;
    object-fit: cover;
}
.step-description {
	flex: 1 1 0px;
	font-weight: 400;
	font-size: 16px;
	margin-left: 113px;
	margin-top: 32px;
}

.fstek-steps {
	padding-bottom: 0;
}
.dlp-report {
	background: var(--white-color);
	padding-top: 125px;
	padding-bottom: 0;
}
.dlp-report .inner {
	display: flex;
}

.dlp-report .left-side {
	flex-shrink: 0;
}

.dlp-report .right-side img {
	margin-left: 81px;
    object-fit: fill;
}
.report-text {
	font-weight: 400;
	font-size: 16px;
	line-height: 140%;
}

.partner {
	padding-top: 125px;
	padding-bottom: 0;
}

.partner h2 {
	margin-bottom: 48px;
}

.partner .inner {
	display: flex;
	gap: 180px;
}
.partner .inner > div {
	width: 50%;
}
.partner-text {
	font-family: 'DIN Pro';
	font-weight: 400;
	font-size: 20px;
	line-height: 140%;
}
/*Наши преимущества*/
.service-advantage .container {
	background-color: var(--main-color);
	padding: 125px 60px;
	/* margin-top: 125px; */
	color: var(--white-color);
	border-radius: 40px;
}
.service-advantage__list {
	display: flex;
	gap: 32px;
}
.service-advantage__card {
	flex: 1 1 0px;
	background-color: #197fbf;
	padding: 30px;
	border-radius: 20px;
}

.service-advantage__card h3 {
	text-transform: none;
	font-family: var(--text-font);
	font-weight: 700;
	min-height: 70px;
	font-size: 22px;
	margin-top: 76px;
}

.service-advantage__card img {
	width: 80px;
}

.service-advantage__card p {
	font-weight: 400;
	font-size: 14px;
	line-height: 130%;
	margin-top: 20px;
}

.prepared {
	padding-top: 80px;
}

.prepared__list-row {
	display: flex;
	flex-direction: column;
	margin-bottom: 12px;
}
.prepared__list-row > div {
	display: grid;
	grid-template-columns: 277px repeat(3, 1fr) 99px;
	gap: 50px;
	align-items: center;
}

.prepared__title {
	color: var(--main-color);
	font-weight: 700;
	font-size: 16px;
	margin-bottom: 24px;
	padding: 0 30px;
}

.prepared__title > div {
	display: flex;
	align-items: center;
}

.cpu_icon_blue::before {
	content: '';
	display: inline-block;
	width: 24px;
	height: 24px;
	background-image: url('../img/icons/config/cpu-blue.svg');
	background-repeat: no-repeat;
	background-size: 24px;
	margin-right: 8px;
}

.ram_icon_blue::before {
	content: '';
	display: inline-block;
	width: 24px;
	height: 24px;
	background-image: url('../img/icons/config/ram-blue.svg');
	background-repeat: no-repeat;
	background-size: 24px;
	margin-right: 8px;
}

.ssd_icon_blue::before {
	content: '';
	display: inline-block;
	width: 24px;
	height: 24px;
	background-image: url('../img/icons/config/ssd-blue.svg');
	background-repeat: no-repeat;
	background-size: 24px;
	margin-right: 8px;
}

.prepard__checkout {
	justify-content: end;
}

.prepard__checkout .prepared__field {
	display: flex;
	justify-content: end;
	color: var(--main-color);
	font-weight: 700;
	font-size: 16px;
	line-height: 1.3;
}

.checkout_icon_blue::before {
	content: '';
	display: inline-block;
	width: 24px;
	height: 24px;
	background-image: url('../img/icons/config/shopping-cart-blue.svg');
	background-repeat: no-repeat;
	background-size: 24px;
	margin-right: 8px;
}

.checkout_icon_white_after::after {
	content: '';
	display: inline-block;
	width: 24px;
	height: 24px;
	background-image: url('../img/icons/config/shopping-cart-white.svg');
	background-repeat: no-repeat;
	background-size: 24px;
	margin-right: 8px;
}

.prepared__price .prepared__field {
	display: flex;
	justify-content: center;
}

.prepared__list-row:not(:first-of-type) .prepared__title {
	display: none;
}
.prepared__card .prepared__card-title {
	display: none;
}
.prepared__card {
	background-color: var(--white-color);;
	padding: 39px 30px;
	border-radius: 20px;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.3;
}
.prepared__card span {
	display: block;
}

.extra {
	padding-bottom: 0;
}

.extra .inner {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 32px;
}

.extra .inner > div {
	background-color: var(--white-color);
	padding: 30px;
	border-radius: 20px;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.4;

}

.extra .inner .extra__purchace {
	background-color: var(--main-color);
	color: var(--white-color);
}

.extra h3 {
	font-family: DIN Pro;
	font-weight: 700;
	font-size: 22px;
	line-height: 1;
	margin-bottom: 28px;
	text-transform: none;
}

.extra li {
	margin-bottom: 6px;
}

.vps_ready__items {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.vds-form {
	padding: 30px;
	background-color: var(--white-color);
	border-radius: 20px;
}

.vps_ready__item {
	font-weight: 400;
	font-size: 14px;
	line-height: 1.3;
}

.vps_ready__card {
	border-bottom: 1px solid rgba(157, 172, 187, 0.2);
	padding-bottom: 30px;
	margin-bottom: 34px;
}

.vps_ready__item h3 {
	color: var(--main-color);
	font-family: DIN Pro;
	font-weight: 700;
	font-size: 22px;
	line-height: 1;
	text-transform: none;
	margin-bottom: 30px;
}

.vps_ready__item .column-2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	align-items: center;
	gap: 33px;
	margin-bottom: 11px;
}

.vps_ready__item .label,
.vps_ready__item .label label {
	margin-bottom: 0;
}

.outside-label {
	margin-top: 0 !important;
}

.vps_ready__card select {
	width: 100%;
}

.vps_ready__item label {
	display: block;
    margin-bottom: 7px;
}
.vps_ready__ssd {
	margin-top: 32px;
}

.vps_ready__item b {
	font-weight: 700;
	font-size: 16px;
	line-height: 1.3;
}

.vps_ready__item select {
	border: transparent;
    background: var(--main-color);
    padding: 5px 12px;
    color: var(--white-color);
    border-radius: 10px;
	font-weight: 700;
	font-size: 16px;
	line-height: 1.3;
	appearance:none;
	background-image: url('../img/icons/arrow-bottom-white.svg');
    background-position: right 14px center;
    background-size: 10px;
	background-repeat: no-repeat;
	cursor: pointer;
}

.calc select:focus-visible {
	outline: transparent;
}

.vps_ready__range {
	align-items: flex-end;
}

.vps_ready__item input[type=number] {
	background: var(--main-color);
	border: transparent;
	color: var(--white-color);
    display: inline-flex;
    width: 32px;
    height: 32px;
    text-align: center;
    border-radius: 10px;
	font-weight: 700;
	font-size: 16px;
	line-height: 1.3;
}

.vps_ready__item input[type=number]:disabled {
	background-color: var(--white-color);
	color: var(--text-color);
	text-align: left;
	width: 1.3em;
}

input[type="number"]:focus-visible {
	outline: transparent;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

input[type='number'],
input[type="number"]:hover,
input[type="number"]:focus {
    appearance: none;
    -moz-appearance: textfield;
}

.vps_ready__os {
	margin-top: 30px;
}

.vps_ready__summary {
	align-items: center;
}

.vps_ready__price {
	font-weight: 700;
	font-size: 22px;
}

.vps_ready__item input[type="button"] {
	display: flex;
	width: 100%;
	justify-content: center;
	align-items: center;
	background-color: var(--main-color);
	color: var(--white-color);
	padding: 18px;
	border: transparent;
	margin-top: 30px;
	border-radius: 62px;
	font-weight: 700;
	font-size: 14px;
}

.calc input[type="button"]:focus-visible {
	outline: transparent;
}

.vps_config__row:last-child {
	border-bottom: none;
}

.vps_config__row .column_2 {
	display: grid;
	grid-template-columns: 1fr 0fr;
	gap: 30px;
	align-items: center;
}

.vps_config__row label,
.s3-config .row label,
.config .row .icon {
	display: flex;
	align-items: center;
	font-weight: 700;
	font-size: 22px;
	gap: 7px;
}

.vps_config__row .count {
	display: flex;
    flex-direction: row;
    align-items: center;
	font-weight: 700;
	font-size: 16px;
}

.vps_config__row .count input[type="number"] {
	display: inline-flex;
	background-color: var(--white-color);
	color: var(--text-color);
	border-radius: 16px;
	margin-right: 13px;
	width: 56px;
    height: 50px;
    justify-content: center;
    text-align: center;
	border: transparent;
	outline: none;
	font-weight: 700;
	font-size: 16px;
} 

.calc .count input[type="number"]:focus {
	border: transparent;
	outline: none;
}


.server-form select {
	margin-top: 24px;
}

.section.support {
	padding-top: 0;
}

.site-main.docs {
	margin-top: 67px;
}

.docs .accordion > div {
	width: 100%;
}

.docs .entry-content {
	padding-bottom: 0;
}

.docs__info {
	display: flex;
	flex-direction: column;
	gap: 30px;
	font-weight: 400;
	font-size: 24px;
	line-height: 1.4;
	margin-top: 52px;
}

.docs-detail {
	display: flex;
	gap: 120px;
}

.docs__info span {
	font-weight: 700;
	color: var(--main-color);
}

.docs__info a {
	color: var(--color-link);
}

.docs__accordion {
	flex-direction: column;
	margin-top: 80px;
	font-weight: 400;
	font-size: 18px;
	line-height: 2;
	gap: 12px;
}

.docs__accordion .accordion-item {
	margin-bottom: 0;
}

.docs__accordion .accordion-header {
	font-weight: 700;
	font-size: 22px;
	line-height: 24px;
	justify-content: flex-start;
	align-items: baseline;
	padding: 30px;
}

.docs__accordion .active .accordion-header {
	padding-bottom: 0;
}

.docs__accordion .active {
	box-shadow: 0px 4px 50px 0px rgba(0, 113, 184, 0.08);
}

.docs__accordion .accordion-item.active .accordion-header::after {
	background-image: none;
	transform: none;
    /* transform: rotate(180deg);
    background-image: url(../img/icons/minus.svg); */
}

.docs__accordion .accordion-header::after {
	content: none;
}

.docs__accordion .accordion-header::before {
    content: "";
    display: inline-flex;
    width: 18px;
    height: 18px;
    background-image: url(../img/icons/plus.svg);
    background-repeat: no-repeat;
    background-size: 18px;
    background-position: center;
    transition: transform 0.3s;
    align-self: baseline;
	margin-right: 20px;
}

.docs__accordion .active .accordion-header::before {
	transform: rotate(180deg);
	background-image: url(../img/icons/minus.svg);
}

.docs__accordion .accordion-content {
	border-top: none;
}

.docs__list {
	list-style-image: url(../img/icons/file_icon.svg);
}

.docs__item {
	margin: 0 35px;
	margin-bottom: 7px;
}

.docs__title {
	display: inline-flex;
	font-size: 18px;
}

.docs__download-text {
	color: var(--main-color);
	font-weight: 700;
	font-size: 18px;
	line-height: 2;
}

.doc {
	display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.docs__download-link {
	display: inline-flex;
    align-items: center;
	color: var(--main-color);
	font-weight: 700;
}

.docs__download-link::after {
	content: "";
	display: inline-flex;
    width: 24px;
    height: 24px;
    background-image: url(../img/icons/download_icon.svg);
    background-repeat: no-repeat;
    background-size: 24px;
    background-position: center;
    align-self: center;
	padding-left: 12px;
}

.details {
	background-color: var(--white-color);
	border-radius: 20px;
	padding: 30px;
	margin: 125px 0;
}

.details h2 {
	font-family: DIN Pro;
	font-weight: 700;
	font-size: 22px;
	line-height: 1;
	text-transform: none;
	margin-bottom: 32px;
}

.details__items {
	margin-bottom: 32px;
}

.details__item {
	display: grid;
	grid-template-columns: 480px 1fr;
	font-weight: 400;
	font-size: 16px;
	line-height: 2;
}

.details__item__title {
	font-weight: 700;
	color: var(--main-color);
}

.security-services_cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.security-services__card {
	position: relative;
	display: flex;
	overflow: hidden;
	flex-direction: column;
	justify-content: space-between;
	background-color: var(--white-color);
	border-radius: 20px;
	height: 328px;
	padding: 30px;
}

.security-services__card__title {
	font-family: DIN Pro;
	font-weight: 700;
	font-size: 22px;
	line-height: 1;
	text-transform: none;
	z-index: 10;
}

.security-services__card__desc {
	font-family: DIN Pro;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.3;
	letter-spacing: -0.02em;
	z-index: 10;
}

.security-services__card__footer {
	z-index: 10;
}

.security-services__card__footer a {
	display: inline-flex;
	align-items: center;
	color: var(--main-color);
	font-family: DIN Pro;
	font-weight: 700;
	font-size: 16px;
	line-height: 1.4;
	letter-spacing: 0.02em;
}

.security-services__card a::after {
	content: "";
	display: inline-flex;
	width: 16px;
	height: 16px;
	background-image: url('../img/icons/arrow-btn.svg');
	background-repeat: no-repeat;
	background-size: 16px;
	background-position: center;
	transition: transform 0.3s;
	padding-left: 16px;
}

.security-services__card:hover a::after {
	background-image: url('../img/icons/arrow-btn-white.svg');
}

.security-services__card__footer img {
	position: absolute;
	bottom: 30px;
	right: 30px;
	width: 80px;
}

.security-services__card .icon_grey {
	display: none;
}

.security-services__card:hover .icon_grey {
	display: block;
}

.security-services__card:hover .icon_colour {
	display: none;
}

.consultation__bkg {
	padding: 125px 60px;
	border-radius: 40px;
	background-size: cover;
    background-position: center;
}

.consultation__title {
	width: 600px;
}

.consultation__title span {
	color: var(--main-color);
}
.consultation__content {
	margin-top: 52px;
}

.consultation__phone,
.consultation__email {
	color: var(--main-color);
	text-decoration: none;
	font-weight: 700;
	font-size: 24px;
	line-height: 100%;
	letter-spacing: 0.02em;
}

.consultation__content .btn {
margin-top: 52px;
}

.btn-tgbot {
	padding: 14px 24px;
}

.consultation__desc {
	font-weight: 400;
	font-size: 22px;
	line-height: 1.3;
	letter-spacing: 0.0em;
	margin-bottom: 32px;
}

.consultation__info {
	display: flex;
	gap: 32px;
}

.phone_icon_blue::before {
	content: '';
	display: inline-flex;
	width: 24px;
	height: 24px;
	background-image: url('../img/icons/phone-blue.svg');
	background-size: cover;
	background-repeat: no-repeat;
	margin-right: 12px;
}

.email_icon_blue::before {
	content: '';
	display: inline-flex;
	width: 24px;
	height: 17px;
	background-image: url('../img/icons/email_blue.svg');
	background-size: cover;
	background-repeat: no-repeat;
	margin-right: 12px;
}

.licenses {
	padding-bottom: 125px;
}

.licenses__items {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}
.licenses__item {
	width: 100%;
	max-width: 100%;
	min-height: 0;
	min-width: 0;
}
.licenses__item img {
	transform: scale(1.1, 1.1);
}

.licenses__item__footer {
    z-index: 1;
}

.licenses__item__navs {
	display: flex;
    justify-content: center;
    width: 100%;
}

.licenses__item .swiper-pagination {
	position: inherit;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.2;
	letter-spacing: 0.02em;
	margin-top: 8px;
}

.licenses__item__desc {
	margin-top: 26px;
	padding: 0 20px;
	font-weight: 400;
	font-size: 18px;
	line-height: 1.2;
	letter-spacing: 0.02em;
	text-align: center;
}

.projects {
	background-color: var(--white-color);
	padding: 125px 0;
}

.projects__header {
	display: flex;
	justify-content: space-between;
}

.projects .swiper {
	width: 100%;
	height: 100%;
}

.project__card {
	display: flex !important;
	flex-direction: column;
	justify-content: space-between;
	background-color: var(--background-color);
	overflow: hidden;
	border-radius: 20px;
	height: auto !important;
	width: 419px;
}

.project__card__thumbnail img {
	height: 236px;
	object-fit: cover;
}

.project__card__content,
.project__card__footer {
	padding: 30px;
	padding-left: 39px;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: -0.02em;
}

.project__card__content {
	padding-bottom: 0;
}

.project__card__content h3 {
	text-transform: none;
	font-family: DIN Pro;
	font-weight: 700;
	font-size: 22px;
	line-height: 1.2;
	letter-spacing: -0.04em;
	margin-bottom: 32px;
}

.project__card__content li {
	list-style-type: disc;
	list-style-position: outside;
	margin-left: 20px;
	margin-bottom: 20px;
}
.project__card__content li:last-child {
	margin-bottom: 0;
}

.project__card__footer button {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--main-color);
	font-weight: 700;
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: -0.02em;
}

.project__card__footer button::before {
	content: "";
	display: inline-flex;
	background-image: url("../img/icons/search-white.svg");
	background-color: var(--main-color);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 24px;
	width: 40px;
	height: 40px;
	border-radius: 60px;
}

.projects .swiper-slide {
    filter: grayscale(0);
    opacity: 1;
}

.knowledge__header {
	margin-top: 80px;
	margin-bottom: 52px;
}

.knowledge__container {
	display: grid;
	grid-template-columns: 419px 1fr;
	gap: 32px;
	margin-bottom: 125px;
}

.knowledge__menu {
	background-color: var(--white-color);
	border-radius: 20px;
	overflow: hidden;
	padding: 40px;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.3;
	letter-spacing: -0.02em;
}

.knowledge__menu li {
	margin-bottom: 16px;
}

.knowledge__menu a {
	display: flex;
	align-items: center;
    justify-content: space-between;
}

.knowledge__menu .current-menu-item,
.current-knowledge-ancestor {
	text-decoration: underline;
}

.knowledge__menu a::after {
	content: "";
	background-image: url(../img/icons/arrow-right-blue.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 8px;
    width: 12px;
    height: 12px;
}

.knowledge__menu li:last-child {
	margin-bottom: 0;
}

.knowledge__content {
	background-color: var(--white-color);
	padding: 40px;
	border-radius: 20px;
	overflow: hidden;
}

.knowledge__search {
	margin-bottom: 40px;
}

.knowledge__search input[type="text"] {
	width: 100%;
	background-image: url(../img/icons/search_blue.svg);
	background-repeat: no-repeat;
	background-position: left;
	background-position-x: 26px;
	background-size: 18px;
	border: transparent;
	background-color: var(--background-color);
	color: var(--main-color);
	border-radius: 62px;
	padding: 18px 24px;
	padding-left: 56px;
	font-weight: 400;
	font-size: 16px;
	line-height: 1;
	letter-spacing: -0.02em;
}

.knowledge__search input[type="text"]::placeholder {
	color: var(--main-color);
}

.knowledge__breadcrumbs {
	margin-bottom: 12px;
}

.single .post__title {
	font-family: DIN Pro;
	font-weight: 700;
	font-size: 28px;
	line-height: 24px;
	letter-spacing: -0.02em;
	text-transform: none;
}

.knowledge__items .post__title {
	margin-bottom: 40px;
}

.knowledge__breadcrumbs ul {
	display: flex;
}

.knowledge__breadcrumbs li:first-child::before {
	content: "";
	margin: 0;
}

.knowledge__breadcrumbs li::before {
	content: "/";
	margin: 0 10px;
	color: #70828E;
}

.knowledge__breadcrumbs a {
	color: #70828E;
}

.knowledge__items {
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: -0.02em;
}

.knowledge__items .entry-content {
	padding-bottom: 0;
}

.knowledge__items a {
	color: var(--main-color);
	text-decoration: underline;
	text-decoration-style: solid;
}

.knowledge__items ul {
	list-style-type: disc;
	margin-left: 20px;
	margin-bottom: 30px;
}

.knowledge__items li {
	margin-bottom: 5px;
}

.knowledge__ask {
	display: flex;
	flex-direction: column;
	background-color: var(--main-color);
	padding: 30px 40px;
	border-radius: 20px;
}

.knowledge__ask h3 {
	color: var(--white-color);
	text-transform: none;
	font-family: DIN Pro;
	font-weight: 700;
	font-size: 28px;
	line-height: 1.3;
	letter-spacing: -0.02em;
	margin-bottom: 8px;
}

.knowledge__ask p {
	color: var(--white-color);
	font-weight: 400;
	font-size: 16px;
	line-height: 1.3;
	letter-spacing: -0.02em;
	margin-bottom: 39px;
}

.knowledge__ask .btn {
	width: 100%;
}

.knowledge__sidebar {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.modal,
.review-modal {
    margin: auto;
    background-color: transparent;
    border: transparent;
    scrollbar-width: none;
    height: 100%;
    /* overflow: hidden; */
}

.modal-close,
.review-close{
	position: absolute;
	display: block;
    width: 18px;
    height: 18px;
	background-image: url(../img/icons/plus.svg);
    background-repeat: no-repeat;
    background-size: 18px;
    background-position: center;
	transform: rotate(45deg);
    top: 12px;
    right: 12px;
	cursor: pointer;
}

.modal::backdrop,
.review-modal::backdrop {
	background-color: rgba(0, 0, 0, 0.8);
  }

.modal__container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 757px;
	border-radius: 20px;
	background-color: var(--white-color);;
	overflow: hidden;
	padding: 52px 113px;
	z-index: 999;
}

.modal-btn {
	visibility: hidden;
	opacity: 0;
	width: fit-content;
	margin-top: 27px;
	transition: opacity .3s;
}

.modal__title {
	font-family: var(--title-font);
	font-weight: 500;
	font-size: 36px;
	line-height: 1;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	margin-bottom: 36px;
}

.modal__form input[type="text"],
.modal__form input[type="email"],
.modal__form input[type="tel"],
.modal__form input[type="submit"],
.modal__form textarea {
	border: transparent;
	outline: transparent;
	padding: 18px 24px;
	background-color: var(--background-color);
	border-radius: 62px;
	color: var(--text-color);
	font-weight: 400;
	font-size: 14px;
	line-height: 1;
	letter-spacing: -0.02;
	margin-bottom: 12px;
}

.modal__form textarea {
	border-radius: 25px;
}
.modal__form input[type="submit"] {
	background-color: var(--main-color);
	color: var(--white-color);
	font-weight: 700;
}
.modal__form .bottom {
	display: flex;
	margin-top: 50px;
}

.modal__form .text {
	color: #95A2B0;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.3;
}

.btn-link {
    background: transparent;
    border: transparent;
}

.link-white {
	color: var(--white-color);
}

/* Stock */

.archive .stock {
	padding-bottom: 0;
}

.stock__title {
	font-family: var(--title-font);
}

.stock__items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
	margin-bottom: 80px;
}

.stock__item {
    border-radius: 20px;
	overflow: hidden;
    backdrop-filter: blur(34px);
    background: rgb(255, 255, 255);
    height: 460px;
    display: flex;
    flex-direction: column;
    gap: 30px;
	transition: all .3s;
}

.stock__item:hover {
	box-shadow: var(--box-shadow);
}

.stock__item img {
    border-radius: 20px;
	height: 180px;
	object-fit: cover;
}

.stock__item__bottom {
    padding: 30px;
    padding-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;

}

.stock .stock__item__title {
    font-family: var(--text-font);
    font-size: 18px;
    font-weight: 700;
    line-height: 100%;
	text-transform: none;
	width: 100%;
	margin: 0;
}

.stock__item__descr {
    font-size: 14px;
    font-weight: 400;
    line-height: 130%;
}

.stock__item_link {
	display: inline-flex;
	align-items: center;
	gap: 4px;
    color: var(--main-color);
    font-size: 16px;
    font-weight: 700;
    line-height: 140%;
	transition: all .3s;
}

.stock__item_link:hover {
	gap: 10px;
}

.stock__item_link:after {
    content: url(../img/icons/arrow-btn.svg);
    width: 16px;
    height: 16px;
    display: inline-block;
}

.phone_with_icon {
	display: flex;
	align-items: center;
	gap: 4px;
}

.phone_with_icon svg {
	fill: var(--white-color);
}

.header-single .phone_with_icon svg {
	fill: var(--main-color);
}

@media (max-width: 1100px) {
    .stock__items {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .stock__item__img {
        width: 100%;
    }

    .stock__item {
        height: auto;
        border-radius: 25px
    }
}

@media (max-width: 576px) {

	.stock__title {
		font-size: 22px;
		margin-top: 76px;
		margin-bottom: 40px;
	}

	.stock__items {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		gap: 32px;
	}

	.stock__item__img {
		width: 100%;
	}

	.stock__item {
		height: auto;
		border-radius: 25px
	}
}

.stock__items {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	margin-top: 52px;
}

.stock__item__img {
	border-radius: 20px;
}

.stock__item__bottom {
	padding: 30px;
	padding-top: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;

}

.stock__item__descr {
	color: var(--text-color);
	font-family: DIN Pro;
	font-size: 14px;
	font-weight: 400;
	line-height: 130%;
}

.stock__item_link {
	color: var(--main-color);
	font-family: DIN Pro;
	font-size: 16px;
	font-weight: 700;
	line-height: 140%;
}

.docs__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	color: var(--text-color);
	font-family: DIN Pro;
	font-size: 24px;
	font-weight: 400;
	line-height: 140%;
}

.docs__header__title {
	max-width: 350px;
}

.docs__header__cont {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	max-width: 650px;
	width: 100%;
}

.docs__header__tel {}

.docs__header__cont__title {}

.docs__header__cont__item {
	font-weight: 700;
	color: var(--main-color);
}

.cont__info {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 33px;
	margin-top: 52px;
}

.cont__info__item {
	border-radius: 20px;
	background: var(--white-color);;
	padding: 30px;
	width: 100%;
}

.cont__item {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.cont__info__item_inner {
	color: var(--main-color);
	font-weight: 700;
	font-size: 18px;
	line-height: 1.4;
	letter-spacing: -0.02em;
}

.entry-content p.cont__info__item_inner_name {
	color: var(--text-color);
	font-family: DIN Pro;
	font-size: 16px;
	font-weight: 400;
	line-height: 150%;
	margin-bottom: 0;

}

.cont__info__item_inner_value {

	color: var(--main-color);
	font-family: DIN Pro;
	font-size: 22px;
	font-weight: 700;
	line-height: 140%;
}

.cont__info__item_wrap {
	display: flex;
	align-items: flex-start;
	gap: 100px;

}

.social__items {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}

.social__item h2,
.social__item h3 {
	margin-top: 0;
	text-transform: none;
}

.social__item h3 {
	margin-bottom: 5px;
}

.cont__item__title {
	color: var(--text-color);
	font-family: DIN Pro;
	font-size: 22px;
	font-weight: 700;
	line-height: 140%;
}

.social__item__icons {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
}

.social__item__icon {
	width: 44px;
	height: 44px;
	background-color: var(--main-color);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%
}

.cont__btn {
	color: var(--white-color);;
	font-family: DIN Pro;
	font-size: 14px;
	font-weight: 700;
	line-height: 100%;
	padding: 16px 24px;
	margin-top: 32px;
	background-color: var(--main-color);
	border-radius: 62px;
	display: inline-block;
}

.cont__info__item p a {
	color: var(--main-color);
}

.cont__info__item ul {
	padding-left: 20px;
}

.cont__info__item ul li {
	list-style: disc;
}

.cont__item__title__blue {
	color: var(--main-color);
	margin-bottom: 0;
}

.cont__questions {
	border-radius: 20px;
	background: var(--main-color);
	background: linear-gradient(90deg, rgba(0, 113, 184, 0.1) 0%, rgba(0, 113, 184, 1) 100%);
	padding: 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.cont__item__title__reg {
	position: relative;
	z-index: 2;
	font-weight: 400;
}

.cont__questions__item {}

.cont__questions__img {
	transform: translateX(-100px);
}

.section.contacts {
	padding-top: 0;
}

.section.contacts .container {
	padding-left: 0;
	padding-right: 0;
}

.cont__map {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
}

.cont__map h2 {
	margin-top: 0;
	text-transform: none;
}

.cont__map__item {
	position: relative;
}

.cart {
	border-radius: 20px;
	overflow: hidden;
}

.cont__map__item__adress {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-direction: column;
	overflow: hidden;
}

.cont__map img {
	position: absolute;
	right: 7%;
	top: 50%;
	transform: translate(50%, -50%);
}



.cont__map__item__bottom span {
	font-weight: 700;
	color: var(--main-color);
}

.cart iframe {
	height: 360px;
}

.details__info__item__left {
	color: var(--main-color);
	font-family: DIN Pro;
	font-size: 16px;
	font-weight: 700;
	line-height: 200%;
	max-width: 490px;
	width: 100%;

}

.details__info__item__right {
	color: var(--text-color);
	font-family: DIN Pro;
	font-size: 16px;
	font-weight: 400;
	line-height: 200%;

}

.range-group {
	margin: 32px 0;
}

.cont__details {
	background-color: var(--white-color);
	border-radius: 20px;
	padding: 30px;

}

.entry-content p.cont__details__title {
	margin-bottom: 32px;
}

.cont__details__info {
	display: flex;
	flex-direction: column;
	margin-bottom: 32px;
}

.cont__details__info__items {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 60px;
}

.top-content {
	display: flex;
	flex-direction: column;
	gap: 30x;
}

.skzi .content-body {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.top-content > article {
	flex: 1 1 0px;
}

.content {
	font-size: 20px;
	font-weight: 400;
	line-height: 1.4;
}

.content p {
	margin-bottom: 40px;
}

.regulatory_docs {
	flex: 1 1 0;
	position: relative;
	background-color: var(--white-color);
	padding: 30px;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.4;
	border-radius: 20px;
	z-index: -2;
}

.regulatory_docs::after {
	position: absolute;
	content: "";
	background-image: url(../img/icons/icon_regulatory_docs.svg);
	background-repeat: no-repeat;
	width: 96px;
	height: 164px;
	right: 20px;
	top: 20px;
	z-index: -1;
}

.regulatory_docs h2,
.regulatory_docs h3 {
	text-transform: none;
	margin-bottom: 20px;
}

.complex {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.complex__card {
	background-color: var(--white-color);
	padding: 30px;
	border-radius: 20px;
}

.complex__index {
	display: inline-block;
	color: var(--main-color);
	font-family: var(--title-font);
	font-weight: 500;
	font-size: 28px;
	text-transform: uppercase;
	margin-bottom: 88px;
}

.complex__title {
	text-transform: none;
	min-height: 70px;
	font-family: var(--text-font);
	font-weight: 700;
	font-size: 22px;
	margin-bottom: 42px;
}

.complex_desc {
	font-weight: 400;
	font-size: 14px;
	line-height: 1.3;
}

.cii-areas {
	display: grid;
	gap: 35px;
	grid-template-columns: repeat(5, 1fr);
	background-color: var(--white-color);
	padding: 28px 32px;
	border-radius: 20px;
}

.area {
	display: flex;
	gap: 15px;
	align-items: center;
}

.pd__header {
	display: flex;
}

.pd__title {
	margin-bottom: 0 !important;
	flex: 1 1 0px;
}

.pd__content {
	flex: 1 1 0px;
	font-size: 20px;
}

.pd__items {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	margin-top: 60px;
}

.pd__card {
	display: flex;
	gap: 20px;
	align-items: center;
	padding: 21px 30px;
	background-color: var(--white-color);
	border-radius: 20px;
	transition: all .3s;
}

.pd__card:hover {
	box-shadow: var(--box-shadow);
}

.bottom-content {
	display: flex;
	gap: 32px;
}

.bottom-content > article {
	flex: 1 1 0px;
}

.bottom-content article:first-child::after {
	content: none;
}

.s3-advantage {
	max-width: 1440px;
    margin: 0 auto;
    background-color: var(--white-color);
    border-radius: 40px;
	margin-top: 125px;
	padding: 20px 0;
}

.s3 {
	display: flex;
    gap: 40px;
	align-items: center;
}

.s3-content {
	flex: 1 1 0px;
}

.s3-thumbnail {
	flex: 1 1 0px;
	overflow: hidden;
}

.s3-thumbnail img {
	border-radius: 26px;
	object-fit: cover;
}

.config {
	display: none;
}
.config.active {
	display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-content {
	display: none;
}

.order .cpu-type {
	display: none;
}

.bkg-white input[type="range"] {
	/* background: rgba(255, 255, 255, 1); */
	background-image: linear-gradient(var(--main-color), var(--main-color));
}

.informatsionnaya-bezopasnost .slide-item p {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

@media (max-width: 1100px) {
	.stock__items {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 32px;
	}

	.stock__item__img {
		width: 100%;
	}

	.stock__item {
		height: auto;
		border-radius: 25px
	}

	.social__items {
		flex-direction: column;
		gap: 30px;
	}

	.cont__info__item_wrap {
		justify-content: space-between;
		gap: 0px
	}

	.cont__questions__img {
		transform: translateX(-25px);
	}
}

@media (max-width: 991px) {


	.cont__info__item_wrap {
		justify-content: space-between;
		gap: 25px;
		flex-direction: column;
	}

	.cont__details__info__items {

		gap: 30px;
	}


}

@media (max-width: 768px) {


	.cont__info {
		grid-template-columns: repeat(1, 1fr);
		gap: 12px;
		padding: 0 27px;
		margin-top: 80px;
	}

	.cont__details__info__items {

		grid-template-columns: repeat(1, 1fr);
		gap: 0;
	}

	.entry-content p.cont__info__item_inner_name {
		font-size: 14px;
	}

	.entry-content p.text {
		font-size: 14px;
	}

	.entry-content .social__item p {
		font-size: 14px;
	}

	.entry-content .cont__details__info__items p {
		font-size: 14px;
	}
	.entry-content .cont__details__info__item p {
		margin-bottom: 0;
		line-height: 120%;
	}
	.entry-content .cont__details__info__item p.details__info__item__left  {
		margin-bottom: 4px;
	}
	.entry-content .cont__details__info__item p {
		margin-bottom: 0;
		line-height: 120%;
	}

	.entry-content .social__item li {
		font-size: 14px;
	}

	.cont__info__item_inner_value {
		font-size: 18px;
	}

	.cont__item__title {
		font-size: 18px;
	}

	.social__item__btn {
		width: 100%;
		text-align: center;
	}

	.cont__questions__img {
		position: relative;
		transform: translateX(0px);
	}

	.cont__questions {
		border-radius: 20px;
		background: var(--main-color);
		background: linear-gradient(180deg, rgba(0, 113, 184, 0.1) 0%, rgba(0, 113, 184, 1) 100%);
		padding: 30px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		flex-direction: column;
		gap: 60px;
	}

	.cont__map__item__top {
		margin-bottom: 52px;
	}

	.entry-content p.cont__details__title {
		margin-bottom: 24px;
	}

	.cont__details__info__items {
		margin-bottom: 16px;
	}


}

@media (max-width: 576px) {

	.stock__title {
		font-size: 22px;
		margin-top: 76px;
		margin-bottom: 40px;
	}

	.stock__items {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		gap: 32px;
	}

	.stock__item__img {
		width: 100%;
	}

	.stock__item {
		height: auto;
		border-radius: 25px
	}
}

@media (min-width: 768px) {
	.sticky {
		position: sticky;
		top: 60px;
	}
}

/* Media queries */
@media screen and (min-width: 769px) and (max-width: 1024px) {

}
	
	
@media screen and (min-width: 481px) and (max-width: 768px) {

}
	  
@media screen and (max-width: 480px) {

	body {
		font-size: 14px;
	}
	h1 {
		font-size: 22px;
	}
	h2 {
		font-size: 18px;
	}

	.footer {
		margin-top: 80px;
	}

	.hamburger,
	.hamburger::before,
	.hamburger::after {
	display: block;
	background-color: var(--white-color);
	position: relative;
	box-sizing: border-box;
	height: 2px;
	width: 23px;
	border-radius: 2px;
	z-index: 99;
	transition: all 0.3s;
	}

	.header-single .hamburger,
	.header-single .hamburger::before,
	.header-single .hamburger::after {
		background-color: var(--main-color);
	}

	.active_menu .hamburger::before,
	.active_menu .hamburger::after {
		background-color: var(--white-color);
	}

	.hamburger::before {
	content: '';
	margin-top: -8px;
	}

	.hamburger::after {
	content: '';
	margin-top: 14px;
	}

	h2 {
		font-size: 22px;
		font-weight: 500;
	}

	.container {
		max-width: 360px;
		padding: 0;
	}

	.inner.tabs {
		margin: 0 27px;
	}

	.page-banner {
		background-position: center;
		border-bottom-right-radius: 38px;
    	border-bottom-left-radius: 38px;
	}

	.logo img {
		max-width: 60px;
	}

	.active_menu {
		color: var(--white-color);
	}
	.active_menu.header-single .phone {
		color: var(--white-color);
	}

	.active_menu .header-top {
		background-color: var(--main-color);
	}

	.active_menu .hamburger {
		background-color: transparent;
	}
	.active_menu .hamburger::before {
		margin-top: 0px;
        transform: rotate(135deg);
	}
	.active_menu .hamburger::after {
		transform: rotate(-315deg);
        margin-top: -2px;
	}

	.header-wrapper {
		width: 350px;
		height: 700px;
	}

	.header .phone {
		order: 2;
		font-size: 14px;
	}

	.header-top .logo {
		padding: 20px 27px 20px 0px;
		border-bottom-right-radius: 10px;
		z-index: 10;
	}

	.header-top .logo:after {
		width: 6px;
		height: 6px;
		right: -3px;
		bottom: -3px;
	}

	.header-single.active_menu .header-top .logo {
		background-color: rgb(255 255 255 / 20%);
	}

	.header-single.active_menu .header-top .logo:before {
		background-color: rgb(255 255 255 / 20%);
	}

	.header-single .header-top .logo:after {
		background-color:var(--main-color);
	}

	.active_menu .header-top .logo:after {
		background-color: var(--white-color);
	}
	

	.header h1 {
		margin-bottom: 0;
	}

	.header-bottom {
		flex-direction: column;
		justify-content: space-between;
		padding: 8px;
	}

	.header-menu {
		flex-direction: column;
		gap: 8px;
	}

	.header-top {
		flex-wrap: wrap;
		position: relative;
		padding: 0 27px;
		margin-bottom: 32px;
	}

	.logo {
		order: 1;
	}
	.phone_with_icon {
		order: 2;
	}
	.hamburger {
		order: 3;
	}
	.header_nav {
		order: 4;
		display: none;
		flex: 1 1 100%;
		flex-direction: column;
		width: 100%;
		position: absolute;
		background-color: var(--main-color);
        top: 81px;
        left: 0;
		padding: 60px 27px;
		z-index: 9;
		border-bottom-left-radius: 32px;
		border-bottom-right-radius: 32px;
	}
	.header_nav.active{
		display: flex;
	}
	#main_menu {
		width: 100%;
	}
	.header-menu .menu-item {
		padding: 0;
		margin: 0;
	}
	.header-menu .link {
		font-size: 18px;
		display: flex;
		flex-direction: column;
	}

	.header-menu a {
		display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: baseline;
		padding: 28px 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

	.header-menu .sub-menu a {
		padding: 0;
	}

	.header-menu .sub-menu {
		/* position: initial; */
		flex-direction: column;
		width: 100%;
		z-index: 10;
	}

	.header-menu .menu-item:hover .sub-menu {
    	display: none;
	}

	.expanded .sub-menu {
		display: flex !important;
	}

	.menu-item-has-children a::after {
		content: "";
		background-image: url(../img/icons/arrow-right.svg);
		width: 12px;
		height: 12px;
		background-repeat: no-repeat;
		background-position: center;
		transition: all 0.2s;
	}
	.expanded a::after {
		background-image: url(../img/icons/arrow-bottom-white.svg);
		transition: all 0.2s;
	}

	.header-menu li:first-child a {
		padding-top: 0;
	}
	.header_nav__lk a {
		text-transform: uppercase;
	}

	.header_nav .phone {
		justify-content: center;
		margin-top: 24px;
	}
	.header-container {
		display: block;
		max-width: 100%;
		padding: 0;
	}
	.frontpage.header-bottom-block h1 {
		font-family: var(--text-font);
		text-transform: none;
		font-weight: 400;
		font-size: 16px;
		line-height: 1.3;
		letter-spacing: -0.02em;
	}

	.header-bottom .left {
		width: 100%;
	}

	.header-bottom .right {
		padding: 20px;
		border-radius: 28px;
		width: 100%;
	}

	.header-bottom .right h2 {
		font-size: 22px;
		font-weight: 500;
		margin-bottom: 16px;
	}

	.header-bottom .right .content p {
		font-weight: 500;
		font-size: 16px;
		line-height: 1.4;
		letter-spacing: -0.02em;		
		margin-bottom: 16px;
	}

	.single .header-bottom .right .content {
		margin-bottom: 58px;
	}

	.header-bottom .right .content li {
		font-size: 14px;
	}

	.slider-counter span:first-child {
		font-size: 32px;
	}
	.slider-counter span:not(:first-child) {
		font-size: 16px;
	}

	.header-bottom .slider-controls {
		margin-top: 36px;
	}

	.section-head {
		flex-direction: column;
		align-items: normal;
		margin-bottom: 32px;
	}

	.section {
		padding-top: 80px;
	}

	.section h2 {
		margin-bottom: 34px;
		font-size: 22px;
		padding: 0 27px;
	}

	.vps_ready h2 {
		padding: 0;
	}

	.tabs__nav {
		font-size: 14px;
		margin: 0 27px;
	}

	.services-template-default .header-bottom-block {
		padding-top: 80px;
	}

	.header-bottom .left {
		padding: 0 27px;
        padding-bottom: 32px;
	}

	.services-template-default .right.header-bottom-block {
		padding: 20px 27px;
	}

	.header-bottom-block h1 {
		font-family: var(--title-font);
		font-weight: 500;
		font-size: 22px;
		line-height: 1;
		letter-spacing: -0.02em;
		text-transform: uppercase;		
	}

	.services .tabs__panel .items {
		display: flex;
		flex-direction: column;
		gap: 12px
	}

	.services .tabs__panel .item {
        width: 100%;
		border-radius: 0;
		padding: 20px;
		height: 249px;
		border-bottom-right-radius: 20px;
    }

	.services .tabs__panel .item .image-bg img {
		height: 100%;
	}

	.services .tabs__panel .item .title {
		font-size: 18px;
		font-weight: 700;
		margin-bottom: 16px;
	}

	.advantages {
		height: auto;
		border-radius: 30px;
		background-position: center;
		padding-top: 80px !important;
	}

	.advantages h2 {
		width: 100%;
		font-size: 22px;
	}

	.advantages .items {
		display: flex;
		flex-direction: column;
		gap: 12px;
		padding-top: 20px;
		margin: 0 27px;
	}
	
	.advantages .items .item {
		padding: 20px;
	}

	.advantages .items .item .title {
		font-size: 18px;
		font-weight: 700;
	}

	.advantages .image {
		margin-top: 40px;
	}

	.clients h2 {
		font-size: 22px;
		max-width: 225px;
		padding: 0;
	}

	.section.clients {
		margin: 0 27px;
	}

	.clients-swiper {
		margin-top: 20px;
	}

	.clients-swiper .items {
		text-align: center;
	}

	.clients-swiper .items img {
		width: 241px;
	}

	.config.active {
		display: flex;
		flex-direction: column;
		gap: 20px;
	}

	.config .row .icon {
		font-size: 18px;
	}

	.prepared-config .row .icon {
		margin-bottom: 8px;
	}

	.prepared-config .row .icon::before {
		content: none;
	}

	.map {
		background-position: top 136px left 0;
		overflow: hidden;
		padding: 80px 0;
		margin-top: 80px;
	}

	.map::before {
        content: "";
        background-position: top 30px left -33px;
        width: 126%;
        height: 410px;
	}

	.map h2 {
		padding-bottom: 307px;
	}

	.map .wrapper {
		flex-direction: column;
		align-items: center;
	}

	.map .item {
		font-size: 14px;
		padding: 20px;
		height: auto;
	}

	.form-bottom p {
		margin-bottom: 0px;
	}

	.home_projects {
		margin-top: 0;
		margin-bottom: 0;
		padding-bottom: 80px;
	}

	.home_projects .inner {
		display: flex;
		flex-direction: column;
		margin: 0 27px;
		gap: 24px;
	}

	.home_projects .projects__header {
		order: 1;
		margin-bottom: 40px;
	}

	.home_projects .inner .image {
		order: 2;
	}

	.home_projects .left {
		order: 3;
	}

	.home_projects .desc {
		font-size: 18px;
		font-weight: 700;
		margin-bottom: 14px;
	}

	.home_projects .text {
		font-size: 14px;
		font-weight: 400;
	}

	.home_projects .link {
		margin-top: 32px;
	}

	.form-bottom {
		padding: 0;
		margin: 0;
		padding-top: 80px;
	}

	.form-bottom .container {
		display: flex;
		flex-direction: column;
		gap: 0;
	}
	.form-image {
        height: 192px;
        width: 100%;
        left: 0;
	}

	.form-bottom .wrapper {
		padding-left: 0;
		width: 100%;
	}
	.form-bottom .wrapper::before {
		position: relative;
        left: 0;
        width: 100%;
        height: 161px;
	}
	.form-bottom img {
		left: 0;
		height: auto;
	}
	.form-bottom h2 {
		margin: 80px 0;
		margin-bottom: 40px;
	}

	.form-bottom .bottom {
		flex-direction: column;
	}

	.form-bottom input[type="submit"] {
		width: 100%;
	}

	.form-bottom .bottom {
		gap: 0;
	}

	.form-bottom .content {
		padding: 0 27px;
	}

	.bottom .text {
		text-align: center;
	}

	.faq h2 {
		font-size: 22px;
		font-weight: 500;
	}

	.accordion {
		flex-direction: column;
		gap: 12px;
		padding: 0 27px;
	}

	.accordion > div {
		width: 100%;
	}

	.accordion-item:last-child {
		margin-bottom: 0;
	}

	.footer .inner {
		flex-direction: column;
	}

	.footer .container {
		padding: 0 27px;
	}

	.footer .col {
		width: 100%;
		padding-bottom: 40px;
	}

	.footer .col:first-child {
		padding-bottom: 60px;
	}

	.footer .social {
		display: flex;
		flex-direction: column;
		gap: 40px;
		margin-bottom: 0;
	}

	.footer-bottom .col {
		padding-bottom: 0;
        font-size: 14px;
    }

	.footer .logo img {
		width: 60px;
	}

	.footer .tg {
		margin: 0;
	}

	.nav-desktop,
	.desktop {
		display: none !important;
	}

	.nav-mobile,
	.mobile {
		display: flex !important;
	}

	.server-form {
		flex-direction: column;
		gap: 40px;
		padding-bottom: 0;
	}

	.server-form > div {
		width: 100%;
	}

	.server-form .left {
		padding: 0 27px;
	}

	.server-form .checkout-card {
		padding: 30px 27px;
	}
	.prepared-config select,
	.prepared-config input {
		font-size: 14px;
		font-weight: 400;
	}
	.prepared {
		padding-top: 40px;
	}
	.prepared h1 {
		font-weight: 500;
		font-size: 22px;
		line-height: 100%;
		text-transform: uppercase;
		padding-bottom: 0;
	}
	.prepared header {
		margin: 0 27px;
	}
	.prepared .server-form {
		padding-top: 40px;
	}
	.prepared__list-row {
		padding: 0 27px;
	}
	.checkout {
		width: 100%;
	}
	.prepared__list-row .prepared__title {
		display: none;
	}

	.prepared__list {
		margin: 0;
	}

	.prepared__list-row .prepared__card {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 28px;
		padding: 20px;
	}

	.prepared__card .prepared__card-title {
		display: flex;
	}

	.prepared__card-title {
		color: var(--main-color);
		font-weight: 700;
		font-size: 16px;
		line-height: 1;
		letter-spacing: -0.02em;
		margin-bottom: 12px;
	}

	.prepared__price,
	.prepard__checkout {
		display: flex;
		justify-content: center;
		width: 100%;
	}

	.prepared__price {
		margin-top: 12px;
	}

	.prepard__checkout .prepared__column {
		width: 100%;
		padding: 0 20px;
	}

	.prepard__checkout .prepared__field {
		display: flex;
		justify-content: center;
		background-color: var(--main-color);
		color: var(--white-color);
		border-radius: 62px;
		padding: 15px;
		width: 100%;
	}

	.prepard__checkout .checkout_icon_blue::before {
		content: none;
	}

	.prepard__checkout .checkout_icon_blue::after {
		content: "";
		background-image: url('../img/icons/shopping-cart-white.svg');
		display: inline-block;
		width: 24px;
		height: 24px;
		background-repeat: no-repeat;
		background-size: 24px;
		margin-left: 8px;
	}

	.extra .inner {
		display: flex;
		flex-direction: column;
		gap: 12px;
		margin: 0 27px;
		margin-top: 40px;
	}

	.extra .inner > div {
		padding: 20px;
	}

	.service-advantage {
		background-color: var(--main-color);
		border-radius: 40px;
		padding: 0;
		/* margin: 80px 0; */
	}

	.service-advantage .inner {
		margin: 0;
	}

	.service-advantage .container {
		padding: 80px 0;
	}

	.service-advantage__list {
		flex-direction: column;
		gap: 12px;
		padding: 0 27px;
		margin-top: 40px;
	}
	.service-advantage__card h3 {
		margin-top: 60px;
		min-height: auto;
	}

	.service-advantage__card p {
		margin-top: 20px;
	}

	#breadcrumbs {
		padding: 0 27px;
	}

	.steps .step-row {
		flex-direction: column;
		gap: 28px;
		padding: 30px 0;
	}

	.steps .step-row:last-child {
		border-bottom: none;
		padding-bottom: 0;
	}

	.steps .inner {
		margin: 0;
		margin-top: 40px;
	}

	.step-thumbnail img {
		visibility: visible;
		opacity: 1;
		order: 1;
	}
	.step-position {
		flex: 1 1 0px;
		order: 2;
		padding: 0 27px;
		margin-top: 0;
		font-size: 22px;
	}
	.step-title {
		flex: 1 1 0px;
		order: 3;
		padding: 0 27px;
		margin-top: 0;
		font-size: 22px;
	}
	.step-description {
		flex: 1 1 0px;
		order: 4;
		padding: 0 27px;
		margin-top: 0;
		margin-left: 0;
		min-width: auto
	}

	.steps {
		padding-bottom: 80px;
	}

	.dlp-report {
		padding-top: 40px;
		border-radius: 30px;
	}

	.dlp-report .inner {
		flex-direction: column;
	}

	.report-text {
		font-size: 14px;
		margin: 0 27px;
	}

	.list-checked li::before {
		background-size: 20px;
	}

	.dlp-report .right-side img {
		margin: 0;
	}

	.dlp-report .right-side {
		padding-top: 20px;
	}

	.partner .inner {
		flex-direction: column;
		gap: 40px;
	}

	.partner .inner > div {
		width: 100%;
	}
	.partner-text {
		font-size: 18px;
		margin: 0 27px;
	}

	.partner .right-side {
		padding: 0 27px;
	}

	.vds-form {
		padding: 20px;
	}
	.vps_ready__items {
		display: flex;
		flex-direction: column;
		gap: 12px;
	}
	.vps_ready .tabs__nav {
		margin: 0;
	}

	.vps_ready__item h3 {
		font-size: 16px;
	}
	.vps_ready__item .column-2 {
		grid-template-columns: 60% 40%;
		gap: 8px;
	}
	.vps_ready__item .label,
	.vps_ready__item label {
		margin: 0;
	}
	
	.outside-label {
		margin-top: 0;
	}
	.vps_ready__item select {
		background-image: none;
	}

	.vps_config__row .column_2 {
		grid-template-columns: 2fr 1fr;;
	}
	.vps_config__row label {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.security-services_cards {
		display: flex;
		flex-direction: column;
		gap: 12px;
		padding: 0 27px;
	}

	.security-services h2 {
		margin-bottom: 40px;
	}

	.security-services__card__title {
		font-size: 18px;
	}

	.consultation__bkg {
		padding: 80px 0;
	}

	.consultation__title {
		width: auto;
	}

	.consultation__desc {
		font-size: 18px;
	}

	.consultation__info {
		flex-direction: column;
		gap: 12px;
	}

	.consultation__phone,
	.consultation__email {
		font-size: 18px;
	}

	.consultation__content .btn {
		margin-top: 32px;
		width: 100%;
	}

	.licenses {
		padding-bottom: 80px;
	}

	.licenses__items {
		display: flex;
		flex-direction: column;
		gap: 32px;
	}

	.licenses__item__footer {
		z-index: 1;
		position: relative;
		padding-top: 39px;
	}

	.licenses__item__navs {
		position: absolute;
    	top: -22px;
	}

	.licenses__item__desc {
		margin-top: 24px;
	}

	.licenses__item__desc {
		font-size: 14px;
	}

	.projects {
		padding-bottom: 80px;
	}

	.project__card__content, 
	.project__card__footer {
		padding: 20px;
		font-size: 14px;
	}

	.project__card__content h3 {
		font-size: 18px;
	}

	.projects__items .nav-modile {
		margin-top: 40px;
	}

	.knowledge__container {
		display: flex;
		flex-direction: column;
		gap: 12px;
		padding: 0 27px;
	}

	.knowledge__menu {
		padding: 20px;
		font-size: 14px;
	}

	.modal__title {
		font-weight: 500;
		font-size: 22px;
		line-height: 1;
		letter-spacing: -0.02em;
		text-transform: uppercase;
	}

	.modal__container {
		width: 100%;
		padding: 40px 20px;
	}

	.modal__form .bottom {
		flex-direction: column;
		gap: 23px;
	}

	.modal__form input[type="submit"] {
		width: 100%;
		margin-bottom: 0;
	}

	.archive-description {
		width: 100%;
	}

	.post-filter {
		margin-top: 24px;
	}

	.archive .type-post {
		flex-direction: column;
		gap: 24px;
	}

	.archive .thumbnail {
		/* flex: 1 1 100%; */
		flex: none;
	}

	.archive .thumbnail img {
		width: 100%;
	}

	.archive .entry-content {
		padding-bottom: 0;
	}

	.archive .post-link {
		flex: none;
	}
	.archive .entry-content p {
		margin-bottom: 0;
	}

	.blog-type {
		width: 100%;
		margin-top: 60px;
		padding: 0 27px;
	}

	.blog-type h1 {
		font-size: 22px;
	}
	.post-thumbnail {
		margin-top: 20px;
		margin-bottom: 32px;
	}

	.entry-content h2 {
		width: 100%;
		margin-top: 52px;
		margin-bottom: 24px;
	}

	.entry-content blockquote {
		margin: 24px 0;
	}

	.entry-content {
		padding-bottom: 0;
	}

	.phone_with_icon {
		display: flex;
		align-items: center;
		gap: 4px;
	}
	.phone_with_icon svg {
		fill: var(--white-color);
	}
	.header-single .phone_with_icon svg {
		fill: var(--main-color);
	}
	.active_menu .phone_with_icon svg {
		fill: #cccccc;
	}

	.features-swiper {
		margin: 0 27px;
	}

	.service-features .nav-mobile {
		margin: 0 27px;
		margin-top: 40px;
	}

	.service-features .card p {
		font-weight: 700;
		font-size: 18px;
		line-height: 1.2;
	}
	.consultation__content {
		padding: 0 27px;
	}
	.projects__nav {
		padding: 0 27px;
	}

	.header {
		padding-bottom: 0;
	}

	.knowledge__header {
		padding: 0 27px;
		padding-top: 76px;
		padding-bottom: 32px;
		margin: 0;
	}

	.knowledge__content {
		padding: 20px;
	}

	.knowledge__search {
		margin-bottom: 32px;
	}
	.post-archive {
		margin-top: 76px;
		margin-bottom: 80px;
		padding: 0 27px;
	}

	.entry-title {
		padding: 0 27px;
	}

	.docs__info {
		display: flex;
		flex-direction: column;
		gap: 24px;
		padding: 0 27px;
		font-weight: 400;
		font-size: 18px;
		line-height: 1.4;
	}

	.docs .entry-content {
		padding-bottom: 32px;
	}

	.docs__accordion {
		margin-top: 60px;
	}

	.docs__accordion .accordion-header {
		padding: 20px;
		font-size: 18px;
	}

	.accordion-content {
		padding: 20px;
	}

	.doc {
		align-items: flex-start;
	}

	.docs__item {
		margin: 0;
		margin-bottom: 7px;
	}

	.docs__list {
		padding-left: 2em;
	}

	.docs__title {
		font-size: 14px;
	}

	.docs__download-text {
		display: none;
	}

	.details {
		margin: 0 27px;
		margin-top: 80px;
		padding: 20px;
	}

	.details h2 {
		padding: 0;
	}

	.details__item {
		display: flex;
		flex-direction: column;
		margin-bottom: 16px;
		font-weight: 700;
		font-size: 14px;
		line-height: 1.2;
		letter-spacing: -0.02em;
	}

	.detail__item__value {
		font-weight: 400;
	}

	.stock__title {
        font-size: 22px;
        margin-top: 76px;
        margin-bottom: 40px;
    }

	.stock .stock__item__title {
		text-transform: none;
		margin-top: 0;
		margin-bottom: 20px;
		font-size: 18px;
	}

    .stock__items {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 32px;
    }

    .stock__item__img {
        width: 100%;
    }

    .stock__item {
        height: auto;
        border-radius: 25px
    }

	.stock__item_link {
		margin-top: 48px;
	}

	.bottom-content {
		flex-direction: column;
	}

	.top-content {
		flex-direction: column;
		gap: 32px;
		padding: 0 27px;
	} 

	.top-content h2 {
		padding: 0;
	}

	.skzi .content-body {
		flex-direction: column;
	}

	.regulatory_docs {
		width: 100%;
		padding: 20px;
	}

	.content p {
		font-size: 16px;
	}

	.cont__btn {
		margin-top: 24px;
	}

	.complex {
		display: flex;
		flex-direction: column;
		padding: 0 27px;
		margin-top: 40px;
		padding-bottom: 80px;
	} 

	.complex__card {
		padding: 20px;
	}

	.complex__index {
		margin-bottom: 50px;
	}

	.cii-areas {
		display: flex;
		flex-direction: column;
		margin-top: 40px;
	}
	.pd__header {
		flex-direction: column;
		gap: 40px;
		padding: 0 27px;
	}

	.pd__header .pd__title {
		padding: 0;
	}

	.pd__items {
		display: flex;
		flex-direction: column;
		gap: 12px;
		padding: 0 27px;
	}

	.pd__card {
		padding: 19px 20px;
	}
	.s3-advantage {
		margin-top: 0;
	}

	.s3 {
		flex-direction: column;
	}

	.s3-content {
		padding: 0 27px;
	}

	.s3-content h2 {
		padding: 0;
		padding-top: 80px;
		margin-bottom: 32px;
	}

	.s3-thumbnail {
		flex: auto;
	}

	.cloud-s3-storage header {
		margin-bottom: 40px;
	}

	.extra {
		font-size: 14px;
	}

	.extra h3 {
		font-size: 18px;
	}

	.bkg-blue {
		max-width: 320px;
	} 

	.informatsionnaya-bezopasnost .page-banner {
		background-position-x: -361px;
	}

	.audit-ib .page-banner {
		background-position-x: -161px;
	}

	.soprovozhdenie-ib .page-banner {
		background-position-x: -427px;
	}

	.attestacziya-fstek .page-banner {
		background-position-x: -646px;
	}

	.home .slide {
		margin-bottom: 0;
	}

	.security-services__card {
		height: 294px;
		padding: 20px;
	}

	.security-services__card__footer img {
		width: 60px;
	}

	.regulatory_docs h3 {
		font-size: 18px;
		padding-right: 30px;
	}

	.regulatory_docs::after {
		width: 60px;
		height: 80px;
		right: 0;
		background-size: cover;
		top: 20px;
	}

	.docs-detail {
		display: flex;
		flex-direction: column;
		gap: 10px;
	}
	.message_sent {
		width: 306px;
		text-align: center;
	}

	.audit-ib .service-features .swiper-slide,
	.skzi .service-features .swiper-slide {
		width: 306px !important;
	}
}