#preloader,
.header {
	position: fixed;
	top: 0
}

.hamburger,
:root {
	box-sizing: border-box
}

.btn,
.navigation__link,
a {
	text-decoration: none
}

.hero__subtitle,
.products__title {
	text-transform: capitalize;
	color: #3771c8
}

.cards__item,
.faq__outer,
.functions-desc,
.slider,
body.no-scroll {
	overflow: hidden
}

.btn,
.faq__btn,
.hamburger:focus {
	outline: 0
}

.cards__text,
.table {
	word-wrap: break-word
}

.btn,
.table__th {
	vertical-align: middle
}

.header {
	left: 0;
	width: 100%;
	background-color: #fff;
	box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
	z-index: 1000
}

.navigation {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center
}

.faq__title,
.navigation__item,
body {
	margin: 0
}

.navigation__list {
	list-style: none;
	display: flex;
	justify-content: space-around;
	margin: 0;
	padding: 0
}

.navigation__link {
	color: #333;
	padding: 10px 15px;
	font-weight: 500;
	transition: color .3s
}

.navigation__link.active,
.navigation__link:focus,
.navigation__link:hover {
	color: #007bff
}

.hamburger {
	display: none;
	flex-direction: column;
	justify-content: space-around;
	width: 35px;
	height: 24px;
	background: 0 0;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 1100;
	position: relative
}

.hamburger span {
	width: 100%;
	height: 3px;
	background: #333;
	border-radius: 3px;
	transition: .3s linear;
	transform-origin: 1px
}

.hamburger.active span:first-child {
	transform: rotate(45deg);
	position: absolute;
	top: 9px
}

.hamburger.active span:nth-child(2) {
	opacity: 0
}

.hamburger.active span:nth-child(3) {
	transform: rotate(-45deg);
	position: absolute;
	top: 9px
}

@media (max-width:1024px) {
	.hamburger {
		display: flex
	}

	.navigation__item {
		margin-bottom: 1.5rem
	}

	.navigation__list {
		position: fixed;
		top: 0;
		right: 0;
		width: 100%;
		height: 100%;
		background-color: #fff;
		transform: translateX(100%);
		transition: transform .3s ease-in-out;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		z-index: 1000
	}

	.navigation__list.active {
		transform: translateX(0)
	}

	.navigation__link {
		font-size: 24px;
		transition: color .3s
	}

	.navigation__link:focus,
	.navigation__link:hover {
		color: #007bff
	}
}

*,
::after,
::before {
	box-sizing: inherit
}

body {
	padding: 0;
	font-family: "PT Serif", serif;
	line-height: 1.5;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal
}

svg {
	width: 30px;
	height: 30px
}

a {
	color: inherit;
	font: inherit
}

.container {
	max-width: 1200px;
	margin: 0 auto
}

.section-title {
	margin-top: 0;
	font-size: 1.9rem;
	font-weight: 900;
	color: #3771c8
}

.btn {
	position: relative;
	font-family: inherit;
	display: inline-block;
	color: #fff;
	background-color: #3771c8;
	border-radius: 2em;
	padding: .7em 2em;
	border: none;
	font-weight: 500;
	cursor: pointer;
	transition: .3s ease-in-out
}

.btn:focus,
.btn:hover,
.slider-controls button:not(:disabled):hover {
	background-color: #27374e;
	color: #fff
}

.btn:active {
	transform: translateY(10px)
}

.hero {
	padding-top: 3rem
}

.hero__content,
.products__content-wrapper {
	padding: 1.5rem
}

.hero__title {
	margin: 0;
	font-size: 2rem;
	color: #3771c8
}

.hero__text {
	margin-bottom: 1.5em
}

.hero__subtitle {
	margin-top: 0;
	margin-bottom: .3em;
	letter-spacing: 1px;
	font-weight: 600;
	font-size: 1.35rem
}

.hero__btn {
	margin-right: 10px;
	margin-bottom: 10px
}

.hero__cover {
	height: 300px
}

.hero__cover-photo {
	object-fit: cover;
	width: 100%;
	height: 100%;
	display: block
}

.hero__features-company {
	transform: translateY(-100px)
}

.features-company {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 auto;
	padding: 0 10px;
	list-style: none
}

.features-company__item {
	padding: 1em;
	position: relative;
	width: calc(50% - 5px);
	background-color: #fff;
	box-shadow: 0 0 5px rgba(0, 0, 0, .25);
	border-radius: 1em;
	word-break: break-word;
	font-size: .7rem
}

.features-company__title {
	display: block;
	text-align: center;
	font-size: .9rem
}

.feauture-company__icon {
	width: 3.1rem;
	height: 3.1rem;
	margin: 0 auto 15px;
	display: block;
	fill: #3771C8
}

@media screen and (min-width:768px) {
	.hero {
		padding: 5rem 0
	}

	.hero__bg {
		box-shadow: 0 4px 4px rgba(0, 0, 0, .2);
		padding: 2.2rem 1.3rem
	}

	.hero__info {
		display: flex
	}

	.hero__content {
		flex-basis: 50%;
		padding-left: 0;
		padding-bottom: 3rem
	}

	.hero__cover {
		flex-basis: 50%;
		height: initial
	}

	.hero__cover-photo {
		border-top-right-radius: 9rem;
		object-fit: cover;
		height: 100%
	}

	.hero__features-company {
		margin-top: 2rem;
		transform: translateY(0)
	}

	.features-company {
		padding: 0;
		display: flex;
		max-width: initial;
		justify-content: space-between;
		gap: 10px;
		box-shadow: none;
		background-color: transparent
	}

	.features-company__item {
		width: calc(25% - 10px);
		font-size: .8em;
		box-shadow: 0 0 5px rgba(0, 0, 0, .25);
		border-radius: 1em;
		background-color: #fff
	}
}

@media screen and (min-width:1024px) {
	.navigation {
		max-width: 1200px;
		margin: 0 auto;
		padding: 0
	}

	.hero__bg {
		position: relative;
		padding-bottom: 6rem
	}

	.hero__content {
		padding-left: 3rem;
		padding-right: 3rem;
		padding-bottom: 5rem
	}

	.hero__subtitle {
		margin-bottom: 2rem
	}

	.hero__title {
		margin-bottom: 2.2rem;
		font-size: 2.8rem;
		font-weight: 900
	}

	.hero__text {
		margin-bottom: 2.2rem;
		line-height: 2
	}

	.hero__cover {
		flex-basis: 50%
	}

	.hero__features-company {
		position: absolute;
		left: 50%;
		bottom: 3rem;
		transform: translateX(-50%)
	}

	.features-company {
		padding: .5rem 1rem;
		max-width: 900px;
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
		background-color: #fff;
		box-shadow: none;
		box-shadow: 0 0 5px rgba(0, 0, 0, .25);
		border-radius: 5em
	}

	.features-company__item {
		font-size: .8em;
		box-shadow: none;
		border-radius: 0;
		background-color: transparent;
		display: flex;
		align-items: center;
		position: relative
	}

	.features-company__title {
		margin-left: 1rem;
		text-align: left
	}

	.feauture-company__icon {
		margin-bottom: 0
	}

	.features-company__item:not(:nth-child(4))::after {
		position: absolute;
		content: '';
		right: 0;
		bottom: 50%;
		transform: translateY(50%);
		width: 2px;
		height: 100%;
		background-color: #e8e8e8
	}
}

.contacts__body,
.products__content {
	box-shadow: 0 0 4px rgba(0, 0, 0, .2)
}

.products__content,
.products__image {
	border-top-left-radius: 2rem;
	border-top-right-radius: 2rem
}

@media screen and (min-width:2560px) {
	.features-company {
		max-width: 90%
	}
}

.products-section {
	padding: 2.5rem 0;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: top left
}

.produtcs-section__wrapper {
	position: relative;
	padding-bottom: 5rem
}

.products-section__info {
	padding: 0 5rem 0 1.5rem;
	margin-bottom: 2.5rem
}

.products {
	margin: 0;
	padding: 0;
	list-style: none
}

.products__item {
	background-color: #fff;
	margin-bottom: 1.5rem
}

.functions-desc__item,
.products__item:nth-child(n+4) {
	display: none
}

.products__more {
	position: absolute;
	bottom: 0;
	right: 50%;
	transform: translateX(50%)
}

.products__image {
	display: block;
	width: 100%;
	height: 250px;
	object-fit: cover
}

.products__title {
	position: relative;
	padding-right: 40px;
	margin: 0 0 1rem;
	font-size: 1.2rem;
	font-weight: 900
}

.cards__title,
.tabs__btn {
	text-transform: uppercase
}

.products__text {
	margin: 0 0 1rem;
	font-size: .9rem;
	line-height: 1.3;
	color: #222
}

.products__btn {
	font-size: .8rem;
	background-color: #3771c8
}

.products__expander {
	display: none;
	position: relative;
	width: 100%;
	height: 0;
	opacity: 0;
	z-index: -1
}

.products__expander-desc>* {
	background-color: #fff;
	font-size: 1.1rem;
	border: 1px solid #000;
	padding: 1.3rem 1rem
}

.products__expander.open {
	display: block;
	position: relative;
	width: 100%;
	height: auto;
	opacity: 1;
	z-index: 1
}

@media screen and (min-width:762px) and (max-width:1024px) {
	.products__item:nth-of-type(2n+2) .products__expander.open {
		margin-left: calc(-100% - 40px)
	}

	.products__expander.open {
		width: calc(200% + 40px)
	}
}

.block {
	opacity: .2;
	pointer-events: none
}

.table--transform {
	transform: perspective(700px);
	transform-origin: center center 250px
}

.company {
	padding-top: 5rem;
	padding-bottom: 2.5rem;
	background: url("../img/bg/dantex.jpg") 0 0/cover no-repeat
}

.company__info,
.company__list {
	padding: 0 1.5rem
}

.company__list {
	margin: 0;
	list-style: none
}

.company__item,
.contacts__location {
	margin-bottom: 3rem
}

.company__title {
	margin: 0;
	font-weight: 900;
	color: #3771c8
}

.company__itme-image {
	display: block;
	margin: 0 auto 1.5rem;
	max-width: 100%;
	width: 100%;
	max-height: 370px;
	object-fit: contain
}

.cards {
	margin: 0;
	padding: 0 1.5rem 1.5rem;
	display: flex;
	flex-wrap: wrap;
	gap: 20px
}

.cards__item {
	flex-basis: calc(50% - 20px);
	flex-grow: 1;
	position: relative;
	border-radius: 2rem;
	transition: .3s;
	max-height: 300px
}

.cards__item::after {
	content: "";
	position: absolute;
	z-index: 1;
	width: 100%;
	top: 0;
	left: 0;
	height: 100%;
	border-radius: 2rem;
	background-image: linear-gradient(to right top, rgb(5 25 55 / 50%), rgb(0 50 81 / 50%), rgb(0 77 103 / 50%), rgb(0 104 118 / 50%), rgb(33 132 128 / 50%))
}

.cards__image {
	display: block;
	height: 100%;
	width: 100%;
	object-fit: cover;
	filter: blur(3px);
	transition: .3s;
	background-position: center
}

.cards__item:hover .cards__image {
	filter: blur(0);
	transform: scale(1.1)
}

.cards__outer {
	position: absolute;
	height: 100%;
	width: 100%;
	bottom: 0;
	left: 0;
	z-index: 2
}

.cards__title {
	position: absolute;
	bottom: 50px;
	left: 15px;
	margin: 0;
	padding-bottom: .7rem;
	font-size: 1.1rem;
	color: #fff;
	font-weight: 900;
	transition: .5s .8s
}

.cards__title::after {
	position: absolute;
	bottom: 0;
	left: 0;
	content: '';
	display: block;
	width: 120%;
	height: 5px;
	background-color: #fff;
	z-index: 2;
	transform: translateX(-100%);
	transition: .8s
}

.cards__item:hover .cards__title {
	transform: translateY(-100px)
}

.cards__item:hover .cards__title::after {
	transform: translateX(-10%)
}

.cards__text {
	position: absolute;
	font-size: 1rem;
	padding: .8rem;
	bottom: 0;
	left: 0;
	color: #fff;
	opacity: 0;
	transition: .5s 1s
}

.faq__header,
.functions-desc,
.slider,
.tabs,
.tabs__btn,
.tabs__item {
	position: relative
}

.contacts__method a:focus,
.contacts__method a:hover,
.tabs__btn {
	color: #3771c8
}

.cards__item:hover .cards__text {
	transform: translateY(-80px);
	opacity: 1
}

.steps {
	padding: 0;
	margin-top: -2rem
}

.steps__info {
	padding: 1.5rem 1.5rem 0;
	margin-bottom: 1.2rem
}

.steps__btn {
	margin-top: .8rem
}

@media screen and (min-width:762px) {
	.products {
		display: flex;
		flex-wrap: wrap;
		align-items: baseline;
		gap: 40px
	}

	.products__item {
		width: calc(50% - 20px);
		margin-bottom: 0
	}

	.company__list {
		margin: 0 auto
	}

	.company__item {
		display: flex;
		align-items: center;
		gap: 40px
	}

	.company__item:nth-child(2n) {
		flex-direction: row-reverse;
	}

	.company__item-cover,
	.company__item-wrap {
		width: 50%
	}

	.cards {
		display: flex;
		width: 65%;
		gap: 5px;
		padding: 0;
		flex-wrap: nowrap
	}

	.cards__item {
		flex-grow: 0;
		margin-bottom: 0;
		max-height: initial
	}

	.cards__item--top {
		position: relative;
		bottom: 50px
	}

	.cards__title {
		font-size: 1.1rem
	}

	.cards__item:hover .cards__title::after {
		transform: translateX(-10%)
	}

	.cards__item:hover .cards__title {
		transform: translateY(-180px)
	}

	.cards__item:hover .cards__text {
		transform: translateY(-140px);
		opacity: 1
	}

	.steps {
		padding: 2.5rem 0;
		margin-top: 0
	}

	.steps__info {
		width: 35%;
		text-align: left
	}

	.steps__wrapper {
		display: flex
	}

	.steps__desc {
		font-size: .8rem
	}

	.info-section {
		background: url(../img/bg/faq.jpg) right center/40% no-repeat
	}

	.faq__item {
		width: 60%;
		margin-bottom: 1.5rem
	}
}

@media screen and (min-width:1054px) {
	.cards {
		width: 60%;
		padding: 0;
		gap: 15px
	}

	.cards__title {
		font-size: 1.5rem
	}

	.cards__text {
		font-size: 1.2rem
	}

	.cards__item:hover .cards__text {
		transform: translateY(-120px);
		opacity: 1
	}

	.cards__item--top:hover .cards__text {
		transform: translateY(-150px)
	}

	.steps {
		padding: 5rem 0
	}

	.steps__info {
		width: 40%;
		padding: 0 3rem 0 0
	}

	.steps__desc {
		font-size: 1rem
	}
}

.tabs,
.tabs__btn {
	width: 100%
}

.slider-controls button,
.tabs__btn {
	border: none;
	cursor: pointer;
	font: inherit
}

.tabs {
	padding: 0;
	margin: 0 auto 3rem;
	display: flex;
	flex-wrap: wrap
}

.functions-desc__item.active,
.tabs__btn,
.tabs__item {
	display: block
}

.tabs__item {
	flex-grow: 1;
	z-index: 1;
	margin: 0;
	text-align: center
}

.tabs__btn {
	outline: 0;
	padding: .5rem 1rem;
	text-overflow: ellipsis;
	white-space: nowrap;
	background: 0 0;
	font-weight: 900;
	font-size: .8rem
}

.function-desc__feauture,
.slider-controls button,
.tabs__btn.active,
.tabs__btn:hover {
	background-color: #3771c8;
	color: #fff
}

.function-desc__name {
	font-size: 1rem;
	margin-bottom: .5rem
}

.functions-desc__text {
	font-size: .9rem
}

.functions-desc__list {
	display: flex;
	gap: 20px;
	transition: transform .5s;
	list-style: none;
	padding: 0;
	margin: 0
}

.function-desc__feauture {
	box-sizing: border-box;
	padding: 20px;
	border-radius: 1rem;
	min-width: calc((100% / 3) - 13.333px)
}

@media (min-width:762px) {
	.functions-section {
		padding: 5rem 0;
		padding-top: 0;
	}

	.function-desc__feauture {
		width: calc(50% - 10px)
	}
}

@media (min-width:1024px) {
	.function-desc__feauture {
		width: calc(25% - 15px)
	}
}

.slider-controls {
	display: flex;
	justify-content: center;
	margin-top: 20px;
	gap: 10px
}

.slider-controls button {
	padding: 5px 40px;
	border-radius: .6rem;
	font-weight: 500;
	transition: background-color .3s
}

.slider {
	user-select: none;
	cursor: grab
}

.slider:active {
	cursor: grabbing
}

.cloned-slide {
	visibility: hidden
}

@media screen and (max-width:1024px) {

	.faq,
	.faq__item,
	.info-section__header {
		padding: 0 1.5rem
	}
}

.info-section {
	padding: 2.5rem 0
}

.faq__header {
	padding-left: 2rem;
	cursor: pointer
}

.faq__item {
	margin-bottom: 1.5rem
}

.faq__item:last-child {
	margin-bottom: 0
}

.faq__outer {
	transform: scaleY(0);
	transform-origin: top;
	transition: transform .3s, max-height .3s;
	max-height: 0
}

.faq__btn {
	background: 0 0;
	border: none;
	cursor: pointer;
	position: absolute;
	top: 0;
	left: 0;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center
}

.faq__btn::after,
.faq__btn::before {
	content: '';
	position: absolute;
	background-color: #000;
	transition: transform .3s
}

.faq__btn::before {
	width: 2px;
	height: 16px;
	transform: rotate(0)
}

.faq__btn::after {
	width: 16px;
	height: 2px;
	transform: rotate(0)
}

.faq__btn.active::before {
	transform: rotate(90deg)
}

.contacts {
	padding: 5rem 1.5rem 3rem
}

.contacts__map iframe {
	border-radius: 2rem;
	width: 100%;
	flex-basis: 100%;
	border: 0
}

.contacts__body {
	border-radius: 2rem;
	padding: 1.5rem 2rem
}

.table,
.table__row:last-child {
	border: none
}

.contacts__method {
	display: flex;
	align-items: center;
	gap: 15px;
	font-weight: 500
}

.contacts__method svg {
	width: 50px;
	height: 50px
}

@media screen and (min-width:1024px) {
	.products-section {
		padding: 5rem 0
	}

	.company__info,
	.company__list,
	.products,
	.products-section__info {
		padding: 0
	}

	.products__item {
		width: calc(33% - 25px);
		margin-bottom: 0
	}

	.products__expander.open {
		width: calc(300% + 82px)
	}

	.products__item:nth-of-type(3n+2) .products__expander.open {
		margin-left: calc(-100% - 40px)
	}

	.products__item:nth-of-type(3n+3) .products__expander.open {
		margin-left: calc(-200% - 82px)
	}

	.company {
		padding-bottom: 2.5rem
	}

	.company__itme-image {
		max-height: initial
	}

	.company__info-title {
		font-size: 2.2rem
	}

	.company__item {
		gap: 40px 60px
	}

	.company__btn {
		margin-top: 1rem
	}

	.tabs {
		border-bottom: 2px solid #3771c8
	}

	.tabs__btn.active::after,
	.tabs__btn.active::before {
		position: absolute;
		top: 100%;
		left: 50%;
		width: 0;
		height: 0;
		border: solid transparent;
		content: '';
		pointer-events: none
	}

	.tabs__btn.active::after {
		margin-left: -10px;
		border-width: 10px;
		border-top-color: #3771c8
	}

	.tabs__btn.active::before {
		margin-left: -11px;
		border-width: 11px;
		border-top-color: #3771c8
	}

	.contacts {
		padding: 5rem 0 2rem
	}
}

#preloader,
.table {
	width: 100%;
	background-color: #fff
}

.table {
	table-layout: fixed;
	border-collapse: collapse;
	text-align: center;
	box-shadow: 0 0 10px rgb(23 37 84 / 80%);
	font-weight: 700;
	font-size: .8rem
}

.table__th {
	background-color: #1e2452;
	color: #fff
}

.table__td {
	padding: .2rem .5rem
}

.table__row {
	border-bottom: 3px solid #818aa4
}

.table__row:nth-child(odd) {
	background-color: #314f86;
	color: #fff
}

@media screen and (min-width:762px) {
	.contacts__wrapper {
		display: flex
	}

	.contact__info {
		width: 50%;
		display: flex;
		flex-direction: column
	}

	.contacts__map {
		width: 50%;
		padding-left: 2rem;
		border-radius: 2rem;
		display: flex;
		flex-direction: column
	}

	.table {
		font-size: .8rem
	}

	.table__row {
		padding: 1rem
	}

	.table__th {
		font-size: 1rem;
		padding: .5rem 1rem
	}

	.table__td {
		padding: 1rem 2rem;
		font-size: .9rem
	}
}

.table--transform {
	transform-origin: center top 0px;
	transform: perspective(2000px) rotateX(-50deg);
	animation-fill-mode: both;
	animation-name: tableShow;
	animation-duration: .8s;
	animation-timing-function: ease-in-out
}

@keyframes tableShow {
	from {
		opacity: 0
	}

	to {
		transform: perspective(2000px) rotateX(0) translate(0, 20px);
		opacity: 1
	}
}

#preloader {
	left: 0;
	height: 100%;
	z-index: 9999;
	display: flex;
	justify-content: center;
	align-items: center
}

.spinner {
	width: 50px;
	height: 50px;
	border: 5px solid #f3f3f3;
	border-top: 5px solid #3498db;
	border-radius: 50%;
	animation: 1s linear infinite spin
}

@keyframes spin {
	0% {
		transform: rotate(0)
	}

	100% {
		transform: rotate(360deg)
	}
}
.private-btn {
	margin-right: 15px;
  padding: .5em 1em;
  text-transform: uppercase;
  font-size: .9em;
  font-weight: 500;
}

.confidence {box-shadow: rgba(0, 0, 0, 0.1) 0px -4px 14px 0px;position: fixed;z-index: 2000;width: 100%;bottom: 0;background-color: #fff;padding: 5px 7px;font-size: 14px;}