/* -------------------------------------------------- */
/* --------------------- reset ---------------------- */
/* -------------------------------------------------- */

* {
    margin: 0;
    padding: 0;
    outline: 0;
    border: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

h1 {
    padding: 0 0 20px;
}

/* -------------------------------------------------- */
/* -------------------- document -------------------- */
/* -------------------------------------------------- */

html {
    min-height: 100%;
}

body {
    position: relative;
    min-height: 100vh;
    font-family: system-ui;
    color: #212529;
}

.wrapper {
    width: 90vw;
    margin: 0 auto;
}

.header + .wrapper {
    padding-bottom: 120px;
}

.content {
    padding: 0 0 90px;
}

label {
    display: inline;
}

/* -------------------------------------------------- */
/* --------------------- header --------------------- */
/* -------------------------------------------------- */
.header {
    background: #ffffff;
    width: 100%;
    height: 80px;
    top: 0;
    margin: 0 0 30px;
    padding: 8px 0;
    box-shadow: 0 4px 13px rgba(30, 35, 66, 0.11);
    z-index: 3;
}

.flex-container {
    padding: 0 .75rem;
}

.header button {
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    padding: 0;
    margin: 0;
}

.flex-container,
.header .cal-block a,
.header .account-block a {
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}

.header .logo-block {
    min-width: 150px;
}
.header .logo-block a {
    text-decoration: none;
    display: block;
}
.header .logo-block img {
    display: block;
    width: 150px;
    margin: 4px 0;
}

.header .menu_block {
    flex-grow: 1;
    padding-left: 4.3%;
    display: block;
}
.header .menu_block > ul {
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 25px;
    text-transform: uppercase;
}
.header .menu_block ul li {
    display: block;
}
.header .menu_block ul li a {
    font-size: 14px;
    line-height: 16px;
    font-weight: 600;
    color: #212121;
}
.header .menu_block ul li a:hover {
    color: #187ED7;
}
.header .menu_block .breadcrumbs {
    padding-top: 8px;
}
.header .menu_block .breadcrumbs ol {
    margin-bottom: 0;
}
.header .menu_block .breadcrumbs ol li {
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    color: #187ED7;
}
.header .menu_block .breadcrumbs ol li a {
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    color: #187ED7;
}

.header .account-block {
    padding: 5px 2.4% 0 0;
    gap: 8px;
}
.header .account-block a {
    /*composes: flex-container; */
    gap: 8px;
}
.header .account-block a span {
    font-size: 14px;
    line-height: 16px;
    font-weight: 600;
    color: #212121;
}
.header .account-block .account-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.header .account-block .account-info .name {
    font-size: 14px;
    line-height: 16px;
    font-weight: 600;
    color: #212121;
}
.header .account-block .account-info .dropdown .dropdown-toggle,
.header .account-block .account-info a {
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    color: #187ED7;
}
.header .account-block .account-info .dropdown-wrap {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-direction: row;
    padding-top: 6px;
    width: 100%;
    gap: 10px;
}

.header .cal-block {
    display: block;
}
.header .cal-block a {
    /*composes: flex-container; */
    gap: 8px;
}
.header .cal-block svg {
    width: 24px;
    height: 24px;
    min-width: 24px;
    display: block;
}
.header .cal-block span {
    font-size: 14px;
    line-height: 16px;
    font-weight: 600;
    color: #212121;
}

.header .mobile-menu-toggle {
    display: none;
}
.header .mobile-menu {
    display: none;
}

.lang-switcher {
    display: inline-block;
}


.header .mobile-menu-toggle {
    display: none;
    position: relative;
}
.header .mobile-menu-toggle .button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.header .mobile-menu-toggle .button span {
    width: 25px;
    height: 3px;
    display: block;
    background: #212121;
    margin-bottom: 6px;
    border-radius: 3px;
}
.header .mobile-menu-toggle .button span:last-child {
    margin-bottom: 0;
}
.header .mobile-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 40px;
    width: 250px;
    height: auto;
    max-height: 80vh;
    background-color: #ffffff;
    border-top: solid 1px #dddddd;
    padding-top: 15px;
    padding-bottom: 15px;
    z-index: 222;
    box-shadow: 0 4px 13px rgba(30, 35, 66, 0.11);
    border-radius: 10px;
    text-align: center;
}
.header .mobile-menu.active {
    display: block;
}
.header .mobile-menu .container {
    display: block;
}
.header .mobile-menu .menu {
    padding-bottom: 12px;
}
.header .mobile-menu .menu ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.header .mobile-menu .menu ul li {
    display: block;
}
.header .mobile-menu .menu ul li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    line-height: 16px;
    font-weight: 600;
    color: #212121;
}
.header .mobile-menu .cal-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    width: 100%;
    justify-content: center;
    padding: 10px 0 0 0;
    border-top: 1px solid #e1e1e1;
}
.header .mobile-menu .cal-block a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
}
.header .mobile-menu .cal-block a svg {
    display: block;
    width: 16px;
    height: 16px;
    margin: 0 -4px;
}
.header .mobile-menu .cal-block a span {
    font-size: 14px;
    list-style: 16px;
    font-weight: 600;
    color: #212121;
}

/* -------------------------------------------------- */
/* -------------- cookie-notification --------------- */
/* -------------------------------------------------- */
.cookie-notification {
    background: #ffffff;
    position: fixed;
    display: block;
    padding: 20px 25px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 13px rgba(30, 35, 66, 0.11);
}

.cookie-notification > button {
    background: #187ed7;
    padding: 8px 12px;
    border-radius: 7px;
    line-height: 20px;
    font-weight: 500;
    font-size: 17px;
    color: #ffffff;
    float: right;
}

/* -------------------------------------------------- */
/* -------------- stylization checkbox --------------- */
/* -------------------------------------------------- */
input[type="checkbox"] + label {
    display: inline-block;
}
/*input[type="checkbox"] + label + label {
    display: none;
}
input[type="checkbox"]:checked + label {
    display: none;
}
.form-group input[type="checkbox"]:checked + label {
    display: inline-block;
}
input[type="checkbox"]:checked + label + label {
    display: inline-block;
}*/
label.checkbox {
    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
    color: #000;
    display: flex;
    flex-grow: 1;
    flex-wrap: nowrap;
    align-items: center;
}
label.checkbox > span:first-child {
    flex-grow: 1;
}
label.checkbox > input[type="checkbox"] {
    display: none;
}
label.checkbox > input[type="checkbox"] ~ span:last-child {
    content: '';
    display: flex;
    flex-wrap: nowrap;
    flex-grow: 0;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: center;
    min-width: 40px;
    width: 40px;
    height: 22px;
    background-color: #d4d7dc;
    padding: 2px 3px;
    border-radius: 90px;
    cursor: pointer;
    transition: 0.2s;
}
label.checkbox > input[type="checkbox"] ~ span:last-child:after {
    content: '';
    width: 18px;
    height: 18px;
    background-color: #fff;
    display: block;
    border-radius: 90px;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    flex-grow: unset !important;
}
label.checkbox > input[type="checkbox"]:checked ~ span:last-child {
    background-color: #187ed7;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}

.dropdown-toggle::after {
    margin-top: 3px;
}

/* -------------------------------------------------- */
/* --------------- stylization tooltip --------------- */
/* -------------------------------------------------- */
[data-tooltip] {
    position: relative;
}
[data-tooltip]::after {
    background-color: black;
    position: absolute;
    visibility: hidden;
    padding: 10px 20px;
    border-radius: 6px;
    color: #fff;
    opacity: 70%;
    content: attr(data-tooltip);
    z-index: 1;
    white-space: nowrap;
}
[data-tooltip]:hover::after {
    visibility: visible;
}
.tooltip-left[data-tooltip]::after {
    right: 90%;
}

/* -------------------------------------------------- */
/* ------------ stylization editable-field ----------- */
/* -------------------------------------------------- */
.editable-field > input {
    display: none;
    height: 24px;
}

.editable-field > label {
    height: 24px;
    border-bottom: 2px dashed blue;
}

.editable-field.active > input {
    display: inline-block;
}

.editable-field.active > label {
    display: none;
}

.grid-filters {
    text-align: right;
    float: right;
}

.summary {
    margin-bottom: 15px;
}


/* -------------------------------------------------- */
/* --------------- stylization fieldset -------------- */
/* -------------------------------------------------- */
fieldset > legend + input[type=radio] + label {
    border-radius: 6px 0 0 6px;
}
input[type=radio] + label:last-child {
    border-radius: 0 6px 6px 0;
    border-right: 1px solid #999;
}
/* Checked */
input[type="radio"]:checked + label {
    background: #ffe0a6;
}
/* Hover */
input[type="radio"] + label:hover {
    color: #666;
}
/* Disabled */
input[type="radio"]:disabled + label {
    background: #efefef;
    color: #666;
}

fieldset[role="radiogroup"] {
    display: inline-block;
    overflow: hidden;
    width: 100%;
}
fieldset[role="radiogroup"] > legend {
    width: 20%;
    padding: 0;
    line-height: 36px;
    font-size: inherit;
    margin: 0;
}
input[type="radio"] {
    display: none;
}
input[type="radio"] + label {
    display: inline-block;
    float: left;
    cursor: pointer;
    padding: 0 15px;
    line-height: 34px;
    border: 1px solid #999;
    border-right: none;
    user-select: none;
}

/* -------------------------------------------------- */
/* ------------ stylization trash-multiple ----------- */
/* -------------------------------------------------- */
.trash-multiple {
}
.trash-multiple > span {
    position: relative;
    display: inline-block;
    width: 14px;
    height: 22px;
    vertical-align: -6px;
}
.trash-multiple > span > svg {
    position: absolute;
    width: 10px !important;
    left: 0;
    bottom: 0;
}
.trash-multiple > span > svg:last-child {
    left: initial;
    right: 0;
    top: 0;
    bottom: initial;
}

.form-group {
    position: relative;
}
.date-range > .form-group {
    display: inline-block;
    margin: 0 5% 0 0;
}
.date-range > .form-group > label {
    width: 30px;
    min-width: 0;
}
.date-range > .form-group > input {
    width: initial;
}

.form-group > * {
    display: inline-block;
}

.form-group > label {
    min-width: 20%;
    padding: 0;
    line-height: 48px;
}

.form-group > input,
.form-group > select,
.form-group > span.select2 {
    width: 78%;
}

.hint-block {
    position: absolute;
    display: none;
    background: #999;
    padding: 4px 20px;
    right: 81%;
    width: 400px;
    border-radius: 5px;
    z-index: 1;
}
.hint-block::before {
    content: '';
    position: absolute;
    top: 30%;
    right: -14px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #999;
}

input:focus + .hint-block {
    display: inline-block;
}

input[type='file'] {
    display: none;
}
input[type='file'] + label {
    width: 100%;
    justify-content: center;
}
input[type='checkbox'] + label {
    margin: 0 0 0 10px;
}


.btn-success {
    background: #187ed7;
}
.btn-success:hover {
    background: #005da5;
}

.btn-danger {
    background: #d83608;
}

.btn-info {
    background: #5bc0de;
}

ul.pagination {
    justify-content: center;
}
ul.pagination > li > a,
ul.pagination > li > span {
    padding: 5px 20px;
}
ul.pagination > li.active > a {
    font-weight: 600;
}

.grid-view {
}

p.invalid-feedback {
    color: #f00;
}

.row_cont_and_sidebar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
}
.row_cont_and_sidebar .content_block {
    width: auto;
    flex-shrink: unset;
    flex-grow: 1;
}
.body_atlas_cat {
    background-color: #F3F7FB;
    background-image: url(../images/page_atlas_bg.png);
    background-size: 200px;
    background-repeat: repeat;
}
.row > .content_block {
    padding: 0;
}

.about-el {
    border-left: 1px solid #0059aa;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 15px;
}

.about-el h3 {
    color: #0059aa;
}

.header_atlas_block {
    margin-bottom: 44px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 49px;
}
.header_atlas_block .title h1 {
    font-size: 36px;
    line-height: 42px;
    font-weight: 600;
    color: #212121;
}
.header_atlas_block .filters {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 148px;
}
.header_atlas_block .filters > div {
    position: relative;
    margin-right: 10px;
}
.header_atlas_block .filters .filter_label {
    min-width: 171px;
    border-bottom: solid 3px #C2D1DF;
    padding: 7px 6px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    position: relative;
    cursor: pointer;
}
.header_atlas_block .filters .filter_label.open {
    border-color: #187ED7;
}
.header_atlas_block .filters .filter_label .name {
    font-size: 16px;
    line-height: 19px;
    font-weight: 600;
    color: #212121;
}
.header_atlas_block .filters .filter_label .count span {
    display: block;
    width: 20px;
    height: 20px;
    background-color: #187ED7;
    border-radius: 100%;
    color: #ffffff;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    text-align: center;
}
.header_atlas_block .filters .filter_label:after {
    content: '';
    display: block;
    position: absolute;
    right: 6px;
    top: auto;
    bottom: auto;
    margin: auto;
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-bottom: 6px solid #212121;
    transform: rotate(180deg);
}
.header_atlas_block .filters .filter_label.open:after {
    transform: rotate(0deg);
    border-bottom: 6px solid #187ED7;
}
.header_atlas_block .filters .filter_date {
    display: none;
    position: absolute;
    top: 110%;
    left: 0;
    z-index: 2;
    background-color: #FFFFFF;
    box-shadow: 0px 4px 13px rgba(30, 35, 66, 0.11);
    border-radius: 10px;
    padding: 12px 19px;
    width: 320px;
}
.header_atlas_block .filters .filter_date .date_ittem {
    border-bottom: solid 1px #E6E9EF;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 9px 10px 11px 4px;
}
.header_atlas_block .filters .filter_date .date_ittem .name {
    font-size: 16px;
    line-height: 18px;
    font-weight: 500;
}
.cat_info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.cat_info:after {
    content: '';
    display: block;
    width: 100%;
    height: 11px;
    border-bottom: solid 1px #C1D0DF;
}
.cat_info .icon {
    width: 80px;
    min-width: 80px;
    padding-left: 6px;
}
.cat_info .icon img {
    display: block;
    max-width: 90%;
    height: auto;
}
.cat_info .info_block h3 {
    color: #212121;
    font-size: 26px;
    font-weight: 600;
    line-height: 31px;
    margin-bottom: 10px;
}
.cat_info .info_block h2 {
    color: #212121;
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    margin-bottom: 0;
}
.atlas-item > * {
    display: block;
    height: 100%;
}
.atlas-item .atlas-card {
    background-color: #FFFFFF;
    border: unset;
    box-shadow: 0 4px 13px rgba(30, 35, 66, 0.11);
    padding: 7px 8px!important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: stretch;
    justify-content: flex-start!important;
    align-items: stretch;
    height: 100%;
    min-height: 254px;
    gap: 18px;
}
.atlas-item .atlas-card:hover {
    box-shadow: 0 0 20px #777777;
    transition: 0.3s;
}
.atlas-item .atlas-card .atlas-card-image {
    width: 100%;
    height: 172px;
    position: relative;
    padding: 0!important;
}
.atlas-item .atlas-card .atlas-card-image .img-fluid {
    max-height: 100%;
    object-fit: contain;
}
.atlas-item .atlas-card .atlas-card-info {
    width: 100%;
}
.atlas-item .atlas-card .atlas-card-info p {
    line-height: 21px;
    font-weight: 600;
    font-size: 18px;
    color: #212121;
}
.atlas-item .atlas-card .atlas-card-image .type_label {
    position: absolute;
    right: 10px;
    top: 10px;
    background: #187ED7;
    padding: 4px 10px;
    border-radius: 7px;
    line-height: 20px;
    font-weight: 500;
    font-size: 17px;
    color: #FFFFFF;
}
.atlas-item .atlas-card .atlas-card-image .type_label.ct {
    background-color: #FF0000;
}
.atlas-card {
    border: 0.5px solid #0059aa;
    border-radius: 8px;
    height: 180px;
}
.atlas-card-image {
    background-color: #000;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 45%;
}
.col-md-3 .img-fluid {
    width: 100%;
}

.atlas-card-info {
    width: 50%;
    /*word-break:break-all;*/
}

.atlas-card-info p {
    font-weight: 700;
}

.atlas-card-info span {
    color: #3f3f3f;
    font-size: 14px;
}


.row_cont_and_sidebar .sidebar_block {
    margin-top: 21px;
    width: auto;
}
.row_cont_and_sidebar .sidebar_block .people_block {
    width: 382px;
    background-color: #ffffff;
    box-shadow: 0 4px 13px rgba(30, 35, 66, 0.11);
    border-radius: 10px;
    padding: 25px;
}
.row_cont_and_sidebar .sidebar_block .people_block .title {
    font-size: 26px;
    line-height: 31px;
    font-weight: 600;
    color: #212121;
    text-align: center;
    margin-bottom: 24px;
}
.row_cont_and_sidebar .sidebar_block .people_block .image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}
.row_cont_and_sidebar .sidebar_block .people_block .image img {
    display: block;
    max-width: 100%;
    height: auto;
}
.row_cont_and_sidebar .sidebar_block .people_block .image .ittem {
    width: 25px;
    height: 25px;
    border-radius: 100%;
    background-color: #93E30F;
    border: solid 5px #ffffff;
    position: absolute;
    display: block;
}
.row_cont_and_sidebar .sidebar_block .people_block .image .ittem.active {
    background-color: #187ED7;
}
.row_cont_and_sidebar .sidebar_block .people_block .image .ittem.active::after {
    content: '';
    display: block;
    width: 15px;
    height: 14px;
    background-image: url(../images/checked.png);
    background-repeat: no-repeat;
    background-position: center;
}
.row_cont_and_sidebar .sidebar_block .people_block .stitl {
    margin-top: 24px;
    font-size: 16px;
    line-height: 19px;
    font-weight: 600;
    color: #212121;
    text-align: center;
}

/* -------------- footer -------------- */
.footer {
    display: flex;
    position: absolute;
    background-color: #0D2D49;
    width: 100%;
    bottom: 0;
    padding: 12px 0;
    box-shadow: 4px 0 4px rgba(0, 0, 0, 0.25);
    flex-direction: column;
}
.footer .footer-logo {
    margin: 5rem 0 3rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.footer .footer-logo img {
    width: 15rem;
    margin-bottom: 1rem;
}
.footer .footer-logo span {
    font-size: 1.4rem;
    color: #0059AA;
}


.footer .row {
    width: 100%;
}
.footer img {
    width: auto;
}
.logo_block {
    float: left;
}
.logo_block img {
    display: block;
    height: 67px;
}
.footer .cop_block {
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: flex-start;
    float: left;
    margin: 28px 0 0 2%;
}
.footer .cop_block span {
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    color: #ffffff;
}
.footer .menu_contact_block {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    justify-content: flex-end;
    width: 600px;
    float: right;
    margin: 25px 0 0;
}
.footer .menu_contact_block ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.footer .menu_contact_block ul li {
    display: block;
}
.footer .menu_contact_block ul li a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
    color: #ffffff;
    text-transform: uppercase;
    margin-right: 3em;
}
.footer .menu_contact_block ul li a:hover {
    color: #e6e6e6;
}
.footer .menu_contact_block .footer_contact {
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
    color: #ffffff;
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: nowrap;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
}
.footer .menu_contact_block .footer_contact img {
    display: block;
}
.footer .menu_contact_block .footer_contact:hover {
    color: #e6e6e6;
}

.footer .footer-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 5rem;
}
.footer .footer-nav ul a {
    margin-right: 2rem;
    font-size: 1.6rem;
}
/* -------------- footer -------------- */