@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Medium.eot');
  src: url('../fonts/Inter-Medium.eot?#iefix') format('embedded-opentype'),
  url('../fonts/Inter-Medium.woff2') format('woff2'),
  url('../fonts/Inter-Medium.woff') format('woff'),
  url('../fonts/Inter-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Regular.eot');
  src: url('../fonts/Inter-Regular.eot?#iefix') format('embedded-opentype'),
  url('../fonts/Inter-Regular.woff2') format('woff2'),
  url('../fonts/Inter-Regular.woff') format('woff'),
  url('../fonts/Inter-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/************************* reset *************************/
html {
  height: 100%;
  margin: 0;
  padding: 0;
  width: 100%;
  background: #F7F8FB;
}

body {
  height: 100%;
  width: 100%;
  position: relative;
  margin: 0;
  padding: 0;
  color: #494B4F;
  font-size: 14px;
  font-weight: 400;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  line-height: 140%;
  min-width: 320px;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

h1, h2, h3, h4, p, ul, li, a, span, div, input, textarea, select, label, form, fieldset, button, dl, dd, dt, figure, figcaption, blockquote, caption, aside, section {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  box-sizing: border-box;
}

img {
  margin: 0;
  padding: 0;
  border-style: none;
  vertical-align: bottom;
}

input, textarea, select, button {
  font-weight: 400;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  vertical-align: middle;
  border: 0;
  outline: 0;
  background: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

/************************* common styles *************************/
.holder {
  padding: 0 15px;
}

@media (min-width: 576px) {
  .holder {
    padding: 0 30px;
  }
}

@media (min-width: 768px) {
  .holder {
    max-width: 720px;
    margin: auto;
    padding: 0;
  }
}

@media (min-width: 1024px) {
  .holder {
    max-width: 960px;
  }
}

@media (min-width: 1300px) {
  .holder {
    max-width: 1200px;
  }
}

.holder:after {
  display: block;
  content: '';
  clear: both;
}

.title {
  display: block;
  margin: 0 0 45px;
  font-size: 48px;
  font-weight: 700;
  line-height: 57px;
}

a {
  transition: all .3s linear;
}

p {
  margin: 0 0 20px;
}

p:last-child {
  margin: 0;
}

p a, .article li a {
  color: #494B4F;
}

.center {
  text-align: center;
}

.upper {
  text-transform: uppercase;
}

.button-holder {
  text-align: center;
}

.button {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 320px;
  padding: 12px 30px 13px;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  background: #494B4F;
  transition: all .3s linear;
}

.button:hover {
  background: #2f3033;
}

/************************* form-block *************************/
.input {
  display: block;
  width: 100%;
  height: 45px;
  padding: 0 20px;
  margin: 0 0 15px;
  font-size: 14px;
  color: #494B4F;
  background: #F7F8FB;
}

.textarea {
  display: block;
  width: 100%;
  height: 110px;
  padding: 17px 20px;
  margin: 0 0 15px;
  font-size: 14px;
  resize: vertical;
  color: #494B4F;
  background: #F7F8FB;
}

.input:last-child,
.textarea:last-child {
  margin: 0;
}

::-webkit-input-placeholder {
  color: #494B4F;
}

:-moz-placeholder {
  color: #494B4F;
  opacity: 1;
}

::-moz-placeholder {
  color: #494B4F;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #494B4F;
}

/************************* wrapper *************************/
#wrapper {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}

/************************* header *************************/
.header {
  padding: 14px 0 13px;
  background: #fff;
}

.header-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.header-logo a {
  color: #494B4F;
  text-decoration: none;
}

.logo-text {
  margin: -5px 0 0 2px;
}

.header-links {
  display: flex;
  gap: 57px;
}

.header-links a {
  color: #494B4F;
  text-decoration: none;
}

.header-links a:hover {
  text-decoration: underline;
}

.mob-nav-icon {
  position: absolute;
  top: 21px;
  right: 0px;
  z-index: 250;
  padding: 0 0 10px;
  display: none;
}

.mob-nav-block {
  position: relative;
  display: block;
  width: 24px;
  height: 2px;
  margin: 8px 0 0;
  background: #261421;
  transition: all .3s linear;
}

.mob-nav-block:after {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  width: 24px;
  height: 2px;
  background: #261421;
  transition: all .3s linear;
}

.mob-nav-block:before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 24px;
  height: 2px;
  background: #261421;
  transition: all .3s linear;
}

.mob-nav-icon.active .mob-nav-block {
  background: none;
}

.mob-nav-icon.active .mob-nav-block:before {
  top: 0;
  transform: rotate(45deg);
}

.mob-nav-icon.active .mob-nav-block:after {
  top: 0;
  transform: rotate(-45deg);
}

/************************* main *************************/
.main {
  padding: 60px 0;
}

/************************* about *************************/
.about {
  margin: -30px 0 60px;
  padding: 50px 80px;
  display: flex;
  background: #fff;
}

.about-img {
  width: 216px;
  min-width: 216px;
  margin: 0 89px 0 0;
}

.about-img img {
  width: 100%;
}

.about-content {
  flex: 1;
}

.title {
  margin: 0 0 25px;
  font-weight: 500;
  font-size: 32px;
  line-height: 140%;
}

/*.about-part {*/
/*	margin: 0 0 60px;*/
/*}*/
/*.about-part:last-child {*/
/*	margin: 0;*/
/*}*/
.hidden-block {
  display: none;
}

.more {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0 0;
}

.more img {
  transition: all 0.3s linear;
}

.more.active img {
  transform: rotate(180deg);
}

/************************* add *************************/
.add-section .title {
  margin: 0 0 60px;
  text-align: center;
}

.add-wrap {
  padding: 60px 80px;
  background: #fff;
}

.add-top {
  display: flex;
  margin: 0 0 60px;
}

.add-top-img {
  width: 426px;
  min-width: 426px;
  margin: 0 80px 0 0;
}

.add-top-img img {
  width: 100%;
}

.add-top-text {
  flex: 1;
}

.steps-block {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 0;
}

.steps-col {
  width: 50%;
  padding: 0 15px;
  text-align: center;
}

.steps-title {
  margin: 0 0 15px;
  font-weight: 500;
  font-size: 32px;
  line-height: 120%;
}

.steps-text {
  max-width: 325px;
  margin: 0 auto 30px;
}

.steps-wrap {
  max-width: 285px;
  margin: 0 auto;
}

.steps-note, .steps-note-file {
  padding: 15px 0 0;
}

.file {
  position: relative;
  margin: 0 0 30px;
}

.file-input {
  position: absolute;
  left: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.file-bar {
  position: relative;
  height: 22px;
  background: #fff;
  border: 1px solid #C9CDD6;
}

.file-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #C9CDD6;
}

.select-item {
  margin: 0 0 15px;
}

.select-item:last-child {
  margin: 0;
}

/************************* article *************************/
.article {
  padding: 60px 100px;
  background: #fff;
}

.article p {
  margin: 0 0 25px;
}

.article p:last-child {
  margin: 0;
}

/************************* filter *************************/
.filter-line {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px 60px;
}

.filter-col {
  width: 25%;
  padding: 0 10px;
}

.filter-col .button {
  max-width: none;
}

.filter-bottom {
  display: flex;
  justify-content: end;
  margin: 0 -10px;
}

.filter-bottom-wrap {
  width: 25%;
  padding: 0 10px;
}

.filter-table {
  margin: 0 0 0;
  overflow-x: auto;
}

.filter-table table {
  width: 100%;
  min-width: 760px;
  table-layout: fixed;
  border-collapse: collapse;
}

.filter-table th {
  padding: 13px 10px;
  color: #fff;
  font-weight: 500;
  background: #494B4F;
  border: 1px solid #C9CDD6;
}

.filter-table td {
  padding: 13px 10px;
  text-align: center;
  background: #fff;
  border: 1px solid #C9CDD6;
}

.checkbox {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 3px 0 0;
}

.check-input {
  position: absolute;
  left: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.check-label {
  display: block;
  width: 15px;
  height: 15px;
  cursor: pointer;
  background: url(../images/checkbox.svg) 50% 50% no-repeat;
}

.check-input:checked + .check-label {
  background: url(../images/checkbox-active.svg) 50% 50% no-repeat;
}

/************************* footer *************************/
.footer {
  padding: 19px 0 18px;
  margin-top: auto;
  color: #FFFFFF;
  background: #494B4F;
}

.footer-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  color: #FFFFFF;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

/************************* popup *************************/
.popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100;
}

.popup-message {
  display: none;
}

.file-bar {
  display: none;
}

.popup-message-content {
  background-color: white;
  border-radius: 5px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  width: 300px;
}

.popup-message-content p {
  margin: 0;
}

.popup-close {
  color: #aaa;
  float: right;
  font-size: 20px;
  margin-top: -16px;
  margin-right: -10px;
}

.popup-close:hover,
.popup-close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.error {
  border: 1px solid red; /* Устанавливаем красную обводку для не заполненных полей */
}

/************************* datatable *************************/
.dataTables_wrapper .dataTables_paginate {
  float: none;
  text-align: left;
  padding-top: 0.25em;
}

/************************* media *************************/
@media screen and (max-width: 1480px) {

}

@media screen and (max-width: 1300px) {
  .about {
    padding: 50px 60px;
  }

  .about-img {
    margin: 0 60px 0 0;
  }

  .add-wrap {
    padding: 60px;
  }

  .add-top-img {
    margin: 0 60px 0 0;
  }

  .article {
    padding: 60px;
  }

}

@media screen and (max-width: 1024px) {
  .main {
    padding: 30px 0;
  }

  .about {
    padding: 30px;
    margin: 0 0 30px;
  }

  .about-img {
    width: 180px;
    min-width: 180px;
    margin: 0 30px 0 0;
  }

  .add-wrap {
    padding: 30px;
  }

  .title {
    font-size: 30px;
  }

  .add-section .title {
    margin: 0 0 30px;
  }

  .add-top {
    display: block;
    margin: 0 0 30px;
  }

  .add-top-img {
    width: auto;
    min-width: 1px;
    margin: 0 0 30px;
  }

  .steps-col {
    width: 100%;
  }

  .article {
    padding: 30px;
  }

  .filter-line {
    margin: 0 -10px 30px;
    gap: 20px 0;
  }

  .filter-col {
    width: 50%;
  }

  .filter-bottom-wrap {
    width: 50%;
  }

  .filter-bottom .button {
    max-width: none;
  }


}

@media screen and (max-width: 767px) {
  .about-img {
    width: 120px;
    min-width: 120px;
  }

  .title {
    font-size: 24px;
  }

  .filter-table {
    margin: 0 -30px 30px;
    padding: 0 30px;
    overflow-x: auto;
  }

}

@media screen and (max-width: 576px) {
  .logo-img img {
    width: 160px;
  }

  .logo-text {
    margin: -5px 0 0;
    font-size: 13px;
  }

  .header-links {
    gap: 20px;
  }

  .about {
    display: block;
    padding: 30px 15px;
  }

  .about-img {
    width: auto;
    min-width: 1px;
    margin: 0 0 20px;
  }

  .add-wrap {
    padding: 30px 15px;
  }

  .steps-text, .steps-wrap {
    max-width: none;
  }

  .steps-block {
    gap: 40px 0;
  }

  .steps-col {
    padding: 0;
  }

  .filter-bottom {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .footer-block {
    flex-direction: column;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px 0 0;
  }

  .article {
    padding: 30px 15px;
  }

  .filter-table {
    margin: 0 -15px 30px;
    padding: 0 15px;
    overflow-x: auto;
  }

  .filter-col {
    width: 100%;
  }

  .filter-bottom-wrap {
    width: 100%;
  }

}

@media screen and (max-width: 374px) {

}