@charset "UTF-8";

@font-face {
  font-family: gotham;
  font-display: swap;
  src: url("../fonts/gotham_bold.woff2") format("woff2"), url("../fonts/gotham_bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: gotham;
  font-display: swap;
  src: url("../fonts/gotham_medium.woff2") format("woff2"), url("../fonts/gotham_medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: gotham;
  font-display: swap;
  src: url("../fonts/gotham_regular.woff2") format("woff2"), url("../fonts/gotham_regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

/* Указываем box sizing */

html {
  height: 100%;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

ul,
ol {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

input:focus-visible {
  outline: none;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1;
  color: #01171E;
  font-size: 16px;
  font-family: gotham;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
}

ul,
ol {
  list-style-position: inside;
}

ul[class],
ol[class] {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img {
  max-width: 100%;
  display: block;
}

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

.container {
  max-width: 1272px;
  padding-left: 16px;
  padding-right: 16px;
  margin: 0 auto;
}

.content {
  padding: 100px 0;
}

.title {
  color: #01171E;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 70px;
}

.site {
  display: inline-block;
  color: #FE461D;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

.site:hover {
  text-decoration: underline;
}

/*alert*/

.box-size {
  box-sizing: border-box;
}

.alert--fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  top: 0px;
  left: 0px;
  z-index: 999;
}

.alert--error,
.alert--warning,
.alert--active {
  display: flex;
}

.alert--width {
  width: 400px;
}

.alert--img__item svg {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.alert--img__item {
  display: none;
  flex-shrink: 0;
}

.alert--active .active {
  display: block;
}

.alert--warning .warning {
  display: block;
}

.alert--error .error {
  display: block;
}

.alert--content {
  position: relative;
  z-index: 12;
  border-radius: 15px;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: white;
  padding: 30px;
  color: #333333;
  margin-bottom: 10%;
}

.alert--bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.6;
  z-index: 11;
  top: 0px;
  left: 0px;
}

.alert-text {
  margin-top: 15px;
  text-align: center;
}

.alert--active .active path {
  fill: #4ad395;
}

.alert--warning .warning path {
  fill: #e5e75d;
}

.alert--error .error path {
  fill: #f81919;
}

.alert--title {
  font-size: 28px;
  font-weight: 500;
}

.alert--subtitle {
  font-weight: 400;
  font-size: 20px;
  padding-top: 8px;
  margin-top: 8px;
  border-top: 1px solid #ccbbbb;
}

.alert--x {
  position: absolute;
  width: 30px;
  height: 30px;
  padding: 8px;
  right: 10px;
  top: 10px;
  cursor: pointer;
}

.alert--x svg {
  width: 100%;
  height: 100%;
}

.alert--x svg path {
  fill: #968787;
  transition: all 0.3s ease;
}

.alert--x:hover path {
  fill: black;
}

/*alert*/

/*formLoader*/

.form_loader {
  position: fixed;
  display: none;
  z-index: 999;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.form_loader_block {
  position: absolute;
  width: 350px;
  max-width: 90%;
  left: 50%;
  top: 45%;
  padding: 40px;
  border-radius: 10px;
  background-color: #fff;
  transform: translate(-50%, -50%);
}

.form_loader_animate {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.form_loader_animate:after {
  content: "";
  display: block;
  width: 85%;
  height: 85%;
  /*margin: 8px;*/
  border-radius: 50%;
  border: 6px solid #fff;
  border-color: #C53364 transparent #C53364 transparent;
  -webkit-animation: loader-animate 1.2s linear infinite;
          animation: loader-animate 1.2s linear infinite;
}

.form_loader_text {
  font-size: 20px;
  text-align: center;
}

@-webkit-keyframes loader-animate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes loader-animate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*formLoader*/

.burger {
  position: relative;
  z-index: 1;
  display: none;
  cursor: pointer;
}

.burger__dot {
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: #FE461D;
  position: relative;
  transition: background-color 0.3s ease;
  pointer-events: none;
}

.burger__dot--line {
  background-color: transparent;
}

.burger__dot--line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 5px;
  background-color: #FE461D;
  border-radius: 5px;
  transition: width 0.3s ease;
  transform-origin: 2.5px 2.5px;
}

.burger__dot--left-top::before {
  transform: rotate(45deg);
}

.burger__dot--right-bottom::before {
  transform: rotate(-135deg);
}

.burger__dot--right-top::before {
  transform: rotate(135deg);
}

.burger__dot--left-bottom::before {
  transform: rotate(-45deg);
}

.burger._opened .burger__dot--line::before {
  width: 18px;
}

.burger._opened .burger__dot--aside {
  background-color: transparent;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: #01171E;
  border-bottom: 3px solid #FE461D;
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.header__logo {
  width: 100px;
  height: 60px;
  flex-shrink: 0;
}

.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 80px;
}

.header__nav-link {
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  transition: 0.2s ease-in-out;
}

.header__nav-link:hover {
  color: #FE461D;
}

.header__nav-link.active {
  color: #FE461D;
  text-decoration: underline;
}

.header__profile {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 12px 30px;
  border-radius: 10px;
  background: #FE461D;
  transition: 0.2s ease-in-out;
}

.header__profile:hover {
  background: #c23414;
}

.header-space {
  padding-top: 103px;
}

.footer {
  margin-top: auto;
  background: #ffffff;
  border-top: 1px solid #E6E6E6;
}

.footer__container {
  padding: 50px 0;
  display: flex;
  align-items: flex-start;
}

.footer__col {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.footer__col span {
  font-size: 14px;
  color: #01171E;
  font-weight: 500;
  width: 185px;
  line-height: 115%;
}

.footer__logo {
  width: 92px;
  height: 60px;
  flex-shrink: 0;
}

.footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer__nav {
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  width: 100%;
  margin-right: auto;
}

.footer__nav-col {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.footer__nav-title {
  color: #FE461D;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}

.footer__nav-list li {
  display: flex;
  align-items: center;
  color: #01171E;
  font-size: 16px;
  gap: 10px;
  max-width: 300px;
  line-height: 125%;
}

.footer__nav-list li svg {
  flex-shrink: 0;
}

.footer__nav-list li a {
  transition: 0.2s ease-in-out;
}

.footer__nav-list li a:hover {
  color: #FE461D;
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
}

.footer__bot {
  border-top: 1px solid #DBDBDB;
}

.footer__bot-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 14px;
  color: #A3A3A3;
}

.footer__bot-container a {
  transition: 0.2s ease-in-out;
}

.footer__bot-container a:hover {
  color: #FE461D;
}

.breadcrumbs__container {
  padding: 50px 0;
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  overflow: auto;
}

.breadcrumbs__list::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.breadcrumbs__list-item {
  position: relative;
}

.breadcrumbs__list-item:not(:last-child) {
  margin-right: 28px;
}

.breadcrumbs__list-item:not(:last-child)::before {
  position: absolute;
  content: "/";
  top: 50%;
  transform: translateY(-50%);
  right: -18px;
}

.breadcrumbs__list-link {
  white-space: nowrap;
  font-size: 14px;
  color: #01171E;
  transition: 0.2s ease-in-out;
  opacity: 0.5;
}

.breadcrumbs__list-link:hover {
  color: #FE461D;
}

.breadcrumbs__list-link.active {
  pointer-events: none;
  color: #01171E;
  opacity: 1;
}

.hero {
  position: relative;
  background: #FE461D;
}

.hero__slider {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 0 0 40px 40px;
}

.hero__slide {
  width: 100%;
  height: 100%;
}

.hero__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero__pagination.swiper-pagination-horizontal {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 50px;
  z-index: 3;
  width: auto;
  display: flex;
  gap: 10px;
}

.hero__pagination.swiper-pagination-horizontal .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background: #fff;
  opacity: 0.5;
  transition: transform 0.2s, opacity 0.2s;
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.hero__pagination.swiper-pagination-horizontal .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.1);
}

.hero__container {
  position: relative;
  height: 700px;
}

.hero__arrows {
  position: absolute;
  bottom: 40px;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 15px;
}

.hero__arrow {
  display: flex;
}

.hero__arrow svg circle,
.hero__arrow svg path {
  transition: 0.2s ease-in-out;
}

.hero__arrow:hover svg circle {
  fill: #FE461D;
}

.hero__arrow:hover svg path {
  fill: #ffffff;
}

.about {
  background: #FE461D;
  padding-top: 10px;
}

.about__wrapper {
  background: url("../img/about-bg.png") top center/cover no-repeat, #ffffff;
  border-radius: 40px;
}

.about__container {
  display: flex;
  flex-direction: column;
  padding: 100px 0;
}

.about .site {
  -ms-grid-row-align: center;
      align-self: center;
}

.about__title {
  text-align: center;
}

.about__block {
  background: #F5F5F5;
  padding: 30px;
}

.about__block-wrapper {
  position: relative;
  background: url("../img/train.png") right top/auto 100% no-repeat, #ffffff;
  padding: 60px;
}

.about__header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  max-width: 600px;
  font-size: 12px;
  line-height: 133%;
  margin-bottom: 30px;
}

.about__header img {
  width: 80px;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}

.about__system {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  max-width: 560px;
}

.about__system-title {
  -ms-grid-column-span: 2;
  grid-column: 2 span;
  font-size: 20px;
  font-weight: 500;
}

.about__system-text {
  padding: 15px;
  border-radius: 10px;
  background: #f2f3f4;
  font-size: 12px;
  line-height: 125%;
}

.about__system-text:nth-child(6) {
  -ms-grid-column-span: 2;
  grid-column: 2 span;
}

.about__system-mission {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 20px 30px;
  border-radius: 20px;
  background: #ffebe6;
  -ms-grid-column-span: 2;
  grid-column: 2 span;
  font-size: 14px;
  font-weight: 500;
  line-height: 130%;
}

.about__system-mission img {
  width: 45px;
  height: 45px;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}

.serv {
  background: #FE461D;
  padding-top: 10px;
}

.serv__wrapper {
  background: url("../img/serv-bg.png") top center/cover no-repeat, #ffffff;
  border-radius: 40px;
  padding: 100px 0;
}

.serv__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 340px 1fr;
  grid-template-columns: 340px 1fr;
  align-items: center;
  grid-gap: 80px;
}

.serv__titles {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.serv__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
  grid-auto-rows: 300px;
}

.serv__item {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 50px;
  background: #F5F5F5;
  transition: 0.2s ease-in-out;
}

.serv__item:hover {
  background: url("../img/card-bg.png") center center/cover no-repeat, #FE461D;
  color: #ffffff;
}

.serv__item:hover svg path,
.serv__item:hover svg rect {
  stroke: #ffffff;
}

.serv__item svg {
  flex-shrink: 0;
}

.serv__item svg path,
.serv__item svg rect {
  transition: 0.2s ease-in-out;
}

.serv__item-title {
  font-size: 25px;
  font-weight: 500;
  line-height: 112%;
  word-break: break-word;
  width: 100%;
}

.benefits {
  padding-top: 10px;
  background: #FE461D;
}

.benefits__wrapper {
  background: url("../img/benefits-train.png") bottom right/contain no-repeat, #01171E;
  border-radius: 40px 40px 0 0;
  padding: 120px 0;
}

.benefits__title {
  color: #ffffff;
  max-width: 560px;
  margin-bottom: 150px;
}

.benefits__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (250px)[3];
  grid-template-columns: repeat(3, 250px);
  grid-gap: 40px;
}

.benefits__item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.benefits__item-img {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.benefits__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.benefits__item-title {
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 125%;
}

.links__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
  padding-bottom: 100px;
}

.links__block {
  border-radius: 15px;
  background: #FFF;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.08);
  padding: 50px;
}

.links__block-title {
  color: #01171E;
  font-size: 25px;
  font-weight: 500;
  line-height: 112%;
  border-bottom: 2px solid #FE461D;
  margin-bottom: 30px;
}

.links__block-items {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}

.links__block-item {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.2s ease-in-out;
  font-size: 14px;
  word-break: break-all;
}

.links__block-item:hover {
  color: #FE461D;
}

.links__block-item svg {
  flex-shrink: 0;
}

.table {
  /* Компания */
  /* Транспорт */
  /* Декларация */
  /* Просмотр */
}

.table__container {
  padding-bottom: 100px;
}

.table .site {
  display: flex;
  justify-content: center;
}

.table__title {
  text-align: center;
}

.table__settings {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.table__settings-item {
  border-radius: 15px;
  background: #FFF;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.08);
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  font-size: 14px;
  font-weight: 500;
  flex-shrink: 0;
}

.table__settings-all {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.table__settings-all input {
  margin: 0;
}

.table__settings-copy {
  display: flex;
  align-items: center;
  gap: 10px;
}

.table__settings-down {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.table__settings-refresh {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.table__settings-search {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 25px;
}

.table__settings-field {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 15px;
  border-radius: 10px;
  background: #F6F6F6;
}

.table__settings-field button,
.table__settings-field input {
  background: none;
  border: none;
  outline: none;
}

.table__settings-field button {
  flex-shrink: 0;
  cursor: pointer;
  padding: 0;
}

.table__settings-field input {
  width: 100%;
}

.table__wrapper {
  position: relative;
  background: #FFF;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.08);
}

.table__wrapper-header {
  padding: 20px;
}

.table__header {
  border-radius: 5px;
  border: 1px solid #D8D8D8;
  background: #F1F1F1;
  font-size: 14px;
}

.table__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  padding: 12px 60px;
  border-bottom: 1px solid #D8D8D8;
  font-size: 12px;
}

.table__row:nth-child(1) {
  border-top: 1px solid #D8D8D8;
}

.table__row--header {
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  font-size: 14px;
}

.table__cell:nth-child(1) {
  width: 65px;
}

.table__cell:nth-child(2) {
  width: 180px;
}

.table__cell:nth-child(3) {
  width: 105px;
}

.table__cell:nth-child(4) {
  width: 142px;
}

.table__cell:nth-child(5) {
  width: 100px;
}

.table__cell:nth-child(6) {
  width: 75px;
}

.table__cell--checkbox {
  text-align: center;
}

.table__cell .status {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 8px;
  border-radius: 11px;
  background: #F7F7F7;
  justify-content: center;
}

.table__company-name {
  color: #6F6F6F;
  font-weight: 500;
  line-height: 120%;
}

.table__company-tag {
  color: #e63946;
  display: block;
}

.table__transport {
  display: flex;
  align-items: center;
  gap: 6px;
}

.table__transport svg {
  flex-shrink: 0;
}

.table__declaration {
  padding: 4px 10px;
  border-radius: 12px;
  background: #ffe5e5;
  color: #e63946;
  text-decoration: none;
  font-weight: 500;
  font-size: 13px;
}

.table__view {
  display: flex;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  width: 100%;
  padding: 0;
}

.table__bot {
  padding: 25px 50px;
  background: #fff;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
}

.table__bot-count {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
}

.table__bot-count svg {
  flex-shrink: 0;
}

.pagination {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 200px;
}

.pagination li {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination li a {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination li:not(.arrow) a {
  border-radius: 50%;
  background: rgba(254, 70, 29, 0.2);
  color: #FE461D;
  transition: 0.2s ease-in-out;
  font-size: 12px;
}

.pagination li:not(.arrow) a.active {
  background: #FE461D;
  color: #ffffff;
}

.pagination li:not(.arrow) a:hover {
  background: #FE461D;
  color: #ffffff;
}

.modal {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  background: rgba(0, 0, 0, 0.88);
  display: none;
}

.modal__block {
  position: relative;
  padding: 60px 50px;
  background: #fff;
  border-radius: 10px;
  margin: 0 16px;
  max-width: 605px;
  width: 100%;
}

.modal-info.active {
  display: flex;
}

.modal-info__block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.modal-info__close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
}

.modal-info__title {
  font-size: 30px;
  font-weight: 700;
  padding-bottom: 20px;
  border-bottom: 1px solid #DADADA;
  margin-bottom: 30px;
  width: 100%;
}

.modal-info__items {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  margin-bottom: 30px;
}

.modal-info__item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.modal-info__item span {
  font-size: 14px;
  font-weight: 500;
}

.modal-info__item span:nth-child(1) {
  color: #6F6F6F;
  width: 180px;
  flex-shrink: 0;
}

.modal-info__item span:nth-child(2) {
  color: #FE461D;
}

.modal-info__down {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border-radius: 6px;
  border: 1px solid #DDD;
  background: #FFF;
  transition: 0.2s ease-in-out;
}

.modal-info__down:hover {
  border-color: #FE461D;
}

.modal-info__status {
  margin-top: 60px;
  width: 100%;
}

.modal-info__status-title {
  color: #000;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.modal-info__status-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #000;
  font-size: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #DADADA;
  width: 100%;
}

.modal-files.active {
  display: flex;
}

.modal-files__block {
  display: flex;
  flex-direction: column;
  position: relative;
  max-width: 465px;
}

.modal-files__close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
}

.modal-files__title {
  margin-bottom: 30px;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

.modal-files__subtitle {
  color: #FE461D;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
}

.modal-files__label {
  margin-bottom: 20px;
}

.modal-files__label input {
  display: none;
}

.modal-files__label input:checked + .modal-files__wrapper {
  border: 1px solid #FE461D;
  background: rgba(254, 70, 29, 0.08);
}

.modal-files__label input:checked + .modal-files__wrapper div svg path {
  opacity: 1;
}

.modal-files__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-radius: 10px;
  border: 1px solid #E6E6E6;
  background: #FFF;
  padding: 18px 25px;
  height: 70px;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.modal-files__wrapper div svg path {
  opacity: 0;
  transition: 0.2s ease-in-out;
}

.modal-files__wrapper span {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 156%;
}

.modal-files__download {
  border-radius: 10px;
  background: #FE461D;
  color: #FFF;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 114%;
  text-transform: uppercase;
  padding: 15px;
  transition: 0.2s ease-in-out;
}

.modal-files__download:hover {
  background: #e63946;
}

.function__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2fr;
  grid-template-columns: 1fr 2fr;
  align-items: start;
  grid-gap: 30px;
  padding-bottom: 100px;
}

.function__left {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 40px;
  border-radius: 15px;
  border: 1px solid #FE461D;
  background: #FFF;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.08);
}

.function__left::before {
  position: absolute;
  content: "";
  top: -12px;
  left: 0;
  right: 0;
  width: 100%;
  height: 38px;
  border-radius: 15px;
  background: #FE461D;
  border: 1px solid #FE461D;
  z-index: -1;
}

.function__right {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}

.product__header {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 20px;
  width: 100%;
  border-bottom: 1px solid #FE461D;
  color: #000;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.product__header svg {
  flex-shrink: 0;
}

.product__items {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}

.product__col {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.product__col span:nth-child(1) {
  color: #000;
  font-size: 16px;
  font-weight: 700;
}

.product__col span:nth-child(2) {
  color: #000;
  font-size: 14px;
  line-height: 128%;
}

.card {
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  background: #FFF;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.08);
  padding: 30px 40px;
}

.card__header {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 20px;
  width: 100%;
  border-bottom: 1px solid #DADADA;
  color: #000;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.card__header svg {
  flex-shrink: 0;
}

.card__items {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.card__row {
  display: flex;
  align-items: flex-start;
}

.card__row span {
  font-size: 14px;
}

.card__row span:nth-child(1) {
  width: 300px;
  flex-shrink: 0;
  color: #01171E;
  line-height: 128%;
}

.card__row span:nth-child(2) {
  color: #FE461D;
  font-weight: 500;
  line-height: 128%;
}

.card__row span:nth-child(2).background {
  padding: 6px 10px;
  border-radius: 19px;
  background: rgba(254, 70, 29, 0.1);
}

.profile__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2fr;
  grid-template-columns: 1fr 2fr;
  align-items: start;
  grid-gap: 30px;
  padding-bottom: 100px;
  padding-bottom: 100px;
}

.profile__left {
  display: flex;
  flex-direction: column;
  padding: 50px;
  border-radius: 15px;
  background: #FFF;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.08);
}

.profile__left-title {
  margin-bottom: 50px;
  color: #01171E;
  font-size: 30px;
  font-weight: 700;
}

.profile__left-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 20px;
}

.profile__left-links a {
  color: #6F6F6F;
  font-size: 16px;
  font-weight: 500;
  transition: 0.2s ease-in-out;
}

.profile__left-links a:hover {
  color: #FE461D;
}

.profile__left-links a.active {
  color: #01171E;
}

.profile form {
  width: 100%;
  padding: 50px;
  border-radius: 15px;
  background: #FFF;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.08);
}

.profile__block {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  max-width: 320px;
}

.profile__block-title {
  color: #01171E;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 30px;
}

.profile__block-col {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  margin-bottom: 20px;
  width: 100%;
}

.profile__block-col span {
  font-size: 14px;
  color: #FE461D;
}

.profile__block-col input {
  width: 100%;
  padding: 12px 15px;
  border-radius: 6px;
  border: 1px solid #E5E3E3;
  background: #FFF;
  outline: none;
  font-size: 14px;
}

.profile__block-submit {
  padding: 15px;
  border-radius: 10px;
  background: #FE461D;
  width: 100%;
  border: none;
  outline: none;
  cursor: pointer;
  color: #FFF;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  transition: 0.2s ease-in-out;
}

.profile__block-submit:hover {
  background: #e63946;
}

.login__container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 100px;
}

.login form {
  width: 100%;
  max-width: 420px;
  padding: 50px;
  border-radius: 15px;
  background: #FFF;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.08);
}

.login form .profile__block-title {
  -ms-grid-row-align: center;
      align-self: center;
}

.politics__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 100px;
}

.politics__title {
  text-align: center;
  margin-bottom: 30px;
}

.politics__text {
  width: 100%;
  font-size: 16px;
  line-height: 156%;
}

.empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 100px;
  padding: 0 16px;
}

@media (max-width: 1420px) {
  .content {
    padding: 75px 0;
  }
}

@media (max-width: 1360px) {
  .container {
    max-width: 1240px;
  }
}

@media (max-width: 1240px) {
  .container {
    max-width: 992px;
  }

  .content {
    padding: 50px 0;
  }

  .title {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .header__nav-list {
    gap: 40px;
  }

  .serv__container {
    -ms-grid-columns: 200px 1fr;
    grid-template-columns: 200px 1fr;
  }

  .serv__item-title {
    font-size: 20px;
  }

  .benefits__title {
    margin-bottom: 100px;
  }

  .table__wrapper {
    overflow: auto;
  }

  .table__wrapper-header {
    min-width: 1200px;
  }

  .table__body {
    min-width: 1200px;
  }
}

@media (max-width: 1200px) {
  .alert--width {
    width: 370px;
  }

  .alert--content {
    padding: 25px;
  }

  .alert--img__item svg {
    width: 75px;
    height: 75px;
  }

  .alert-text {
    margin-top: 10px;
  }

  .alert--title {
    font-size: 24px;
  }

  .alert--subtitle {
    font-size: 18px;
  }
}

@media (max-width: 992.9px) {
  .container {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 992px) {
  .burger {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (5px)[3];
    grid-template-columns: repeat(3, 5px);
    justify-content: space-between;
    width: 25px;
    row-gap: 5px;
    -moz-column-gap: 5px;
         column-gap: 5px;
    margin-left: 20px;
    margin-right: 0;
  }

  .header__container {
    padding: 10px 0;
  }

  .header__logo {
    margin-right: auto;
    width: 90px;
    height: 55px;
  }

  .header__nav {
    position: absolute;
    top: calc(100% + 3px);
    left: 0;
    right: 0;
    width: 100%;
    background: #01171E;
    display: none;
  }

  .header__nav.active {
    display: block;
  }

  .header__nav-list {
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
  }

  .header__profile {
    padding: 8px 20px;
  }

  .header-space {
    padding-top: 78px;
  }

  .footer__container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .footer__col {
    margin-right: 0;
    align-items: center;
  }

  .footer__nav {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .footer__nav-list {
    align-items: center;
  }

  .footer__nav-list li {
    max-width: unset;
  }

  .footer__socials {
    justify-content: center;
  }

  .footer__bot-container {
    flex-direction: column;
    row-gap: 20px;
  }

  .breadcrumbs__container {
    padding: 30px 0;
  }

  .hero__container {
    height: 400px;
  }

  .hero__arrows {
    display: none;
  }

  .about__block {
    padding: 10px;
  }

  .about__block-wrapper {
    padding: 25px;
    background: #ffffff;
  }

  .about__system {
    max-width: unset;
  }

  .serv__wrapper {
    padding: 50px 0;
  }

  .serv__container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .benefits__wrapper {
    padding: 50px 0;
  }

  .benefits__title {
    margin-bottom: 50px;
  }

  .benefits__items {
    -ms-grid-columns: 250px;
    grid-template-columns: 250px;
  }

  .links__container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .links__block {
    padding: 25px;
  }

  .links__block-title {
    font-size: 20px;
  }

  .table__settings-item {
    min-height: 60px;
    padding: 10px 15px;
    height: auto;
  }

  .table__settings-item:last-child {
    width: 100%;
  }

  .table__settings-item:nth-child(2),
  .table__settings-item:nth-child(1) {
    width: 100%;
  }

  .table__settings-search {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .table__row {
    padding: 12px 40px;
  }

  .table__row--header {
    padding: 10px 20px;
  }

  .table__bot {
    flex-direction: column;
    gap: 20px;
    padding: 20px 25px;
  }

  .pagination {
    margin-left: 0;
  }

  .function__container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .card {
    padding: 20px;
  }

  .card__row {
    gap: 10px;
    flex-direction: column;
  }

  .card__row span:nth-child(1) {
    width: unset;
  }

  .profile__container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .profile__left {
    padding: 25px;
  }

  .profile__left-title {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .profile form {
    padding: 25px;
  }

  .profile__block {
    max-width: unset;
  }

  .profile__block-title {
    font-size: 22px;
  }

  .login form {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .serv__items {
    grid-auto-rows: 200px;
  }

  .serv__item {
    padding: 25px;
  }
}

@media (max-width: 576px) {
  .about__system {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .about__system-title {
    -ms-grid-column-span: 1;
    grid-column: 1 span;
  }

  .about__system-text:nth-child(6) {
    -ms-grid-column-span: 1;
    grid-column: 1 span;
  }

  .about__system-mission {
    -ms-grid-column-span: 1;
    grid-column: 1 span;
  }

  .serv__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .modal__block {
    padding: 40px 15px;
  }

  .modal-info__title {
    font-size: 22px;
  }

  .modal-info__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .modal-info__status {
    margin-top: 25px;
  }

  .modal-info__status-title {
    font-size: 18px;
  }

  .modal-info__status-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .modal-files__title {
    font-size: 22px;
  }
}

@media (max-width: 500px) {
  .alert--content {
    width: 92%;
  }

  .alert--img__item svg {
    width: 60px;
    height: 60px;
  }

  .alert--title {
    font-size: 22px;
  }
}

.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #0f0f0f;
    color: #fff;
    padding: 14px 22px;
    border-radius: 8px;
    font-size: 15px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all .3s ease;
    z-index: 99999;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.toast.success {
    background: #1ea83c;
}

.toast.error {
    background: #d93737;
}
