/* ------------------------------------------------------------------------ */

* {
	padding: 0;
	margin: 0;
	border: 0;
}

*,
*:before,
*:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

:focus,
:active {
	outline: none;
}

a:focus,
a:active {
	outline: none;
}

nav,
footer,
header,
aside {
	display: block;
}

html,
body {
	height: 100%;
	width: 100%;
	font-size: 100%;
	line-height: 1;
	font-size: 14px;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
	font-family: inherit;
}

input::-ms-clear {
	display: none;
}

button {
	cursor: pointer;
	background-color: transparent;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

a {
	color: inherit;
}

a,
a:visited {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

ul li {
	list-style: none;
}

img {
	vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: inherit;
	font-weight: 400;
}

svg {
	display: block;
}

.container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 20px;
}

body {
	font-family: "Inter", sans-serif;
	background: #fff;
	line-height: normal;
}

.wrapper {
	overflow: hidden;
}

:root {
	--font-family: "Inter", sans-serif;
}

/* ---------------------------------------------------------------------------- */

html {
	scroll-behavior: smooth;
}


.header {
	background: #0076E2;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.container {}

.header__container {
	max-width: 1600px;
	margin: 0 auto;
}

.header__inner {}

.header__nav {
	box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.05), 0 8px 24px 0 rgba(0, 0, 0, 0.05);
	background: #fff;
	border-radius: 0 0 21px 21px;
	padding: 0 200px;

	display: flex;
	flex-direction: column;
	gap: 15px;

	position: relative;
	z-index: 20;

	transition: ease .2s;
}

.header-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 30px;
	gap: 20px;
}

.header__logo {}

.header__logo-img {}

.header-top__right {
	display: flex;
	align-items: center;
	gap: 30px;
	position: relative;
}

.header-info {
	display: flex;
	align-items: center;
	gap: 30px;
}

.header__time {
	display: flex;
	align-items: center;
	gap: 5px;
}

.header__time-value {
	font-weight: 400;
	font-size: 12px;
	text-align: center;
	color: rgba(32, 40, 56, 0.9);
}

.header__link {
	font-weight: 600;
	font-size: 16px;
	text-align: center;
	color: #202838;
}

.header__btn {
	display: flex;
	align-items: center;
	gap: 5px;

	background: #0076e2;
	padding: 9px 44px;
	border-radius: 8px;
	font-weight: 400;
	font-size: 14px;
	text-align: center;
	color: #fff;

	transition: ease .2s;
}

.header-bot {
	display: flex;
	justify-content: center;
	padding-bottom: 20px;
}

.header-bot__list {
	display: flex;
	gap: 30px;
}

.header-bot__item {
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	letter-spacing: -0.02em;
	color: #202838;
}

.header-bot__link {}

.header__main {
	padding: 147px 0;
	transition: ease .2s;
}

.header__main-title {
	font-weight: 700;
	font-size: 69px;
	color: #fff;
	max-width: 478px;
	margin-bottom: 30px;
	transition: ease .2s;
}

.header__main-subtitle {
	font-weight: 400;
	font-size: 18px;
	color: #fff;
	max-width: 382px;
	margin-bottom: 60px;
	line-height: 121%;
	transition: ease .2s;
}

.header__main-btn {
	border-radius: 8px;
	background: #fff;
	padding: 15.5px 59px;

	display: inline-flex;

	font-weight: 400;
	font-size: 14px;
	text-align: center;
	color: #202838;
}

.header__main-btn {}

.header__main-img {
	position: absolute;
	bottom: -14px;
	right: 233px;
	overflow: hidden;
	z-index: -1;
	max-width: 100%;
	transition: ease .8s;
	width: 900px;
}

.header__main-img2 {
	position: absolute;
	top: 118px;
	right: 353px;
	z-index: -1;
	transition: ease .8s;
	max-width: 100%;
	width: 101px;
}

/* ---------------------------------------------------------------------------- */

.page__preview {
	padding: 60px 0 139px 0;
	transition: ease .2s;
}

.preview__line {
	display: flex;
	align-items: center;
	gap: 80px;
	margin-bottom: 120px;
}

.preview__line-wrapper {
	display: flex;
	align-items: center;
	gap: 80px;
	flex-shrink: 0;

	animation: lineAnim 22s linear infinite;
}

.preview__line-item {
	transition: ease .2s;
}

@keyframes lineAnim {
	0% {
		transform: translate(0);
	}

	100% {
		transform: translateX(calc(-100% - 80px));
	}
}

.preview__cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.preview__cards-top {
	display: flex;
	gap: 30px;
}

.preview__card--lg {
	grid-column: span 2 / span 2;
}
.preview__card {
	border-radius: 21px;
	box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.05), 0 2px 8px 0 rgba(0, 0, 0, 0.05);
	background: #fff;
	padding: 30px;
}

.preview__card-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.preview__card-name {
	display: flex;
	align-items: start;
	gap: 15px;
}

.preview__card-name-img {}

.preview__card-name-tilte {
	font-weight: 600;
	font-size: 22px;
	color: #202838;
	transition: ease .2s;
}

.preview__card-desc {
	font-weight: 400;
	font-size: 16px;
	color: #202838;
	line-height: 119%;
	transition: ease .2s;
}

.preview__cards-bot {
	display: flex;
	justify-content: center;
	gap: 30px;
}

/* ---------------------------------------------------------------------------- */

.page__about-us {
	background: #202838;
}

.about-us__container {}

.about-us__inner {
	padding: 155px 0;
	transition: ease .2s;
}

.about-us__title {
	font-weight: 600;
	font-size: 40px;
	color: #fff;
	text-align: center;
	margin-bottom: 60px;
	padding: 2px 4px 0 0;
}

.about-us__cards {
	display: flex;
	gap: 25px;
	flex-wrap: wrap;
}

.about-us__card {
	display: flex;
	gap: 25px;
}

.about-us__card:not(:last-child) {
	padding: 0px 25px 0px 0px;
	border-right: 1px solid rgba(255, 255, 255, 0.6);
}

.about-us__card-list {
	text-align: center;
	transition: ease .2s;

	display: flex;
	flex-direction: column;
	gap: 30px;
}

/* .about-us__card:nth-child(1) .about-us__card-list {
	width: 193px;
}

.about-us__card:nth-child(2) .about-us__card-list {
	width: 294px;
}
.about-us__card:nth-child(3) .about-us__card-list {
	width: 269px;
}
.about-us__card:nth-child(4) .about-us__card-list {
	width: 306px;
} */

.about-us__card-name {
	font-weight: 700;
	font-size: 40px;
	text-align: center;
	color: #fff;
	transition: ease .2s;
}

.about-us__card-desc {
	font-weight: 400;
	font-size: 16px;
	text-align: center;
	color: #fff;
}







.traffic_in_number {
	background: #202838;
	padding: 155px 0;
}

.section_title {
	color: #202838;
	font-family: Inter;
	font-size: 40px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin-bottom: 60px;
	text-align: center;
}

.section_title.white {
	color: #fff;
}

.traffic_in_number .traffic_in_number_block {
	display: flex;
	gap: 25px;
	flex-wrap: wrap;
}

.traffic_in_number .traffic_in_number_block .traffic_in_number_item {
	display: flex;
	flex-direction: column;
	gap: 30px;
	padding-right: 25px;
	border-right: 1px solid rgba(255, 255, 255, 0.6);
}

.traffic_in_number .traffic_in_number_block .traffic_in_number_item h3 {
	color: #FFF;
	text-align: center;
	font-family: Inter;
	font-size: 40px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.traffic_in_number .traffic_in_number_block .traffic_in_number_item p {
	color: #FFF;
	text-align: center;
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.traffic_in_number .traffic_in_number_block .traffic_in_number_item:last-child {
	padding-right: 0;
	border-right: none;
}

/* ---------------------------------------------------------------------------- */

.page__communication {
	padding: 123px 0 119px 0;
	transition: ease .2s;
}

.communication__container {}

.container {}

.communication__inner {}

.communication__title {
	font-weight: 700;
	font-size: 40px;
	color: #202838;
	text-align: center;
	margin-bottom: 60px;
}

.communication__cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.communication__card {
	border-radius: 21px;
	box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.05), 0 2px 8px 0 rgba(0, 0, 0, 0.05);
	background: #fff;
	padding: 30px;
}

.communication__card--lg {
	grid-column: span 2 / span 2;
}

.communication__card-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.communication__card-term {
	font-weight: 600;
	font-size: 22px;
	color: #202838;
	transition: ease .2s;
}

.communication__card-desc {
	font-weight: 400;
	font-size: 16px;
	color: #202838;
	line-height: 121%;
	transition: ease .2s;
}

/* ---------------------------------------------------------------------------- */

.page__tasks {
	padding-bottom: 120px;
	transition: ease .2s;
}

.tasks__container {}

.tasks__inner {}

.tasks__title {
	font-weight: 600;
	font-size: 40px;
	color: #202838;
	text-align: center;
	margin-bottom: 60px;
	padding: 0 4px 0 0;
}

.tasks__cards {
	display: flex;
	gap: 30px;
}

.tasks__card {
	width: 100%;
	background: #0076e2;
	border-radius: 21px;
	padding: 30px 30px 30px 30px;
	min-height: 547px;
	position: relative;
	z-index: 1;
}

.tasks__card-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.tasks__card-name {
	font-weight: 700;
	font-size: 22px;
	color: #fff;
}

.tasks__card-desc {
	font-weight: 400;
	font-size: 16px;
	color: #fff;
	line-height: 121%;
	transition: ease .2s;
}

.tasks__card-img {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	max-width: 100%;
	z-index: -1;
}

.tasks__card:nth-child(1) .tasks__card-img {
	width: calc(100% - 20px);
}

.tasks__card-img-last {
	max-width: calc(100% + 50px);
	bottom: 94px;
}

.tasks__card-text {
	font-weight: 400;
	font-size: 14px;
	color: #d7d7d7;

	max-width: 336px;
	margin: 28px auto 0px auto;
}

/* ---------------------------------------------------------------------------- */

.page__possibilities {
	padding-bottom: 120px;
	transition: ease .2s;
}

.possibilities__container {}

.container {}

.possibilities__inner {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.possibilities__title {
	font-weight: 600;
	font-size: 40px;
	color: #202838;
	text-align: center;

	margin-bottom: 27px;
}

.possibilities__main {}

.possibilities__content {
	border-radius: 21px;
	background: #eef1f9;
	padding: 60px 35.14px 194px 60px;
	position: relative;
	transition: ease .2s;
}

.possibilities__content-top {
	display: flex;
	align-items: end;
	justify-content: space-between;

	margin-bottom: 30px;
}

.possibilities__content-title {
	font-weight: 600;
	font-size: 40px;
	color: #202838;
	max-width: 771px;
	transition: ease .2s;
}

.possibilities__content-nav {
	margin: 0 0 -11px 0;
}

.possibilities__content-nav-mob{
	display: none;
}

.possibilities__content-nav-title {
	font-weight: 500;
	font-size: 12px;
	letter-spacing: 0.02em;
	color: #808080;
	text-align: right;
	margin-bottom: 4px;
}

.possibilities__content-nav-text-container {
	display: flex;
	gap: 7px;
	align-items: center;
}

.possibilities__content-nav-text {
	font-weight: 500;
	font-size: 14px;
	line-height: 143%;
	color: #202838;
}

.possibilities__content-nav-text:not(:last-child)::after {
	content: '>';
	color: #202838;
	font-weight: 500;
	font-size: 14px;
	line-height: 143%;
	color: #202838;
	margin-left: 7px;
}

.possibilities__content-mid {}

.possibilities__content-left {}

.possibilities__content-desc {
	font-weight: 400;
	font-size: 16px;
	color: #202838;
	line-height: 116%;
	max-width: 577px;

	margin-bottom: 60px;
	transition: ease .2s;
}

.possibilities__content-list {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.possibilities__content-item {
	display: flex;
	gap: 20px;
	align-items: start;
}

.possibilities__content-image {
	max-width: 100%;
	position: absolute;
	top: 29.5%;
	right: 3%;
	transition: ease .2s;
}

.possibilities__content-image--first {
	width: 48%;
}

.possibilities__content-text {
	font-weight: 400;
	font-size: 16px;
	color: #202838;
	max-width: 394px;
	line-height: 123%;
}

.possibilities__row {
	display: flex;
	gap: 30px;
}

.possibilities__card-big {
	max-width: 700px;
	width: 100%;
}

.possibilities__card-min {
	max-width: 470px;
	width: 100%;
}

.possibilities__card {
	background: #eef1f9;
	border-radius: 21px;
	overflow: hidden;

	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.possibilities__card-desc {
	padding: 30px 30px 37px 30px;
}

.possibilities__card-title {
	font-weight: 600;
	font-size: 22px;
	color: #202838;

	margin: 0px 0px 14px 0px;
}

.possibilities__card-subtitle {
	font-weight: 400;
	font-size: 16px;
	color: #202838;
	line-height: 121%;
}

.possibilities__card-img {}

.possibilities__card-big .possibilities__card-img {
	padding: 0px 0px 0px 30px;
}

.possibilities__card-min .possibilities__card-img {
	padding: 0 26px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.possibilities__card-image {
	max-width: 100%;
}

/* ---------------------------------------------------------------------------- */

.page__integration {}

.integration__container {}

.integration__inner {}

.integration__title {
	font-weight: 600;
	font-size: 40px;
	color: #202838;
	text-align: center;
	margin-bottom: 60px;
}

.integration__card-content {
	display: flex;
	gap: 30px;
}

.integration__card {
	height: 100%;
	width: 100%;
	background: #0076e2;
	border-radius: 21px;
	overflow: hidden;
	padding: 30px 16px 0 14px;

	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 21px;
}

.integration__card-big {
	gap: 30px;

	max-width: 735px;
	width: 100%;
	min-height: 721px;
	transition: ease .2s;
}

.integration__card-list {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 0px 16px 0px 16px;
}

.integration__card-name {
	font-weight: 700;
	font-size: 22px;
	text-transform: uppercase;
	color: #fff;
}

.integration__card-desc {
	font-weight: 400;
	font-size: 16px;
	color: #fff;
	line-height: 122%;
}

.integration__card-img {
	display: flex;
	align-items: center;
	justify-content: center;
}

.integration__card-image {
	max-width: 100%;
}

.integration__cards {
	display: flex;
	flex-direction: column;
	gap: 30px;
	max-width: 470px;
	width: 100%;
}

.page__increase {
	background: #eef1f9;
	margin: 110px 0 119px 0;
	overflow: hidden;

}

.increase__container {}

.container {}

.increase__inner {
	position: relative;
	z-index: 1;
}

.increase__content {
	padding: 153px 0;
}

.increase__title {
	font-weight: 600;
	font-size: 40px;
	color: #202838;
	margin-bottom: 33px;
	max-width: 623px;
}

.increase__subtitle {
	font-weight: 400;
	font-size: 16px;
	color: #202838;
	margin-bottom: 60px;
	transition: ease .2s;
}

.increase__btn {
	font-weight: 400;
	font-size: 14px;
	text-align: center;
	color: #fff;
	display: inline-flex;
	border-radius: 8px;
	background: #0076e2;
	padding: 15.5px 59px;

	transition: ease .2s;
}

.increase__img {
	position: absolute;
	bottom: 0;
	left: 60%;
	transform: translate(-50%, 0%);
	z-index: -1;
	transition: ease .8s;
	width: 95%;
}

/* ---------------------------------------------------------------------------- */

.address_section {
	background-color: #202838;
	padding: 60px 0;
}

.address_section .address__top {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 60px;
}

.address_section .address__bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.address_section .address__top .address_item {
	padding: 0 30px;
	border-right: 1px solid rgba(255, 255, 255, 0.6);
	width: 25%;
}

.address_section .address__top .address_item:last-child {
	border-right: none;
}

.address_section .address__top .address_item h5 {
	color: #FFF;
	text-align: center;
	font-family: Inter;
	font-size: 22px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	margin-bottom: 30px;
}

.address_section .address__top .address_item p {
	color: #FFF;
	text-align: center;
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.address_section .address__bottom .address_b_left {
	display: flex;
	align-items: center;
	gap: 60px;
}

.address_section .address__bottom .footer__lang {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #FFF;
	font-family: Inter;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
	letter-spacing: -0.342px;
	cursor: pointer;
}

.address_section .address__bottom .footer__policy {
	color: #FFF;
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
	letter-spacing: -0.304px;
}

.address_section .address__bottom .footer__copy {
	color: #FFF;
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
	letter-spacing: -0.304px;
}




.footer {}

.container {}

.footer__inner {}

.footer-top {
	display: flex;
	justify-content: space-between;
	gap: 20px;

	margin-bottom: 69px;
}

.footer-top__info {
	display: flex;
	flex-direction: column;

}

.footer-top__info-logo {
	margin-bottom: 30px;
}

.footer-top__info-img {}

.footer-top__info-adress {
	margin-bottom: 20px;

	font-weight: 400;
	font-size: 16px;
	color: #202838;

	transition: ease .2s;
}

.footer-top__info-phone {
	font-weight: 400;
	font-size: 22px;
	color: #000;

	transition: ease .2s;
}

.footer-top__nav {
	margin: 0 18px 0 0;
}

.footer-top__list {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.footer-top__item {
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	letter-spacing: -0.02em;
	text-align: center;
	color: #202838;

	transition: ease .2s;
}

.footer-top__link {}

.footer-top__login {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 30px;
}

.footer-top__btn {
	display: flex;
	align-items: center;
	gap: 5px;
	border-radius: 8px;
	background: #0076e2;

	font-weight: 400;
	font-size: 14px;
	text-align: center;
	color: #fff;
	padding: 9px 44px;
}

.footer-top__login-mail {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.footer-top__login-email {
	font-weight: 400;
	font-size: 22px;
	text-align: right;
	color: #000;

	transition: ease .2s;
}

.footer-top__login-text {
	font-size: 12px;
	font-weight: 400;
	text-align: right;
	color: #000;
}

.footer-mid {
	padding: 60px 340px 21px 340px;
	background: #202838;
}

.footer-mid__adresses {

	display: flex;
	justify-content: center;
	margin-bottom: 63px;
	transition: ease .2s;
}

.footer-mid__adress {
	max-width: 300px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
	transition: ease .2s;
}

.footer-mid__adress:not(:last-child) {
	border-right: 1px solid rgba(255, 255, 255, 0.6);
}

.footer-mid__adress-country {
	font-weight: 700;
	font-size: 22px;
	text-align: center;
	color: #fff;
}

.footer-mid__adress-info {
	font-weight: 400;
	font-size: 16px;
	text-align: center;
	color: #fff;
	line-height: 121%;
}

.footer-mid__desc {
	display: flex;
	flex-direction: column;
	align-items: center;

}

.footer-mid__desc-container {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-left: 41px;
}

.footer-mid__desc-about {
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	letter-spacing: -0.02em;
	color: #fff;
}

.footer-mid__desc-politic {
	font-weight: 400;
	font-size: 16px;
	line-height: 150%;
	letter-spacing: -0.02em;
	color: #fff;
}


.burger-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background: #ffffff;
	transition: all .3s ease;
	transform: translate(-100%);
}

.burger-menu--visible {
	transform: translateX(0);
}


.burger-menu__window {
	padding: 96px 20px 20px 20px;
	height: 100%;
	overflow: auto;

	display: flex;
	flex-direction: column;
	align-items: center;
}

.burger-btn {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	height: 18px;
	width: 22px;
}

.burger-btn__stroke {
	width: 22px;
	height: 2px;
	background-color: #000;

	transition: ease-in-out .3s;
}

.stroke--active .burger-btn__lane2 {
	opacity: 0;
	width: 0;
}

.stroke--active .burger-btn__lane1 {
	transform: rotate(45deg) translate(0, 11px);
}

.stroke--active .burger-btn__lane3 {
	transform: rotate(-45deg) translate(0, -11px);
}

.top__login--media {
	display: none;
}

/* ---------------------------------------------------------------------------- */

@media(max-width:1720px) {
	.header__main-img {
		width: 50%;
		right: 10%;
	}

	.header__main-img2 {
		right: 218px;
	}

	.footer-mid__adress:not(:last-child) {
		padding-right: 20px;
	}

	.footer-mid__adresses {
		gap: 20px;
	}
}

@media(max-width:1520px) {

	.about-us__card {
		text-align: center;
	}



	.about-us__card:not(:last-child) {
		padding: 0;
		border: none;
	}

	.footer-mid__adresses {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 0;
	}

	.footer-mid__adress:not(:last-child) {
		padding: 0;
		border: none;
	}

	.footer-mid__adress:nth-child(1) {
		padding: 0px 10px 10px 0px;
		border-right: 1px solid rgba(255, 255, 255, 0.6);
		border-bottom: 1px solid rgba(255, 255, 255, 0.6);
	}

	.footer-mid__adress:nth-child(2) {
		padding: 0px 0px 10px 0px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.6);
	}

	.footer-mid__adress:nth-child(3) {
		padding: 10px 10px 0px 0px;
		border-right: 1px solid rgba(255, 255, 255, 0.6);
	}

	.footer-mid__adress:nth-child(4) {
		padding: 10px 0px 0px 0px;
	}

	.footer-mid__adress {
		max-width: unset;
	}

	.tasks__card:nth-child(1) .tasks__card-img {
		max-width: 400px;
	}

	.tasks__card-img{
		max-width: 400px;
	}
}

@media(max-width:1230px) {
	.traffic_in_number .traffic_in_number_block {
		gap: 60px 20px;
	}

	.traffic_in_number .traffic_in_number_block .traffic_in_number_item {
		width: calc(50% - 10px);
		gap: 15px;
	}

	.traffic_in_number .traffic_in_number_block .traffic_in_number_item:nth-child(2n) {
		border-right: none;
	}

	.traffic_in_number .container,
	.address_section .container {
		max-width: 962px;
	}
}

@media (max-width: 992px) {
	.section_title {
		font-size: 30px;
	}

	.traffic_in_number {
		padding: 90px 0;
	}

	.traffic_in_number .container,
	.address_section .container {
		max-width: 640px;
	}

	.traffic_in_number .traffic_in_number_block .traffic_in_number_item p {
		font-size: 15px;
	}

	.address_section .address__top {
		gap: 50px 0;
	}

	.address_section .address__top .address_item {
		width: 50%;
	}

	.address_section .address__top .address_item h5 {
		margin-bottom: 15px;
	}

	.address_section .address__top .address_item:nth-child(2n) {
		border: none;
	}

	.address_section .address__bottom {
		flex-direction: column;
		align-items: start;
		gap: 30px;
	}

	.address_section .address__bottom .address_b_left {
		flex-direction: column;
		align-items: start;
		gap: 15px;
	}
}

@media(max-width:640px) {
	.section_title {
		font-size: 25px;
	}

	.traffic_in_number .traffic_in_number_block {
		gap: 30px;
	}

	.traffic_in_number .traffic_in_number_block .traffic_in_number_item {
		width: 100%;
		border: none;
		padding-right: 0;
		padding-bottom: 30px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.6);
	}

	.traffic_in_number .traffic_in_number_block .traffic_in_number_item h3 {
		font-size: 30px;
	}

	.traffic_in_number .traffic_in_number_block .traffic_in_number_item p {
		font-size: 14px;
	}

	.traffic_in_number .traffic_in_number_block .traffic_in_number_item:last-child {
		padding-bottom: 0;
		border-bottom: none;
	}

	.traffic_in_number .container,
	.address_section .container {
		max-width: 450px;
	}

	.traffic_in_number .traffic_in_number_block .traffic_in_number_item p br {
		display: none;
	}

	.address_section .address__top {
		gap: 30px;
	}

	.address_section .address__top .address_item {
		width: 100%;
		border-right: none;
	}

	.address_section .address__top .address_item h5 {
		font-size: 18px;
	}

	.address_section .address__top .address_item p {
		font-size: 14px;
	}

	.address_section .address__bottom .footer__lang {
		font-size: 16px;
	}

	.address_section .address__bottom .footer__policy {
		font-size: 14px;
	}

	.address_section .address__bottom .footer__copy {
		font-size: 14px;
	}
}

@media(max-width:1340px) {
	.header__main-img {
		width: 57%;
		right: 5%
	}

	.header__main-title {
		font-size: 63px;
	}

	.header__main-subtitle {
		margin-bottom: 40px;
	}

	.footer-mid {
		padding: 60px 0 21px 0;
	}

	.increase__img {
		width: 80%;
	}

	.page__communication,
	.about-us__inner,
	.increase__content {
		padding: 90px 0;
	}

	.page__increase {
		margin: 90px 0;
	}

	.page__tasks {
		padding-bottom: 90px;
	}

	.page__preview {
		padding: 30px 0 90px 0;
	}

	.page__possibilities {
		padding-bottom: 90px;
	}

	.header__main {
		padding: 90px 0 230px 0;
	}

	.header__main-img2 {
		width: 7%;
	}
}

@media(max-width:1200px) {
	.increase__img {
		left: 70%;
		width: 70%;
	}

	.possibilities__content-image {
		max-width: 40%;
	}

	.possibilities__content-title {
		font-size: 31px;
	}

	.possibilities__content {
		padding: 60px 35.14px 90px 60px;
	}

	.header__main-title {
		font-size: 43px;
	}

	.header__main-img {
		right: 6%;
	}

	.increase__subtitle {
		margin-bottom: 40px;
	}

	.header-bot__list {
		flex-direction: column;
		text-align: center;
		margin-bottom: 30px;
	}

	.header-bot {
		display: none;
	}

	.header-top__right .header-info {
		display: none;
	}

	.header-top {
		padding: 30px 0;
	}

	.header__btn {
		padding: 9px 22px;
	}

	.header__main-img2 {
		top: 90px;
		transition: unset;
		right: 60px;
	}

	.header__nav {
		padding: 0 50px;
	}

	.header__main-title,
	.header__main-subtitle {
		margin-bottom: 20px;
	}


	.header-info {
		flex-direction: column-reverse;
	}

	.preview__line {
		margin-bottom: 60px;
	}

	.page__preview {
		padding: 30px 0 60px 0;
	}

	.page__communication,
	.about-us__inner,
	.increase__content {
		padding: 60px 0;
	}

	.page__possibilities {
		padding-bottom: 60px;
	}

	.increase__title {
		font-size: 36px;
		margin-bottom: 20px;
	}

	.increase__subtitle {
		margin-bottom: 20px;
	}

	.about-us__title {
		margin-bottom: 60px;
	}

	.burger-btn {
		display: flex;
	}

	.page__tasks {
		padding-bottom: 60px;
	}

	.integration__cards {
		gap: 25px;
	}

	.page__increase {
		margin: 60px 0;
	}
}

@media(max-width:1054px) {
	.header__main {
		padding: 90px 0 180px 0;
	}

	.header__main-img {
		width: 70%;
		right: -4%;
	}

	.tasks__card-desc {
		font-size: 15px;
	}

	.possibilities__content-image {
		max-width: 35%;
		top: 34.5%;
	}

	.possibilities__content-desc {
		margin-bottom: 30px;
	}

	.possibilities__content {
		padding: 60px 35px 60px 60px;
	}

	.possibilities__content-title {
		font-size: 28px;
	}

	.integration__card-desc {
		font-size: 15px;
	}

	.integration__card-content {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
	}

	.integration__cards {
		max-width: unset;
	}

	.integration__card-big {
		max-width: unset;
	}

	.header-top {
		padding: 20px 0;
	}

	.header__main-img2 {
		top: 70px;
	}

	.possibilities__content-desc,
	.possibilities__content-text,
	.possibilities__card-subtitle {
		font-size: 16px;
	}

	.increase__img {
		left: 65%;
		width: 65%;
	}

	.about-us__title,
	.communication__title,
	.tasks__title,
	.integration__title,
	.footer-top {
		margin-bottom: 40px;
	}

	.preview__cards {
		gap: 15px;
		grid-template-columns: 1fr;
	}

	.communication__card--lg {
		grid-column: unset;
	}
	
	.communication__cards {
		grid-template-columns: 1fr;
	}

	.preview__cards-top {
		flex-wrap: wrap;
		justify-content: center;
		gap: 15px;
	}

	.preview__card {
		max-width: unset;
		padding: 20px;
		grid-column: unset;
	}

	.tasks__cards {
		flex-wrap: wrap;
		gap: 20px;
	}

	.tasks__card-text {
		margin: 20px 0 0 0;
	}

	.page__tasks {
		padding-bottom: 40px;
	}

	.possibilities__title {
		margin-bottom: unset;
	}

	.possibilities__content-desc {
		max-width: 450px;
	}

	.preview__cards-bot {
		gap: 15px;
	}

}

@media(max-width:922px) {
	.increase__title {
		font-size: 30px;
	}

	.increase__btn {
		padding: 15.5px 22px;
	}

	.increase__subtitle {
		font-size: 16px;
	}

	.page__increase {
		margin: 60px 0;
	}

	.footer-top__item,
	.footer-top__info-adress {
		font-size: 15px;
	}

	.footer-top__info-phone {
		font-size: 16px;
	}

	.footer-top__login-email {
		font-size: 20px;
	}

	.header__main-img {
		right: 0%;
	}

	.header__btn,
	.footer-top__btn {
		padding: 9px 12px;
	}

	.increase__btn {
		padding: 15.5px 12px;
	}

	.header__main-title {
		font-size: 28px;
		max-width: 380px;
		padding: 0px 58px 0px 0px;
	}

	.header__main-subtitle {
		font-size: 16px;
	}

	.header__main-btn {
		padding: 15.5px 22px;
	}

	.preview__card-desc {
		font-size: 16px;
	}

	.preview__card-name-tilte {
		font-size: 20px;
	}

	.header__main {
		padding: 60px 0 180px 0;
	}

	.preview__line {
		margin-bottom: 40px;
	}

	.page__preview {
		padding: 40px 0;
	}

	.page__communication,
	.about-us__inner,
	.increase__content {
		padding: 40px 0;
	}

	.about-us__title,
	.communication__title,
	.tasks__title,
	.possibilities__title,
	.integration__title {
		font-size: 36px;
	}

	.about-us__card-name {
		font-size: 36px;
	}

	.about-us__card-list {
		gap: 15px;
	}

	.communication__card-term {
		font-size: 20px;
	}

	.communication__card-desc {
		font-size: 15px;
	}

	.communication__cards {
		gap: 15px 15px;
	}

	.footer-mid__adress {
		gap: 20px;
	}

	.footer-mid__adresses {
		margin-bottom: 40px;
	}

	.footer-mid__adress-info,
	.footer-mid__desc-about,
	.footer-mid__desc-politic {
		font-size: 15px;
	}

	.possibilities__content {
		padding: 25px;
	}

	.possibilities__inner,
	.possibilities__row {
		gap: 15px;
	}

	.page__possibilities {
		padding-bottom: 40px;
	}

	.footer-top__info-img,
	.header__logo-img {
		max-width: 175px;
	}

	.possibilities__content-desc {
		max-width: 370px;
		font-size: 16px;
		margin-bottom: 15px;
	}

	.possibilities__content-top {
		margin-bottom: 15px;
	}

	.integration__cards {
		gap: 15px;
	}


	.footer-mid__desc-container {
		margin: 0;
		text-align: center;
	}



	@keyframes lineAnim {
		0% {
			transform: translate(0);
		}

		100% {
			transform: translateX(calc(-100% - 40px));
		}
	}

	.preview__line-wrapper {
		gap: 40px;
	}
}

@media(max-width:861px) {
	.possibilities__content-title {
		font-size: 22px;
	}

	.possibilities__content-image {
		top: 29.5%;
	}

	.integration__card-content {
		gap: 15px;
	}

	.increase__img {
		left: 76%;
		width: 70%;
	}

	.increase__title {
		font-size: 24px;
	}

	.header__main-img {
		width: 55%;
		right: -4%;
	}

	.header__main {
		padding: 60px 0 120px 0;
	}

	.preview__cards-bot {
		flex-direction: column;
	}

	.possibilities__content-image{
		position: unset;
		width: 110%;
		max-width: 400px;
		transform: translateX(-15px);
	}

	.possibilities__content-left{
		margin: 0px 0px 20px 0px;
	}

	.possibilities__content-nav{
		display: none;
	}

	.possibilities__content-nav-mob{
		display: block;
		margin: 0 0 20px 0;
		text-align: right;
	}

	.possibilities__content-nav-text-container{
		justify-content: end;
	}

	.possibilities__content-mid{
		text-align: right;
	}

	.possibilities__content-left{
		text-align: start;
	}
}

@media(max-width:763px) {
	.about-us__card-name {
		font-size: 32px;
	}

	.about-us__title,
	.communication__title,
	.tasks__title,
	.possibilities__title,
	.integration__title {
		font-size: 34px;
	}

	.header__main-img {
		display: none;
	}

	.header__main-img2 {
		width: 80px;
		right: 20px;
	}





	.communication__cards {
		display: flex;
		flex-direction: column;
	}
}

@media(max-width:665px) {

	.header__main-subtitle {
		max-width: 350px;
	}

	.header__main-btn {
		padding: 15px 12px;
	}


	.header__main {
		padding: 60px 0 90px 0;
	}

	.possibilities__content-list {
		gap: 15px;
	}

	.about-us__title,
	.communication__title,
	.tasks__title,
	.integration__title {
		margin-bottom: 30px;
	}

	.possibilities__card-desc {
		padding: 16px;
	}

	.about-us__card-name {
		font-size: 28px;
	}

	.tasks__card-desc {
		font-size: 14px;
	}

	.increase__img {
		left: 85%;
		width: 83%;
	}

	.footer-top__info-phone {
		font-size: 14px;
	}

	.footer-top__login-email {
		font-size: 16px;
	}

	.footer-top__login-text {
		font-size: 11px;
	}

	.footer-mid__adress-info,
	.footer-mid__desc-about,
	.footer-mid__desc-politic {
		font-size: 13px;
	}

	.footer-mid__adress-country {
		font-size: 20px;
	}

	.footer-mid__adress {
		gap: 15px;
	}

	.footer-mid {
		padding: 35px 0 21px 0;
	}

	.page__increase {
		margin: 45px 0;
	}

	.page__tasks {
		padding-bottom: 40px;
	}

}

@media(max-width:580px) {

	.possibilities__content-desc {
		max-width: unset;
	}

	.about-us__title,
	.communication__title,
	.tasks__title,
	.possibilities__title,
	.integration__title {
		font-size: 26px;
	}

	.communication__card-term {
		font-size: 18px;
	}

	.increase__img {
		left: 75%;
	}

	.increase__title {
		font-size: 22px;
	}

	.possibilities__row {
		flex-direction: column;
	}

}

@media(max-width: 528px) {
	.footer-top__login {
		display: none;
	}

	.top__login--media {
		display: flex;
		flex-direction: column;
		align-items: start;
		gap: 15px;
		margin-bottom: 15px;
	}

	.footer-top__info-logo,
	.footer-top__info-adress {
		margin-bottom: 15px;
	}

	.footer-top__item {
		text-align: right;
	}

	.footer-top {
		align-items: end;
	}

	.footer-top__login-text {
		text-align: left;
	}

	.footer-top__info-img,
	.header__logo-img {
		max-width: 150px;
	}

	.header__nav {
		padding: 0 20px;
	}

	.header__btn {
		font-size: 13px;
	}

	.header-top__right {
		gap: 15px;
	}

	.page__increase {
		margin: 40px 0;
	}

	.increase__img {
		left: 80%;
		width: 100%;
	}

	.increase__subtitle {
		max-width: 250px;
	}

	.about-us__card-name {
		font-size: 26px;
	}

	.about-us__card:nth-child(2) .about-us__card-list {
		padding: 0px 0px 15px 15px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.6);
	}

	.about-us__card:nth-child(1) .about-us__card-list {
		padding: 0px 15px 15px 0px;
		border-right: 1px solid rgba(255, 255, 255, 0.6);
		border-bottom: 1px solid rgba(255, 255, 255, 0.6);
	}

	.about-us__card:nth-child(3) .about-us__card-list {
		padding: 15px 15px 0px 0px;
		border-right: 1px solid rgba(255, 255, 255, 0.6);
	}

	.about-us__card:nth-child(4) .about-us__card-list {
		padding: 15px 0px 0px 15px;
	}

	.integration__card-big {
		min-height: unset;
	}

	.preview__line-item {
		max-width: 175px;
	}

	.tasks__card-img-last {
		bottom: 46px;
	}

	.possibilities__card-min .possibilities__card-img {
		padding: 0 15px;
	}

	.possibilities__card-big .possibilities__card-img {
		padding: 0px 0px 0px 15px;
	}
}

@media(max-width: 450px) {

	.header__main-title {
		max-width: unset;
	}

	.header__main-title,
	.header__main-subtitle {
		margin-bottom: 24px;
	}

	.footer-mid__adress-info,
	.footer-mid__desc-about,
	.footer-mid__desc-politic {
		font-size: 12px;
	}

	.footer-top__info-adress,
	.footer-top__info-phone,
	.footer-top__item,
	.footer-top__info-adress {
		font-size: 15px;
	}

	.possibilities__content-top {
		flex-direction: column;
		gap: 15px;
	}

	.header__btn,
	.footer-top__btn {
		padding: 9px;
	}

	.footer-mid__adress-country {
		font-size: 18px;
	}

	.header__main-btn {
		width: 100%;
		justify-content: center;
	}



	.tasks__card-img{
		max-width: 360px;
	}


}

@media(max-width: 376px) {
	.header__btn {
		font-size: 12px;
	}

	.header__btn,
	.footer-top__btn {
		padding: 6px;
	}

	.footer-top__info-img,
	.header__logo-img {
		max-width: 120px;
	}

	.header__main-subtitle {
		max-width: 160px;
	}

	.about-us__title,
	.communication__title,
	.tasks__title,
	.possibilities__title,
	.integration__title,
	.about-us__card-name {
		font-size: 22px;
	}


	.tasks__card-desc,
	.integration__card-desc {
		font-size: 16px;
	}

	.integration__card-list {
		padding: 0;
	}

	.increase__subtitle {
		max-width: 150px;
		margin-bottom: 10px;
	}

	.increase__btn {
		padding: 9px;
		font-size: 11px;
	}

	.increase__img {
		left: 81%;
		width: 100%;
	}

	.top__btn {
		font-size: 12px;
	}

	.header__main {
		padding: 30px 0 45px 0;
	}

	.communication__cards {
		grid-template-columns: repeat(1, 1fr);
	}


	.tasks__card-img{
		max-width: 290px;
	}

}