@charset "UTF-8";
:root {
    --background: #f1f1f1;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Manrope', sans-serif;
    line-height: 1;
    font-size: 14px;
    font-weight: 500;
}

body {
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    background: #fafafa;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    line-height: 1;
}

html {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body, h1, h2, h3, h4, h5, h6, p {
    margin: 0;
}

a, body, h1, h2, h3, h4, h5, p {
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

*, :after, :before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*:focus {
    outline: none;
}

*::placeholder {
    font-size: 14px;
}

img {
    max-width: 100%;
}

figure {
    margin: 0;
    padding: 0;
}

textarea {
    font-family: 'Manrope', sans-serif;
}

.scroll::-webkit-scrollbar {
    width: 5px;
    right: -10px;
    margin-left: -5px;
}

.scroll_black::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.scroll_black::-webkit-scrollbar-thumb {
    background: #333;
}

.scroll_black::-webkit-scrollbar-thumb:hover {
    background: #000;
}

.scroll_gold::-webkit-scrollbar-track {
    background: transparent;
}

.scroll_gold::-webkit-scrollbar-thumb {
    background: #826bef;
}

.scroll_gold::-webkit-scrollbar-thumb:hover {
    background: #826bef;
}

/* FLEX */

/* flexbox libruary */

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.inline-flex {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.flex-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.flex-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.flex-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.flex-column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

.justify-content-start {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.justify-content-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.justify-content-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.justify-content-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.justify-content-around {
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.align-items-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.align-items-end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.align-items-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.align-items-baseline {
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
}

.align-items-stretch {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.align-self-start {
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.align-self-end {
    -ms-flex-item-align: end;
    align-self: flex-end;
}

.align-self-center {
    -ms-flex-item-align: center;
    align-self: center;
}

.align-self-baseline {
    -ms-flex-item-align: baseline;
    align-self: baseline;
}

.align-self-stretch {
    -ms-flex-item-align: stretch;
    align-self: stretch;
}

.flex-nowrap {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.flex-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
}

.order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}

.order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
}

.order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
}

.align-content-start {
    -ms-flex-line-pack: start;
    align-content: flex-start;
}

.align-content-end {
    -ms-flex-line-pack: end;
    align-content: flex-end;
}

.align-content-center {
    -ms-flex-line-pack: center;
    align-content: center;
}

.align-content-between {
    -ms-flex-line-pack: justify;
    align-content: space-between;
}

.align-content-around {
    -ms-flex-line-pack: distribute;
    align-content: space-around;
}

.align-content-stretch {
    -ms-flex-line-pack: stretch;
    align-content: stretch;
}


/* END FLEX*/


/* SELECT2 */

span.msg,
span.choose {
    color: #555;
    padding: 5px 0 10px;
    display: inherit
}

.select2-search {
    display: block;
}

.select2-container {
    box-sizing: border-box;
    display: inline-block;
    margin: 0;
    position: relative;
    vertical-align: middle;
    width: 100% !important;
}

.select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
}

.select2-container .select2-selection--single .select2-selection__clear {
    position: relative
}

.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-block;
    overflow: hidden;
    padding-left: 8px;
    text-overflow: ellipsis;
    white-space: nowrap
}

.select2-container .select2-search--inline {
    float: left
}

.select2-container .select2-search--inline .select2-search__field {
    box-sizing: border-box;
    border: none;
    font-size: 100%;
    margin-top: 5px;
    padding: 0
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
    -webkit-appearance: none
}

.select2-dropdown {
    background-color: white;
    border: 1px solid #cbd5e1;
    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 {
    display: flex;
    align-items: center;
    padding: 15px;
    font-size: 14px;
}

.select2-results__option[aria-selected] {
    cursor: pointer
}

.select2-container--open .select2-dropdown {
    left: 0;
    min-width: 320px;
}

.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 {
    padding: 10px
}

.select2-search--dropdown .select2-search__field {
    padding: 4px;
    width: 100%;
    box-sizing: border-box;
    font-size: 14px;
    height: 40px;
}

.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: #fff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 14px;
    padding: 10px 15px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 2;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #999
}

.select2-container--default .select2-selection--single .select2-selection__arrow svg {
    height: 16px;
    width: 16px;
    cursor: pointer;
    transition: transform .3s ease-in-out;
    transform: rotate(-90deg);
    margin: auto;
}

.select2-container--open .select2-selection__arrow svg {
    transform: rotate(90deg) !important;
}

.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.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
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    padding: 0 5px;
    width: 100%
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
    list-style: none
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-top: 5px;
    margin-right: 10px;
    padding: 1px
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #999;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 2px
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #333
}

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
    float: right
}

.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__remove {
    margin-left: 2px;
    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-radius: 0;
    border: 1px solid #cbd5e1 !important;
}

.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[role=group] {
    padding: 0
}

.select2-container--default .select2-results__option[aria-disabled=true] {
    color: #999
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #ddd
}

.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--highlighted[aria-selected] {
    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: 46px
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-right: 10px
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
    color: #999
}

.select2-selection__arrow {
    display: flex;
}

.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
}

.select2-container--classic .select2-selection--multiple:focus {
    border: 1px solid #5897fb
}

.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
    list-style: none;
    margin: 0;
    padding: 0 5px
}

.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;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
    color: #888;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 2px
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #555
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
    float: right;
    margin-left: 5px;
    margin-right: auto
}

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
    margin-left: 2px;
    margin-right: auto
}

.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[role=group] {
    padding: 0
}

.select2-container--classic .select2-results__option[aria-disabled=true] {
    color: grey
}

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
    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
}

/* END SELECT2 */


* {
    box-sizing: border-box;
}

button {
    border: none;
}

.red {
    color: red;
}

.center {
    text-align: center !important;
}

.right {
    text-align: right !important;
}

.block {
    display: block;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
    max-width: 100%;
}

.container-fluid {
    padding-left: 15px;
    padding-right: 15px;
}

svg {
    max-width: 100%;
    max-height: 100%;
}

.color-white {
    color: white;
}

.container_fluid {
    padding-left: 15px;
    padding-right: 15px;
}

ul, li {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

a, a:hover, a:active {
    color: inherit;
    text-decoration: none;
}

.input_wrap p {
    margin-bottom: 10px;
}

.hidden {
    display: none !important;
}

button, button:active, button:focus {
    border: none;
    outline: none;
}

header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    transition: background-color .3s;
    z-index: 999;
    border-bottom: 1px solid #91919152;
}


.header-white header {
    background: #fff;
    box-shadow: #efefef 0 1px 0 0;
}

.header-active header {
    background: #fff;
}

.header--inner {
    position: relative;
    display: flex;
    align-items: center;
    height: 70px;
}

.header--right {
    display: flex;
    align-items: center;
    position: relative;
    margin-left: auto;
    z-index: 2;
}

.header--right_nav_buttons {
    display: none;
    margin-right: 15px;
}

.header--right_nav_buttons ul {
    display: flex;
    gap: 5px;
}

.header--right_nav_auth ul {
    display: flex;
    align-items: center;
}

.header--right_nav_auth_desktop {
    display: none;
}

.header--right_nav_auth_mobile {
    display: flex;
    width: 70px;
    height: 70px;
    margin-right: -15px;
}

.header--right_nav_auth_mobile svg {
    margin: auto;
    width: 35px;
    height: 35px;
}

.header--right_nav_link {
    font-size: 16px;
    font-weight: 500;
    padding: 0 10px;
}

.header--right_nav_link:last-child {
    padding-right: 0;
}

.modal--window {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.modal--window_overlay {
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(30, 36, 38, .6);
}

.modal--window_content {
    width: 100%;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    top: 90px;
    background-color: #fff;
    box-shadow: 0 2px 10px 0 #0000001a;
    box-sizing: border-box;
    left: 50%;
    max-height: calc(90vh - 90px);
    overflow: auto;
    position: absolute;
    transform: translateX(-50%);
    padding: 50px;
}

.modal--window_close {
    position: absolute;
    right: 16px;
    top: 16px;
    cursor: pointer;
}

.modal--window_close svg {
    width: 16px;
    height: 16px;
}

.login--modal, .recover--modal, .register--modal {
    width: 300px;
    max-width: 100%;
    margin: auto;
}

.login--modal_header {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.login--modal_header-item {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    margin-left: 10px;
    margin-right: 10px;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.login--modal_header-item.active {
    color: #ff0046;
    border-bottom: 2px solid #ff0046;
}

.login--modal_form_title {
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    font-size: 10px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    color: #333;
}

.btn {
    display: -ms-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    outline: none;
    box-sizing: border-box;
    transition: .2s;
    cursor: pointer;
    border: 1px solid transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.btn--xl {
    font-size: 15px;
    height: 50px;
    border-radius: 25px;
    position: relative;
    padding-left: 34px;
    padding-right: 34px;
    gap: 10px;
    font-weight: 700;
}

.btn--xl svg {
    height: 22px;
    width: 22px;
    margin-left: -4px;
}

.btn--md {
    font-size: 14px;
    height: 40px;
    border-radius: 20px;
    position: relative;
    padding-left: 24px;
    padding-right: 24px;
    gap: 8px;
    font-weight: 700;
}

.btn--md svg {
    height: 22px;
    width: 22px;
    margin-left: -4px;
}

.btn--xs {
    font-size: 13px;
    line-height: 34px;
    border-radius: 17px;
    position: relative;
    padding-left: 15px;
    padding-right: 15px;
    gap: 5px;
}

.btn--xs svg {
    height: 20px;
    width: 20px;
    margin-left: -4px;
}


.btn--black {
    background-color: #0f0f0f;
    border: 1px solid #0f0f0f;
    color: #fff !important;
}

.btn--black:hover {
    background-color: transparent;
    border: 1px solid #19110b;
    color: #000 !important;
}

.btn--bordered-black {
    border: 1px solid #0f0f0f;
    color: #0f0f0f;
    transition: opacity .3s;
}

.btn--bordered-black:hover {
    opacity: 0.7;
}

.btn--bordered-blue {
    border: 1px solid #2156b9;
    color: #2156b9;
    transition: opacity .3s;
}

.btn--bordered-blue:hover {
    opacity: 0.7;
    color: #2156b9;
}

.btn--bordered-white {
    border: 1px solid #fff;
    color: #fff;
    transition: opacity .3s;
}

.btn--bordered-white:hover {
    color: #fff;
    opacity: 0.7;
}

.btn--bordered-white svg{
    fill: #fff;
}
.btn--black svg {
    fill: #fff;
}

.btn--black svg:hover {
    fill: #000;
}


.btn--blue {
    background-color: #2060df;
    border-color: #2060df;
    color: #f6f9fe;
    text-shadow: 0 1px 0 #194cb3;
}

.btn--blue:hover {
    background-color: #2857d8;
    border-color: #2857d8;
    color: #f6f9fe;
}

.btn--blue svg {
    fill: #fff;
}

.btn--white {
    border: 1px solid #dadce0;
    background: #fff;
    color: #000;
}

.btn--white:hover {
    background: #f8f8f8;
    color: #111;
}

.btn--white svg {
    fill: #2060df;
    transition: fill .3s;
}

.btn--white:hover svg {
    fill: #2857d8;
}

.btn:disabled {
    background: #999;
    pointer-events: none;
}

.btn--green {
    background: green;
    color: #fff;
}

.btn--green:hover {
    background: #014901;
}

.btn--green svg {
    fill: #fff;
}

.btn--red {
    background: red;
    color: #fff;
}

.btn--red:hover {
    background: #c00202;
}

.btn--red svg {
    fill: #fff;
}


.button_bordered_green {
    border: 1px solid green;
    background: transparent;
    color: green;
}

.button_bordered_green:hover {
    border: 1px solid #014901;
    color: #014901;
}

.button_bordered_green svg {
    fill: green;
}

.button_bordered_green:hover svg {
    fill: #014901;
}


.login--modal_form_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.login--modal_form_fb, .login--modal_form_gm {
    color: #fff;
    font-weight: 700;
}

.login--modal_form_fb:hover, .login--modal_form_gm:hover {
    color: #fff;
    opacity: 0.8;
}

.login--modal_form_gm {
    background: #4285f4;
}

.login--modal_form_fb {
    background: #3f5aa9;
    margin-bottom: 20px;
}

.login--modal_form .button {
    width: 100%;
}

.btn--bordered {
    background: transparent;
}

input {
    outline: none;
    border-radius: 8px;
    border: 1px solid #c8cdcd;
}

textarea {
    outline: none;
    border: 1px solid #c8cdcd;
    resize: none;
    width: 100%;
}

.button:not(:disabled) {
    cursor: pointer;
}

.input_wrap {
    margin-bottom: 15px;
}

.input_wrap input {
    height: 40px;
    padding: 8px;
    width: 100%;
}

.login--modal_forgot {
    cursor: pointer;
    margin-top: 20px;
    text-align: center;
    font-weight: 500;
    font-size: 13px;
}

.modal--window_modals {
    display: none;
}

.recover--modal_title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.recover--modal_text {
    font-size: 13px;
    margin-bottom: 15px;
}

.formLoading {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    background: rgba(255, 255, 255, 0.62);
    z-index: 999;
}

.formLoading:before {
    animation: spin 1.8s ease-in-out infinite;
    border: 4px solid #fff;
    border-radius: 50%;
    border-top-color: #0f2d37;
    content: "";
    height: 44px;
    width: 44px;
    margin: auto;
}

.header--right_menu_body {
    max-height: 400px;
    overflow: auto;
}

.header--right_menu_body .formLoading {
    position: relative;
    padding: 50px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }
    to {
        transform: rotate(1turn)
    }
}

.error_wrap {
    position: relative;
}

.error_wrap input, .error_wrap select, .error_wrap textarea {
    border-color: #dc0000 !important;
}

.input--error {
    display: block;
    margin-top: 5px;
    color: #dc0000;
    font-size: 12px;
}

.form--success, .form--error, .form--warning {
    display: block;
    margin-bottom: 10px;
    font-size: 12px;
}

.modal--window .form--success, .modal--window .form--error, .modal--window .form--warning {
    text-align: center;
}

.form--success {
    color: green;
}

.form--error {
    color: #dc0000;
}

.form--warning {
    color: #dcb700;
}

.account {
    flex: 1;
    margin-top: 70px;
}

.account-menu {
    width: 100%;
}

.account h1 {
    margin-bottom: 20px;
    font-size: 28px;
    text-align: center;
}

.account-menu_link {
    text-align: center;
    color: #1567c9;
    cursor: pointer;
    margin-bottom: 15px;
}

.account-main {
    flex: 1;
    width: 100%;
}

.form {
    margin-bottom: 30px;
}

.account-menu_user {
    margin-bottom: 25px;
}

.account-menu_user-name {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
}

.account-main_inner h1 {
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    padding: 0 40px;
    text-align: center;
    color: #333;
    margin-top: 20px;
}

.account-main_inner h2 {
    font-size: 21px;
    margin-bottom: 30px;
    font-weight: 700;
}

.account-main_inner h3 {
    font-weight: 500;
    margin-bottom: 20px;
}

.account-main_inner h4 {
    margin-bottom: 15px;
}

.account-main_inner p {
    color: #64748b;
    margin-bottom: 20px;
}

.account-menu_item {
    display: flex;
    align-items: center;
    padding: 20px 40px;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
    transition: background-color .3s;
    background: #fff;
}

.account-menu_sub_item {
    padding-left: 55px;
}

.account-menu_item:last-child {
    border: none;
}

.account-menu_item:hover, .account-menu_item.active {
    background: #f7faff;
}

.account-menu_item--image {
    display: flex;
    margin-right: 15px;
}

.account-menu_item--image svg {
    height: 18px;
    width: 18px;
    margin: auto;
    fill: #64748b;
}

.account-menu_item--right {
    flex: 1;
}

.account-menu_item--title {
    font-weight: 500;
    font-size: 14px;
    text-align: center;
}

.account-menu_item--description {
    font-weight: 400;
    color: #64748b;
    line-height: 1.2;
}

footer {
    padding: 50px 0;
    background: #333;
}

.footer--copywrite {
    color: #dadada99;
    text-align: center;
}

.footer--links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.footer--links a {
    color: #fff;
}

.footer--links a:hover {
    color: #f6f6f6;
}

.form--inner p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.25rem;
}

.form--inner p a {
    color: #333;
}

.form--inner .input_wrap p {
    margin-bottom: 10px;
    margin-top: 10px;
    line-height: 1.5;
}

.pos--relative {
    position: relative;
}

.input_wrap--col {
    position: relative;
}

.input_wrap--col2 {
    display: flex;
    flex-wrap: wrap;
}

.input_wrap--col2 .input_wrap:first-child {
    margin-right: 20px;
}

.input_wrap--col2 .input_wrap:last-child {
    margin-left: 20px;
}

.input_wrap--col2 .input_wrap {
    width: calc(50% - 20px);
}

.form--separator {
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 20px;
}

.form label {
    display: block;
    color: #334055;
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 15px;
}

.form input:not([type='file']), .form textarea, .form select {
    background: #fff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 14px;
    padding: 10px 15px;
    width: 100%;
    line-height: 2;
    height: auto;
}

.form select {
    background: url(/media/images/static/arrow-down.svg) right center no-repeat;
    background-size: 15px;
    padding-right: 22px;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    color: #000;
}

.form input:is([type='checkbox']), .form input:is([type='radio']) {
    height: 25px;
}

.form input:is([type='checkbox']), .form input:is([type='radio']) {
    width: 20px;
    height: 20px;
    margin: 0 10px 0 0;
}

.form textarea {
    height: 100px;
    resize: none;
    font-family: 'Manrope', sans-serif;
}

.form .input_radio {
    display: flex;
    align-items: center;
    flex-basis: auto;
}

.form--phone {
    display: flex;
    align-items: center;
}

.form--phone .country {
    border-right: 1px solid #cbd5e1;;
}

.form .input_radio label {
    margin: 0 0 0 10px;
}

.form .input_checkbox label {
    margin: 0;
}

.form--username {
    position: relative;
}

.form--image {
    margin: 0;
    border: 1px solid #cbd5e1;
    border-radius: 50px;
}

.form--image.error_wrap, .input_files_item.error_wrap {
    border: 1px solid #b32727;
}

.form--image .form--image_btn {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 30px;
    display: flex;
    background: #fff;
    border-radius: 15px;
}

.form--image span svg {
    height: 20px;
    width: 20px;
    margin: auto;
    fill: #000;
}

.form--image .input_files_item_error {
    position: relative;
}

.form--username input {
    padding-left: 155px;
}

.form--username span {
    position: absolute;
    left: 1px;
    top: 1px;
    bottom: 1px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    background: #f8fafc;
    border-top-left-radius: 7px;
    border-bottom-left-radius: 7px;
    color: #64748b;
    border-right: 1px solid #cbd5e1;;
}

.account-menu_user-image {
    margin: 0 auto 15px;
    border: 1px solid #cbd5e1;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    height: 100px;
    width: 100px;
    background-size: 100% !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}


.account-image_btn {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 30px;
    display: flex;
    background: #fff;
    border-radius: 15px;
}

.account-image_btn svg {
    height: 20px;
    width: 20px;
    margin: auto;
    fill: #000;
}

.icon {
    position: relative;
    pointer-events: none;
}

.user-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
    background: #8842D0;
}

.user-image_small {
    height: 40px;
    width: 40px;
}

.user-image_medium {
    height: 100px;
    width: 100px;
}

.user-image img {
    background-color: #e4e6ea;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    width: 100%;
}

.header--right_user {
    margin-left: 15px;
}

.header--right_user_btn {
    cursor: pointer;
    user-select: none;
}

.header--right_nav_btn {
    display: block;
    position: relative;
    user-select: none;
}

.header--right_nav_btn_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    height: 40px;
    width: 40px;
    border-radius: 50%;
}

.header--right_nav_btn svg {
    width: 24px;
    height: 24px;
    fill: #000;
}

.not-found {
    flex: 1;
}

.not-found .inner {
    padding: 100px 0;
}

.not-found h1 {
    font-size: 70px;
    margin-bottom: 30px;
}

.not-found h2 {
    font-size: 30px;
}

.company_services_add_btn {
    margin-bottom: 20px;
}

.company_service {
    margin-top: 15px;
    margin-bottom: 15px;
    position: relative;
}

.company_service_remove {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    cursor: pointer;
    display: flex;
    width: 46px;
}

.company_service_remove svg {
    width: 24px;
    height: 24px;
    fill: #5f6368;
    margin: auto;
}

.company_service input {
    padding-right: 46px;
}

.company--form-logo {
    margin: 0 0 15px;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    height: 100px;
    width: 100px;
    background-size: 100% !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}


.company--form-logo_btn {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 30px;
    display: flex;
    background: #fff;
    border-radius: 15px;
}

.company--form-logo_btn svg {
    height: 20px;
    width: 20px;
    margin: auto;
    fill: #000;
}


.company-image_medium {
    height: 100px;
    width: 100px;
}

.company-image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.company-image img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    width: 100%;
}

.my--company h4 {
    margin-top: 15px;
}

.my--company_inner {
    position: relative;
}

.my--company_top {
    display: flex;
    margin-bottom: 20px;
    height: 100px;
}

.my--company_logo {
    margin-right: 15px;
}

.my--company_title {
    font-weight: 800;
    font-size: 22px;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-transform: uppercase;
}

.my--company_category {
    color: #666;
    margin-bottom: 10px;
}

.my--company_location {
    display: flex;
    align-items: center;
}

.my--company_location svg {
    height: 20px;
    width: 20px;
    fill: #666;
    margin-right: 5px;
}

.my--company_buttons {
    display: flex;
    flex-wrap: wrap;
}

.my--company_button {
    width: 33.333%;
    margin-bottom: 5px;

}

.my--company_button a {
    text-align: center;
    display: block;
    height: 100%;
    color: #000;
    margin-right: 5px;
    padding: 10px;
    border: 1px solid #efefef;

}

.my--company_button:last-child a {
    margin-right: 0;
}

.my--company_button a:hover {
    background: #f8f8f8;
}

.my--company_button div {
    line-height: 1.3;
    font-size: 13px;
}

.my--company_button svg {
    margin-bottom: 5px;
    height: 26px;
    width: 26px;
    fill: #4285f4;
}

.my--company_contacts {
    display: flex;
}

.my--company_top_right_buttons {
    display: flex;
    flex-direction: column;
    align-items: end;
    top: 30px;
    right: 30px;
    margin-bottom: 10px;
}

.my--company_status {
    padding: 5px 10px;
    border: 1px solid;
    border-radius: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}


.my--company_status_2 {
    color: #ff9900;
    border-color: #ff9900;
}

.my--company_status_1 {
    color: green;
    border-color: green;
}

.my--company_status_0 {
    color: red;
    border-color: red;
}

.my--company_info {
    max-width: 300px;
    overflow: hidden;
}

.my--company_warnings {
    margin-bottom: 30px;
}

.my--company_warning_warning {
    display: flex;
    align-items: center;
}

.my--company_warning svg {
    fill: #ff9900;
}

.my--company_warning div {
    color: #ff9900;
}

.my--company_error svg {
    fill: red;
}

.my--company_error div {
    color: red;
}

.my--company_photos {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}

.my--company_photo {
    user-select: none;
}

.my--company_photo_inner {
    position: relative;
    display: flex;
    background: #fff;
    width: 100px;
    height: 100px;
    border: 1px solid #ccc;
    margin-right: 10px;
    margin-bottom: 10px;
}

.my--company_photo_inner img {
    object-fit: contain;
}

.my--company_photo_remove_btn {
    position: absolute;
    right: -10px;
    top: -10px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    background: #fff;
    border-radius: 50%;
}

.my--company_photo_remove_btn svg {
    fill: red;
}

.my--company_photo_remove_btn:hover svg {
    fill: #a60202;
}

.my--company_photo_error {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    background: red;
    color: #fff;
    font-size: 12px;
}

.my--company_photo_success {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    background: green;
    color: #fff;
    font-size: 12px;
    text-align: center;
}

.popup-errors {
    position: fixed;
    right: 10px;
    top: 10px;
    max-height: calc(100vh - 20px);
    overflow: auto;
    z-index: 99999;
}

.popup-error {
    display: flex;
    align-items: center;
    position: relative;
    padding: 20px;
    border-left: 10px solid #fd6363;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 15px #515c621a;
    -webkit-box-shadow: 0 0 15px #515c621a;
    margin-bottom: 10px;
    width: 300px;
    max-width: calc(100vw - 20px);
}

.popup-error svg {
    fill: #fd6363;
    height: 30px;
    width: 30px;
    margin-right: 20px;
}

.popup-error_error {
    flex: 1;
}

.popup-error_title {
    font-size: 16px;
    margin-bottom: 10px;
}

.popup-error_text {
    color: #999;
    font-size: 14px;
}

.popup-success {
    display: flex;
    align-items: center;
    position: relative;
    padding: 20px;
    border-left: 10px solid #42a43b;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 15px #515c621a;
    -webkit-box-shadow: 0 0 15px #515c621a;
    margin-bottom: 10px;
    width: 300px;
    max-width: calc(100vw - 20px);
}

.popup-success svg {
    fill: #42a43b;
    height: 30px;
    width: 30px;
    margin-right: 20px;
}

.popup-success_success {
    flex: 1;
}

.popup-success_title {
    font-size: 16px;
    margin-bottom: 10px;
}

.popup-success_text {
    color: #999;
    font-size: 14px;
}

table {
    border-collapse: collapse;
    width: 100%;
}

thead {
    color: #666;
}

th, td {
    padding: 10px;
    text-align: left;
    line-height: 1.3;
}

.premium {
    padding: 10px 15px;
    background: #f1ad2a;
    display: inline-block;
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
}

.header--right_menu:before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99998;
}

.header--right_menu {
    position: fixed;
    right: 15px;
    top: 70px;
    display: none;
    width: 250px;
    z-index: 99999;
}

.header--right_menu.active {
    display: block;
}

.header--right_menu_inner {
    position: relative;
    background: #fff;
    box-shadow: 0 0 15px #515c621a;
    -webkit-box-shadow: 0 0 15px #515c621a;
    z-index: 99999;
    border: 1px solid #e6e6e6;
}

.header--right_menu_inner ul {
    display: flex;
    flex-direction: column;
}

.header--right_menu_inner li {

}

.header--right_menu_inner li svg {
    height: 18px;
    width: 18px;
    margin: auto;
    fill: #64748b;
}

.header--right_menu_inner li span {
    flex: 1;
    font-weight: 500;
    font-size: 14px;
    margin-left: 10px;
}

.header--right_menu_inner li a {
    display: flex;
    align-items: center;
    padding: 15px 0;
}

.header--right_menu_inner li a:hover {
    background: #f8f8f8;
}

.header--right_user_menu li a {
    padding: 15px 20px;
}

.header--right_help_menu li a {
    padding: 15px 20px;
}

.header--right_menu_top {
    display: flex;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #ccc;
}

.header--right_nav_btn .count {
    min-width: 20px;
    background: red;
    font-size: 10px;
    padding: 0 5px;
    color: #fff;
    position: absolute;
    height: 20px;
    top: -5px;
    right: -9px;
    line-height: 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
}

.header--right_user_menu .header--right_menu_body {
    padding: 0;
}

.header--right_menu_top svg {
    height: 20px;
    width: 20px;
    fill: #666;
    margin-right: 5px;
}

.header--right_menu_top figure {
    margin-right: 10px;
}

.header--right_menu_top span {
    color: #666;
    font-weight: 500;
}

.buttonLoading {
    pointer-events: none;
}

.buttonLoading .svgLoading {
    display: block;
    -webkit-animation: rotating 1s linear infinite;
    -moz-animation: rotating 1s linear infinite;
    -ms-animation: rotating 1s linear infinite;
    -o-animation: rotating 1s linear infinite;
    animation: rotating 1s linear infinite;
}

.buttonLoading svg:not(.svgLoading) {
    display: none;
}

@-webkit-keyframes rotating /* Safari and Chrome */
{
    from {
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotating {
    from {
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


.my--notification_item {
    font-weight: 500;
    padding: 20px;
    border-bottom: 1px solid #ccc;
    display: flex;
}

.my--notification_item:last-child {
    border: none;
}

.my--notification_item figure {
    border-radius: 50%;
    margin-right: 10px;
}

.my--notification_item_text {
    font-weight: 400;
    flex: 1;
    line-height: 1.3;
}

.my--notification_name {
    margin-bottom: 5px;
}

.my--notification_date {
    color: #999;
    font-size: 12px;
}

.my--notification_item_text p span {
    margin-left: 5px;
}

.my--notification_item.new {
    background: #ebf2f5;
}

.my--notifications {
    margin-top: 30px;
    min-height: 100vh;
}

.my--notifications_empty {
    text-align: center;
    padding: 20px;
}

.my--notification_item:hover {
    background: #f8f8f8 !important;
}

.menu_active {
}

.header--right_notifications_menu {
    width: calc(100vw - 60px);
}

.company_social_add_btn {
    margin-bottom: 20px;
}

.company_social {
    margin-bottom: 15px;
    position: relative;
    display: flex;
    align-items: center;
}

.company_social_left {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
}

.company_social_left select {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}

.company_social_remove {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    cursor: pointer;
    display: flex;
    width: 46px;
}

.company_social_remove svg {
    width: 24px;
    height: 24px;
    fill: #5f6368;
    margin: auto;
}

.company_social input {
    padding-left: 110px !important;
    padding-right: 46px !important;
}

.company_social .select2-container--default .select2-selection--single {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border: none;
    border-right: 1px solid #cbd5e1;
    height: 48px;
    margin-top: 1px;
    margin-left: 1px;
    padding-right: 5px;
}

.company_social .input--error {
    position: absolute;
    bottom: -5px;
    right: 40px;
    background: #fff;
    padding: 0 10px;
}

.company_social_right {
    flex: 1;
}

.account_back {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    display: flex;
    width: 40px;
}

.account_back svg {
    height: 30px;
    width: 30px;
    margin: auto;
    fill: #333
}

.account-main_top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 20px;
    background: #fff;
    border-bottom: 1px solid #ccc;
}

#selectPhotos {
    user-select: none;
}

#selectPhotos .inner {
    position: relative;
    display: flex;
    padding: 8px;
    margin: 5px;
    border: 1px solid #ccc;
    background: #fff;
    height: 168px;
}

.photos--modal {
    width: 890px;
    max-width: 100%;
}

.my--company_status_text {
    text-align: right;
    margin-bottom: 10px;
    line-height: 1.5;
}

.account--menu {
    display: none;
    background: #fff;
    position: relative;
}

.account--menu .inner {
    display: flex;
}

.account--menu a {
    line-height: 50px;
    display: block;
    padding: 0 15px;
}

.account--menu a:first-child {
    padding-left: 0;
}


.phone_input {
    display: flex;
    align-items: center;
}

.phone_input--country {
    width: 150px;
}

.phone_input--country select {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.phone_input--code {
    line-height: 2;
    font-size: 14px;
    padding: 10px 8px 10px 15px;
    color: #000;
    border-top: 1px solid #cbd5e1;
    border-bottom: 1px solid #cbd5e1;
    display: flex;
    align-items: center;
}

.phone_input--phone {
    flex: 1;
}

.phone_input--phone input {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-left: none !important;
    padding-left: 0 !important;
}


.phone_input.error_wrap * {
    border-color: red !important;
}

.phone_input--phone .input--error {
    position: absolute;
    left: 0;
}

.header--logo {
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 2;
}

.header--logo a {
    display: flex;
    height: 100%;
    align-items: center;
    width: 60px;
    margin: auto;
}

.header--logo span {
    display: none;
    line-height: 18px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
}


.header--logo img, .header--logo svg {
    margin: auto;
    width: 40px;

}

.header--burger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    gap: 8px;
    margin-left: -15px;
    position: relative;
    z-index: 3;
}

.header--burger svg {
    width: 40px;
    height: 40px;
    margin: auto;
    transition: opacity .5s;
}

.header--burger .header--burger_active {
    display: none;
}

.mobile_active .header--burger .header--burger_na {
    display: none;
}

.mobile_active .header--burger .header--burger_active {
    display: block;
}


.top--section {
    background: var(--background);
    padding-top: 125px;
    padding-bottom: 50px;
    position: relative;
    z-index: 1;
}

.top--section-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.top--section-background:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, .7) 0, rgba(0, 0, 0, .2) 48.44%, rgba(0, 0, 0, .7) 100%);
    z-index: 2;
}

.top--section-background figure {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.top--section-background figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.top--section-background video {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.top--section .container {
    position: relative;
    z-index: 2;
}

.middle--section {
    flex: 1;
    margin-bottom: 50px;
    z-index: 2;
}

.middle--section .container {
    background: #fff;

}

.home .header--logo svg {
    fill: #fff;
}

.home .header--logo span {
    color: #fff;
}

.home .header--menu ul li a {
    color: #fff;
}

.home .header--right-sign {
    color: #fff;
}

.home .header--right-join {
    border-color: #fff;
    color: #fff;
}

.home .header--right_nav_auth_mobile svg {
    fill: #fff;
}

.home .header--burger svg {
    fill: #fff;
}

.home header {
    border-bottom: 1px solid #ffffff52;
}

.home .header--right_nav_btn_wrap svg {
    fill: #fff;
}

.header-active .header--logo svg {
    fill: #000;
}

.header-active .header--logo span {
    color: #000;
}

.header-active .header--menu ul li a {
    color: #000;
}

.header-active .header--right-sign {
    color: #000;
}

.header-active .header--right-join {
    color: #000;
    border-color: #000;
}

.header-active .header--right_nav_auth_mobile svg {
    fill: #000;
}

.header-active .header--burger svg {
    fill: #000;
}

.header-active header {
    border-bottom: 1px solid #91919152;
}

.header-active .header--right_nav_btn_wrap svg {
    fill: #000;
}

.mobile_active .header--menu ul li a {
    color: #000;
}




.header--menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--background);
    padding: 20px;
    transform: translateX(-100%);
    transition: transform .5s;
}

.mobile_active {
    overflow: hidden;
}

.mobile_active .header--menu {
    transform: translateX(0);
}

.header--menu ul li a {
    display: block;
    padding-left: 15px;
    padding-right: 15px;
    font-weight: 700;
    font-size: 18px;
    line-height: 55px;
    transition: opacity .3s;
}

.header--menu ul li a:hover {
    opacity: .7;
}

.header--right-sign {
    display: block;
    padding-left: 30px;
    padding-right: 30px;
    font-weight: 700;
    font-size: 16px;
    line-height: 80px;
    transition: opacity .3s;
    cursor: pointer;
}

.header--right-sign:hover {
    opacity: .7;
}

.header--right-join {
    font-weight: 700;
    font-size: 16px;
}


.section--not-found {
    flex: 1;
}

.section--not-found .inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.section--not-found p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 40px;
}

.section--not-found a {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.color-blue {
    color: #3a7af3;
}

.section--title {
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.4;
}

.section--title-text {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    line-height: 1.9;
    margin-bottom: 20px;
    color: rgba(0, 0, 0, 0.6);
}

.section--sub-title {
    text-transform: uppercase;
    color: #3a7af3;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}

.services--items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px;
}

.services--item {
    width: 100%;
    background: #fff;
    overflow: hidden;
    border-radius: 10px;
}

.services--item-text {
    font-size: 16px;
    padding: 15px 10px;
    font-weight: 600;
    text-align: center;
}

.services--item h3 {
    font-size: 26px;
    font-weight: 700;
    padding-bottom: 10px;
    border-bottom: 1px solid #333333;
    margin-bottom: 20px;
}

.companies--section-filters {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
    gap: 15px;
}

.companies--section-filter {
    width: calc(50% - 8px);
}

.companies--section-filter .select2-selection__placeholder {
    color: #000 !important;
}

.companies--section-filter-search{
    margin-left: auto;
    width: 100%;
    max-width: unset;
}

.companies--section-item {
    display: flex;
    flex-direction: column;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 25px;
    background: #fff;
}

.companies--section-item-left {
    flex: 1;
}

.companies--section-item-header {
    padding: 20px 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.companies--section-item-body {
    border-top: 1px solid #e0e0e0;
    padding: 15px;
}

.companies--section-item-logo {
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    margin-bottom: 15px;
}

.companies--section-item-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.companies--section-item-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 0 10px 20px;
}

.companies--section-item-website svg {
    width: 16px;
    height: 16px;
}

.companies--section-item-name {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
    transition: color .3s;
    text-align: center;
}

.companies--section-item-name a {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    word-break: break-word;
    line-height: 25px;
}

.companies--section-item-name:hover {
    color: #3a7af3;
}

.companies--section-item-info {
    flex: 1;
}

.companies--section-item-category {
    margin-bottom: 10px;
    text-align: center;
}

.companies--section-item-category span {
    font-weight: 600;
    color: #3a7af3;
    margin-left: 4px;
}

.companies--section-item-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.companies--section-item-location svg {
    width: 24px;
    height: 24px;
    fill: #666;
}

.companies--section-item-location span {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    word-break: break-word;
    line-height: 25px;
    font-size: 14px;

}

.companies--section-item-description {
    font-size: 15px;
    font-weight: 500;
    line-height: 25px;
}

.companies--section-item-description a {
    color: #3a7af3;
    margin-left: 10px;
}

.company--top {
    padding-top: 90px;
    padding-bottom: 20px;
}

.company--top-inner {
    display: flex;
    flex-wrap: wrap;
}

.company--top-logo {
    width: 70px;
    height: 70px;
    overflow: hidden;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
}

.company--top-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.company--top-left {
    width: 70px;
}

.company--top-main {
    flex: 1;
    margin-left: 20px;
}

.company--top-name {
    margin-bottom: 13px;
}

.company--top-name h1 {
    font-size: 20px;
}

.company--top-category {
    margin-bottom: 10px;
    font-weight: 600;
    color: #3a7af3;
}

.company--top-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: 20px;

}

.company--top-place {
    margin-left: -2px;
}

.company--top-place a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.company--top-place svg {
    width: 24px;
    height: 24px;
    fill: #666;
}

.company--top-buttons .btn {
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
}

.company-tabs {
    flex: 1;
}

.company-tabs-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.company-tab {
    display: none;
}

.company-tab.active {
    display: block;
}

.company-tab h2 {
    margin-bottom: 20px;
}

.company-tab-description {
    line-height: 1.8;
    font-weight: 400;
    color: #333;
    font-size: 15px;
    margin-bottom: 20px;
}

#company-tab-videos {
    margin-bottom: 20px;
}

.company-tab-video {
    position: relative;
    padding-top: 56%;
    overflow: hidden;
    cursor: pointer;
}

.company-tab-video-play {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background: #00000045;
    display: flex;
}

.company-tab-video-play svg {
    width: 100px;
    height: 100px;
    fill: #fff;
    margin: auto;
    transition: transform .5s, fill .5s;
}

.company-tab-video-play:hover svg {
    fill: red;
    transform: scale(1.2);
}

.company-tab-video img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.company-tab-social ul {
    display: flex;
    gap: 10px;
}

.company-tab-social a {
    display: flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #333;
    transition: background-color .3s;
}

.company-tab-social a svg {
    height: 24px;
    width: 24px;
    fill: #fff;
    margin: auto;
    transition: fill .3s;
}

.company-tab-social a:hover {
    background: #2060df;
}

.company-tab-services {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.company-tab-service {
    width: 100%;
}

.company-tab-service-inner {
    text-align: center;
    display: block;
    height: 100%;
    padding: 30px 10px;
    border: 1px solid #e9e9e9;
    border-radius: 10px;
}

.company-tab-service-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.7;
}

#company-tab-photos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.company-tab-photo {
    cursor: pointer;
    width: calc(50% - 5px);
}

.company-tab-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.sn__article {
    display: flex;
    flex-direction: column;
    background: #fff;
    margin-bottom: 20px;
    position: relative;
    transition: background-color .3s;
}

.sn__article-image {
    width: 100%;
    padding-top: 56%;
    position: relative;
    overflow: hidden;
}

.sn__article-image img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
}

.sn__article-info {
    position: relative;
    flex: 1;
    padding: 20px 20px 85px 20px;
    border: 1px solid #dadce0;
}

.sn__article-category {
    margin-bottom: 10px;
    font-size: 14px;
    font-style: italic;
}

.sn__article-title {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.5;
    transition: color .3s;
}

.sn__article:hover .sn__article-title {
    color: #2060df;
}

.sn__article-description {
    color: #999;
    font-size: 14px;
    line-height: 1.5;
}

.sn__article-button {
    display: flex;
    position: absolute;
    top: auto;
    bottom: 20px;
    right: 20px;
}

.sn__article-button .btn {
    margin: auto;
}

.company__tab--contact {
    margin-bottom: 20px;
}

.company__tab--contact-title {
    margin-bottom: 20px;
    font-size: 15px;
}

.company__tab--contact-value {
    font-size: 20px;
    font-weight: 700;
}

.company__tab--contact-value a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.company__tab--contact-value svg {
    width: 24px;
    height: 24px;
    fill: #2060df;
}

.company__tab--contact-buttons {
    display: flex;
    flex-wrap: wrap;
    margin-top: 15px;
    gap: 10px;
    width: 100%;
}

.company__tab--contact-buttons .btn {
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
}

.news--section {
    flex: 1;
    margin-bottom: 0;
}

.news--categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.login--section, .register--section, .recover--section {
    flex: 1;
}

.button_wrap .btn {
    width: 100%;
}

.login--section .inner {
    height: 100%;
    display: flex;
}

.login--section .login--modal {
    padding: 30px;
    background: #fff;
    width: 400px;
    margin: auto !important;
}

.register--section .inner {
    height: 100%;
    display: flex;
}

.register--section .register--modal {
    padding: 30px;
    background: #fff;
    width: 400px;
    margin: auto !important;
}

.recover--section .inner {
    height: 100%;
    display: flex;
}

.recover--section .recover--modal {
    padding: 30px;
    background: #fff;
    width: 400px;
    margin: auto !important;
}

.recover--section h3 {
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 21px;
}

.confirm--section {
    flex: 1;
}

.article__section {
    margin-top: 70px;
    padding-bottom: 50px;
    background: #fff;
    border-top: 1px solid #ddd;
}

.article__section .inner {
    display: flex;
}

.article__left {
    flex: 1;
}

.article__right {
    display: none;
    width: 400px;
}

.article__title {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
}

.article__image {
    position: relative;
    padding-top: 56%;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
}

.article__wrap {
    max-width: 900px;
}

.article__image img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    top: 0;
    left: 0;
    right: 0;
}

.article__preview {
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 19px;
    line-height: 1.7;
}

.article__text {
    margin-bottom: 20px;
}

.article__text p {
    font-size: 17px;
    line-height: 1.7;
    margin: 0 0 20px 0;
    font-weight: 400;
}

.article__text a {
    color: #3a7af3;
}

.article__text h2 {
    font-size: 28px;
    line-height: 1.7;
    margin: 0 0 20px 0;
    font-weight: 700;
}

.article__text h3 {
    font-size: 21px;
    line-height: 1.7;
    margin: 0 0 20px 0;
    font-weight: 700;
}

.article__text blockquote {
    margin: 0;
    font-style: italic;
}

.article__text blockquote:before {
    color: #ccc;
    content: open-quote;
    font-size: 4em;
    line-height: 0.1em;
    margin-right: 0.25em;
    vertical-align: -0.4em;
}

.article__text blockquote cite, .article__text figcaption cite {
    font-style: inherit;
    font-size: 12px;
}

.article__text ol li {
    list-style-type: auto;
    font-size: 17px;
    line-height: 1.7;
    margin: 0 0 20px 0;
    font-weight: 400;
}


.article__info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.article__date {
    color: #979797;
    font-size: 15px;
    font-weight: 600;
}

.article__lang {
    position: relative;
}

.article__lang-title {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    color: #666;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.article__lang-title svg {
    width: 15px;
    height: 15px;
    fill: #666;
}

.article__lang-links {
    display: none;
    position: absolute;
    top: 30px;
    right: 0;
    width: 200px;
    padding: 15px 25px;
    background: #fff;
    border: 1px solid #ddd;
    z-index: 9;
    border-radius: 5px;
}

.article__lang-links.active {
    display: block;
}

.article__lang-links a {
    display: block;
    line-height: 36px;
    font-size: 16px;
    color: #333;
}

.article__left img {
    cursor: pointer;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.share_block {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ccc;
}

.share_block > p {
    margin-bottom: 10px;
}

.share_block ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.share_block a, .share_block_item {
    display: block;
    text-decoration: none;
    color: #fff;
    border-radius: 5px;
    transition: .3s ease;
    padding: 7px 10px;
    cursor: pointer;
}

.share_block a svg, .share_block_item svg {
    width: 14px;
    height: 14px;
    fill: #fff;
    stroke: none;
    vertical-align: middle;
}

.share_block_tw {
    background-color: #55acee;
    border-color: #55acee;
}

.share_block_tw:hover {
    background-color: #4286ba;
}

.share_block_tg {
    background-color: #54a9eb;
}

.share_block_tg:hover {
    background-color: #3a76a5;
}

.share_block_fb {
    margin-left: 0 !important;
    background-color: #3b5998;
    border-color: #3b5998;
}

.share_block_fb:hover {
    background-color: #1c2b49;
}

.share_block_pt {
    background-color: #bd081c;
}

.share_block_pt:hover {
    background-color: #7b0512;
}

.share_block_link {
    background-color: #bbbbbb;
}

.share_block_link svg {
    fill: #000;
}

.share_block_link:hover {
    background-color: #8a8a8a;
}

.article__latest-news-title {
    text-transform: uppercase;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 20px;
}

.article__latest-item {
    display: flex;
    margin-bottom: 15px;
}

.article__latest-image {
    position: relative;
    width: 90px;
    height: 90px;
    margin-right: 15px;
}

.article__latest-image img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.article__latest-info {
    flex: 1;
}

.article__latest-title {
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    word-break: break-word;
    overflow: hidden;
}

.article__latest-date {
    font-size: 14px;
    line-height: 1.8;
    font-weight: 400;
    color: #979797;
}

.article__company {
    margin-bottom: 30px;
    background: var(--background);
    padding: 30px 20px;
}

.article__company-title {
    text-transform: uppercase;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 20px;
}

.article__company-item {
    display: flex;
}

.article__company-logo {
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    margin-right: 15px;
}

.article__company-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.article__company-info {
    flex: 1;
}

.article__company-name {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 10px;
    transition: color .3s;
}

.article__company-category {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
}

.article__company-location {
    margin-bottom: 10px;
}

.contact--form {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

.contact--form h2 {
    margin-bottom: 20px;
}

.contact--form textarea, .contact--form input {
    background: #fff;
    border: 1px solid #ddd;
    font-size: 14px;
    padding: 10px 15px;
    display: block;
    width: 100%;
    height: 55px;
    border-radius: 5px;
    outline: none;
    color: #000;
    line-height: 1.5;
}

.contact--form textarea {
    padding: 15px;
    line-height: 20px;
    max-height: 200px;
}

.contact--form .button_wrap {
    margin-bottom: 50px;
}

.contact--form-social ul {
    display: flex;
    gap: 10px;
}

.contact--form-social a {
    display: flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #333;
    transition: background-color .3s;
}

.contact--form-social a:hover {
    background: #2060df;
}

.contact--form-social a svg {
    height: 24px;
    width: 24px;
    fill: #fff;
    margin: auto;
    transition: fill .3s;
}

.company--section {
    margin-top: 0;
}

.section--text p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.section--text a {
    color: #2060df;
    font-weight: 600;
}

.contact--section .inner {
    padding-top: 30px;
    padding-bottom: 30px;
}

.middle--section .inner {
    padding-top: 30px;
    padding-bottom: 30px;
    min-height: 500px;
}

.article__company-buttons {
    display: flex;
    gap: 10px;
}

.grid {
    display: grid;
    grid-template-columns:repeat(12, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 24px
}

.grid + .grid {
    margin-top: 24px
}

.grid-gutterless {
    grid-column-gap: 0
}

.grid-gapless {
    grid-row-gap: 0
}

.grid-gapless + .grid {
    margin-top: 0
}

.grid-auto {
    grid-template-columns:repeat(auto-fit, minmax(0, 1fr))
}

.grid-1 {
    grid-template-columns:repeat(1, 1fr)
}

.grid-2 {
    grid-template-columns:repeat(2, 1fr)
}

.grid-3 {
    grid-template-columns:repeat(3, 1fr)
}

.grid-4 {
    grid-template-columns:repeat(4, 1fr)
}

.grid-5 {
    grid-template-columns:repeat(5, 1fr)
}

.grid-6 {
    grid-template-columns:repeat(6, 1fr)
}

.grid-7 {
    grid-template-columns:repeat(7, 1fr)
}

.grid-8 {
    grid-template-columns:repeat(8, 1fr)
}

.grid-9 {
    grid-template-columns:repeat(9, 1fr)
}

.grid-10 {
    grid-template-columns:repeat(10, 1fr)
}

.grid-11 {
    grid-template-columns:repeat(11, 1fr)
}

.grid-12 {
    grid-template-columns:repeat(12, 1fr)
}

.column-1 {
    grid-column-end: span 1
}

.column-2 {
    grid-column-end: span 2
}

.column-3 {
    grid-column-end: span 3
}

.column-4 {
    grid-column-end: span 4
}

.column-5 {
    grid-column-end: span 5
}

.column-6 {
    grid-column-end: span 6
}

.column-7 {
    grid-column-end: span 7
}

.column-8 {
    grid-column-end: span 8
}

.column-9 {
    grid-column-end: span 9
}

.column-10 {
    grid-column-end: span 10
}

.column-11 {
    grid-column-end: span 11
}

.column-12 {
    grid-column-end: span 12
}

@media only screen and (max-width: 1023px) {
    .grid-1-md {
        grid-template-columns:repeat(1, 1fr)
    }

    .grid-2-md {
        grid-template-columns:repeat(2, 1fr)
    }

    .grid-3-md {
        grid-template-columns:repeat(3, 1fr)
    }

    .grid-4-md {
        grid-template-columns:repeat(4, 1fr)
    }

    .grid-5-md {
        grid-template-columns:repeat(5, 1fr)
    }

    .grid-6-md {
        grid-template-columns:repeat(6, 1fr)
    }

    .grid-7-md {
        grid-template-columns:repeat(7, 1fr)
    }

    .grid-8-md {
        grid-template-columns:repeat(8, 1fr)
    }

    .grid-9-md {
        grid-template-columns:repeat(9, 1fr)
    }

    .grid-10-md {
        grid-template-columns:repeat(10, 1fr)
    }

    .grid-11-md {
        grid-template-columns:repeat(11, 1fr)
    }

    .grid-12-md {
        grid-template-columns:repeat(12, 1fr)
    }
}

@media only screen and (max-width: 767px) {
    .grid, .grid-auto {
        grid-template-columns:repeat(1, 1fr)
    }

    .column {
        grid-column-end: span 1
    }

    .column:empty {
        display: none
    }

    .grid-1-sm {
        grid-template-columns:repeat(1, 1fr)
    }

    .grid-2-sm {
        grid-template-columns:repeat(2, 1fr)
    }

    .grid-3-sm {
        grid-template-columns:repeat(3, 1fr)
    }

    .grid-4-sm {
        grid-template-columns:repeat(4, 1fr)
    }

    .grid-5-sm {
        grid-template-columns:repeat(5, 1fr)
    }

    .grid-6-sm {
        grid-template-columns:repeat(6, 1fr)
    }

    .grid-7-sm {
        grid-template-columns:repeat(7, 1fr)
    }

    .grid-8-sm {
        grid-template-columns:repeat(8, 1fr)
    }

    .grid-9-sm {
        grid-template-columns:repeat(9, 1fr)
    }

    .grid-10-sm {
        grid-template-columns:repeat(10, 1fr)
    }

    .grid-11-sm {
        grid-template-columns:repeat(11, 1fr)
    }

    .grid-12-sm {
        grid-template-columns:repeat(12, 1fr)
    }
}

.embed-responsive {
    position: relative;
    padding: 0;
    margin: 0;
    padding-bottom: 56.25%;
    padding-top: 25px;
    height: 0;
}

.embed-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.top-banner-slide {
    padding: 100px 0 !important;
}

.top-banner h1 {
    text-align: left;
    color: #fff;
    font-weight: 900;
    line-height: 1.1;
    font-size: 32px;
    margin-bottom: 30px;
}

.top-banner .section--title-text {
    text-align: left;
    margin-left: 0;
    color: #fff;
}

.services--section {
    background: var(--background);
}

.services--section .inner, .services--section .container{
    background: var(--background) !important;
    padding-top: 0;

}

.home--news-section {
    background: #f7f7f7;
    padding: 50px 0;
}

.home--news-section .section--title {
    text-align: left;
}

.home--news-left {
    margin-bottom: 30px;
    text-align: center;
}

.home--news-right {
    flex: 1;
}

.home--news-items {
    overflow: hidden;
    margin-bottom: 20px;
}

.home--news-item {
    width: 350px;
    margin-right: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.home--news-category {
    margin-bottom: 10px;
    font-size: 14px;
    font-style: italic;
}

.home--news-image {
    width: 100%;
    padding-top: 100%;
    position: relative;
    overflow: hidden;
}

.home--news-image img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
}

.home--news-info {
    position: relative;
    padding: 30px 15px;
    background: #fff;
    height: 150px;
}

.home--news-title {
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.5;
    transition: color .3s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    word-break: break-word;
    overflow: hidden;
}

.home--news-description {
    color: #333;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 40px;
    overflow: hidden;
    font-weight: 300;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    word-break: break-word;
}

.home--news-button svg {
    width: 40px;
    height: 40px;
    fill: #444;
    transition: transform .3s;
}

.home--news-item:hover svg {
    transform: translateX(20px);
}

.flickity-button:disabled {
    display: none;
}

.flickity-prev-next-button.previous {
    left: 0 !important;
}

.flickity-prev-next-button.next {
    right: 0 !important;
}

.home--companies-section {
    padding: 50px 0;
    background: #fff;
}

.home--companies-section .companies--section-list {
    margin-top: 30px;
}

.about--section p {
    font-size: 17px;
    line-height: 1.7;
    margin: 0 0 20px 0;
    font-weight: 400;
}

.about--section h3 {
    font-size: 21px;
    line-height: 1.7;
    margin: 0 0 20px 0;
    font-weight: 700;
}

.about--section ol li {
    list-style-type: auto;
    font-size: 17px;
    line-height: 1.7;
    margin: 0 0 20px 0;
    font-weight: 400;
}

.companies--section-count {
    margin-bottom: 20px;
}

.article__photos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.article__photo {
    cursor: pointer;
    width: calc(50% - 5px);
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    gap: 10px;
}

.article__video {
    position: relative;
    padding-top: 56%;
    overflow: hidden;
    cursor: pointer;
    width: 100%;
}

.article__video-play {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background: #00000045;
    display: flex;
}

.article__video-play svg {
    width: 100px;
    height: 100px;
    fill: #fff;
    margin: auto;
    transition: transform .5s, fill .5s;
}

.article__video-play:hover svg {
    fill: red;
    transform: scale(1.2);
}

.article__video img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.article__videos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
}

.home--categories {
    padding: 60px 0;
}

.home .section--title {
    width: 100%;
    font-weight: 300;
    line-height: 1.1;
    text-align: left;
    margin-right: 70px;
}

.home--categories-list {
    display: flex;
    flex-wrap: wrap;
    flex: 1;
    gap: 10px 5px;
}


.home--categories .inner {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.home--share-company {
    padding: 60px 0;
    background: #f1f1f1;
}

.home--share-company .inner {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.home--share-company-button {
    margin-top: 20px;
    flex: 1;
}

.top-banner-inner {
    overflow: hidden;
}

.top-banner-slide {
    width: 100%;
    min-height: 450px;
    height: 550px;
}

.top-banner {
    padding-top: 0;
    padding-bottom: 0 !important;
}

.top-banner-buttons {
    display: flex;
    gap: 15px;
}

.top-banner-logo {
    width: 70px;
    height: 70px;
    overflow: hidden;
    border-radius: 5px;
    margin-bottom: 15px;
}

.top-banner-slide .container {
    display: flex;
    height: 100%;
}

.top-banner-slide .inner {
    margin: auto 0;
}

.top-banner-inner .flickity-page-dots {
    bottom: 15px;
    z-index: 111;
}

.top-banner-inner .flickity-page-dots .dot {
    background: #fff;
}


.stats {
    background: #f5f7fb;
}

.stats--row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    gap: 10px;

}

.stats--box {

}

.stats--box_xl {
    width: 100%;
    margin: 0;
}

.stats--box_md {
    width: 47%;
    margin: 0;

}

.stats--box_xs {
    width: 100%;
    margin: 0;
}
.service__text h1 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.service__text h2 {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 30px;
}

.service__text h3 {
    font-size: 21px;
    line-height: 1.4;
    margin-bottom: 30px;

}



.grid {
    display: grid;
    grid-template-columns:repeat(12, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 24px
}

.grid + .grid {
    margin-top: 24px
}

.grid-gutterless {
    grid-column-gap: 0
}

.grid-gapless {
    grid-row-gap: 0
}

.grid-gapless + .grid {
    margin-top: 0
}

.grid-auto {
    grid-template-columns:repeat(auto-fit, minmax(0, 1fr))
}

.grid-1 {
    grid-template-columns:repeat(1, 1fr)
}

.grid-2 {
    grid-template-columns:repeat(2, 1fr)
}

.grid-3 {
    grid-template-columns:repeat(3, 1fr)
}

.grid-4 {
    grid-template-columns:repeat(4, 1fr)
}

.grid-5 {
    grid-template-columns:repeat(5, 1fr)
}

.grid-6 {
    grid-template-columns:repeat(6, 1fr)
}

.grid-7 {
    grid-template-columns:repeat(7, 1fr)
}

.grid-8 {
    grid-template-columns:repeat(8, 1fr)
}

.grid-9 {
    grid-template-columns:repeat(9, 1fr)
}

.grid-10 {
    grid-template-columns:repeat(10, 1fr)
}

.grid-11 {
    grid-template-columns:repeat(11, 1fr)
}

.grid-12 {
    grid-template-columns:repeat(12, 1fr)
}

.column-1 {
    grid-column-end: span 1
}

.column-2 {
    grid-column-end: span 2
}

.column-3 {
    grid-column-end: span 3
}

.column-4 {
    grid-column-end: span 4
}

.column-5 {
    grid-column-end: span 5
}

.column-6 {
    grid-column-end: span 6
}

.column-7 {
    grid-column-end: span 7
}

.column-8 {
    grid-column-end: span 8
}

.column-9 {
    grid-column-end: span 9
}

.column-10 {
    grid-column-end: span 10
}

.column-11 {
    grid-column-end: span 11
}

.column-12 {
    grid-column-end: span 12
}

@media only screen and (max-width: 1023px) {
    .page {
        & h2 {
            font-size: 24px;
        }

        & h3 {
            font-size: 20px;
        }
    }

    .grid-1-md {
        grid-template-columns:repeat(1, 1fr)
    }

    .grid-2-md {
        grid-template-columns:repeat(2, 1fr)
    }

    .grid-3-md {
        grid-template-columns:repeat(3, 1fr)
    }

    .grid-4-md {
        grid-template-columns:repeat(4, 1fr)
    }

    .grid-5-md {
        grid-template-columns:repeat(5, 1fr)
    }

    .grid-6-md {
        grid-template-columns:repeat(6, 1fr)
    }

    .grid-7-md {
        grid-template-columns:repeat(7, 1fr)
    }

    .grid-8-md {
        grid-template-columns:repeat(8, 1fr)
    }

    .grid-9-md {
        grid-template-columns:repeat(9, 1fr)
    }

    .grid-10-md {
        grid-template-columns:repeat(10, 1fr)
    }

    .grid-11-md {
        grid-template-columns:repeat(11, 1fr)
    }

    .grid-12-md {
        grid-template-columns:repeat(12, 1fr)
    }
}

@media only screen and (max-width: 767px) {
    .grid, .grid-auto {
        grid-template-columns:repeat(1, 1fr)
    }

    .column {
        grid-column-end: span 1
    }

    .column:empty {
        display: none
    }

    .grid-1-sm {
        grid-template-columns:repeat(1, 1fr)
    }

    .grid-2-sm {
        grid-template-columns:repeat(2, 1fr)
    }

    .grid-3-sm {
        grid-template-columns:repeat(3, 1fr)
    }

    .grid-4-sm {
        grid-template-columns:repeat(4, 1fr)
    }

    .grid-5-sm {
        grid-template-columns:repeat(5, 1fr)
    }

    .grid-6-sm {
        grid-template-columns:repeat(6, 1fr)
    }

    .grid-7-sm {
        grid-template-columns:repeat(7, 1fr)
    }

    .grid-8-sm {
        grid-template-columns:repeat(8, 1fr)
    }

    .grid-9-sm {
        grid-template-columns:repeat(9, 1fr)
    }

    .grid-10-sm {
        grid-template-columns:repeat(10, 1fr)
    }

    .grid-11-sm {
        grid-template-columns:repeat(11, 1fr)
    }

    .grid-12-sm {
        grid-template-columns:repeat(12, 1fr)
    }
}


.service-banner .top-banner-slide .inner{
    margin-top: 100px;
}
.service-banner .section--sub-title{
    color: #fff;
}


.service__item-image {
    position: relative;
    width: 100%;
    padding-top: 65%;
    overflow: hidden;
}

.service__item-image img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
    object-position: center;
}