body {
    margin: 0;
    font-family: Manrope, serif;

    min-width: 500px;
}


:root {
    --thm-max-width-1: 1220px;


    --thm-max-width: 1180px;
    --thm-max-width-3: 1220px;
    --thm-max-width-2: 1440px;
    --thm-max-width-4: 800px;

    --thm-color-main-blue: #172C5D;
    --thm-color-main-orange: #E7792A;
    --thm-color-main-white: #FFFFFF;
    --thm-color-main-background: #E5E5E5;

    --thm-color-1: #1E1B1B;
    --thm-color-2: #F9FAFA;
    --thm-color-3: #EFF0F4;
    --thm-color-4: #787676;
    --thm-color-5: #979BA5;
    --thm-color-6: #e0e1e4;

    --thm-error-color: #DD3D3D;

    --thm-transition-all: all 0.1s ease-in;
}


.mobile-menu {
    -webkit-tap-highlight-color: transparent;
}

.mod-tcontacts .addresses .address a:hover {
    color: var(--thm-color-main-orange) !important;
}

.d-f {
    display: flex;
}

.d-f-c {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.d-f-cc {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.d-f-sb {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.d-f-c-sb {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.flex-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
}

.title-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}

.max-width-1 {
    max-width: var(--thm-max-width-1);
    margin: auto;
    padding-right: 16px;
    padding-left: 16px;
}

.max-width {
    max-width: var(--thm-max-width);
    margin: auto;
}

.max-width-3 {
    max-width: var(--thm-max-width-3);
    margin: auto;
}

.max-width-4 {
    max-width: var(--thm-max-width-4);
    margin: auto;
    padding-left: 16px;
    padding-right: 16px;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}

.clear-both {
    clear: both;
}


.t-center {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

.t-rotate-180 {
    transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
}

.w-50 {
    display: block;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
    padding: 0;
}

.nav {
    cursor: pointer;
}

.w-100 {
    width: 100%;
}

.mb-16 {
    margin-bottom: 16px !important;
}

.mb-24 {
    margin-bottom: 24px !important;
}

.mb-32 {
    margin-bottom: 32px !important;
}

.mb-48 {
    margin-bottom: 48px !important;
}

.mr-8 {
    margin-right: 8px !important;
}

.mr-16 {
    margin-right: 16px !important;
}

.text-left {
    text-align: left !important;
}

.title-1,
.h1,
h1 {
    font-weight: bold;
    font-size: var(--thm-font-size-48);
    letter-spacing: -0.03em;
    color: var(--thm-color-1);
    text-align: center;
}

h3,
.h3,
.title-3 {
    font-weight: bold;
    font-size: var(--thm-font-size-32);
    line-height: 48px;
    text-align: center;
    letter-spacing: -0.03em;
    color: var(--thm-color-1);
    margin-bottom: 48px;
}

.title-desc-1 {
    font-weight: 600;
    font-size: var(--thm-font-size-18);
    text-align: center;
    color: var(--thm-color-1);
    max-width: 814px;
    margin: auto;
    line-height: 175%;
}


.body-before-bottom {
    margin: 80px 0;
}

.body-before-sides {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 80px;
}

.body-before-sides .body-before-left {
    padding-right: 16px;
}

.transition-all {
    transition: var(--thm-transition-all);
    -o-transition: var(--thm-transition-all);
    -webkit-transition: var(--thm-transition-all);
}

.button {
    padding: 10px 20px;
    background-color: var(--thm-color-main-blue);
    border-radius: 6px;
    font-weight: 500;
    font-size: var(--thm-font-size-16);
    text-align: center;
    color: var(--thm-color-main-white) !important;
    height: 42px;
    box-sizing: border-box;

    transition: var(--thm-transition-all);
    -o-transition: var(--thm-transition-all);
    -webkit-transition: var(--thm-transition-all);

    min-width: 170px; /* ??? */
    cursor: pointer;
}

.button.disabled {
    background-color: var(--thm-color-main-blue-50);
    color: rgba(255, 255, 255, 0.5) !important;
}

.button:not(.disabled):hover {
    box-shadow: 0 4px 8px rgba(23, 44, 93, 0.32);
}

.button:not(.disabled):active {
    box-shadow: inset 0 4px 7px rgba(0, 0, 0, 0.16);
}

.button.orange {
    background-color: var(--thm-color-main-orange);
}

.button.white {
    background-color: var(--thm-color-main-white);
    border: 1px solid var(--thm-color-main-blue);
    color: var(--thm-color-main-blue) !important;
}

.button.orange-white {
    background-color: var(--thm-color-main-white);
    border: 1px solid var(--thm-color-main-orange);
    color: var(--thm-color-main-orange) !important;
}


.site-header {
    position: relative;
    z-index: 5;
    background-color: var(--thm-color-2);
}


.site-header .vi-version {
    display: flex;
    justify-content: center;
    cursor: pointer;
}

.site-header .vi-version:hover {
    color: var(--thm-color-main-orange);
}

.site-header .vi-version > * {
    display: block;
}

.site-header .vi-version > span {
    white-space: nowrap;
}

.site-header .vacancy-href {
    display: flex;
    align-items: center;
    font-size: var(--thm-font-size-16);
}

.site-header .vacancy-href img {
    display: block;
}

.site-header .vi-version-content {
    display: none;
    position: relative;
    margin-top: 32px;

    z-index: 5;

    width: 100%;

    flex-wrap: wrap;
    justify-content: right;
}

.site-header .vi-version-content.shown {
    display: flex;
}


.site-header .vi-version-content .changer {
    font-size: var(--thm-font-size-18);
    color: var(--thm-color-1);
    margin-right: 16px;
}

.site-header .vi-version-content .changer .title {
    font-size: var(--thm-font-size-16);
    color: var(--thm-color-5);
    margin-bottom: 4px;
    margin-left: 4px;
}

.site-header .vi-version-content .changer .dropdown {
    padding: 4px 20px 4px 8px;
}

.site-header .vi-version-content .changer .dropdown img {
    right: 4px;
    width: 12px;
}

.site-header .mod-menu .nav-item {
    position: relative;
}

.site-header .mod-menu .mod-menu__sub {
    display: none;
    position: absolute;
    top: calc(100% + 48px);
    top: -moz-calc(100% + 48px);
    top: -webkit-calc(100% + 48px);
    left: -20px;
    background: #FFFFFF;
    box-shadow: 1px 4px 6px rgba(23, 44, 93, 0.16);
    border-radius: 0 0 6px 6px;

    width: 307px;


    z-index: 1;
}

.site-header .mod-menu .mod-menu__sub.shown {
    display: block;
}

.site-header .mod-menu .mod-menu__sub a {
    display: block;
    font-size: var(--thm-font-size-16);
    line-height: var(--thm-line-height-24);
    color: var(--thm-color-1);
    padding: 12px 16px;
}

.site-header .mod-menu .mod-menu__sub a:hover {
    background-color: var(--thm-color-2);
}


.site-header .first-part {
    font-weight: 500;
    font-size: var(--thm-font-size-14);
    color: var(--thm-color-1);
    border: 1px solid var(--thm-color-3);
    padding: 14px 0;
}

.site-header .first-part > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.site-header .first-part .address {
    margin-left: 42px;
    white-space: nowrap;
}

.site-header .first-part span,
.site-header .first-part img {
    vertical-align: middle;
}

.site-header .first-part span {
    margin-left: 8px;
    color: var(--thm-color-1);
}

.site-header .second-part {
    padding: 25px 0;
    font-size: var(--thm-font-size-16);
}

.site-header .second-part > div {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}


.site-header .second-part .mod-menu.nav {
    display: flex;
}

.site-header .second-part .mod-menu.nav > li:not(:first-child) {
    margin-left: 42px;
}

.site-header .second-part a,
.site-header .second-part span,
.site-footer .phone {
    color: var(--thm-color-1);
    font-weight: 600;
}

.site-header .second-part .phone > span,
.site-footer .phone > span {
    display: block;
    text-align: right;
    font-weight: 500;
    letter-spacing: 0.12px;
}

.site-header .second-part .phone > div,
.site-footer .phone > div {
    margin-bottom: 3px;
}

.site-header .second-part .phone > div > *,
.site-footer .phone > div > * {
    vertical-align: middle;
}

.site-header .second-part .phone > div > span,
.site-footer .phone > div > span {
    font-size: var(--thm-font-size-18);
    margin-left: 4px;
}

.site-header .second-part .with-buttons-block {
    display: flex;
    justify-content: space-between;
    width: calc(100% - 210px - 32px);
    align-items: center;
}


.site-header .separator-full {
    position: relative;
    width: 100%;
}

.site-header .separator-full .separator-side {
    position: absolute;
    bottom: 0;
    width: calc((100% - var(--thm-max-width-2)) / 2 + 1px);
    width: -moz-calc((100% - var(--thm-max-width-2)) / 2 + 1px);
    width: -webkit-calc((100% - var(--thm-max-width-2)) / 2 + 1px);
    z-index: 1;
}

.site-header .separator-full .separator-left {
    left: 0;
    height: 20px;
    background-color: #ff7a1c;
}

.site-header .separator-full .separator-right {
    right: 0;
    height: 4px;
    background-color: var(--thm-color-main-blue);
}


.site-header .separator {
    position: relative;
    max-width: var(--thm-max-width-2);
    margin: auto;
    height: 4px;
    background-color: var(--thm-color-main-blue);
}

.site-header .separator img {
    position: absolute;
    bottom: 0;
    left: 0;
    max-width: 70%;
}

.site-header .get-a-call {
    font-weight: bold;

}

.site-header .get-a-call img {
    margin-right: 4px;
}


.mod-tlist {

}

.mod-tlist > .title {
    font-weight: 800;
    font-size: var(--thm-font-size-48);
    letter-spacing: -0.03em;
    color: var(--thm-color-1);
    margin-bottom: 24px;
}

.mod-tlist > .desc {
    font-weight: 600;
    font-size: var(--thm-font-size-18);
    color: var(--thm-color-4);
    margin-bottom: 52px;
}

.mod-tlist .item-list {
    display: flex;
    position: relative;
    padding-bottom: 50px;
}

.mod-tlist .item-list .number {
    position: relative;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: var(--thm-color-main-blue);

    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 25px;

    border: 6px solid var(--thm-color-main-white);
    left: -6px;
}

.mod-tlist .item-list .number span {
    font-weight: bold;
    font-size: var(--thm-font-size-32);
    color: var(--thm-color-main-white);
}

.mod-tlist .item-list .text {
    width: calc(100% - 25px - 72px);
    width: -moz-calc(100% - 25px - 72px);
    width: -webkit-calc(100% - 25px - 72px);
}

.mod-tlist .item-list .number div {
    position: absolute;
    width: 42px;
    height: 42px;
    left: 15px;
    top: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.24);
}


.mod-tlist .item-list .title {
    font-weight: bold;
    font-size: var(--thm-font-size-32);
    letter-spacing: -0.03em;
    color: var(--thm-color-1);
    margin-bottom: 6px;
}

.mod-tlist .item-list .desc {
    font-weight: 600;
    font-size: var(--thm-font-size-18);
    color: var(--thm-color-4);
    max-width: 438px;
}

.mod-tlist .item-list:not(:last-child):after {
    content: '';
    position: absolute;
    left: 36px;
    top: 0;
    height: 100%;
    z-index: -1;

    border-right: 2px dashed var(--thm-color-main-orange);
}

.mod-twhywe {
    background-color: var(--thm-color-main-background);
    padding: 80px 0;
}

.mod-twhywe .title-1 {
    margin-bottom: 80px;
}

.mod-twhywe .list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.mod-twhywe .list .item-list {
    width: calc((100% - (80px * 2)) / 3);
    width: -moz-calc((100% - (80px * 2)) / 3);
    width: -webkit-calc((100% - (80px * 2)) / 3);

    text-align: center;
    margin-bottom: 80px;

    background-color: var(--thm-color-main-white);
    box-shadow: 0 0 16px rgba(12, 26, 75, 0.06);
    border-radius: 16px;

    padding: 24px;
    box-sizing: border-box;
}

.mod-twhywe .list .spacer {
    width: 100%;
}

.mod-twhywe .list.list-1,
.mod-twhywe .list.list-2,
.mod-twhywe .list.list-3,
.mod-twhywe .list.list-4,
.mod-twhywe .list.list-5 {
    justify-content: center;
}

.mod-twhywe .list.list-4 .item-list:nth-child(2),
.mod-twhywe .list.list-4 .item-list:nth-child(5),
.mod-twhywe .list.list-2 .item-list:nth-child(2),
.mod-twhywe .list.list-3 .item-list:not(:nth-child(1)),
.mod-twhywe .list.list-5 .item-list:not(:nth-child(3n+1)) {
    margin-left: 40px;
}


.mod-twhywe .list .item-list img {
    margin-bottom: 24px;
}

.mod-twhywe .list .item-list .title {
    font-weight: 600;
    font-size: var(--thm-font-size-16);
    color: var(--thm-color-main-blue);
    margin-bottom: 24px;
}

.mod-twhywe .list .item-list .separator {
    width: 100px;
    height: 1px;
    background-color: var(--thm-color-3);
    margin: auto auto 24px;
}

.mod-twhywe .list .item-list .desc {
    font-size: var(--thm-font-size-14);
    font-feature-settings: 'salt' on;
    color: var(--thm-color-4);

    max-width: 246px;
    margin: auto;
}

/* MOD tblocks */
.mod-tblocks {
    background-color: var(--thm-color-main-background);
    padding: 80px 0;
}

.mod-tblocks .list {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.mod-tblocks .list .item-list {
    display: none;
    position: relative;
    padding: 60px;
    box-sizing: border-box;
    overflow: hidden;
}

.mod-tblocks .list .item-list.w-1-3 {
    width: calc(100% / 3);
    width: -moz-calc(100% / 3);
    width: -webkit-calc(100% / 3);
}

.mod-tblocks .list .item-list.w-2-3 {
    width: calc((100% / 3) * 2);
    width: -moz-calc((100% / 3) * 2);
    width: -webkit-calc((100% / 3) * 2);
}

.mod-tblocks .list .item-list.w-3-3 {
    width: 100%;
}

.mod-tblocks .list .item-list.selected {
    display: block;
    z-index: 1;
}

.mod-tblocks .list .item-list img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.mod-tblocks .list .item-list .cover {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.mod-tblocks .list .item-list.composition-2.w-1-3 img {
    width: 150px;
    margin-right: 16px;
}

.mod-tblocks .list .item-list.composition-3.w-1-3 img {
    width: 150px;
    margin-left: 16px;
}

.mod-tblocks .list .item-list.composition-2.w-2-3 img {
    margin-right: 32px;
}

.mod-tblocks .list .item-list.composition-3.w-2-3 img {
    margin-left: 32px;
}

.mod-tblocks .list .item-list .cover-1 {
    background: rgba(231, 121, 42, 0.8);
}

.mod-tblocks .list .item-list .cover-2 {
    background: rgba(30, 27, 27, 0.8);
}

.mod-tblocks .list .item-list .cover-3 {
    background: rgba(23, 44, 93, 0.8);
}

.mod-tblocks .list .item-list.text-align-1 .text .title,
.mod-tblocks .list .item-list.text-align-1 .text .desc {
    text-align: left !important;
}

.mod-tblocks .list .item-list.text-align-2 .text,
.mod-tblocks .list .item-list.text-align-2 .text .desc {
    text-align: right !important;
}

.mod-tblocks .list .item-list.text-align-3 .text,
.mod-tblocks .list .item-list.text-align-3 .text .desc {
    text-align: center !important;
}

.mod-tblocks .list .item-list.text-align-4 .text,
.mod-tblocks .list .item-list.text-align-4 .text .desc {
    text-align: justify !important;
}

.mod-tblocks .list .item-list .title {
    position: relative;
    font-weight: bold;
    font-size: var(--thm-font-size-32);
    margin-bottom: 48px;
    z-index: 2;
}

.mod-tblocks .list .item-list .desc {
    position: relative;
    font-weight: 600;
    font-size: var(--thm-font-size-24);
    color: var(--thm-color-main-white);
    line-height: 36px;
    z-index: 2;
}

.mod-tblocks .list .item-list.item-color-1 .title,
.mod-tblocks .list .item-list.item-color-1 .desc {
    color: var(--thm-color-main-white);
}

.mod-tblocks .list .item-list.item-color-2 .title,
.mod-tblocks .list .item-list.item-color-2 .desc {
    color: var(--thm-color-main-orange);
}

.mod-tblocks .list .item-list.item-color-3 .title,
.mod-tblocks .list .item-list.item-color-3 .desc {
    color: var(--thm-color-1);
}

.mod-tblocks .list .item-list.item-color-4 .title,
.mod-tblocks .list .item-list.item-color-4 .desc {
    color: var(--thm-color-main-blue);
}


.mod-tblocks .list .item-list.composition-2 img {
    width: auto;
    right: 0;
    left: auto;
}

.mod-tblocks .list .item-list.composition-2.selected,
.mod-tblocks .list .item-list.composition-3.selected {
    display: flex;
}


.mod-tblocks .list .item-list.composition-4 .title,
.mod-tblocks .list .item-list.composition-4 .desc,
.mod-tblocks .list .item-list.composition-5 .title,
.mod-tblocks .list .item-list.composition-5 .desc {
    text-align: center;
}

.mod-tblocks .list .item-list.composition-2 img,
.mod-tblocks .list .item-list.composition-3 img,
.mod-tblocks .list .item-list.composition-4 img,
.mod-tblocks .list .item-list.composition-5 img,
.mod-tblocks .list .item-list.composition-7 img {
    display: block;
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    height: auto;
    max-width: 100%;
    margin: auto;
    z-index: 2;
}

.mod-tblocks .list .item-list.composition-2 img {
    margin-right: 32px;
}

.mod-tblocks .list .item-list.composition-4 img {
    margin-top: 32px;
}

.mod-tblocks .list .item-list.composition-5 img {
    margin-bottom: 32px;
}

.mod-tblocks .list .item-list.composition-6 img {
    display: none;
}

.mod-tblocks .list .item-list.composition-7 .title,
.mod-tblocks .list .item-list.composition-7 .desc {
    display: none;
}

.mod-tblocks .list .item-list.composition-7 img {

}

.mod-tblocks .nav {
    display: flex;
    align-content: center;
    justify-content: center;
}

.mod-tblocks .nav > div {
    width: 16px;
    height: 16px;
    background-color: var(--thm-color-3);
    border-radius: 50%;
    cursor: pointer;
}

.mod-tblocks .nav > div:not(:first-child) {
    margin-left: 10px;
}

.mod-tblocks .nav > div.selected,
.mod-tblocks .nav > div:hover {
    background-color: var(--thm-color-main-blue);
}

/* MOD tblocks */
.mod_tloanclicks {
    background-color: var(--thm-color-main-background);
    padding: 80px 0;
}

.mod_tloanclicks .title-1 {
    margin-bottom: 32px;
}

.mod_tloanclicks .title-desc-1 {
    margin-bottom: 48px;
}

.mod_tloanclicks .apps {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    margin: auto;
    max-width: 814px;
}

.mod_tloanclicks .apps > a {
    display: block;
    text-decoration: none;
    margin-bottom: 32px;
}


.mod_tloanclicks .apps > a img {
    display: block;
    max-width: 100%;
    margin: auto;

    box-shadow: 0px 26px 24px -16px rgba(103, 103, 103, 0.7);
    transition: var(--thm-transition-all);
    -o-transition: var(--thm-transition-all);
    -webkit-transition: var(--thm-transition-all);
}

.mod_tloanclicks .apps > a:hover > img {
    box-shadow: 0px 26px 24px -16px rgba(0, 0, 0, 0);
}

.mod_tloanclicks .info {
    display: flex;
    align-content: center;
    justify-content: stretch;
}

.mod_tloanclicks .info img {
    max-width: 100%;
}

.mod_tloanclicks .info > div {
    width: 50%;
}

.mod_tloanclicks .info .text {
    display: flex;
    align-content: center;
    justify-content: stretch;
    flex-wrap: wrap;
}

.mod_tloanclicks .info .text > * {
    width: 100%;
}

.mod_tloanclicks .info .title {
    font-weight: bold;
    font-size: var(--thm-font-size-32);
    line-height: 48px;
    color: var(--thm-color-1);
    margin-bottom: 16px;
}

.mod_tloanclicks .info .desc {
    font-weight: 600;
    font-size: var(--thm-font-size-18);
    line-height: 175%;
    color: var(--thm-color-4);
    margin-bottom: 32px;
}

.mod_tloanclicks .info .button {
    display: block;
    width: 281px;
}

/* mod_tlastnews */

.mod_tlastnews {
    padding: 80px 0;
}

.mod_tlastnews .title-1 {
    margin-bottom: 80px;
}

.mod_tlastnews .news-list {
    display: flex;
    align-content: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.mod_tlastnews .news-list .news {
    display: block;
    text-decoration: none;
    width: calc((100% - 80px) / 3);
    width: -moz-calc((100% - 80px) / 3);
    width: -webkit-calc((100% - 80px) / 3);
    box-shadow: 0 0 7px rgba(12, 26, 75, 0.18);
    border-radius: 16px;
    padding: 8px;
    box-sizing: border-box;
    margin-bottom: 40px;
}

.mod_tlastnews .news-list .news img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 8px;
}

.mod_tlastnews .news-list .news .text {
    padding: 16px;
}

.mod_tlastnews .news-list .news .text .date {
    font-size: var(--thm-font-size-14);
    line-height: 23px;
    color: var(--thm-color-5);
    margin-bottom: 12px;
}

.mod_tlastnews .news-list .news .text .title {
    font-weight: 600;
    font-size: var(--thm-font-size-18);
    line-height: 27px;
    color: var(--thm-color-1);
}

.mod_tlastnews .button {
    margin-top: 36px;
}

.site-footer {
    /*background-color: var(--thm-color-main-background);*/
    background-color: var(--thm-color-2);
    padding: 80px 0 40px;
}

.site-footer .logo {
    margin-bottom: 48px;
}

.site-footer .ft-1 a,
.site-footer .ft-4 a {
    display: block;
}

.site-footer .phone {
    display: block;
    width: fit-content;
    margin-bottom: 60px;
}

.site-footer .ft-1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}


.site-footer .ft-1 .col-4 {
    text-align: center;
}

.site-footer .ft-1 .col .title {
    font-weight: 600;
    font-size: var(--thm-font-size-20);
    color: var(--thm-color-1);
}

.site-footer .ft-1 .col-2 a,
.site-footer .ft-1 .col-3 a,
.site-footer .ft-1 .col-4 a {
    margin-bottom: 18px;
    font-size: var(--thm-font-size-16);
    color: var(--thm-color-1);
}

.site-footer .ft-1 .col-4 .mod-menu img {
    width: 174px;
    height: 50px;
    object-fit: cover;
    border-radius: 10px;
    overflow: hidden;
}


.site-footer .ft-1 .col-2 {
    width: 150px;
}

.site-footer .ft-1 .col-3 {
    width: 157px;
}


.site-footer .socials {
    width: 170px;
    display: flex;
    flex-wrap: wrap;
    justify-content: stretch;
}

.site-footer .socials .social {
    margin-bottom: 22px;
}

.site-footer .socials .social img {
    max-width: 42px;
    max-height: 43px;
}

.site-footer .socials .social:not(:nth-child(3n)) {
    margin-right: 22px;
}

.site-footer .ft-1,
.site-footer .ft-2,
.site-footer .ft-3 {
    margin-bottom: 48px;
}

.site-footer .ft-2 img {
    margin-right: 34px;
}

.site-footer .ft-3 p {
    margin-top: 0;
    margin-bottom: 24px;
}

.site-footer .ft-3 a {
    color: var(--thm-color-main-blue);
}

.site-footer .ft-4 {
    display: flex;
    flex-wrap: wrap;
    justify-content: stretch;
}

.site-footer .ft-4 > div:nth-child(1) {
    margin-right: 138px;
}

.site-footer .ft-4 > div:nth-child(2) {
    margin-right: 88px;
}

.site-footer .ft-4 > div:nth-child(2),
.site-footer .ft-4 > div:nth-child(3) {
    width: 333px;
}

.site-footer .ft-4 a {
    margin-bottom: 38px;
}


.site-footer .ft-3,
.site-footer .ft-4 a {
    color: var(--thm-color-4);
    font-size: var(--thm-font-size-20);
}

.site-footer .navbar.navbar-expand-md button,
.mobile-menu .navbar.navbar-expand-md button {
    display: none;
}


.site-header a:hover,
.site-footer a:hover,
.site-footer .ft-1 .col-2 a:hover,
.site-footer .ft-1 .col-3 a:not(.title):hover,
.site-footer .ft-1 .col-4 a:hover {
    color: var(--thm-color-main-orange);
}


.com-content-article.item-page {
    max-width: var(--thm-max-width-1);
    margin: auto;
    padding-left: 16px;
    padding-right: 16px;
}

.com-content-article.item-page a {
    color: var(--thm-color-main-orange);
}

.site-body {
    margin-top: 80px;
}

.site-body h1 {
    font-weight: 800;
    font-size: var(--thm-font-size-58);
    color: var(--thm-color-1);
    margin: 0 0 48px;
}

.site-body p {
    font-size: var(--thm-font-size-24);
    line-height: 40px;
    color: var(--thm-color-1);
    margin: 0 0 40px;
    font-weight: normal;
}

.site-body strong {
    font-weight: 600;
}

ul.success {
    font-size: var(--thm-font-size-24);
    line-height: 36px;
    color: var(--thm-color-1);
}

.mod-treviews {
    padding: 80px 0 80px;
    background-color: var(--thm-color-2);
}


.mod-treviews .reviews-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.mod-treviews .review {
    min-width: 300px;
    width: calc((100% - 96px) / 3);
    width: -moz-calc((100% - 96px) / 3);
    width: -webkit-calc((100% - 96px) / 3);

}

.mod-treviews .review.hidden {
    display: none;
}

.mod-treviews .review .image {
    position: relative;
    margin-bottom: 8px;
    width: 100%;
    height: 310px;
    overflow: hidden;
    border-radius: 16px;
}

.mod-treviews .review {
    padding: 30px;
    min-height: 232px;
    background-color: var(--thm-color-main-white);
    box-sizing: border-box;
    border: 2px solid var(--thm-color-3);
    border-radius: 10px;
    margin-bottom: 48px;
}

.mod-treviews .review .title {
    font-weight: 600;
    font-size: var(--thm-font-size-18);
    color: var(--thm-color-1);
    margin-bottom: 6px;
}

.mod-treviews .review .date {
    font-size: var(--thm-font-size-14);
    color: var(--thm-color-5);
    margin-bottom: 16px;
}

.mod-treviews .review .desc {
    font-size: var(--thm-font-size-14);
    line-height: var(--thm-line-height-24);
    color: var(--thm-color-4);
}

.mod-treviews .navs {
    display: flex;
}

.mod-treviews .navs .nav {
    position: relative;
    width: 48px;
    height: 48px;

    background: var(--thm-color-main-white);
    border: 1px solid var(--thm-color-main-blue);
    box-sizing: border-box;
    border-radius: 6px;
}

.mod-treviews .navs .nav:hover {
    background-color: var(--thm-color-main-blue);
}

.mod-treviews .navs .nav:hover img:not(.hover) {
    opacity: 0;
}


.mod-treviews .navs .nav.left {
    margin-right: 24px;
}

.mod-tvacancy {
    padding: 0 0 80px;
}

.mod-tvacancy .desc {
    font-size: var(--thm-font-size-24);
    line-height: 40px;
    color: var(--thm-color-1);
    margin: 48px 0;

    text-align: justify;
}

.mod-tvacancy .vacancy {
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;

    padding: 32px 48px;
    border: 1px solid var(--thm-color-3);
    background-color: var(--thm-color-2);

    border-radius: 12px;
    margin-bottom: 32px;
}

.mod-tvacancy .vacancy .title {
    font-weight: 600;
    font-size: var(--thm-font-size-18);
    color: var(--thm-color-1);
    margin-bottom: 8px;

}

.mod-tvacancy .vacancy .city {
    font-size: var(--thm-font-size-16);
    color: var(--thm-color-5);
}

.mod-tvacancy .vacancy .button {
    display: block;
    min-width: 132px;
}

.com-offices {
    margin-bottom: 80px;
}

.com-offices .panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.com-offices .search {
    position: relative;
    display: block;
    width: 100%;
    max-width: 590px;
}

.com-offices .search input {
    background: var(--thm-color-2);
    box-shadow: 0 -1px 1px rgba(0, 0, 0, 0.03),
    0 1px 1px rgba(0, 0, 0, 0.03),
    -1px 0 1px rgba(0, 0, 0, 0.03),
    1px 0 1px rgba(0, 0, 0, 0.03);
    border-radius: 10px;
    width: 100%;

    font-size: var(--thm-font-size-16);
    line-height: var(--thm-line-height-24);
    color: var(--thm-color-1);

    padding-left: 64px;
    padding-top: 16px;
    padding-bottom: 16px;

    border: 1px solid var(--thm-color-2);
}

.com-offices .search input::placeholder,
textarea.v1,
input.v1 {
    color: var(--thm-color-5);
}

.com-offices .search input:focus,
textarea.v1:focus,
input.v1:focus {
    outline: none;
    border: 1px solid var(--thm-color-5);
}

.com-offices .search img {
    position: absolute;
    top: 16px;
    left: 20px;
}

textarea.v1.error,
input.v1.error,
.checkbox.error {
    border-color: var(--thm-error-color) !important;
}


.com-offices .panel .buttons {
    display: flex;
    padding: 2px;

    border: 1px solid var(--thm-color-main-blue);
    border-radius: 4px;
}

.com-offices .panel .buttons .button:not(.active) {
    background-color: var(--thm-color-main-white);
    color: var(--thm-color-5) !important;
}

.com-offices .tab {
    display: none;
}

.com-offices .tab.active {
    display: block;
}

.com-offices .regions .region {
    padding: 16px;
    box-sizing: border-box;
    border-bottom: 1px solid var(--thm-color-3);
}

.com-offices .regions .region .offices {
    height: 0;
    overflow: hidden;

    margin-bottom: 16px;
    padding-top: 24px;
    padding-left: 32px;
}

.com-offices .regions .region.opened .offices {
    height: fit-content;
}

.com-offices .regions .region .arrow, .com-offices .regions .region.opened .arrow.down {
    display: none;
}

.com-offices .regions .region .arrow.down, .com-offices .regions .region.opened .arrow.up {
    display: block;
}

.com-offices .regions .region .title,
.com-offices .regions .region .title > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.com-offices .regions .region .title img {
    margin-right: 16px
}

.com-offices .regions .region .title {
    font-weight: 600;
    font-size: var(--thm-font-size-24);
    color: var(--thm-color-1);
}

.com-offices .regions .region .office {
    display: block;
    font-size: var(--thm-font-size-20);
    color: var(--thm-color-1);
    margin-bottom: 8px;
    padding-left: 8px;
    padding-top: 4px;
    padding-bottom: 4px;
}

.com-offices .regions .region .offices .office .office-short-desc {
    display: block;
    font-size: 14px;
    margin-top: 8px;
    margin-left: 18px;
    margin-bottom: 16px;
}

.com-offices .regions .region .office.hidden,
.com-offices .regions .region.hidden {
    display: none;
}

.com-offices .regions .region .office:hover {
    color: var(--thm-color-main-orange);
}

.com-offices .offices-map .map {
    height: 1015px;
}

.com-offices .offices-map .map .ya-map-desc,
.com-office .map .ya-map-desc,
.mod-tcontacts .ya-map-desc {
    margin-top: 24px;
}

.com-offices .offices-map .map .ya-map-desc .title,
.com-office .map .ya-map-desc .title,
.mod-tcontacts .ya-map-desc .title {
    font-weight: 500;
    font-size: var(--thm-font-size-16);
    color: var(--thm-color-5);
    margin-bottom: 6px;
}

.com-offices .offices-map .map .ya-map-desc .desc,
.com-office .map .ya-map-desc .desc,
.mod-tcontacts .ya-map-desc .desc {
    font-weight: 600;
    font-size: var(--thm-font-size-18);
    color: var(--thm-color-1);
    margin-bottom: 24px;
}

.com-offices .offices-map .map .ya-map-desc .desc a.office-phone,
.com-office .map .ya-map-desc .desc a.office-phone,
.com-office .pre-desc a.office-phone {
    display: block;
    color: var(--thm-color-1);

}


.mod-tcontacts {
    margin-bottom: 160px;
}

.mod-tcontacts .addresses .address {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 80px;
}

.mod-tcontacts .addresses .address .map {
    width: 525px;
    height: 302px;
    background-color: var(--thm-color-5);
}


.mod-tcontacts .addresses .address .field {
    margin-bottom: 16px;
}

.mod-tcontacts .addresses .address .field > :nth-child(2) {
    font-weight: 500;
    font-size: var(--thm-font-size-24);
    color: var(--thm-color-1);
    letter-spacing: -0.03em;
}

.mod-tcontacts .addresses .address .title.field {
    font-weight: bold;
    font-size: var(--thm-font-size-32);
    line-height: 48px;
    color: var(--thm-color-1);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}


.mod_tmobileapp {
    margin-bottom: 160px;
}

.mod_tmobileapp .mobile-app {
    max-width: 590px;
}

.mod_tmobileapp .mobile-app .title {
    font-weight: bold;
    font-size: var(--thm-font-size-32);
    line-height: 48px;
    letter-spacing: -0.03em;
    color: var(--thm-color-1);
    margin-bottom: 32px;
}

.mod_tmobileapp .mobile-app .desc {
    font-weight: 600;
    font-size: var(--thm-font-size-20);
    line-height: 30px;
    color: var(--thm-color-4);
    margin-bottom: 64px;
}

.mod_tmobileapp .right-image {
    max-width: 550px;
    width: 100%;
}

.mod_tmobileapp .mobile-app .apps {
    margin-right: 80px;
}

.mod_tmobileapp .mobile-app .flex-wrap {
    align-items: center;
}

.mod_tmobileapp .apps a {
    display: block;

}

.mod_tmobileapp .apps a:not(:last-child) {
    margin-bottom: 12px;
}


.mod_tfaq {
    margin-bottom: 80px;
}

.mod_tfaq .faq-list .item {
    border-bottom: 1px solid var(--thm-color-3);
    margin-bottom: 48px;
}

.mod_tfaq .faq-list .item .question {
    cursor: pointer;
    flex-wrap: nowrap;
}

.mod_tfaq .faq-list .item .title {
    font-weight: 600;
    font-size: var(--thm-font-size-24);
    line-height: 36px;
    color: var(--thm-color-1);
    margin-bottom: 16px;
}

.mod_tfaq .faq-list .item .answer {
    box-sizing: border-box;
    height: 0;
    overflow: hidden;
    font-size: var(--thm-font-size-20);
    line-height: 30px;
    color: var(--thm-color-1);
}

.mod_tfaq .faq-list .item .answer > div {
    padding-top: 8px;
    padding-bottom: 16px;
    padding-right: 40px;
    max-width: 1188px;
    box-sizing: border-box;
}

.mod_tfaq .faq-list .item.opened .answer {
    height: fit-content;
}

.mod_tfaq .faq-list .item .arrow, .mod_tfaq .faq-list .item.opened .arrow.down {
    display: none;
}

.mod_tfaq .faq-list .item .arrow.down, .mod_tfaq .faq-list .item.opened .arrow.up {
    display: block;
}


.checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border: 1px solid var(--thm-color-main-blue);
    box-sizing: border-box;
    border-radius: 2px;
    cursor: pointer;
}

.checkbox img {
    display: block;
    opacity: 0;
}

.checkbox.checked img {
    opacity: 1;
}


.mod-tloanways {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: var(--thm-color-2);
}

.mod-tloanways .title-1 {
    margin-bottom: 80px;
}

.mod-tloanways .way {
    width: calc((100% - (40px * 2)) / 3);
    width: -moz-calc((100% - (40px * 2)) / 3);
    width: -webkit-calc((100% - (40px * 2)) / 3);

    box-sizing: border-box;
    padding: 32px;
    background-color: var(--thm-color-main-white);
    border: 1px solid var(--thm-color-3);
    box-shadow: 0 -0.5px 1px rgba(0, 0, 0, 0.09), 0 0.5px 1px rgba(0, 0, 0, 0.09);
    border-radius: 16px;
}

.mod-tloanways .way .image,
.mod-tloanwayspay .way .image {
    width: 80px;
    height: 80px;
    background-color: var(--thm-color-3);
    border-radius: 50%;
    margin-bottom: 16px;
}

.mod-tloanways .way .image > img,
.mod-tloanwayspay .way .image > img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.mod-tloanways .way .title,
.mod-tloanwayspay .way .title {
    font-weight: bold;
    font-size: var(--thm-font-size-32);
    line-height: 48px;
    letter-spacing: -0.03em;
    color: var(--thm-color-1);
    margin-bottom: 16px;
}

.mod-tloanways .way .desc,
.mod-tloanwayspay .way .desc {
    font-size: var(--thm-font-size-18);
    line-height: 175%;
    color: var(--thm-color-4);
    margin-bottom: 32px;
}

.mod-tloanways .way a,
.mod-tloanwayspay .way a,
.more-vacancy .similar-item a,
.com-news a.more {
    justify-content: right;
    position: relative;
    font-weight: 600;
    font-size: var(--thm-font-size-18);
    line-height: 175%;
    color: var(--thm-color-5);
}

.mod-tloanways .way a img,
.mod-tloanwayspay .way a img,
.more-vacancy .similar-item a img,
.com-news a.more img {
    margin-left: 8px;
}

.mod-tloanreq {
    padding-top: 80px;
    padding-bottom: 80px;
}

.mod-tloanreq .title-1 {
    margin-bottom: 48px;
}

.mod-tloanreq .main-desc {
    font-weight: 600;
    font-size: var(--thm-font-size-18);
    line-height: 175%;
    text-align: center;
    color: var(--thm-color-4);
    margin-bottom: 48px;
}

.mod-tloanreq .list {
    box-sizing: border-box;
    padding: 48px;
    background: var(--thm-color-2);
    border: 1px solid var(--thm-color-3);
    box-shadow: 0 -0.5px 1px rgba(0, 0, 0, 0.09), 0 0.5px 1px rgba(0, 0, 0, 0.09);
    border-radius: 24px;
}

.mod-tloanreq .list .item:not(:last-child) {
    margin-bottom: 32px;
}

.mod-tloanreq .list .text {
    margin-left: 16px;
}

.mod-tloanreq .list .text .title {
    font-weight: bold;
    font-size: var(--thm-font-size-24);
    line-height: 160%;
    color: var(--thm-color-1);
    margin-bottom: 8px;
}

.mod-tloanreq .list .text .desc {
    font-weight: 600;
    font-size: var(--thm-font-size-18);
    line-height: 175%;
    color: var(--thm-color-4);
}


.mod-tfastpay {
    margin-top: 80px;
    margin-bottom: 48px;
}

.mod-tfastpay .title-block {
    margin-bottom: 80px;
}

.mod-tfastpay .form {
    box-sizing: border-box;
    padding: 48px 32px;
    background-color: var(--thm-color-2);
    border: 1px solid var(--thm-color-3);
    box-shadow: 0 -0.5px 1px rgba(0, 0, 0, 0.09), 0 0.5px 1px rgba(0, 0, 0, 0.09);
    border-radius: 16px;
}

.mod-tfastpay .form > .title {
    font-weight: bold;
    font-size: var(--thm-font-size-32);
    line-height: 48px;
    text-align: center;
    letter-spacing: -0.03em;
    color: var(--thm-color-1);
    margin-bottom: 48px;
}

.mod-tfastpay .form .field {
    max-width: 654px;
    margin: auto auto 24px;
}

.mod-tfastpay .form .field .title {
    font-weight: 600;
    font-size: var(--thm-font-size-16);
    line-height: var(--thm-line-height-24);
    color: var(--thm-color-4);
    margin-bottom: 8px;
}

.mod-tfastpay .form .field input {
    box-sizing: border-box;
    padding: 15px 24px;
    background: var(--thm-color-main-white);
    box-shadow: 0 -0.5px 1px rgba(0, 0, 0, 0.09), 0 0.5px 1px rgba(0, 0, 0, 0.09);
    border-radius: 6px;

    width: calc(100% - 64px);
    width: -moz-calc(100% - 64px);
    width: -webkit-calc(100% - 64px);

    color: var(--thm-color-5);
    border: 1px solid var(--thm-color-main-white);

    font-size: var(--thm-font-size-16);
    line-height: var(--thm-line-height-24);

    margin-right: 32px;
}

.mod-tfastpay .form .field .help-div {
    position: relative;
}

.mod-tfastpay .form .field .help-div .help-sign {
    box-sizing: border-box;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--thm-color-5);

    font-weight: bold;
    color: var(--thm-color-5);
    font-size: var(--thm-font-size-23);
    line-height: 30px;
    text-align: center;

    cursor: pointer;
}

.mod-tfastpay .form .field .help-div .help-sign:hover,
.mod-tfastpay .form .field .help-div.shown .help-sign {
    color: var(--thm-color-main-blue);
    border-color: var(--thm-color-main-blue);
}

.mod-tfastpay .form .field .help-div .help-text {
    display: none;
    box-sizing: border-box;
    position: absolute;
    left: calc(100% + 20px);
    left: -moz-calc(100% + 20px);
    left: -webkit-calc(100% + 20px);
    top: 50%;
    transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    width: 213px;
    padding: 16px;
    font-weight: 500;
    font-size: var(--thm-font-size-12);
    line-height: 16px;
    color: var(--thm-color-4);
    background-color: var(--thm-color-main-white);
    border: 1px solid var(--thm-color-5);
    box-shadow: 0 2px 6px rgba(31, 32, 34, 0.14);
    border-radius: 4px;
}

.mod-tfastpay .form .field .help-div .help-text:after {
    content: '';
    position: absolute;
    left: -14px;
    top: calc(50% - 8px);
    top: -moz-calc(50% - 8px);
    top: -webkit-calc(50% - 8px);
    border: 8px solid transparent;
    border-right: 8px solid var(--thm-color-main-white);
}

.mod-tfastpay .form .field .help-div .help-text:before {
    content: '';
    position: absolute;
    left: -16px;
    top: calc(50% - 8px);
    top: -moz-calc(50% - 8px);
    top: -webkit-calc(50% - 8px);
    border: 8px solid transparent;
    border-right: 8px solid var(--thm-color-5);
}

.mod-tfastpay .form .field .help-div.shown .help-text {
    display: block;
}

.mod-tfastpay .form .desc {
    font-size: var(--thm-font-size-14);
    line-height: 23px;
    text-align: center;
    color: var(--thm-color-4);
    margin-bottom: 32px;
}

.form .policy {
    margin-bottom: 48px;
}

.form .policy .checkbox {
    margin-right: 16px;
}

.form .policy > div:nth-child(2),
.form .policy > div:nth-child(2) a {
    font-size: var(--thm-font-size-18);
    line-height: var(--thm-line-height-24);
    color: var(--thm-color-4);
}

.form .policy > div:nth-child(2) a {
    text-decoration: underline;
}

.mod-tfastpay .form > .button {
    max-width: 380px;
    margin: auto;
}

.form .policy.checked > div:nth-child(2),
.form .policy.checked > div:nth-child(2) a {
    color: var(--thm-color-main-blue);
}


.mod-tloanwayspay .way {
    position: relative;
    margin-bottom: 48px;

    width: calc((100% - 40px) / 2);
    width: -moz-calc((100% - 40px) / 2);
    width: -webkit-calc((100% - 40px) / 2);

    min-height: 450px;

    box-sizing: border-box;
    padding: 32px;

    background: var(--thm-color-2);
    border: 1px solid var(--thm-color-3);

    box-shadow: 0 -0.5px 1px rgba(0, 0, 0, 0.09), 0 0.5px 1px rgba(0, 0, 0, 0.09);
    border-radius: 16px;
}

.mod-tloanwayspay .way a {
    position: absolute;
    right: 32px;
    bottom: 32px;
}


.com-office {
    padding-bottom: 80px;
}

.com-office > .max-width-1 > .title,
.com-vacancy .title {
    font-weight: bold;
    font-size: var(--thm-font-size-32);
    line-height: 48px;
    letter-spacing: -0.03em;
    color: var(--thm-color-1);
    margin-bottom: 48px;
}

.com-office .image {
    width: 380px;
    height: 393px;
    border-radius: 20px;
    margin-bottom: 80px;
    margin-right: 105px;
    object-fit: cover;
}


.com-office .pre-title {
    font-weight: 500;
    font-size: var(--thm-font-size-16);
    line-height: 27px;
    color: var(--thm-color-5);
}

.com-office .pre-desc {
    font-weight: 600;
    font-size: var(--thm-font-size-24);
    line-height: 36px;
    letter-spacing: -0.03em;
    color: var(--thm-color-1);
    margin-bottom: 32px;
}

.com-office .d-f-cc .desc {
    margin-bottom: 80px;
}

.com-office .map #ya-map-office {
    width: 100%;
    height: 575px;
}

.com-vacancy {
    padding-bottom: 80px;
}

.com-vacancy .city-title {
    margin-bottom: 48px;
    color: var(--thm-color-5);
}

.com-vacancy .title {
    margin-bottom: 0;
}

.com-vacancy .sub-title {
    font-weight: bold;
    font-size: var(--thm-font-size-28);
    line-height: 42px;
    color: var(--thm-color-1);
    margin-bottom: 32px;
}

.com-vacancy .list {
    margin-bottom: 65px;
}

.com-vacancy .list .item-list {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    font-size: var(--thm-font-size-24);
    line-height: 36px;
    color: var(--thm-color-1);
}

.com-vacancy .list .item-list img {
    margin-right: 24px;
}

.com-vacancy .description p {
    margin-bottom: 24px;
}

.com-vacancy .button {
    display: block;
    max-width: 380px;
    margin: auto;
}


.more-vacancy {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: var(--thm-color-2);
}

.more-vacancy .list {
    justify-content: space-between;
}

.more-vacancy .similar-item {
    position: relative;
    width: calc((100% - 40px) / 2);
    width: -moz-calc((100% - 40px) / 2);
    width: -webkit-calc((100% - 40px) / 2);
    padding: 32px 32px 64px;
    background: var(--thm-color-main-white);
    border: 1px solid var(--thm-color-3);
    box-sizing: border-box;
    box-shadow: 0 -0.5px 1px rgba(0, 0, 0, 0.09), 0 0.5px 1px rgba(0, 0, 0, 0.09);
    border-radius: 16px;
}

.more-vacancy .similar-item .title {
    font-weight: 500;
    font-size: var(--thm-font-size-24);
    line-height: 36px;
    color: var(--thm-color-1);
    margin-bottom: 16px;
}

.more-vacancy .similar-item .city {
    font-size: var(--thm-font-size-18);
    line-height: 175%;
    color: var(--thm-color-4);
    margin-bottom: 32px;
}

.more-vacancy .similar-item a {
    position: absolute;
    bottom: 32px;
    right: 32px;
}

.mod_tvacancycall {
    padding-top: 80px;
    padding-bottom: 80px;
}

.mod_tvacancycall .title-3 {
    margin-bottom: 32px;
}

.mod_tvacancycall .desc {
    font-size: var(--thm-font-size-18);
    line-height: 175%;
    text-align: center;
    color: var(--thm-color-1);
    margin-bottom: 48px;
}

.form .pre-title {
    font-weight: 600;
    font-size: var(--thm-font-size-14);
    line-height: 16px;
    color: #787676;
    margin-bottom: 8px;
}

.mod-tappquest .desc span,
.form .pre-title span {
    color: var(--thm-color-main-orange);
}

input.v1,
textarea.v1 {
    box-sizing: border-box;
    padding: 16px 24px;
    width: 100%;
    background: var(--thm-color-2);
    border: 1px solid var(--thm-color-3);
    box-shadow: 0 -0.5px 1px rgba(0, 0, 0, 0.09), 0 0.5px 1px rgba(0, 0, 0, 0.09);
    border-radius: 6px;

    font-size: var(--thm-font-size-16);
    line-height: var(--thm-line-height-24);
    color: var(--thm-color-1);
    margin-bottom: 32px;
}

textarea.v1 {
    resize: none;
}

.form .field.file {
    display: flex;
}

.form .field.file .file-list {
    margin-left: 46px;
    width: 50%;
}

.form .field.file .file-list .status .success,
.form .field.file .file-list .status .error,
.form .field.file .file-list .file-clone.loaded .wait {
    display: none;
}

.form .field.file .file-list .file-clone.loaded .status .success,
.form .field.file .file-list .file-clone.success .status .success {
    display: block;
}

.form .field.file .file-list .file-clone.error .status .error,
.form .field.file .file-list .file-clone.file-size-error .status .error {
    display: block;
}

.form .field.file .file-list .file-clone.file-size-error .file-name-size {
    color: var(--thm-error-color);
}


.form .field.file .file-list .file-clone.loaded .status .success,
.form .field.file .file-list .file-clone.success .status .wait,
.form .field.file .file-list .file-clone.error .status .wait,
.form .field.file .file-list .file-clone.file-size-error .status .wait {
    display: none;
}


.form .field.file .file-list .progress-bar {
    width: calc(100% - 70px);
    width: -moz-calc(100% - 70px);
    width: -webkit-calc(100% - 70px);
    height: 6px;
    margin-right: 40px;

    background-color: var(--thm-color-6);
    border-radius: 4px;

    overflow: hidden;
}

.form .field.file .file-list .progress-bar .progress {
    width: 0;
    height: 100%;
    background-color: var(--thm-color-main-orange);
}

.form .field.file .file-list .file-clone.loaded .progress-bar .progress {
    width: 100%;
}


.form .field.file .file-list .file-name {
    font-size: var(--thm-font-size-16);
    line-height: var(--thm-line-height-24);
    color: var(--thm-color-main-blue);

    width: calc(100% - 46px);
    width: -moz-calc(100% - 46px);
    width: -webkit-calc(100% - 46px);
}

.form .field.file .file-list .file-clone.hidden {
    display: none;
}

.form .field.file .file-select {
    box-sizing: border-box;
    padding: 24px;
    width: 380px;
    background: var(--thm-color-2);
    border: 1px solid var(--thm-color-3);
    box-shadow: 0 -0.5px 1px rgba(0, 0, 0, 0.09), 0 0.5px 1px rgba(0, 0, 0, 0.09);
    border-radius: 6px;
    margin-bottom: 48px;
    cursor: pointer;
}

.form .field.file input[type="file"] {
    display: none;
}

.form .field.file .pre-title {
    text-align: center;
    margin-bottom: 16px;
    font-weight: 600;
    font-size: var(--thm-font-size-16);
    line-height: 16px;
    color: var(--thm-color-4);
}

.form .field.file .pre-text {
    list-style: inherit;
    font-size: var(--thm-font-size-16);
    line-height: var(--thm-line-height-24);
    color: var(--thm-color-4);
    margin-left: 24px;
    margin-right: 24px;
    margin-bottom: 0;
}


.form .f-2,
.form .f-21,
.form .f-3,
.form .f-22 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.form .f-2 .field {
    width: calc((100% - 40px) / 2);
    width: -moz-calc((100% - 40px) / 2);
    width: -webkit-calc((100% - 40px) / 2);
}

.form .f-3 .field,
.form .f-21 .field:nth-child(1),
.form .f-22 .field:nth-child(2) {
    width: calc((100% - (40px * 2)) / 3);
    width: -moz-calc((100% - (40px * 2)) / 3);
    width: -webkit-calc((100% - (40px * 2)) / 3);
}

.form .f-21 .field:nth-child(2),
.form .f-22 .field:nth-child(1) {
    width: calc(100% - 40px - ((100% - (40px * 2)) / 3));
    width: -moz-calc(100% - 40px - ((100% - (40px * 2)) / 3));
    width: -webkit-calc(100% - 40px - ((100% - (40px * 2)) / 3));
}

.field.add {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: var(--thm-font-size-18);
    line-height: 175%;
    color: var(--thm-color-main-blue);
}

.mod_tvacancycall .policy {
    align-items: center;
}

.mod_tvacancycall .button,
.mod-tappquest .form .button {
    max-width: 380px;
    margin: auto;
}

.mod_tvacancycall textarea {
    height: 224px;
}

.mod-tsitemap {
    margin-top: 80px;
}

.mod-tsitemap .item .title {
    font-weight: bold;
    font-size: var(--thm-font-size-18);
    line-height: 27px;
    display: flex;
    align-items: center;
    color: var(--thm-color-1);
}

.mod-tsitemap .item > .title a,
.mod-tsitemap .item > .title span {
    margin-left: 29px;
    color: var(--thm-color-1);
}

.mod-tsitemap .item.with-list > .title a,
.mod-tsitemap .item.with-list > .title span {
    margin-left: 16px;
}

.mod-tsitemap .item {
    margin-bottom: 16px;
    padding-top: 16px;
    padding-bottom: 16px;
}

.mod-tsitemap .item.item-1 {
    border-bottom: 1px solid var(--thm-color-3);
}

.mod-tsitemap .item .list {
    padding-left: 29px;
}

.mod-tsitemap .item.item-2,
.mod-tsitemap .item.item-3,
.mod-tsitemap .item.item-4 {
    padding: 0;
    margin-top: 16px;
    margin-bottom: 0;
}

.mod-tsitemap .item.item-2 .title {
    font-weight: 500;
    font-size: var(--thm-font-size-18);
    line-height: 27px;
}

.mod-tsitemap .item.item-3 .title {
    font-weight: 400;
    font-size: var(--thm-font-size-18);
    line-height: 27px;
}

.mod-tsitemap .item.item-4 {
    margin-top: 10px;
}

.mod-tsitemap .item.item-4 .title {
    font-weight: 300;
    font-size: var(--thm-font-size-16);
    line-height: 27px;
}

.mod-tsitemap .item .list {
    height: 0;
    overflow: hidden;
}

.mod-tsitemap .item.opened > .list {
    height: fit-content;
}

.mod-tsitemap .item .title img {
    cursor: pointer;
    transition: var(--thm-transition-all);
    -o-transition: var(--thm-transition-all);
    -webkit-transition: var(--thm-transition-all);
}

.mod-tsitemap .item.opened > .title img {
    transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
}

.mod-tsitemap .item .title:hover a {
    color: var(--thm-color-main-orange);
}

.com-documents {
    padding-bottom: 80px;
}

.com-documents .documents-list .document {
    display: flex;
    align-items: start;
    padding: 16px;
    background-color: var(--thm-color-2);
    border: 1px solid var(--thm-color-3);
    box-sizing: border-box;
    box-shadow: 0px -0.5px 1px rgba(0, 0, 0, 0.09), 0px 0.5px 1px rgba(0, 0, 0, 0.09);
    border-radius: 8px;
    margin-bottom: 32px;
}

.com-documents .documents-list .document > img {
    margin-right: 22px;
}

.com-documents .documents-list .document .title {
    font-weight: 500;
    font-size: var(--thm-font-size-24);
    line-height: 36px;
    color: var(--thm-color-1);
    margin-bottom: 8px;
}

.com-documents .documents-list .document .archive-open,
.com-documents .documents-list .document .archive-close {
    width: fit-content;
    font-size: var(--thm-font-size-18);
    line-height: 27px;
    color: var(--thm-color-5);
    cursor: pointer;
}

.com-documents .documents-list .document .archive-close {
    margin-top: 16px;
}

.com-documents .documents-list .document .archive-open:hover,
.com-documents .documents-list .document .archive-close:hover,
.com-documents .documents-list .document .archives .archive a:hover,
.com-documents .documents-list .document .title:hover {
    color: var(--thm-color-main-orange);
}

.com-documents .documents-list .document .archives {
    height: 0;
    overflow: hidden;
}

.com-documents .documents-list .document.opened .archives {
    height: fit-content;
}

.com-documents .documents-list .document.opened .archive-open {
    opacity: 0;
}

.com-documents .documents-list .document .archives .archive {
    display: flex;
    align-items: center;
    margin-top: 16px;
}

.com-documents .documents-list .document .archives .archive img {
    width: 16px;
    margin-right: 8px;
}

.com-documents .documents-list .document .archives .archive a {
    font-weight: 400;
    color: var(--thm-color-1);
}

.com-reviews {
    padding-bottom: 83px;
}

.com-reviews .review {
    display: flex;
    padding: 32px;
    background: var(--thm-color-2);
    border: 1px solid var(--thm-color-3);
    box-sizing: border-box;
    box-shadow: 0px -0.5px 1px rgba(0, 0, 0, 0.09), 0px 0.5px 1px rgba(0, 0, 0, 0.09);
    border-radius: 8px;
    margin-bottom: 48px;
}

.com-reviews .review .image {
    position: relative;
    width: 150px;
    border-radius: 16px;
    overflow: hidden;
    margin-right: 16px;
}

.com-reviews .review.has-image .review-right {
    width: calc(100% - 150px - 16px);
    width: -moz-calc(100% - 150px - 16px);
    width: -webkit-calc(100% - 150px - 16px);
}

.com-reviews .review .title {
    font-weight: 600;
    font-size: var(--thm-font-size-24);
    line-height: 36px;
    color: var(--thm-color-1);
    margin-bottom: 16px;
}

.com-reviews .review .d-f {
    font-size: var(--thm-font-size-18);
    line-height: 27px;
    color: var(--thm-color-5);
    align-items: center;
}

.com-reviews .review .divider {
    margin-left: 24px;
    margin-right: 24px;
    width: 1px;
    height: 21px;
    background-color: var(--thm-color-5);
}

.com-reviews .review .text {
    margin-top: 16px;
    font-weight: 500;
    font-size: var(--thm-font-size-18);
    line-height: 185%;
    color: var(--thm-color-1);
}


.pagination {
    display: flex;
    justify-content: center;
    margin-top: 32px;
    margin-bottom: 32px;
}

.pagination .page {
    display: flex;
    justify-content: center;
    align-items: center;

    box-sizing: border-box;
    width: 48px;
    height: 48px;
    background: var(--thm-color-main-white);
    border: 1px solid var(--thm-color-main-blue);
    border-radius: 6px;

    font-weight: 800;
    font-size: var(--thm-font-size-18);
    color: var(--thm-color-main-blue);
}

.pagination .page:not(:last-child) {
    margin-right: 24px;
}

.pagination .page .hover,
.pagination .page:hover .main {
    display: none;
}

.pagination .page:hover .hover {
    display: block;
}

.pagination .page:hover,
.pagination .page.current {
    color: var(--thm-color-main-white);
    background-color: var(--thm-color-main-blue);
    box-shadow: 0 4px 8px rgba(23, 44, 93, 0.32);
}

.com-news .new {
    display: flex;
    position: relative;
    flex-wrap: wrap;
    align-items: start;
    padding: 32px;
    background: var(--thm-color-2);
    border: 1px solid var(--thm-color-3);
    box-sizing: border-box;
    box-shadow: 0 -0.5px 1px rgba(0, 0, 0, 0.09), 0 0.5px 1px rgba(0, 0, 0, 0.09);
    border-radius: 16px;
    margin-bottom: 48px;
}

.com-news .new .image {
    position: relative;
    width: 321px;
    height: 328px;
    border-radius: 16px;
    overflow: hidden;

}

.com-news .new .image .preview,
.com-new .image .preview,
.com-reviews .reviews .review .image .preview,
.mod-treviews .review .image .preview {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.com-news .new .image .video-play-back,
.com-new .image .video-play-back,
.com-reviews .reviews .review .image .video-play-back,
.mod-treviews .review .image .video-play-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.com-news .new .image:hover > .video-play-back,
.com-new .image:hover > .video-play-back,
.com-reviews .reviews .review .image:hover > .video-play-back,
.mod-treviews .review .image:hover > .video-play-back {
    background-color: rgba(0, 0, 0, 0.6);
}

.com-news .new .image:active > .video-play-back,
.com-new .image:active > .video-play-back,
.com-reviews .reviews .review .image:active > .video-play-back,
.mod-treviews .review .image:active > .video-play-back {
    background-color: rgba(0, 0, 0, 0.4);
}

.com-news .new .image .video-play,
.com-new .image .video-play,
.com-reviews .reviews .review .image .video-play,
.mod-treviews .review .image .video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

.com-news .new .text {
    margin-left: 48px;
    width: calc(100% - 321px - 48px);
    width: -moz-calc(100% - 321px - 48px);
    width: -webkit-calc(100% - 321px - 48px);
}

.com-news .new .title {
    font-weight: 600;
    font-size: var(--thm-font-size-24);
    line-height: 36px;
    color: var(--thm-color-1);
    margin-bottom: 16px;
}

.com-news .new .date {
    font-size: var(--thm-font-size-18);
    line-height: 27px;
    color: var(--thm-color-5);
    margin-bottom: 16px;
}

.com-news .new .desc {
    font-weight: 500;
    font-size: var(--thm-font-size-18);
    line-height: 185%;
    color: var(--thm-color-1);
    margin-bottom: 32px;
}

.com-news .new .desc p:last-child,
.com-reviews .review p:last-child,
.com-new .desc p:last-child {
    margin-bottom: 0;
}

.com-news .new .more {
    position: absolute;
    bottom: 32px;
    right: 32px;
}

.com-new {
    padding-bottom: 160px;
}

.com-new .date {
    font-weight: 500;
    font-size: var(--thm-font-size-18);
    line-height: 27px;
    color: var(--thm-color-5);
    margin-bottom: 16px;
}

.com-new .title {
    font-weight: bold;
    font-size: var(--thm-font-size-32);
    line-height: 48px;
    letter-spacing: -0.03em;
    color: var(--thm-color-1);
}

.com-new .d-f-c-sb {
    align-items: self-end;
    margin-bottom: 48px;
}

.com-new .social {
    display: flex;
}

.com-new .social a {
    display: block;
    width: 32px;
    height: 32px;
}

.com-new .social a:hover {
    transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

.com-new .social a img {
    max-width: 100%;
    max-height: 100%;
}


.com-new .social a:not(:last-child) {
    margin-right: 8px;
}

.com-new .desc {
    font-size: var(--thm-font-size-24);
    line-height: 40px;
    color: var(--thm-color-1);

    width: calc(100% - 380px - 105px);
    width: -moz-calc(100% - 380px - 105px);
    width: -webkit-calc(100% - 380px - 105px);
}

.com-new .image {
    position: relative;
    width: 380px;
    height: 393px;
    border-radius: 20px;

    overflow: hidden;
    margin-left: 105px;
}

.mod-tappquest {
    padding-bottom: 77px;
}

.mod-tappquest .title-1 {
    margin-bottom: 48px;
}

.mod-tappquest .desc {
    font-size: var(--thm-font-size-24);
    line-height: 40px;
    text-align: center;
    color: var(--thm-color-1);
    margin-bottom: 56px;
}

.mod-tappquest .kids {
    min-height: 128px;
}

.mod-tappquest .duties,
.mod-tappquest .achievements {
    min-height: 152px;
}

.mod-tappquest .form .desc {
    font-size: var(--thm-font-size-18);
    line-height: 27px;
    font-feature-settings: 'salt' on;
    color: var(--thm-color-4);
}

.mod-tappquest .form .field.file {
    width: 100%;
}

.mod-tappquest .form .field.file ul {
    margin-left: 25%;
}

.mod-tappquest .form .education:not(:nth-child(1)),
.mod-tappquest .form .career:not(:nth-child(1)) {
    border-top: 1px solid var(--thm-color-4);
    padding-top: 48px;
}


.form .field.file .file-select {
    width: 50%;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 80%;
    max-width: 480px;
    background-color: white;
    z-index: 90;
    box-shadow: 0 4px 8px rgba(23, 44, 93, 0.32);
    padding: 36px;
    box-sizing: border-box;

    transform: translateX(-150%);
    -o-transform: translateX(-150%);
    -ms-transform: translateX(-150%);
    -moz-transform: translateX(-150%);
    -webkit-transform: translateX(-150%);

    transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
}

.mobile-menu.shown {
    transform: translateX(-0%);
    -o-transform: translateX(-0%);
    -ms-transform: translateX(-0%);
    -moz-transform: translateX(-0%);
    -webkit-transform: translateX(-0%);
}

.mobile-menu .title {
    font-weight: bold;
    font-size: var(--thm-font-size-32);
    line-height: 48px;
    letter-spacing: -0.03em;
    color: var(--thm-color-main-blue);
    margin-bottom: 16px;
    text-align: center;
}

.mobile-menu > .mod-menu {
    font-weight: 500;
    font-size: var(--thm-font-size-18);
    line-height: 27px;
    color: var(--thm-color-2);
    margin-bottom: 16px;

    height: calc(100% - 168px);
    height: -moz-calc(100% - 168px);
    height: -webkit-calc(100% - 168px);

    overflow-y: auto;
    overflow-x: hidden;
}

.mobile-menu > .mod-menu .nav-item {
    border-bottom: 1px solid var(--thm-color-3);
}

.mobile-menu > .mod-menu > .nav-item a,
.mobile-menu > .mod-menu .mobile-menu-arrow > span,
.mobile-menu > .mod-menu > .nav-item > span {
    padding-top: 16px;
    padding-bottom: 16px;
}

.mobile-menu > .mod-menu > .nav-item .nav-item a,
.mobile-menu > .mod-menu > .nav-item .nav-item > span {
    padding-top: 8px;
    padding-bottom: 8px;
}

.mobile-menu > .mod-menu .nav-item .nav-item:last-child {
    border-bottom: none;
}

.mobile-menu > .mod-menu > li > a,
.mobile-menu > .mod-menu > li > span,
.mobile-menu > .mod-menu .mobile-menu-arrow {
    font-size: var(--thm-font-size-22);
}

.mobile-menu > .mod-menu .mobile-menu-arrow {
    display: flex;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu > .mod-menu .mobile-menu-arrow span,
.mobile-menu > .mod-menu .mobile-menu-arrow a {
    margin-bottom: 0;
}

.mobile-menu > .mod-menu .mobile-menu-arrow > img {
    margin-right: 16px;

    transform: rotate(90deg);
    -ms-transform: rotate(90deg);

    transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
}

.mobile-menu > .mod-menu .mobile-menu-arrow.opened > img {
    transform: rotate(270deg);
    -ms-transform: rotate(270deg);
}

.mobile-menu > .mod-menu .deeper > a:before,
.mobile-menu > .mod-menu .deeper > span:before {
    content: url(/images/icons/offices/arrow-right.png);
    position: relative;
    display: block;
    margin-right: 8px;
}

.mobile-menu > .mod-menu .deeper > ul {
    height: 0;
    overflow: hidden;
}

.mobile-menu > .mod-menu .deeper > ul.opened {
    height: fit-content;
}

.mobile-menu > .mod-menu a {
    display: block;
    color: var(--thm-color-main-blue);
}

.mobile-menu > .mod-menu span {
    display: block;
    color: var(--thm-color-4);
    margin-bottom: 16px;
}

.mobile-menu > .mod-menu a:hover {
    color: var(--thm-color-main-orange);
}

.mobile-menu > .mod-menu ul {
    margin-left: 16px;
}

.mobile-menu .apps .navbar {
    width: 100%;
}

.mobile-menu .apps .mod-menu.mod-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}


.mobile-menu .apps li {
    display: block;
    width: calc((100% - 16px) / 2);
}

.mobile-menu .apps a {
    display: block;
    width: 100%;
}

.mobile-menu .apps a img {
    width: 100%;
    height: auto;
}

.mod-ttable {
    padding-bottom: 80px;
}

.mod-ttable table {
    width: 100%;
    overflow-wrap: break-word;
}


.mod-ttable tbody:before {
    content: "@";
    display: block;
    line-height: 10px;
    text-indent: -99999px;
}

.mod-ttable thead tr {

    background: #F9FAFA;
    box-shadow: 0px -0.5px 1px rgba(0, 0, 0, 0.09), 0px 0.5px 1px rgba(0, 0, 0, 0.09);

}

.mod-ttable thead tr th {
    padding: 8px;
    font-weight: 500;
    font-size: var(--thm-font-size-24);
    line-height: 36px;
    color: var(--thm-color-1);

    box-shadow: 0px -0.5px 1px rgba(0, 0, 0, 0.09), 0px 0.5px 1px rgba(0, 0, 0, 0.09);
}

.mod-ttable .item-list td {
    padding: 16px;

    font-weight: 400;
    font-size: var(--thm-font-size-18);
    line-height: 27px;
    color: var(--thm-color-1);

    border: 1px solid var(--thm-color-3);
    border-collapse: collapse;

}


.trisodium a {
    color: var(--thm-color-4);
    font-size: 12px;
}


.__jivoMobileButton {
    z-index: 999 !important;
}

.site-footer .mod-menu .item-107 {
    display: none;
}


.mod-tbanner {
    position: relative;
}

.mod-tbanner .sides {
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.mod-tbanner .left-side,
.mod-tbanner .right-side {
    box-sizing: border-box;
}

.mod-tbanner .left-side {
    margin-left: calc((100% - var(--thm-max-width-1)) / 2);
    max-width: calc(var(--thm-max-width-1) / 2);
    width: 100%;

    padding-top: 8px;
    padding-bottom: 8px;

    z-index: 1;
}

.mod-tbanner .right-side {
    position: relative;
    width: 50%;
}


.mod-tbanner .backs,
.mod-tbanner .back,
.mod-tbanner .banners,
.mod-tbanner .banners .banner,
.mod-tbanner .banners .banner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mod-tbanner .banners {
    z-index: 0;
}

.mod-tbanner .backs .back,
.mod-tbanner .banners .banner {
    opacity: 0;
}

.mod-tbanner .back.active,
.mod-tbanner .banners .banner.active {
    opacity: 1;
}

.mod-tbanner .banners .banner.active {
    z-index: 5;
}

.mod-tbanner .banners .banner img {
    display: block;
    object-fit: cover;
    object-position: left top;
}

.mod-tbanner .banners .banner:not(.full-back) img {
    object-fit: contain;
    object-position: center;
}

.mod-tbanner .switches {
    position: absolute;
    bottom: 32px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

    border-radius: 32px;
    background-color: white;
    width: fit-content;
    left: 50%;
    padding: 2px 4px;
}

.mod-tbanner .switches .switch {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--thm-color-3);

    cursor: pointer;

    transition: background-color 1s linear;
    -moz-transition: background-color 1s linear;
    -webkit-transition: background-color 1s linear;
}


.mod-tbanner .switches .switch:not(:first-child) {
    margin-left: 8px;
}

.mod-tbanner .switches .switch:hover {
    background-color: var(--thm-color-4);
}

.mod-tbanner .switches .switch.active {
    background-color: var(--thm-color-main-orange);
}

.mod-tbanner {
    padding: 80px 0;
    max-width: 1920px;
    margin: auto;
}

.mod-tbanner .backs .back:not(.full-back) {
    top: 80px;
/*    height: calc(100% - 160px);
    height: -moz-calc(100% - 160px);
    height: -webkit-calc(100% - 160px);*/

    height: calc(100% - 95px);
    height: -moz-calc(100% - 95px);
    height: -webkit-calc(100% - 95px);
}

.mod-tbanner .backs .back .back-pc,
.mod-tbanner .backs .back .back-mobile {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.mod-tbanner .backs .back .back-mobile {
    display: none;
}

.mod-tbanner .backs .back.full-back .rounds-div {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100% - 160px);
    height: -moz-calc(100% - 160px);
    height: -webkit-calc(100% - 160px);
}

.mod-tbanner .banners .rounds-div,
.mod-tbanner .backs .back:not(.full-back) .rounds-div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mod-tbanner .rounds {
    position: absolute;
    width: 30px;
    height: 30px;
    overflow: hidden;
}

.mod-tbanner .rounds > div {
    position: absolute;
    border: 30px solid white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
}

.mod-tbanner .banners .rounds-div .round-4 {
    display: none;
}

.mod-tbanner .rounds.round-1 {
    top: 0;
    left: 0;
}

.mod-tbanner .rounds.round-1 > div {
    top: -30px;
    left: -30px;
}

.mod-tbanner .rounds.round-2 {
    top: 0;
    right: 0;
}

.mod-tbanner .rounds.round-2 > div {
    top: -30px;
    left: -60px;
}

.mod-tbanner .rounds.round-3 {
    bottom: 0;
    right: 0;
}

.mod-tbanner .rounds.round-3 > div {
    top: -60px;
    left: -60px;
}

.mod-tbanner .rounds.round-4 {
    bottom: 0;
    left: 0;
}

.mod-tbanner .rounds.round-4 > div {
    top: -60px;
    left: -30px;
}

/* Newest since 2024-10-24 */
.mod-tbanner {
    padding-top: 16px;
}

.mod-tbanner .backs .back:not(.full-back) {
    top: 16px;
}
/* End. */

/*
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
 */


@media (max-width: 1440px) {
    .mod-tblocks .list .item-list.composition-2 .text,
    .mod-tblocks .list .item-list.composition-3 .text {
        word-break: break-all;
    }
}

@media (min-width: 1250px) {

    .mod-tblocks .list .item-list .title,
    .mod-tblocks .list .item-list .desc {
        webkit-hyphens: none;
        -moz-hyphens: none;
        -ms-hyphens: none;
        hyphens: none;
    }
}

@media (max-width: 1250px) {
    .mod_tmobileapp .right-image {
        width: calc(100% - 590px);
        width: -moz-calc(100% - 590px);
        width: -webkit-calc(100% - 590px);
    }

    .site-header .second-part .mod-menu.nav {
        display: none;
    }

    .site-header .mobile-menu-button {
        display: block !important;
    }

    .site-header .second-part .with-buttons-block {
        width: calc(80% - 175px - 32px);
    }

    .com-offices .search input {
        box-sizing: border-box;
    }

    .com-offices .search {
        width: calc(100% - 375px);
        width: -moz-calc(100% - 375px);
        width: -webkit-calc(100% - 375px);
    }

    .mod-tfastpay .form .field .help-div .help-text {
        right: -webkit-calc(100% + 20px);
        left: auto;
    }

    .mod-tblocks .list .item-list.composition-2,
    .mod-tblocks .list .item-list.composition-3 {
        flex-wrap: wrap;
    }

    .mod-tblocks .list .item-list.composition-2 img {
        margin-right: auto;
        margin-bottom: 16px;
    }

    .mod-tblocks .list .item-list.composition-2 .text,
    .mod-tblocks .list .item-list.composition-3 .text {
        word-break: break-word;
    }

    .mod-tblocks .list .item-list.composition-2.w-1-3 img,
    .mod-tblocks .list .item-list.composition-2.w-2-3 img {
        width: 100%;
        margin-right: 0;
        margin-bottom: 16px;
    }

    .mod-tblocks .list .item-list.composition-3.w-1-3 img,
    .mod-tblocks .list .item-list.composition-3.w-2-3 img {
        width: 100%;
        margin-left: 0;
        margin-top: 16px;
    }


    .mod-tbanner .left-side {
        margin-left: 0;
        padding-right: 8px;
        padding-left: 8px;
    }

    .mod-tbanner .left-side,
    .mod-tbanner .right-side {
        width: 50%;
    }
}

@media (max-width: 1000px) {
    .site-header .vi-version-content .changer {
        width: 100%;
        margin: 0 0 16px !important;
    }

    .site-header .first-part > div:nth-child(1) {
        flex-wrap: wrap;
    }

    .site-header .second-part .with-buttons-block {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        align-items: end;
        padding-left: 16px;
        box-sizing: border-box;
    }

    .site-header .second-part .with-buttons-block .button {
        width: 100%;
        font-size: 15px;
        max-width: 180px;
    }

    .site-header .second-part .with-buttons-block .button.get-a-call img {
        display: none;
    }

    .site-header .second-part .with-buttons-block .button:not(:last-child) {
        margin-bottom: 8px;
    }

    .mod-tblocks .list .item-list.item-list-class-1:not(.w-3-3),
    .mod-tblocks .list .item-list.item-list-class-2:not(.w-3-3) {
        width: 50%;
    }

    .mod-tblocks .list .item-list.item-list-class-3 {
        width: 100%;
    }


    .mod-tappquest .full-name-div .field {
        width: 100% !important;
    }


    .mod-twhywe .list.list-1 .item-list {
        width: 100%;
    }

    .mod-twhywe .list.list-2 .item-list,
    .mod-twhywe .list.list-3 .item-list,
    .mod-twhywe .list.list-4 .item-list,
    .mod-twhywe .list.list-5 .item-list,
    .mod-twhywe .list.list-6 .item-list {
        width: calc((100% - 40px) / 2);
        width: -moz-calc((100% - 40px) / 2);
        width: -webkit-calc((100% - 40px) / 2);
    }

    .mod-twhywe .list.list-5 .item-list:nth-child(2n+1) {
        margin-left: 0;
    }

    .mod-twhywe .list.list-5 .item-list:nth-child(2n) {
        margin-left: 40px;
    }

    .mod_tmobileapp .mobile-app .flex-wrap {
        justify-content: center;
    }
}

@media (max-width: 950px) {

    .mod-tbanner .banners .rounds-div,
    .mod-tbanner .backs .back:not(.full-back) .rounds-div {
        top: -1px;
        left: -1px;

        width: calc(100% + 2px);
        width: -moz-calc(100% + 2px);
        width: -webkit-calc(100% + 2px);

        height: calc(100% + 2px);
        height: -moz-calc(100% + 2px);
        height: -webkit-calc(100% + 2px);
    }

    .mod-tbanner .backs .back.full-back .rounds-div {
        top: 79px;
        left: -1px;

        width: calc(100% + 2px);
        width: -moz-calc(100% + 2px);
        width: -webkit-calc(100% + 2px);

        height: calc(100% - 160px + 2px);
        height: -moz-calc(100% - 160px + 2px);
        height: -webkit-calc(100% - 160px + 2px);
    }

    .mod-tbanner .backs .back .back-pc,
    .mod-tbanner .banners .rounds-div .round-2 {
        display: none;
    }

    .mod-tbanner .backs .back .back-mobile,
    .mod-tbanner .banners :not(.full-back) .rounds-div .round-4 {
        display: block;
    }

    .mod-tbanner .banners .banner img {
        height: 360px !important;
    }
    .mod-tbanner .banners .banner:not(.full-back) img {
        object-position: bottom;
    }


    .mod-tbanner {
        height: 1044px;
        max-width: 870px;
    }

    .mod-treviews .review {
        width: 100%;
    }

    .com-new .title {
        margin-bottom: 16px;
    }

    .mod-tbanner .left-side,
    .mod-tbanner .right-side {
        width: 100%;
    }

    .mod-tbanner .left-side {
        margin: auto;
    }

    .mod-tbanner .banners,
    .mod-tbanner .banners .banner.active,
    .mod-tbanner .banners .banner.active img {
        position: relative;
        height: auto;
    }

}

@media (max-width: 900px) {
    .mod_tmobileapp .right-image {
        width: 100%;
        margin-top: 64px;
    }

    .mod_tmobileapp {
        margin-bottom: 32px;
    }

    .mod_tmobileapp .d-f-c-sb {
        justify-content: center;
    }

    .site-header {
        position: fixed;
        width: 100%;
        left: 0;
        top: 0;

        box-shadow: 0 0 4px 5px rgba(0, 0, 0, 0.2);
        -o-box-shadow: 0 0 4px 5px rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 0 0 4px 5px rgba(0, 0, 0, 0.2);
        -webkit-box-shadow: 0 0 4px 5px rgba(0, 0, 0, 0.2);
    }

    body {
        padding-top: 146px;
    }

    .mod-tbanner .left-side {
        z-index: 4;
    }
}


@media (max-width: 850px) {

    .body-before-sides .w-50,
    .mod-tloanways .way,
    .mod-tloanwayspay .way,
    .mod-treviews .navs {
        width: 100%;
    }

    .body-before-sides {
        flex-direction: column-reverse;
    }

    .body-before-sides .body-before-right {
        margin-bottom: 64px;
    }

    .body-before-sides .body-before-left {
        max-width: 590px;
    }


    .mod_tlastnews .news-list .news {
        width: calc((100% - 40px) / 2);
        width: -moz-calc((100% - 40px) / 2);
        width: -webkit-calc((100% - 40px) / 2);
    }

    .com-news .new .image,
    .com-news .new .text {
        width: 100%;
        margin-bottom: 16px;
    }

    .com-news .new .text {
        margin: 0;
    }

    .com-new .d-f {
        flex-wrap: wrap;
    }

    .com-new .desc {
        color: var(--thm-color-1);
        width: calc(100% - 380px - 32px);
        width: -moz-calc(100% - 380px - 32px);
        width: -webkit-calc(100% - 380px - 32px);
    }

    .com-new .image {
        margin-left: 32px;
    }

    .mod-tloanways .way {
        margin-bottom: 16px;
    }

    .mod-treviews .navs,
    .mod-treviews .title-block {
        justify-content: center;
    }

    .mod-treviews .navs {
        margin-top: 16px;
    }

    .site-header .second-part > div {
        max-width: 500px;
    }

    .site-header .second-part .phone,
    .site-header .second-part .logo {
        width: calc(100% - 195px);
        text-align: right;
    }

    .site-header .mobile-menu-button {
        position: absolute;
    }


    .site-footer .ft-1 .col-1,
    .site-footer .ft-1 .col-2,
    .site-footer .ft-1 .col-3,
    .site-footer .ft-1 .col-4 {
        width: 50%;
    }

    .site-footer .ft-1 .col-1,
    .site-footer .ft-1 .col-2 {
        margin-bottom: 48px;
    }

    .site-footer .ft-1 .col-2,
    .site-footer .ft-1 .col-4 {
        text-align: left;
        padding-left: 32px;
        box-sizing: border-box;
    }


    .mod_tloanclicks .apps > a {
        width: 50%;
    }
}


@media (max-width: 700px) {

    .site-footer .ft-1 {
        justify-content: space-around;
    }

    .more-vacancy .list {
        flex-wrap: wrap;
    }

    .mod-tblocks .list .item-list.item-list-class-1,
    .mod-tblocks .list .item-list.item-list-class-2,
    .com-new .desc,
    .com-new .image,
    .more-vacancy .similar-item,
    .com-offices .search {
        width: 100%;
    }

    .com-new .desc,
    .com-new .image {
        margin: 0 0 16px;
    }

    .com-new .image {
        height: 100%;
    }

    .more-vacancy .similar-item,
    .com-offices .search {
        margin-bottom: 16px;
    }

    .mod-ttable table {
        table-layout: fixed;
    }

    .mod-tblocks .list .item-list {
        padding-left: 16px;
        padding-right: 16px;
    }

    .mod-tblocks .list .item-list .title,
    .mod-tblocks .list .item-list .desc {
        /*word-break: break-all; */
    }
}

@media (max-width: 640px) {

    .com-reviews .review {
        flex-direction: column;
    }

    .com-reviews .review .image {
        margin-bottom: 16px;
    }

    .com-reviews .review .image,
    .com-reviews .review .review-right {
        width: 100% !important;
    }

    .mod_tlastnews .news-list .news {
        width: 100%;
    }

    .mod_tlastnews .news-list .news img {
        height: 300px;
    }
}