@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@font-face {
  font-family: "Outfit";
  font-display: swap;
  src: url("../fonts/Outfit-Bold-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Outfit";
  font-display: swap;
  src: url("../fonts/Outfit-Light-300.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Outfit";
  font-display: swap;
  src: url("../fonts/Outfit-Medium-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Outfit";
  font-display: swap;
  src: url("../fonts/Outfit-Regular-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Outfit";
  font-display: swap;
  src: url("../fonts/Outfit-SemiBold-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}
:root {
  --color-placeholder: #9EA2C2;
  --width-scrollbar: 9.6px;
  --color-status-new: #285AFF;
  --color-status-in_progress: #285AFF;
  --color-status-planned: #285AFF;
  --color-status-completed: #E59C46;
  --color-status-invoiced: #29C581;
  --color-status-canceled: #F15642;
}

/*
$type -- для условия
         1 -- только если ширина окна меньше контейнера
         2 -- только если ширина окна больше контейнера
         0 -- всегда
*/
::-webkit-scrollbar {
  width: var(--width-scrollbar);
  height: var(--height-scrollbar);
  background-color: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
  border-radius: 0.5rem;
  background-color: rgba(158, 162, 194, 0.5);
}

::-webkit-scrollbar-thumb:hover {
  background-color: #9EA2C2;
}

/* gutter 20px (10px + 10px). Comment this code for default gutter start at 1.5rem (24px) wide. */
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  --bs-gutter-x: 1.25rem;
}

.row, .row > * {
  --bs-gutter-x: 1.25rem;
}

@media only screen and (min-width: 1500px) {
  .container {
    max-width: 1860px;
  }
}

html {
  height: 100%;
}

body {
  min-width: 360px;
  height: 100%;
  font-family: "Outfit", sans-serif;
  font-size: calc(16rem / 16);
  position: relative;
  color: #0D1666;
  line-height: 1.25;
  overflow-x: hidden;
  background-color: #F3F3F7;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
@media (max-width: 1600px) {
  body {
    font-size: calc(14rem / 16 + 2 / 16 * ((100vw - 360rem / 16) / (1240 / 16)));
  }
}

main {
  padding-bottom: calc(60rem / 16);
  margin-top: var(--mtop);
}
@media (max-width: 1600px) {
  main {
    padding-bottom: calc(30rem / 16 + 30 / 16 * ((100vw - 360rem / 16) / (1240 / 16)));
  }
}

body, address, blockquote, center, section, main, header, footer, div, fieldset, form, input, textarea,
h1, h2, h3, h4, h5, h6, hr, menu, ol, ul, li, p, span, a, pre, table {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
  color: #285AFF;
}
a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

.accent {
  color: #F15642;
}

.width-100 {
  width: 100%;
}

p {
  padding-bottom: 12px;
}

.text-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hidden {
  display: none !important;
}

input.btn,
input.btn[type=submit],
.btn {
  display: inline-flex;
  min-height: 46px;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px;
  background-color: #285AFF;
  border-radius: 8px;
  border: none;
  color: #fff;
  margin-block: 10px;
  padding: 13px 25px;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  transition: 0.3s ease;
  cursor: pointer;
}
input.btn:hover,
input.btn[type=submit]:hover,
.btn:hover {
  background-color: rgba(40, 90, 255, 0.9);
  opacity: 1;
  text-decoration: none;
}
input.btn.with-icon-right,
input.btn[type=submit].with-icon-right,
.btn.with-icon-right {
  --size-icon: 15px;
}
input.btn.with-icon-right::after,
input.btn[type=submit].with-icon-right::after,
.btn.with-icon-right::after {
  content: "";
  display: block;
  width: var(--size-icon);
  height: var(--size-icon);
  min-height: var(--size-icon);
  background-size: var(--size-icon) var(--size-icon);
  margin-right: -5px;
  transition: transform 0.3s ease;
}
input.btn.icon-arrow-white::after,
input.btn[type=submit].icon-arrow-white::after,
.btn.icon-arrow-white::after {
  background-image: url("../images/icon-arrow-white.svg");
}
input.btn.icon-arrow-white:hover::after,
input.btn[type=submit].icon-arrow-white:hover::after,
.btn.icon-arrow-white:hover::after {
  transform: translateX(2px);
}
input.btn.light,
input.btn[type=submit].light,
.btn.light {
  background-color: #fff;
  border: 1px solid #9EA2C2;
  color: #9EA2C2;
}
input.btn.light:hover,
input.btn[type=submit].light:hover,
.btn.light:hover {
  border: 1px solid #0D1666;
  color: #0D1666;
}
input.btn.not-bg,
input.btn[type=submit].not-bg,
.btn.not-bg {
  background: none;
  color: #0D1666;
  border: 1px solid #0D1666;
}
input.btn.not-bg:hover,
input.btn[type=submit].not-bg:hover,
.btn.not-bg:hover {
  opacity: 0.9;
}
input.btn.border,
input.btn[type=submit].border,
.btn.border {
  --color: #0D1666;
  border: 1px solid var(--color);
  color: var(--color);
  background: none;
}
input.btn.border:hover,
input.btn[type=submit].border:hover,
.btn.border:hover {
  background-color: var(--color);
  color: #fff;
}

label.btn {
  position: relative;
  width: auto;
  box-sizing: border-box;
}
label.btn + input[type=file] {
  visibility: hidden;
  width: 100%;
  opacity: 0;
  position: absolute;
  padding: 0;
  width: auto;
}

a[download],
.title-doc-pdf {
  --w-icon: 21px;
  --h-icon: 24px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #0D1666;
}
a[download]::before,
.title-doc-pdf::before {
  content: "";
  display: block;
  width: var(--w-icon);
  min-width: var(--w-icon);
  height: var(--h-icon);
  background-image: url("../../images/icon-pdf.svg");
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}
a[download]:hover::before,
.title-doc-pdf:hover::before {
  transform: scale(1.1);
}

.btn-remove {
  --size: 20px;
  background: none;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--size);
  height: var(--size);
  min-width: var(--size);
  padding: 0;
  cursor: pointer;
}
.btn-remove svg {
  height: 100%;
}
.btn-remove path {
  transition: fill 0.3s ease;
}
.btn-remove:hover path {
  fill: #285AFF;
}

*::-webkit-input-placeholder {
  color: var(--color-placeholder);
  opacity: 1;
}

*:-moz-placeholder {
  color: var(--color-placeholder);
  opacity: 1;
}

*::-moz-placeholder {
  color: var(--color-placeholder);
  opacity: 1;
}

*:-ms-input-placeholder {
  color: var(--color-placeholder);
  opacity: 1;
}

body input:focus:required:invalid,
body textarea:focus:required:invalid {
  color: #666;
}

body input:required:valid,
body textarea:required:valid {
  color: #666;
}

.input-wrap {
  position: relative;
  padding-block: 10px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.input-wrap label {
  white-space: nowrap;
}
.input-wrap .btn {
  margin-block: 0;
}
.input-wrap.dark input, .input-wrap.dark textarea {
  background-color: #F3F3F7;
}
.input-wrap.dark label {
  color: #9EA2C2;
}

form {
  font-size: 1rem;
}
form * {
  font-family: "Outfit", sans-serif;
}

input:not([type=checkbox]),
textarea {
  background-color: #fff;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 1rem;
  color: #0D1666;
  width: 100%;
  outline: none;
  border: 1.5px solid #fff;
  transition: 0.3s ease;
}
input:not([type=checkbox]):focus,
textarea:focus {
  border-color: #285AFF;
}

textarea {
  font-family: "Outfit", sans-serif;
  outline: none;
  border: 1.5px solid #fff;
}
textarea:focus {
  border-color: #285AFF;
}

.input-wrap .input-wrap.with-icon.input-wrap-search {
  margin-block: 0;
}

.input-wrap.with-icon {
  --size-icon: 24px;
  --r-pos-icon: 20px;
}
.input-wrap.with-icon.input-wrap-search {
  display: flex;
  background-color: #fff;
  padding-block: 0;
  margin-block: 10px;
  border-radius: 8px;
  padding-right: var(--r-pos-icon);
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.input-wrap.with-icon.input-wrap-search > div {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  column-gap: 5px;
}
.input-wrap.with-icon .icon {
  width: var(--size-icon);
  background: none;
  border: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  cursor: pointer;
}
.input-wrap.with-icon .icon path {
  fill: var(--color-placeholder);
  transition: 0.3s ease;
}
.input-wrap.with-icon .icon:hover path {
  fill: #285AFF;
}
.input-wrap.with-icon .btn-cleane-input {
  visibility: hidden;
  opacity: 0;
}
.input-wrap.with-icon .btn-cleane-input.show {
  visibility: visible;
  opacity: 1;
}

input, textarea {
  box-shadow: none;
  -webkit-appearance: none;
  outline: none;
}

.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}

.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-selection--single .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
}

.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}

.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline;
  list-style: none;
  padding: 0;
}

.select2-container .select2-selection--multiple .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
}

.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  margin-left: 5px;
  padding: 0;
  max-width: 100%;
  resize: none;
  height: 18px;
  vertical-align: bottom;
  font-family: sans-serif;
  overflow: hidden;
  word-break: keep-all;
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
}

.select2-results {
  display: block;
}

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

.select2-results__option {
  padding: 6px;
  user-select: none;
  -webkit-user-select: none;
}

.select2-results__option--selectable {
  cursor: pointer;
}

.select2-container--open .select2-dropdown {
  left: 0;
}

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-search--dropdown {
  display: block;
  padding: 4px;
}

.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box;
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-search--dropdown.select2-search--hide {
  display: none;
}

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 26px;
  margin-right: 20px;
  padding-right: 0px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  padding-bottom: 5px;
  padding-right: 5px;
  position: relative;
}

.select2-container--default .select2-selection--multiple.select2-selection--clearable {
  padding-right: 25px;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  font-weight: bold;
  height: 20px;
  margin-right: 10px;
  margin-top: 5px;
  position: absolute;
  right: 0;
  padding: 1px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0;
  padding-left: 20px;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
  white-space: nowrap;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-right: 1px solid #aaa;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #999;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding: 0 4px;
  position: absolute;
  left: 0;
  top: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover, .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
  background-color: #f1f1f1;
  color: #333;
  outline: none;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  border-left: 1px solid #aaa;
  border-right: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__clear {
  float: left;
  margin-left: 10px;
  margin-right: auto;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
}

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield;
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}

.select2-container--default .select2-results__option--group {
  padding: 0;
}

.select2-container--default .select2-results__option--disabled {
  color: #999;
}

.select2-container--default .select2-results__option--selected {
  background-color: #ddd;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #5897fb;
  color: white;
}

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: -webkit-linear-gradient(top, #fff 50%, #eee 100%);
  background-image: -o-linear-gradient(top, #fff 50%, #eee 100%);
  background-image: linear-gradient(to bottom, #fff 50%, #eee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 26px;
  margin-right: 20px;
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: -webkit-linear-gradient(top, #eee 50%, #ccc 100%);
  background-image: -o-linear-gradient(top, #eee 50%, #ccc 100%);
  background-image: linear-gradient(to bottom, #eee 50%, #ccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFCCCCCC", GradientType=0);
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #fff 0%, #eee 50%);
  background-image: -o-linear-gradient(top, #fff 0%, #eee 50%);
  background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #eee 50%, #fff 100%);
  background-image: -o-linear-gradient(top, #eee 50%, #fff 100%);
  background-image: linear-gradient(to bottom, #eee 50%, #fff 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFFFFFFF", GradientType=0);
}

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0;
  padding-bottom: 5px;
  padding-right: 5px;
}

.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #888;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding: 0 4px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
  outline: none;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none;
}

.select2-container--classic .select2-dropdown {
  background-color: #fff;
  border: 1px solid transparent;
}

.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}

.select2-container--classic .select2-dropdown--below {
  border-top: none;
}

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--classic .select2-results__option--group {
  padding: 0;
}

.select2-container--classic .select2-results__option--disabled {
  color: grey;
}

.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #3875d7;
  color: #fff;
}

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
}

.custom-select {
  font-size: 1rem;
  display: flex;
  align-items: center;
  column-gap: 20px;
  row-gap: 10px;
}
.custom-select label {
  color: #fff;
  white-space: nowrap;
}
.custom-select .select2 {
  width: 100% !important;
  height: 46px;
}
.custom-select.dark .select2-selection,
.custom-select.dark .select2-container--default .select2-selection--single .select2-selection__rendered {
  background-color: #F3F3F7;
}
.custom-select.dark label {
  color: #9EA2C2;
}
.custom-select .select2-container {
  min-width: var(--width);
  border-radius: 8px;
  overflow: hidden;
}
.custom-select .select2-selection {
  height: 100%;
  display: flex;
  align-items: center;
  border-radius: 8px;
}
.custom-select .select2-selection--single {
  border: 1.5px solid #fff;
  outline: none;
  border-radius: 8px !important;
}
.custom-select .select2-selection--single:focus-visible,
.custom-select .select2-selection--single:focus {
  border-color: #285AFF;
  outline: none;
}
.custom-select .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 50%;
  transform: translateY(-50%);
  right: 24px;
}
.custom-select .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding-left: 20px;
  padding-right: 54px;
  width: 100%;
  color: #0D1666;
  background-color: #fff;
}
.custom-select .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: var(--color-placeholder);
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  width: 12px;
  height: 7px;
  border: none;
  background-image: url("../images/icon-select.svg");
  background-size: 100% 100%;
}

.select2-search {
  --ptop: 15px;
  --pinline: 20px;
  --sizeIcon: 24px;
  padding-block: var(--ptop) 0;
  padding-inline: var(--pinline);
  position: relative;
  font-family: "Outfit", sans-serif;
}
.select2-search::after {
  content: "";
  display: block;
  width: var(--sizeIcon);
  height: var(--sizeIcon);
  background-image: url("images/icon-select.svg");
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: calc(var(--pinline) + var(--sizeIcon) - 4px);
  top: calc(var(--ptop) / 2 + 50%);
  transform: translateY(-50%);
}
.select2-search .select2-search__field {
  font-family: "Outfit", sans-serif;
  border-radius: 8px;
  padding-inline: 10px calc(var(--pinline) + var(--sizeIcon));
  border: 1px solid #f0f0f0 !important;
  background-color: #f3f3f7;
  height: 40px;
}

.select2-results {
  --width-scrollbar: 2px;
  padding-block: 14px;
  padding-inline: 0 20px;
}

.select2-search--hide + .select2-results {
  padding-inline: 0 10px;
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: 275px;
}

.select2-results__option {
  padding: 10px 20px;
  font-size: 0.875rem;
  color: #9EA2C2;
  transition: color 0.3s ease;
}

.select2-dropdown {
  z-index: 10000;
  min-width: 120px;
  border: 0 !important;
  border-radius: 8px !important;
  box-shadow: 0 0 12px 2px rgba(0, 0, 0, 0.1);
  margin-top: 4px;
}
.select2-dropdown .wrap-select-text {
  display: flex;
  gap: 10px;
}
.select2-dropdown .select2-results__option--highdarked {
  background: none !important;
  color: #0D1666 !important;
}
.select2-dropdown .select2-results__option--selected {
  background: none !important;
  color: #285AFF !important;
}
.select2-dropdown .select2-results__option:last-of-type {
  border-bottom-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
}

.wrapper-select-lang {
  position: relative;
}
.wrapper-select-lang .select2-dropdown,
.wrapper-select-lang .select2-container--open {
  left: auto;
  right: 0;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background: none;
  color: rgba(13, 22, 102, 0.7);
}

.select-status .wrap-select-text {
  display: flex;
  align-items: center;
  gap: 10px;
}

.indicator-status {
  display: block;
  width: 15px;
  height: 15px;
  min-width: 15px;
  border-radius: 3px;
  background-color: #0D1666;
}
.indicator-status.new {
  background-color: var(--color-status-new);
}
.indicator-status.completed {
  background-color: var(--color-status-completed);
}
.indicator-status.invoiced {
  background-color: var(--color-status-invoiced);
}

.select2-container--default .select2-selection--multiple {
  padding: 0;
}
.select2-container--default .select2-selection--multiple .select2-search {
  padding-block: 0;
}
.select2-container--default .select2-selection--multiple .select2-search::after {
  display: none;
}
.select2-container--default .select2-selection--multiple textarea.select2-search__field {
  margin: 0px;
  border: none !important;
}

.input-wrap-multiple.dark .select2-container--default .select2-selection--multiple {
  border: none;
}
.input-wrap-multiple.dark .select2-container--default.select2-container--focus .select2-selection--multiple {
  border: none;
}
.input-wrap-multiple .select2-container--default .select2-selection--multiple .select2-selection__choice {
  border: 1px solid #285AFF;
  background-color: rgba(40, 90, 255, 0.1);
  border-radius: 8px;
  color: #285AFF;
  padding-block: 5px;
  margin-block: 0;
  padding-inline: 10px 25px;
}
.input-wrap-multiple .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  font-size: 20px;
  font-weight: 400;
  right: 5px;
  left: auto;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  color: rgba(40, 90, 255, 0.8);
}
.input-wrap-multiple .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  background: none;
  color: #285aff;
}
.input-wrap-multiple .select2-container--default .select2-selection--multiple .select2-search textarea {
  font-family: "Outfit", sans-serif;
  line-height: 1;
}
.input-wrap-multiple .select2-container .select2-selection--multiple .select2-selection__rendered {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.input-wrap-multiple .select2 {
  height: auto !important;
  min-height: 46px;
}
.input-wrap-multiple .select2-selection--multiple {
  min-height: 46px !important;
  padding-block: 5px;
}

.wrapper-select-lang {
  display: flex;
  align-items: center;
  border-radius: 8px;
  margin-block: 10px;
  padding: 0;
  background: none;
}
.wrapper-select-lang .select2-selection .img-flag {
  width: 19px;
}
.wrapper-select-lang .select2 {
  width: auto !important;
}
.wrapper-select-lang .select2 .select2-selection--single {
  border: none;
}
.wrapper-select-lang .select2 .select2-selection__rendered {
  width: 70px;
  color: #0D1666;
  padding-left: 0;
  padding-right: 25px;
}
.wrapper-select-lang .select2 .wrap-select-text {
  display: flex;
  align-items: center;
  gap: 8px;
}
.wrapper-select-lang .select2 .select2-selection__arrow b {
  width: 10px !important;
  height: 7px !important;
}
@media only screen and (max-width: 475px) {
  .wrapper-select-lang .select2 .select2-selection__rendered {
    width: 80px;
  }
}
.wrapper-select-lang .select2 .select2-selection--single {
  background: none;
}
.wrapper-select-lang .select2-container--default .select2-selection--single .select2-selection__arrow {
  right: 3px;
}
@media only screen and (min-width: 768px) {
  .wrapper-select-lang .select2-dropdown,
.wrapper-select-lang .select2-container--open {
    left: 0;
    right: auto;
  }
}

.top-line {
  background-color: #0D1666;
  padding-block: 10px 12px;
}
.top-line__content {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 30px;
}
.top-line a {
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.3;
  display: inline-flex;
  align-items: center;
  column-gap: 8px;
}

.landing-footer {
  background-color: #0D1666;
  color: #fff;
  font-size: 1rem;
}
@media only screen and (min-width: 1500px) {
  .landing-footer .container {
    max-width: 1480px;
  }
}
.landing-footer a {
  color: #fff;
}
.landing-footer a:hover {
  opacity: 0.8;
}
.landing-footer__body {
  padding-top: calc(100rem / 16);
  padding-bottom: calc(80rem / 16);
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 1600px) {
  .landing-footer__body {
    padding-top: calc(50rem / 16 + 50 / 16 * ((100vw - 360rem / 16) / (1240 / 16)));
  }
}
@media (max-width: 1600px) {
  .landing-footer__body {
    padding-bottom: calc(30rem / 16 + 50 / 16 * ((100vw - 360rem / 16) / (1240 / 16)));
  }
}
@media only screen and (max-width: 1199px) {
  .landing-footer__body {
    flex-direction: column;
  }
}
.landing-footer__left {
  max-width: 350px;
}
.landing-footer__left p {
  padding-top: 23px;
  padding-bottom: 0;
  line-height: 1.625;
}
.landing-footer__right {
  padding-top: 15px;
}
.landing-footer__menu {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 100px;
}
@media only screen and (max-width: 1499px) {
  .landing-footer__menu {
    gap: 70px;
  }
}
@media only screen and (max-width: 1399px) {
  .landing-footer__menu {
    gap: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .landing-footer__menu {
    gap: 25px;
  }
}
.landing-footer__menu_item {
  width: calc(50% - 13px);
}
@media only screen and (min-width: 768px) {
  .landing-footer__menu_item {
    width: auto;
  }
  .landing-footer__menu_item:nth-last-child(1) {
    text-align: right;
  }
}
.landing-footer__menu_title {
  font-size: 1.125rem;
  font-weight: 500;
  padding-bottom: calc(18rem / 16);
}
@media (max-width: 1600px) {
  .landing-footer__menu_title {
    padding-bottom: calc(15rem / 16 + 3 / 16 * ((100vw - 360rem / 16) / (1240 / 16)));
  }
}
.landing-footer__menu li {
  padding-block: calc(12rem / 16);
}
@media (max-width: 1600px) {
  .landing-footer__menu li {
    padding-block: calc(10rem / 16 + 2 / 16 * ((100vw - 360rem / 16) / (1240 / 16)));
  }
}
.landing-footer__menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.landing-footer__menu a::after {
  content: "";
  display: block;
  position: absolute;
  width: 80%;
  height: 1px;
  background-color: #fff;
  left: 50%;
  top: calc(100% + 10px);
  transform: translateX(-50%);
  opacity: 0;
  transition: all ease 0.15s;
}
.landing-footer__menu a:hover {
  text-decoration: none;
  opacity: 1;
}
.landing-footer__menu a:hover::after {
  opacity: 1;
  top: calc(100% + 3px);
  width: 100%;
}
.landing-footer__bottom {
  padding-block: calc(30rem / 16);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.875rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  column-gap: 30px;
  row-gap: 20px;
}
@media (max-width: 1600px) {
  .landing-footer__bottom {
    padding-block: calc(20rem / 16 + 10 / 16 * ((100vw - 360rem / 16) / (1240 / 16)));
  }
}
.landing-footer__bottom p {
  padding-bottom: 0;
}
.landing-footer__bottom a {
  text-decoration: underline;
  white-space: nowrap;
}
.landing-footer__bottom ul {
  display: inline-flex;
  gap: calc(30rem / 16);
}
@media (max-width: 1600px) {
  .landing-footer__bottom ul {
    gap: calc(20rem / 16 + 10 / 16 * ((100vw - 360rem / 16) / (1240 / 16)));
  }
}

.header-owner {
  background-color: #0D1666;
  margin-block: 0;
  padding-block: 30px;
  min-height: var(--minHeightHeader);
}

.header-owner__wrap {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-owner__left {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media only screen and (max-width: 991px) {
  .header-owner__left {
    flex-direction: row-reverse;
    gap: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .header-owner__left {
    gap: 20px;
  }
}
@media only screen and (min-width: 1400px) {
  .header-owner__left {
    gap: 80px;
  }
}

.header-owner__logo {
  max-width: 203px;
  width: 100%;
}
.header-owner__logo svg {
  display: block;
  width: 100%;
}
.header-owner__logo .svg-logo-title {
  fill: #0E1766;
}
@media only screen and (max-width: 1399px) {
  .header-owner__logo {
    max-width: 150px;
  }
}
@media only screen and (max-width: 475px) {
  .header-owner__logo {
    position: absolute;
    top: -20px;
    left: -10px;
    max-width: 50px;
  }
}

.header-owner__menu_wrap {
  position: relative;
}
.header-owner__menu_wrap .btn-navigation {
  display: none;
  left: 0;
}
@media only screen and (max-width: 991px) {
  .header-owner__menu_wrap .btn-navigation {
    display: flex;
    background-color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  .header-owner__menu_wrap .btn-navigation path {
    fill: #0D1666;
  }
}

.header-owner__menu {
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 1400px) {
  .header-owner__menu {
    font-size: 1.125rem;
  }
}
.header-owner__menu > li {
  display: inline-flex;
  align-items: center;
  padding-inline: 15px;
}
@media only screen and (min-width: 1400px) {
  .header-owner__menu > li {
    padding-inline: 25px;
  }
}
.header-owner__menu a {
  position: relative;
  color: #fff;
  opacity: 0.6;
  text-align: center;
  padding-block: 12px;
  transition: opacity 0.3s ease;
}
.header-owner__menu a:hover {
  opacity: 1;
  text-decoration: none;
}
.header-owner__menu a.active {
  opacity: 1;
  font-weight: 500;
}
@media only screen and (min-width: 992px) {
  .header-owner__menu a.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    height: 2px;
    width: 100%;
    background-color: #285AFF;
  }
}
@media only screen and (max-width: 991px) {
  .header-owner__menu {
    z-index: 100;
    min-width: 200px;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: calc(100% + 35px);
    background-color: #fff;
    border-radius: 8px;
    flex-direction: column;
    align-items: flex-start;
    transition: top 0.25s ease, visibility 0.25s ease, opacity 0.2s ease;
    border: 1px solid #0D1666;
  }
  .header-owner__menu.active {
    visibility: visible;
    opacity: 1;
    top: calc(100% + 20px);
    transition: 0.3s ease;
  }
  .header-owner__menu li {
    width: 100%;
    text-align: left;
  }
  .header-owner__menu li + li {
    border-top: 1px solid rgba(13, 22, 102, 0.08);
  }
  .header-owner__menu a {
    color: #0D1666;
    text-align: left;
    width: 100%;
    text-align: left;
    justify-content: flex-start;
  }
}

.header-owner__right {
  margin-left: 60px;
}

.owner {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media only screen and (max-width: 767px) {
  .owner {
    gap: 15px;
  }
}

.owner__avatar {
  --size-avatar: 40px;
  position: relative;
  width: var(--size-avatar);
  height: var(--size-avatar);
  min-width: var(--size-avatar);
  background-color: #fff;
  color: #285AFF;
  font-weight: 500;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.owner__avatar img {
  position: absolute;
  max-width: var(--size-avatar);
}

.owner__data {
  color: #fff;
  text-align: left;
  font-size: 0.75rem;
}
.owner__data p {
  padding-bottom: 0;
}

.owner__name {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.owner {
  position: relative;
}

.owner-menu {
  --width-scrollbar: 2px;
  z-index: 100;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: calc(100% + 30px);
  right: 0;
  max-width: 260px;
  min-width: 234px;
  background-color: #fff;
  border-radius: 8px;
  padding: 15px 20px;
  text-align: left;
  transition: top 0.25s ease, visibility 0.25s ease, opacity 0.2s ease;
}
.owner-menu > ul {
  max-height: 350px;
  overflow-y: auto;
  padding-right: 12px;
}
.owner-menu.active {
  visibility: visible;
  opacity: 1;
  top: calc(100% + 10px);
  transition: 0.3s ease;
}
.owner-menu li {
  padding-block: 10px;
}
.owner-menu li.last-child {
  padding-top: 16px;
  margin-top: 8px;
  border-top: 1px solid rgba(26, 25, 25, 0.08);
}

.owner-menu__link {
  display: flex;
  align-items: center;
  color: #9EA2C2;
  gap: 12px;
  font-size: 1rem;
}
.owner-menu__link:hover {
  color: #285AFF;
  text-decoration: none;
}
.owner-menu__link:hover .owner-menu_icon path, .owner-menu__link:hover .owner-menu_icon circle {
  fill: #285AFF;
}

.owner-menu_icon {
  --size-icon: 20px;
  width: var(--size-icon);
  height: var(--size-icon);
  min-width: var(--size-icon);
  display: flex;
  justify-content: center;
  align-items: center;
}
.owner-menu_icon path, .owner-menu_icon circle {
  fill: #9EA2C2;
  transition: 0.3s ease;
}

.owner__btn {
  --size-btn: 24px;
  width: var(--size-btn);
  height: var(--size-btn);
  min-width: var(--size-btn);
  background-image: url("../images/icon-dropdown-white.svg");
  background-size: var(--size-btn);
  background-color: rgba(255, 255, 255, 0);
  border-radius: 50%;
  border: 0;
  padding: 0;
  transition: 0.3s ease;
  cursor: pointer;
}
.owner__btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.owner__btn.active {
  transform: rotate(180deg);
}

.landing-header {
  position: relative;
  padding-block: 0 30px;
  background: none;
}
.landing-header .container-owner-portal {
  padding-top: 30px;
}
@media only screen and (min-width: 992px) {
  .landing-header .header-owner__logo {
    max-width: 233px;
  }
}
@media only screen and (max-width: 475px) {
  .landing-header .header-owner__logo {
    position: static;
    max-width: 150px;
  }
}
@media only screen and (min-width: 1500px) {
  .landing-header .header-owner__left {
    gap: 180px;
  }
}
.landing-header .header-owner__right {
  display: flex;
  gap: 24px;
}
@media only screen and (max-width: 1199px) {
  .landing-header .header-owner__right {
    gap: 15px;
    margin-left: 40px;
  }
}
.landing-header .btn.not-bg {
  min-width: 120px;
}
.landing-header .btn-for-desktop {
  display: none;
}
@media only screen and (min-width: 768px) {
  .landing-header .btn-for-desktop {
    display: flex;
  }
}
.landing-header .btn-for-mobile {
  display: flex;
}
@media only screen and (min-width: 768px) {
  .landing-header .btn-for-mobile {
    display: none;
  }
}

@media only screen and (min-width: 1400px) {
  .landing-header .header-owner__menu li {
    padding-inline: 30px;
  }
}
.landing-header .header-owner__menu a {
  color: #0D1666;
  font-weight: 400;
  opacity: 0.9;
  font-size: 1rem;
  transition: color 0.3s ease;
}
.landing-header .header-owner__menu a:hover {
  opacity: 0.8;
  color: #285AFF;
}
.landing-header .header-owner__menu .btn {
  justify-content: center;
  color: #fff;
}
.landing-header .header-owner__menu .btn.not-bg {
  color: #0D1666;
}

body {
  --bgHeaderFixed: #fff;
  --colorHeaderFixed: #0D1666;
}

.landing-header {
  transition: all 0.5s ease, padding-right 0s ease;
}
.landing-header .container-owner-portal {
  transition: all 0.5s ease;
}

.narrow-header .landing-header {
  padding-bottom: 15px;
}
.narrow-header .landing-header .container-owner-portal {
  padding-top: 15px;
}

.header-fixed .landing-header {
  z-index: 10;
  position: fixed;
  top: -41px !important;
  left: 0;
  right: 0;
  background-color: var(--bgHeaderFixed);
  box-shadow: 0 0px 20px 0px rgba(51, 51, 51, 0.1);
}
@media only screen and (min-width: 992px) {
  .header-fixed .landing-header .header-owner__menu a {
    color: var(--colorHeaderFixed);
  }
}
.header-fixed .landing-header .svg-logo-title {
  fill: var(--colorHeaderFixed);
}
.header-fixed .landing-header .not-bg.btn-for-desktop {
  border-color: var(--colorHeaderFixed);
  color: var(--colorHeaderFixed);
}
.header-fixed main {
  padding-top: var(--hFixedHeader);
}

.hero-padding {
  --hHeader: 168px;
  margin-top: calc(var(--hHeader) * -1);
  padding-block: calc(var(--hHeader) + 100px) 100px;
}
@media only screen and (max-width: 991px) {
  .hero-padding {
    --hHeader: 148px;
    padding-top: 170px;
    padding-bottom: 50px;
    min-height: auto;
  }
}

h1 {
  font-size: calc(52rem / 16);
  font-weight: 600;
}
@media (max-width: 1600px) {
  h1 {
    font-size: calc(35rem / 16 + 17 / 16 * ((100vw - 360rem / 16) / (1240 / 16)));
  }
}

@media only screen and (min-width: 1500px) {
  .container {
    max-width: 1400px;
  }
}

main {
  padding-bottom: 0;
}

.section-landing {
  padding-block: calc(120rem / 16);
  background-color: #fff;
}
@media (max-width: 1600px) {
  .section-landing {
    padding-block: calc(30rem / 16 + 90 / 16 * ((100vw - 360rem / 16) / (1240 / 16)));
  }
}
.section-landing.light-dark {
  background-color: #F3F3F7;
}
.section-landing .btn {
  font-size: 18px;
}
@media only screen and (max-width: 767px) {
  .section-landing .btn {
    padding-block: 12px;
  }
}

.section-title {
  font-size: calc(46rem / 16);
  margin-bottom: calc(20rem / 16);
  font-weight: 600;
  color: #0D1666;
}
@media (max-width: 1600px) {
  .section-title {
    font-size: calc(30rem / 16 + 16 / 16 * ((100vw - 360rem / 16) / (1240 / 16)));
  }
}
@media (max-width: 1600px) {
  .section-title {
    margin-bottom: calc(10rem / 16 + 10 / 16 * ((100vw - 360rem / 16) / (1240 / 16)));
  }
}
.section-title .accent {
  color: #285AFF;
}

.section-description {
  font-size: calc(18rem / 16);
  margin-bottom: calc(20rem / 16);
  line-height: 1.44;
}
@media (max-width: 1600px) {
  .section-description {
    margin-bottom: calc(10rem / 16 + 10 / 16 * ((100vw - 360rem / 16) / (1240 / 16)));
  }
}

.container-border-bottom-decor {
  position: relative;
}
.container-border-bottom-decor::after {
  content: "";
  display: block;
  width: calc(100% - var(--bs-gutter-x) * 2);
  height: 1px;
  background-color: rgba(216, 216, 216, 0.4);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
}

.breadcrumbs {
  --gap: 10px;
  font-size: calc(16rem / 16);
  margin-block: calc(20rem / 16);
  color: rgba(45, 52, 54, 0.5);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--gap);
}
@media (max-width: 1600px) {
  .breadcrumbs {
    font-size: calc(14rem / 16 + 2 / 16 * ((100vw - 360rem / 16) / (1240 / 16)));
  }
}
@media (max-width: 1600px) {
  .breadcrumbs {
    margin-block: calc(14rem / 16 + 6 / 16 * ((100vw - 360rem / 16) / (1240 / 16)));
  }
}
.breadcrumbs ul {
  display: inline-flex;
  flex-wrap: wrap;
  gap: var(--gap);
}
.breadcrumbs li {
  display: inline-flex;
  gap: var(--gap);
}
.breadcrumbs li::after {
  content: "/";
  color: rgba(45, 52, 54, 0.5);
}
.breadcrumbs a {
  color: #2D3436;
}
.breadcrumbs + section {
  padding-top: 10px;
}

.section-article {
  padding-bottom: 0;
}
.section-article__container {
  padding-bottom: calc(55rem / 16);
}
@media (max-width: 1600px) {
  .section-article__container {
    padding-bottom: calc(15rem / 16 + 40 / 16 * ((100vw - 360rem / 16) / (1240 / 16)));
  }
}

.article {
  font-size: calc(20rem / 16);
}
.article img {
  display: block;
}
.article__header {
  text-align: center;
}
.article__title {
  font-size: calc(56rem / 16);
  margin-bottom: calc(20rem / 16);
  max-width: 1170px;
  margin-inline: auto;
}
@media (max-width: 1600px) {
  .article__title {
    font-size: calc(26rem / 16 + 30 / 16 * ((100vw - 360rem / 16) / (1240 / 16)));
  }
}
@media (max-width: 1600px) {
  .article__title {
    margin-bottom: calc(14rem / 16 + 6 / 16 * ((100vw - 360rem / 16) / (1240 / 16)));
  }
}
.article__date {
  font-size: calc(16rem / 16);
  margin-bottom: calc(30rem / 16);
  padding-bottom: 0;
  color: rgba(45, 52, 54, 0.5);
}
@media (max-width: 1600px) {
  .article__date {
    font-size: calc(14rem / 16 + 2 / 16 * ((100vw - 360rem / 16) / (1240 / 16)));
  }
}
@media (max-width: 1600px) {
  .article__date {
    margin-bottom: calc(15rem / 16 + 15 / 16 * ((100vw - 360rem / 16) / (1240 / 16)));
  }
}
.article__main-img {
  margin-block: calc(60rem / 16);
  border-radius: calc(20rem / 16);
  overflow: hidden;
}
@media (max-width: 1600px) {
  .article__main-img {
    margin-block: calc(20rem / 16 + 40 / 16 * ((100vw - 360rem / 16) / (1240 / 16)));
  }
}
@media (max-width: 1600px) {
  .article__main-img {
    border-radius: calc(10rem / 16 + 10 / 16 * ((100vw - 360rem / 16) / (1240 / 16)));
  }
}
.article__main-img img {
  margin-block: 0 !important;
}
.article__sub-title {
  font-size: calc(36rem / 16);
  margin-bottom: calc(14rem / 16);
  padding-bottom: 0;
  color: #0D1666;
  font-weight: 600;
}
@media (max-width: 1600px) {
  .article__sub-title {
    font-size: calc(20rem / 16 + 16 / 16 * ((100vw - 360rem / 16) / (1240 / 16)));
  }
}
@media (max-width: 1600px) {
  .article__sub-title {
    margin-bottom: calc(8rem / 16 + 6 / 16 * ((100vw - 360rem / 16) / (1240 / 16)));
  }
}
.article__body {
  margin-top: calc(60rem / 16);
  max-width: 900px;
  margin-inline: auto;
  color: #2D3436;
  line-height: 1.44;
}
@media (max-width: 1600px) {
  .article__body {
    margin-top: calc(20rem / 16 + 40 / 16 * ((100vw - 360rem / 16) / (1240 / 16)));
  }
}
.article__body p {
  margin-bottom: calc(26rem / 16);
  padding-bottom: 0;
}
@media (max-width: 1600px) {
  .article__body p {
    margin-bottom: calc(13rem / 16 + 13 / 16 * ((100vw - 360rem / 16) / (1240 / 16)));
  }
}
.article__body img {
  border-radius: 16px;
  margin-top: calc(38rem / 16);
  margin-bottom: calc(42rem / 16);
}
@media (max-width: 1600px) {
  .article__body img {
    margin-top: calc(24rem / 16 + 14 / 16 * ((100vw - 360rem / 16) / (1240 / 16)));
  }
}
@media (max-width: 1600px) {
  .article__body img {
    margin-bottom: calc(24rem / 16 + 18 / 16 * ((100vw - 360rem / 16) / (1240 / 16)));
  }
}
.article__body blockquote {
  padding-left: calc(20rem / 16);
  margin-top: calc(40rem / 16);
  margin-bottom: calc(40rem / 16);
  border-width: calc(5rem / 16);
  border-left: solid #285AFF;
}
@media (max-width: 1600px) {
  .article__body blockquote {
    padding-left: calc(10rem / 16 + 10 / 16 * ((100vw - 360rem / 16) / (1240 / 16)));
  }
}
@media (max-width: 1600px) {
  .article__body blockquote {
    margin-top: calc(25rem / 16 + 15 / 16 * ((100vw - 360rem / 16) / (1240 / 16)));
  }
}
@media (max-width: 1600px) {
  .article__body blockquote {
    margin-bottom: calc(25rem / 16 + 15 / 16 * ((100vw - 360rem / 16) / (1240 / 16)));
  }
}
@media (max-width: 1600px) {
  .article__body blockquote {
    border-width: calc(3rem / 16 + 2 / 16 * ((100vw - 360rem / 16) / (1240 / 16)));
  }
}

.list-card-post-row {
  row-gap: calc(60rem / 16);
}
@media (max-width: 1600px) {
  .list-card-post-row {
    row-gap: calc(30rem / 16 + 30 / 16 * ((100vw - 360rem / 16) / (1240 / 16)));
  }
}
@media only screen and (min-width: 1400px) {
  .list-card-post-row {
    --bs-gutter-x: 2.19rem;
  }
  .list-card-post-row > * {
    --bs-gutter-x: 2.19rem;
  }
}
.list-card-post-row .card-post__bg {
  aspect-ratio: 1/0.6512;
  border-radius: calc(16rem / 16);
}
@media (max-width: 1600px) {
  .list-card-post-row .card-post__bg {
    border-radius: calc(8rem / 16 + 8 / 16 * ((100vw - 360rem / 16) / (1240 / 16)));
  }
}

.card-post {
  font-size: calc(18rem / 16);
  gap: calc(10rem / 16);
  color: #2d3436;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
@media (max-width: 1600px) {
  .card-post {
    gap: calc(5rem / 16 + 5 / 16 * ((100vw - 360rem / 16) / (1240 / 16)));
  }
}
.card-post:hover .card-post__bg img {
  scale: 1.05;
}
.card-post__bg {
  margin-bottom: calc(24rem / 16);
  aspect-ratio: 1/0.6512;
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
}
@media (max-width: 1600px) {
  .card-post__bg {
    margin-bottom: calc(12rem / 16 + 12 / 16 * ((100vw - 360rem / 16) / (1240 / 16)));
  }
}
.card-post__bg img {
  display: block;
  position: absolute;
  width: 100%;
  object-fit: cover;
  height: auto;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  transition: scale 0.7s ease;
}
.card-post__date {
  font-size: 1rem;
  color: #2d3436;
  opacity: 0.5;
}
.card-post__date a {
  color: #2d3436;
}
.card-post__title {
  font-size: calc(24rem / 16);
  margin-bottom: calc(16rem / 16);
  color: #0D1666;
  font-weight: 600;
}
@media (max-width: 1600px) {
  .card-post__title {
    font-size: calc(18rem / 16 + 6 / 16 * ((100vw - 360rem / 16) / (1240 / 16)));
  }
}
@media (max-width: 1600px) {
  .card-post__title {
    margin-bottom: calc(10rem / 16 + 6 / 16 * ((100vw - 360rem / 16) / (1240 / 16)));
  }
}
.card-post__description {
  line-height: 1.44;
}
.card-post__link {
  font-weight: 600;
  color: #285AFF;
  opacity: 0.9;
}
.card-post__link:hover {
  opacity: 1;
  text-decoration: underline;
}

.section-other-news {
  padding-top: calc(100rem / 16);
}
@media (max-width: 1600px) {
  .section-other-news {
    padding-top: calc(30rem / 16 + 70 / 16 * ((100vw - 360rem / 16) / (1240 / 16)));
  }
}
.section-other-news__header {
  margin-bottom: calc(45rem / 16);
  max-width: 452px;
  color: #2D3436;
}
@media (max-width: 1600px) {
  .section-other-news__header {
    margin-bottom: calc(10rem / 16 + 35 / 16 * ((100vw - 360rem / 16) / (1240 / 16)));
  }
}
/*# sourceMappingURL=landing-article-page.css.map */
