@font-face {
    font-family: "Montserratarm";
    src:
            url('../fonts/montserrat-arm/Montserratarm-Regular.woff2') format('woff2'),
            url("../fonts/montserrat-arm/Montserratarm-Regular.svg#Montserratarm") format("svg");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src:
            url('../fonts/montserrat/Montserrat-Regular.woff2') format('woff2'),
            url("../fonts/montserrat/Montserrat-Regular.svg#Montserrat") format("svg");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --mainColor: #202C45;
    --secondColor: #333f84;
    --bgMainColor: #26408a;
    --bgColor: #F3F1EC;
    --txtColor: #595959;
    --whiteColor: #fff;
    --darkColor: #000;
    --blueColor: #003896;
    --borderColor: #03A9F3;
    --pinkColor: #F2184F;
    --hoverColor: #01268B;
    --header-hoverColor: rgb(221 229 238 / var(--tw-bg-opacity, 1));
    --blackColor: #0A0A0A;
    --redColor: #DB3839;
    --c-accent: #1F4E79;
    --c-muted: #4b5b70;
    --radius: 16px;
    --gap: clamp(16px, 3vw, 32px);
    --pad: clamp(16px, 3vw, 32px);
    --text-size: clamp(14px, 1.2vw, 16px);
    --title-size: clamp(20px, 2.2vw, 28px);
    --c-shadow: 0 12px 32px rgba(17, 24, 39, .25);
    --accent: #01268B;
    --border: #e6e8ef;
    --text: #121417;
    --surface: #f3f4f6;
    --ink: #0f172a;
    --muted: #6b7280;
    --brand: #e11d48; /* accent */
    --radius-pill: 999px;
    --radius-lg: 14px;
    --shadow: 0 1px 2px rgba(0, 0, 0, .04);
}

::selection {
    background-color: var(--mainColor);
    color: var(--whiteColor);
}

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

body {
    font-size: 17px;
    line-height: 24px;
    overflow-x: hidden;
    color: var(--mainColor);
    font-family: "Montserratarm", "Montserrat";
}

ul, li {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--mainColor);
    cursor: pointer;
}

input, textarea {
    appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    -webkit-appearance: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    outline: none;
    font-family: "Montserratarm", "Montserrat";
}

button {
    font-family: "Montserratarm", "Montserrat";
}

img {
    max-width: 100%;
    vertical-align: middle;
}

section {
    margin: 48px 0;
}

section section {
    margin: 24px 0;
}

.main {
    margin-top: 165px;
}

.w_40 {
    width: 100%;
}

.container {
    margin: 0 auto;
    max-width: 1390px;
    padding: 0 15px;
}

.container .container {
    padding: 0;
}

.d-flex {
    display: flex;
}

/* header */

header {

}

.header-wrapper {
    padding: 19px 0 16px;
    position: fixed;
    top: 0;
    z-index: 7;
    width: 100%;
    background: var(--whiteColor);
}

.header-block {
    display: flex;
    align-items: center;
}

.logo {
    padding: 10px;
    flex: 1 1 auto;
}

.logo-link {
    display: inline-flex;
    align-items: center;
}

.logo-img {
    /*height: 47px;*/
}

.logo-text {
    width: 300px;
    font-size: 16.5px;
    line-height: 20px;
    margin-left: 24px;
}

html[lang="en"] .logo-text {
    width: 180px;
}

.header-right-block {
    /*width: 80px;*/
    display: flex;
    align-items: center;
}

.social-network {
    padding-right: 12px;
}

.social-list {
    display: flex;
}

.social-item {
    margin: 0 4px;
    height: 24px;
    display: inline-block;
}

.social-link {
    color: var(--mainColor);
    /*font-size: 24px;*/
    display: inline-block;
    transition: all .3s ease-in-out;
}

.social-link i {
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.social-link i:before {
    width: 24px;
    height: 24px;
    font-size: 24px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.social-item:last-child .social-link i:before {
    left: 10.5px;
}

.social-link:hover {
    color: var(--secondColor);
}

.external_link {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg,rgba(107, 60, 60, 1) 0%, rgba(184, 62, 62, 1) 50%, rgba(255, 0, 0, 1) 100%);
    border-radius: 24px;
    padding: 4px 24px;
    margin-right: 12px;
    color: var(--whiteColor);
    display: inline-flex;
    font-size: 11px;
    line-height: 14px;
}

.external_link::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,rgba(107, 60, 60, 1) 0%, rgba(184, 62, 62, 1) 50%, rgba(255, 0, 0, 1) 100%);
    transition: left .6s ease;
    z-index: 0;
}

.external_link:hover::before {
    left: 0;
}

.external_link svg {
    min-width: 24px;
}

.external_link p {
    margin-left: 8px;
}

.external_link span, .external_link svg {
    position: relative;
    z-index: 1;
}

.external_link p span:first-child {
    font-weight: bolder;
}


.search-block {
    width: 200px;
    display: inline-block;
    margin-right: 12px;
    cursor: pointer;
    position: relative;
    border:1px solid #ededed;
    border-radius:50px;
    padding-left:20px;
    line-height:33px;
    font-size:14px;
    color:#a6a6a6
}
.search-full-container .search-block {padding-left:8px!important}
.search-block img {float:right;
padding:9px;
background:#ededed;
border-radius:50%;
filter:saturate(0);
height:33px}

/* ===== Language Select — Styles ===== */
.lang-select {
    position: relative;
    /*width: 120px;*/
    top:3px
}

/* Trigger button */
.lang-select__trigger {
    width: 100%;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    border: none;
    background: transparent;
}

.lang-select__trigger:hover {
    border-color: #cfd3d8;
    box-shadow: 0 4px 12px rgba(0,0,0,.06);
}

.lang-select__trigger:active {
    /*transform: translateY(1px);*/
}

.lang-select__trigger img {
    width: 30px;
    height: 30px;
    display: block;
    border-radius: 50%;
}

.arrow-x {
    transition: all .3s;
}

.arrow-x i {
        font-size: 11px;
        color: var(--mainColor);
}

/*.arrow-x:before {*/
/*    content: "\25BC";*/
/*    font-size: 14px;*/
/*    color: var(--mainColor);*/
/*}*/

.lang-select--open .arrow-x {
    transform: rotate(180deg);
}

.lang-select__label {
    font-size: 14px;
    color: #111827;
    letter-spacing: .2px;
}

/* Dropdown menu */
.lang-select__menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 150px;
    background: var(--whiteColor);
    /*border-radius: 12px;*/
    /*box-shadow: 0 14px 30px rgba(0,0,0,.08);*/
    /*padding: 6px;*/
    display: none;
    z-index: 10;
    overflow: hidden;
    padding: 8px 0;
    --tw-shadow: 0px 4px 8px 0px #0000004d;
    --tw-shadow-colored: 0px 4px 8px 0px;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
    --tw-border-opacity: 1;
    border-width: 2px;
    border-style: solid;
    border-color: rgb(203 214 227 / var(--tw-border-opacity, 1));
    background: var(--whiteColor);
}

.lang-select--open .lang-select__menu {
    display: block;
}

/* Item */
.lang-select__item {
    width: 100%;
    display: grid;
    grid-template-columns: 26px 1fr 20px;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: background .12s ease, transform .06s ease;
}

.lang-select__item.is-active {
    --tw-bg-opacity: 1;
    background-color: var(--header-hoverColor);
}

.lang-select__item:hover {
    --tw-bg-opacity: 1;
    background-color: var(--header-hoverColor);
}

.lang-select__item:active {
    transform: translateY(1px);
}

.span.lang-select__flag {
    width: 20px;
    border-radius: 50%;
    overflow: hidden;
}

.lang-select__item .lang-select__flag img {
    width: 20px;
    height: 20px;
    display: block;
}

.lang-select__text {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
    color: var(--mainColor);
}

.lang-select__check {
    width: 24px;
    height: 24px;
    display: none;
    align-items: center;
    justify-content: center;
}

.lang-select__check::before {
    content: "\2714"; /* Unicode for check mark (✔) */
    font-size: 14px;
    color: var(--mainColor); /* Green color for the check mark */
}

.is-active .lang-select__check {
    display: inline-flex;
}

.lang-select__item.is-active .lang-select__check span {
    background: #2563eb; /* indicator dot */
}

/* Small helper for focus ring */
.lang-select :is(button, .lang-select__item):focus {
    /*outline: 2px solid #2563eb22;*/
    /*outline-offset: 2px;*/
    /*border-color: #bfd1ff;*/
}

.space-container {
    padding-top: 18px;
    position: relative;
}

.space-container:before {
    content: '';
    height: 6px;
    width: 100%;
    position: absolute;
    top: 0;
    background: var(--hoverColor);
}

.mobile-toggle {
    display: none;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    background-color: transparent;
}

.mobile-close-btn {
    display: none;
}

/*  nav */
.nav-menu__container {
    flex: 1 1 auto;
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.menu-item {
    position: relative;
}

.nav-menu > .menu-item > .menu-link {
    padding-bottom: 10px;
}

.nav-menu > .menu-item:first-child {
    margin-left: -45px;
}

.nav-menu > .menu-item:last-child {
    margin-right: -45px;
}

.menu-link {
    font-size: 18px;
    line-height: 20px;
    display: flex;
    padding: 0 18px;
    justify-content: center;
    text-transform: uppercase;
    transition: all .3s;
}

.sub-arrow {
    align-items: center;
    display: flex;
    line-height: 1;
    margin-block-end: -10px;
    margin-block-start: -10px;
    padding: 10px;
    padding-inline-end: 0;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
}

.sub-arrow .fas.fa-chevron-down {
    font-size: .7em;
}

.fas {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

.sub-menu {
    width: 258px;
    display: none;
    top: 27px;
    position: absolute;
    background: var(--whiteColor);
}

.sub-menu .sub-menu {
    top: 0;
    left: 100%;
}

.sub-menu .item-anchor {
    color: var(--txtColor);
    fill: var(--txtColor);
    font-size: 13px;
    padding: 14px 28px;
    white-space: nowrap;
    line-height: 20px;
    justify-content: flex-start;
}

.sub-menu .sub-menu .item-anchor {
    white-space: revert;
}

.menu-item:hover > .sub-menu {
    display: block;
}

.sub-menu .menu-item:hover {
    background: var(--header-hoverColor);
}

.sub-menu .menu-item:hover > .menu-link {
    font-weight: bolder;
}

/* footer */
.footer-wrapper {
    background: var(--bgMainColor);
    padding: 80px 0;
    color: var(--whiteColor);
}

.inner-container {
    display: flex;
}

.logo-block {
    padding-right: 12px;
    border-bottom: 1px solid #FFFFFF26;
}

.footer-menu {
    flex: 1 1 auto;
}

.footer_menu-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(50px, 1fr)); /* Adjusts columns to fit the content */
    gap: 10px; /* Optional, adds space between the icons */
    justify-items: center; /* Centers icons within each grid item */
    grid-auto-flow: column; /* Ensures the grid behaves in a row-wise manner */
}

.footer_menu-item {
    width: 85%;
    padding-bottom: 12px;
    border-bottom: 1px solid #FFFFFF26;
}

.menu-item-link,
.footer_menu-item a {
    color: var(--whiteColor);
    border-color: var(--whiteColor);
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 17px;
    transition: all .3s;
}

.footer_menu-item a {
    text-transform: revert;
}

.menu-item-link:hover,
.footer_menu-item a:hover {
    font-weight: 600;
}

.social-icons-wrapper {
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(50px, 1fr)); /* Adjusts columns to fit the content */
    gap: 10px; /* Optional, adds space between the icons */
    justify-items: center; /* Centers icons within each grid item */
    grid-auto-flow: column; /* Ensures the grid behaves in a row-wise manner */
}

.social-icon-link {
    background-color: #FFFFFF00;
    padding: 0.5em;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #3F3F3F;
    font-size: 23px;
    border-radius: 10px;
    transition: all .3s;
    max-height: 35px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.social-icon-link:hover {
    transform: scale(1.1);
}

.social-icon-link svg {
    display: block;
    height: 1.5em;
    width: 1.05em;
    position: relative;
}

.address-list {
    font-size: 16px;
    padding-top: 12px;
}

.copy-right {
    padding-top: 32px;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    color: #A6A6A6;
}

/* hero */
.hero-slider {
    height: 650px; /* Adjust height as needed */
    width: 100%;
    overflow: hidden;
    /*margin-top: 135px;*/
}

.hero-item {
    /*height: 100%;*/
}

.hero-container {
    /*height: 100%;*/
    height: 650px;
    position: relative;
}

.hero-img {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100%;
    /*background-blend-mode: multiply;*/
}

.hero-content {
    padding: 64px;
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1168px;
    height: 466px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50px;
    overflow: hidden;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    background: rgba(255, 255, 255, 0.4);
}

.hero-blur {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: none;
}

.top_50.hero-block_left {
    /*left: 50%;*/
    height: 100%;
    max-width: 100%;
    border-radius: 0;
    /*background-image: none !important;*/
    /*background: rgba(16, 71, 143, 1);*/
    transform: unset;
    inset: 0;
    position: absolute;
    backdrop-filter: unset;
}

.hero-content.top_50.hero-block_left .hero-blur {
    display: block;
    background: rgba(16, 71, 143, 1);
    mix-blend-mode: multiply; /* սա է պահում նկարը */
}

.top_25 {
    top: 25%;
    transform: translate(-50%, -50%);
}

.top_50 {
    top: 50%;
    transform: translate(-50%, -50%);
}

.top_75 {
    /*top: 75%;*/
    /*transform: translate(-50%, -50%);*/
}

.top_50.hero-block_left .wrapper-content {
    gap: 0;
    display: flex;
    justify-content: space-between;
}

.top_50.hero-block_left .wrapper-content_left {
    width: calc(100% - 400px);
}

.top_50.hero-block_left.main-title,
.top_50.hero-block_left .second-title {
    text-align: left;
    color: var(--whiteColor);
}

.top_50.hero-block_left .main-title {
    font-size: 72px;
    color: var(--whiteColor);
    text-align: left;
}

.top_50.hero-block_left .second-title {
    font-size: 32px;
}

.top_50.hero-block_left .link-block {
    margin-top: 72px;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    margin-left: auto;
}

.link-block_title {
    color: rgba(255, 255, 255, .6);
    font-size: 18px;
    margin-bottom: 10px;
    text-align: center;
    width: 300px;
}

.link-block_buttons {
    display: flex;
}

.info_block {
    padding: 36px;
    background: #fff;
    border-radius: 36px;
    width: 100%;
    min-width: 360px;
    max-width: 360px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.info_block-title {
    text-transform: uppercase;
    color: var(--mainColor);
    font-size: 32px;
    font-weight: bolder;
    position: relative;
}

.info_block-title:after {
    content: "";
    width: 80px;
    height: 12px;
    border-radius: 12px;
    background-color: rgb(255, 0, 0);
    position: absolute;
    bottom: -32px;
    left: 0;
}

.info_block-text {
    margin-top: 56px;
    flex-grow: 1;
}

.info_block-link {
    margin-top: 20px;
    display: inline-block;
    color: var(--mainColor);
    font-weight: bold;
}

.hero-block_center {
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-block_right {
    right: 10%;
    transform: translate(-50%, -50%);
}

.wrapper-content {
    position: relative;
    z-index: 1;
}

.wrapper-content {
    display: grid;
    gap: 25px;
}

.main-title {
    font-size: 44px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 59px;
    text-align: center;
}

.second-title {
    font-size: 40px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 59px;
    text-align: center;
}

.link-block {
    display: flex;
    justify-content: center;
}

.link-title {
    background-color: var(--hoverColor);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--whiteColor);
    border-style: none;
    border-radius: 50px;
    padding: 24px 32px;
    margin: 12px;
    transition: all .3s;
    text-align: center;
}

.link-title:hover {
    background-color: #01268B88;
}

.hero-block_left.top_50 .link-title {
    min-width: 280px;
    display: inline-block;
    padding: 16px 32px;
    color: var(--mainColor);
    font-weight: bolder;
    background-color: rgba(255, 255, 255, .45);
}

.hero-block_left.top_50 .link-title:hover {
    background-color: rgba(255, 255, 255, .15);
}

.slick-dots {
    bottom: 0;
}

/* hero cover img */
.h_650 {
    height: 650px;
}

.h_250 {
    height: 250px;
}

.hero-cover {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 24px 0;
}

.hero-cover:before {
    content: '';
    width: 100%;
    height: 100%;
    /*background: rgba(0, 0, 0, .5);*/
    position: absolute;
    top: 0;
}

.cover-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 30px);
    max-width: 960px;
}

.cover-container .main-title {
    font-size: 40px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 48px;
    color: var(--whiteColor);
    /*text-align: left;*/
}

.cover-container .second-title {
    font-size: 36px;
    font-weight: 300;
    text-transform: uppercase;
    line-height: 40px;
    color: var(--whiteColor);
    /*text-align: left;*/
}

.cover-container .cover-desc {
    color: var(--whiteColor);
    font-size: 18px;
    text-align: center;
}

.cover-container .link-block {
    justify-content: center;
    /*align-items: flex-start;*/
}

/* breadcrumb */
.path-list {
    display: flex;
    margin: 12px 0 24px;
}

.path-item {
    display: flex;
    align-items: center;
    white-space: nowrap;
    width: 100%;
}

.path-item:not(:last-child) {
    padding-right: 12px;
}

.path-item a span, .path-item span span, .path-item .arrow {
    color: #1a1d3e;
    opacity: .5;
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
    transition: all .3s;
}

.path-item a span:hover {
    color: var(--mainColor);
    opacity: 1;
}

.path-item .arrow {
    display: inline-block;
    padding: 0 12px;
}

.path-item a:last-child {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.path-item a + span:last-child {
    display: none;
}

/* doc */

.column-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 equal columns */
    gap: 10px; /* space between icons */
}

.documentation-block {
    margin: 48px 0;
}

.block-title {
    font-size: 24px;
    line-height: 36px;
    color: var(--mainColor);
}

.documentation-list {
    margin: 24px 0;
}

.documentation-item {
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #80808080;
    padding: 12px 4px;
    position: relative;
    background-color: #fff;
    transition: all 0.3s ease;
    margin: 12px 0;
}

.documentation-link {
    display: flex;
    align-items: flex-start;
}

.documentation-img {
    min-width: 150px;
    max-width: 150px;
}

.row-layout .documentation-img {
    min-width: 200px;
    max-width: 200px;
}

.documentation-text {
    /*padding-left: 24px;*/
}

.documentation-title {
    font-size: 18px;
    line-height: 27px;
    color: var(--mainColor);
    margin-left: 12px;
    margin-bottom: 12px;
    font-weight: 600;
}

.documentation-item:hover {
    /*box-shadow: 0 2px 3px 0 rgba(0, 0, 0, .55);*/
}

/* text block */
.text-container {
    margin: 24px 0;
}

.text-container .second-title {
    /*margin-bottom: 24px;*/
    font-size: 18px;
    font-weight: 900;
}

.text-block {
    font-size: 16px;
    line-height: 24px;
    color: var(--mainColor);
    text-align: center;
}

/* info block */
.color-block {
    padding: 24px 12px;
    background-color: var(--bgMainColor);
    color: var(--whiteColor);
    border-bottom: 2px solid rgba(255, 255, 255, .5);
}

.block-text {
    text-align: center;
}

.color-block .main-title {
    /*margin-bottom: 24px;*/
}

.color-block .second-title {
    margin-bottom: 36px;
}

.color-block .link-block {
    margin-top: 24px;
}

.color-block .link-block .link-title {
    background-color: var(--redColor);
    transition: all .3s;
}

.color-block .link-block .link-title:hover {
    background-color: #DB383988;
}

.block-wrapper {
    display: flex;
    flex-wrap: wrap;
    background-color: var(--bgMainColor);
    border-radius: 50px;
    overflow: hidden;
    padding: 20px;
    color: var(--whiteColor);
}

.info-first-block {
    width: 45%;
    padding: 45px 45px 20px 20px;
    display: grid;
    gap: 20px;
}

.info-first-block .main-title,
.info-first-block .second-title,
.info-first-block .block-text {
    text-align: left;
}

.info-first-block .block-text {
    font-size: 16px;
    line-height: 24px;
}

.info-first-block .link-block {
    justify-content: flex-start;
}

.info-first-block .link-title {
    background: transparent;
    padding: 16px 24px;
    text-transform: uppercase;
    border: 1px solid var(--whiteColor);
    font-size: 18px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 250px;
}

.info-first-block .link-title svg path {
    fill: var(--whiteColor);
}

.info-first-block .link-title:hover,
.info-first-block .link-title:hover svg path {
    color: #FFFFFFAD;
    fill: #FFFFFFAD;
}

.info-second-block {
    width: 55%;
    border-radius: 50px;
    overflow: hidden;
}

.info-second-block img {
    width: 100%;
}

/* logo block */

.logos-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, 240px);
    gap: 20px; /* space between items */
    justify-items: center; /* center items in their grid cell */
}

.logos-item {
    width: 100%;
    transition: all .3s;
    border-radius: 24px;
    border: 1px solid #8080803d;
    overflow: hidden;
    padding-bottom: 12px;
}

.logos-wrapper {
    width: 100%;
    padding: 0;
}

.logos-img {
    width: 100%;
    margin: auto;
    height: 200px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 0;
}

.logos-link {
    width: 100%;
    display: inline-block;
}

.logos-title {
    margin-top: 12px;
    padding: 0 8px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 19px;
    text-align: center;
    color: var(--hoverColor);
}

.logos-sub-title {
    margin-top: 12px;
    /*padding: 0 4px;*/
    font-size: 13px;
    font-weight: 700;
    line-height: 19px;
    text-align: center;
    color: var(--darkColor);
}

.logos-list img {
    max-width: 100%;
}

.logos-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* staff block */

.staff-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    justify-items: center;
}

.staff-item {
    width: 100%;
    padding-bottom: 12px;
    transition: all .3s;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #8080803d;
}

.staff-wrapper {
    width: 100%;
    height: 250px;
}

.staff-img {
    width: 100%;
    height: 250px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 0; /* X = 50%, Y = 0 */
}

.staff-link {
    width: 100%;
    display: inline-block;
}

.staff-list img {
    max-width: 100%;
}

.staff-title {
    margin-top: 18px;
    padding: 0 4px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 19px;
    text-align: center;
    color: var(--hoverColor);
}

.staff-position {
    font-size: 13px;
    font-weight: 700;
    line-height: 19px;
    text-align: center;
    padding: 0 8px;
}

.staff-item:hover {
    box-shadow:0 8px 24px rgba(0, 0, 0, 0.12);
}

/* news block */
.column-news {
    max-width: 320px;
}

.news-block-list {
    display: grid;
}

.column-news .news-block-list {
    justify-content: center;
}

.row-news .news-block-list {
    grid-template-columns: repeat(auto-fit, minmax(312px, 1fr));
    column-gap: 32px;
}

.news-item {
    margin: 12px auto;
    display: grid;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    transition: all .3s;
    border: 1px solid #c3c5ed85;
    border-radius: 24px;
    overflow: hidden;
}

.news-item a {
    overflow: hidden;
}

.news-img_block {
    width: 100%;
    height: 250px;
    margin: auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.news-info {
    display: grid;
    gap: 12px;
    padding: 0 12px 12px;
}

.column-news .news-info {
    padding: 0 12px 12px;
}

.row-news .news-info div:last-child {
    min-height: 120px;
}

time, .news-info span {
    font-size: 12px;
    line-height: 18px;
    color: #595959;
}

.news-title {
    font-size: 20px;
    line-height: 30px;
    color: var(--blackColor);
    font-weight: 800;
    min-height: 120px;
}

.news-read {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 36px;
    color: var(--whiteColor);
    background: var(--mainColor);
    background: linear-gradient(90deg,rgba(32, 44, 69, 1) 0%, rgba(55, 81, 130, 1) 50%, rgba(42, 87, 163, 1) 100%);
    border-radius: 6px;
    margin-block: 6px;
    display: inline-block;
}

.time-to-read {
    margin-top: 8px;
    display: flex;
    align-items: center;
}

.time-to-read img {
    width: 18px;
    margin-right: 8px;
}

.time-to-read span {
    color: var(--darkColor);
}

.news-item:hover {
    border: 1px solid transparent;
    box-shadow: 0 2px 3px rgba(0, 0, 0, .65);
}

/* news list */
.news-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
    column-gap: 86px;
}

.see-more-block {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.load-more {
    background-color: var(--bgMainColor);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 80px;
    padding: 16px 150px;
    color: var(--whiteColor);
    transition: all .3s;
    cursor: pointer;
    border: 0;
    white-space: nowrap;
}

.load-more:hover {
    transform: scale(1.1);
}

/* arbitrators block */

.wrapper-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.arbitrators-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 30px; /* space between items */
    justify-items: center; /* center items in their grid cell */
    flex: 1 1 auto;
}

.tab-content .arbitrators-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(212px, 240px));
    gap: 18px; /* space between items */
    justify-items: center; /* center items in their grid cell */
    flex: 1 1 auto;
    padding-right: 18px;
}

.arbitrators-item {
    width: 100%;
    padding-bottom: 12px;
    transition: all .3s;
    border: 1px solid #8080803d;
    border-radius: 24px;
    background: var(--whiteColor);
}

.arbitrators-wrapper {
    width: 100%;
    height: 250px;
}

.tab-content .arbitrators-wrapper {
    width: 100%;
    display: inline-block;
}

.arbitrators-link {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    display: inline-block;
    transition: all .3s;
}

.arbitrators-img {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    background-position-x: center;
    background-position-y: top;
}

.arbitrators-title {
    margin-top: 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 19px;
    text-align: center;
    color: var(--hoverColor);
}

.arbitrators-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.arbitrators-item.no-hover:hover {
    box-shadow: none;
}

.arbitrators-item.no-hover:hover  .arbitrators-link {
    cursor: default;
}

/*single news*/

.news-container {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.single-news-title {
    font-size: 32px;
    line-height: 44px;
}

.news-single-block {
    width: 100%;
    max-width: 1000px;
}

.news-single-block img {
    width: 100%;
}

.news-single-block em {
    font-size: 14px;
    display: flex;
}

.news-single-block em:first-child {
    justify-content: flex-end;
    margin-bottom: 12px;
}

.news-single-block em:last-child {
    margin-top: 12px;
}

.news-single-text {
    text-align: justify;
    color: #595959;
    font-size: 15px;
    font-weight: 400;
}

.news-single-speaker {
    margin-top: 50px;
    margin-bottom: 50px;
}

.last-news {
    min-width: 320px;
}

.last-news h3 {
    text-align: center;
}

/* filter */
.sidebar {
    position: sticky;
    top: 150px;
    height: max-content;
}

.filter-block {
    max-width: 240px;
}

.filter-block header {
    background: var(--mainColor);
    color: var(--whiteColor);
    padding: 12px;
}

.input-block {
    padding: 36px 12px;
    position: relative;
    border: 1px solid #EAEAEA;
}

.filter-item {
    border: 1px solid #EAEAEA;
    padding: 36px 12px;
}

.filter-item span {
    color: var(--mainColor);
    font-size: 14px;
    font-weight: 500;
    white-space: pre-wrap;
}

.filter-sub-list {
    display: none;
}

.filter-sub-list.open {
    display: block;
}

.input-block img {
    position: absolute;
    right: 10px;
}

.checkmark {
    height: 20px;
    min-width: 20px;
    border: 2px solid var(--mainColor);
    border-radius: 2px;
    position: relative;
    display: inline-block;
}

.checkbox-label {
    display: inline-flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    white-space: nowrap;
}

.checkbox-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-label .checkmark-wrapper {
    display: flex;
    /* flex-wrap: wrap; */
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-label input:checked ~ .checkmark,
.checkbox-label input:checked ~ .checkmark-wrapper .checkmark {
    background-color: var(--mainColor);
}

.checkbox-label input:checked ~ .checkmark:after,
.checkbox-label input:checked ~ .checkmark-wrapper .checkmark:after {
    display: block;
}

.checkbox-label .checkmark:after,
.checkbox-label .checkmark-wrapper .checkmark:after {
    left: 28%;
    top: 46%;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg) translate(-50%, -50%);
}

.checkmark-agree {
    display: inherit;
    flex-wrap: wrap;
    margin-left: 12px;
}

/* video list */
.videos-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    /*column-gap: 53px;*/
}

.videos-item {
    display: flex;
    flex-direction: column;
    padding: 15px;
    overflow: hidden;
    transition: all .3s;
}

.videos-item:hover {
    box-shadow: 0 2px 3px rgba(0, 0, 0, .65);
}

.videos-title {
    font-size: 14px;
    color: var(--mainColor);
    text-transform: uppercase;
}

/* info card */

.info-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--gap);
    position: relative;
    margin: 64px 0;
}

/* card-style content box */
.info-section__content {
    background: var(--whiteColor);
    border-radius: var(--radius);
    padding: var(--pad);
    box-shadow: var(--c-shadow);
    z-index: 2;
    position: absolute;
    max-width: 50%;
    /*min-height: 100%;*/
    top: 10%;
}

.info-section__title {
    margin: 0 0 12px;
    font-size: var(--title-size);
    line-height: 1.25;
    color: var(--c-accent);
    font-weight: 800;
}

/* text blocks */
.info-section__text,
.info-section__note {
    font-size: var(--text-size);
    color: var(--c-muted);
    margin: 0 0 10px;
}

.info-section__note {
    font-style: italic;
}

/* list style */
.info-section__list {
    margin: 0 0 16px 0;
    /*padding-left: 20px;*/
    color: var(--c-muted);
    font-size: var(--text-size);
}

.info-section__list ol li,
.info-section__list ul li {
    margin: 6px 0;
    list-style: revert;
}

.info-section__list ol > li ol,
.info-section__list ul > li ul,
.info-section__list ol > li ul,
.info-section__list ul > li ol {
    padding-left: 15px;
}

/* media (image) */
.info-section__media {
    position: relative;
    z-index: 1;
}

.info-section__media img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius);
    object-fit: cover;
}

/* CTA button (optional) */
.info-section__button {
    display: inline-block;
    padding: 10px 20px;
    /*border-radius: 999px;*/
    background: var(--c-accent);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all .3s;
    border-top-left-radius: 24px;
    border-bottom-right-radius: 24px;
}

.info-section__button:focus,
.info-section__button:hover {
    filter: brightness(1.05);
    box-shadow: 0 6px 18px rgba(31, 78, 121, .25);
}

/* layout variants */
.image-left {
    grid-template-columns: 1fr 1fr;
}

.image-left .info-section__content {
    left: 38%;
}

.image-right {
    grid-template-columns: 1fr 1fr;
}

.image-right .info-section__media {
    grid-column: 2
}

.image-right .info-section__content {
    grid-column: 1;
    left: 10%;
}

/* buttons */
.download-btn {
    position: relative;
    display: inline-flex;
    background-color: var(--hoverColor);
    color: #fff;
    padding: 10px 18px;
    border-radius: 24px;
    cursor: pointer;
    overflow: hidden;
    transition: all .3s;
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 8px;
    pointer-events: none;
}

.btn-content svg path {
    stroke: var(--whiteColor);
}

.download-btn span {
    font-weight: 600;
    font-size: 14px;
}

.download-btn input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.download-btn:hover {
    cursor: pointer;
    box-shadow: 0 2px 3px rgba(0, 0, 0, .65);
}

.link-btn {
    display: inline-block;
    border-radius: 24px;
    padding: 9px 27px;
    transition: all .3s;
    background: var(--whiteColor);
    border: 1px solid var(--hoverColor);
}

.link-btn span {
    font-weight: 600;
    font-size: 14px;
    color: var(--hoverColor);
}

.link-btn:hover {
    cursor: pointer;
    box-shadow: 0 2px 3px rgba(0, 0, 0, .65);
}

/* oval block */
.oval-section {
    padding: 36px 24px 24px 40px;
    transition: all .3s;
    background-color: var(--whiteColor);
    border-radius: 48px 230px 230px 48px;
    border: 1px solid #8080803d;
}

.oval-section:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.oval-link {
    width: 100%;
    display: inline-flex;
    flex-wrap: wrap;
}

.oval-head {
    margin-bottom: 24px;
    width: calc(100% - 520px);
}

.oval-title {
    font-size: 28px;
    line-height: 45px;
}

.oval-desc {
    font-size: 20px;
    line-height: 24px;
}

.oval-img {
    width: 100%;
    max-width: 520px;
    height: 230px;
    border-radius: 230px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* numbers block */
.numbers-head-title {
    font-size: 30px;
    line-height: 48px;
}

.numbers-block {
    margin-top: 24px;
}

.numbers-item {
    padding-bottom: 16px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--mainColor);
}

.numbers-digit {
    font-size: 24px;
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--whiteColor);
    background: var(--redColor);
}

.numbers-title {
    padding-left: 12px;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
}

.numbers-title > span {
    font-weight: 800;
}

/*arbritators block*/
.arbitrator-container {
    height: 270px;
}

.arbitrator-block {
    position: relative;
}

.arbitrator-img {
    top: -125px;
    width: 250px;
    height: 250px;
    position: absolute;
    overflow: hidden;
    border-radius: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    background-color: var(--whiteColor);
    border: 1px solid #8080803d;
}

.arbitrator-info {
    padding: 32px 0 0 300px;
}

.arbitrator-name {
    font-size: 32px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 40px;
    color: #0A0A0A;
    margin-bottom: 8px;
}

.arbitrator-person_title {
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 20px;
    margin-bottom: 8px;
    display: block;
}

.arbitrator-person_text {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #0A0A0A80;
}

.arbitrator-info-list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    padding: 8px 0;
}

.arbitrator-info-item {
    width: calc(50% - 8px);
    padding: 8px;
    display: flex;
    align-items: center;
}

.arbitrator-info-item img {
    min-width: 16px;
}

.arbitrator-info-item span {
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    display: flex;
    flex-direction: column;
    padding-left: 8px;
    text-align: left;
}

.arbitrator-info-item .email {
    text-transform: lowercase;
}

/* search section */
.search-full-container {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .85);
    width: 100%;
    height: 100%;
    z-index: 7;
    display: none;
}

.search-full-closed {
    right: 24px;
    top: 12px;
    position: absolute;
    cursor: pointer;
    font-size: 20px;
    line-height: 30px;
    font-weight: bold;
    color: var(--whiteColor);
}

.search-full-container .search-block {
    width: 100%;
    max-width: 600px;
    margin: 120px auto 0;
    display: flex;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.search-input {
    width: 100%;
    font-size: 20px;
    padding: 8px 12px 6px 36px;
    color: var(--whiteColor);
    background: transparent;
    /*border-bottom: 1px solid var(--whiteColor);*/
}

.search-img {
    position: absolute;
    bottom: 6px;
}

.search-title {
    position: absolute;
    color: var(--whiteColor);
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
}

.search-container {
    display: none!important;
    position: fixed;
    z-index: 7;
    width: 100%;
}

.search-container .search-block {
    width: 85%;
    max-width: 480px;
    margin: auto;
    border: 1px solid lightgray;
    background: rgba(0, 0, 0, .85);
    border-radius: 24px;
    display: flex;
}

.search-container .search-input {
    border-bottom: 0;
}

.search-container .search-img {
    bottom: 10px;
    left: 6px;
}

.search-container .search-closed {
    position: absolute;
    left: 90%;
    padding: 7px 12px;
    border: 1px solid lightgray;
    border-radius: 6px;
    background: #fff;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}

/* ordered list */

.ordered-list ol, .ordered-list ol li {
    list-style: revert;
    display: revert;
}

.ordered-list ol {
    padding-left: 24px;
}

/* calc block */

.calc-container {
    display: flex;
    flex-wrap: wrap;
}

.calc-input-block {
    width: 40%;
}
.calc-output-block {
    width: 60%;
    /*flex: 1 1 380px; */
    min-width: 320px;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
}

.calc-input-block {
    margin-top: 20px;
}

.calc-input-block h2,
.calc-output-block h2 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
    line-height: 25px;
    color: #0A0A0A;
}

/* select */
.dropdown {
    position: relative;
    width: 250px;
}

.dropdown-toggle {
    border: 1px solid #A6A6A6;
    border-radius: 24px;
    padding: 16px 35px 16px 16px;
    cursor: pointer;
    background: #fff;
    transition: border-radius 0.2s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10'%3E%3Cpolygon points='0,0 10,0 5,6' fill='%23666'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 10px;
    color: #A6A6A6
}

.dropdown.open .dropdown-toggle {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: 0
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ccc;
    border-top: 0; /* merge with select border */
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .1);
    display: none;
    overflow: hidden;
    z-index: 10;
}

.input-item .av_select .av_b {
    padding-top: 12px;
}

.input-item .dropdown-menu div,
.input-item .av_select .av_b li {
    cursor: pointer;
    font-size: 14px;
    transition: all .3s;
    padding: 4px 8px;
    width: 100%;
    max-width: 320px;
    border-radius: 8px;
    color: var(--whiteColor);
    background: var(--mainColor);
    border-bottom: 2px solid var(--whiteColor);
}

.input-item .dropdown-menu div:hover,
.input-item .av_select .av_b li:hover {
    background: #f1f5ff;
    color: var(--mainColor);
}

.input-item {
    margin-top: 12px;
    margin-bottom: 16px;
}

.input-item label {
    padding-bottom: 8px;
    color: #595959;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    display: block;
    margin-bottom: 6px;
}

.input-item input {
    border: 1px solid #A6A6A6;
    border-radius: 24px;
    padding: 16px 35px 16px 16px;
    cursor: pointer;
    background: var(--whiteColor);
    color: #A6A6A6;
    width: 250px;
}

.calcbutton {
    width: 250px;
    margin-top: 20px;
    color: var(--whiteColor);
    border-color: var(--accent);
    background-color: var(--accent);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    padding: 16px;
    transition: all .3s;
    cursor: pointer;
}

.calcbutton:hover {
    color: #fff;
    border-color: #01268B88;
    background-color: #01268B88;
}

#result {
    margin-top: 24px;
}

.tb {
    width: 100%;
}

.calc-output-block table tr td,
.calc-output-block table th {
    padding: 15px;
    vertical-align: top;
    min-width: 120px;
    font-size: 14px;
    line-height: 24px;
    border-radius: 24px;
    margin: 8px;
    display: inline-block;
    width: calc(50% - 16px);
    height: 56px;
    max-height: 56px;
}

.calc-output-block table tr:first-child td,
.calc-output-block table th {
    border: 1px solid hsla(0, 0%, 50%, .502);
}

.total-row {
    /*background-color: #F4F7FF;*/
    font-weight: 800;
    color: var(--accent);
}

/* work block */

.work-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.work-title {
    margin-bottom: 24px;
}

.work-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 80px;
}

.work-item {
    width: 25%;
    padding: 36px 0;
    position: relative;
}

.tab-content .work-item {
    width: 22%;
}

.work-item:nth-child(8n+4),
.work-item:nth-child(8n+5) {
    width: 240px;
}

/* */

.work-item:nth-child(8n+1):after,
.work-item:nth-child(8n+2):after,
.work-item:nth-child(8n+3):after,
.work-item:nth-child(8n+4):after,
.work-item:nth-child(8n+5):before,
.work-item:nth-child(8n+6):before,
.work-item:nth-child(8n+7):before,
.work-item:nth-child(8n+8):before {
    content: '';
    background-image: url("../images/icon/arrow_filled.svg");
    width: 48px;
    height: 48px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.tab-content .work-item:nth-child(8n+1):after,
.tab-content .work-item:nth-child(8n+2):after,
.tab-content .work-item:nth-child(8n+3):after,
.tab-content .work-item:nth-child(8n+4):after,
.tab-content .work-item:nth-child(8n+5):before,
.tab-content .work-item:nth-child(8n+6):before,
.tab-content .work-item:nth-child(8n+7):before,
.tab-content .work-item:nth-child(8n+8):before {
    width: 24px;
    height: 24px;
}

.work-item:nth-child(8n+5):before {
    left: -25%;
}

.tab-content .work-item:nth-child(8n+5):before {
    left: -11%;
}

.work-item:nth-child(8n+6):before,
.work-item:nth-child(8n+7):before {
    left: -20%;
}

.tab-content .work-item:nth-child(8n+6):before,
.tab-content .work-item:nth-child(8n+7):before {
    left: -12%;
}

.work-item:nth-child(8n+8):before {
    left: calc(50% - 48px);
    top: 100%;
    transform: translate(-50%, -50%) rotate(-90deg);
}

.work-item:nth-child(8n+1):after,
.work-item:nth-child(8n+2):after,
.work-item:nth-child(8n+3):after,
.work-item:nth-child(8n+4):after {
    left: 90%;
}

/* */

.work-item:nth-child(8n+1):after,
.work-item:nth-child(8n+2):after,
.work-item:nth-child(8n+3):after {
    transform: translate(-50%, -50%) rotate(180deg);
}

.work-item:nth-child(8n+4):after {
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
}

.tab-content .work-item:nth-child(8n+4):after {
    left: 40%;
}

.work-item:last-child:before,
.work-item:last-child:after {
    content: none;
}

.item-block {
    max-width: 240px;
    min-width: 240px;
    padding: 12px;
    border-radius: 24px;
    max-height: 200px;
    min-height: 200px;
    border: 1px solid rgba(0, 0, 0, .45);
    transition: all .3s;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.item-block img {
    width: 52px;
}

.tab-content .item-block {
    max-width: 80%;
    min-width: 80%;
    min-height: 240px;
}

.item-block img {
    width: 52px;
}

.item-block:hover {
    box-shadow: 0 2px 3px rgba(0, 0, 0, .45);
}

.work-us-text {
    font-size: 12px;
    line-height: 20px;
    margin-top: 8px;
    color: #7A7A7A;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* tabs vertical */
.tabs-container-vertical {
    display: grid;
    width: 100%;
    gap: 20px;
    grid-template-columns: 300px 1fr;
}

.tabs-menu {
    min-width: 255px;
    position: relative;
    padding: 10px;
}

.tabs-menu button {
    width: 100%;
    padding: 24px 16px;
    background: #F7F7F7;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 17px;
    fill: #0A0A0A;
    color: #0A0A0A;
    transition: background 0.3s;
    position: relative;
    border-bottom: 1px solid #EAEAEA;
    font-family: "Montserratarm", "Montserrat";
}

.tabs-menu button + button {
    margin-top: 20px;
}

.tabs-menu button:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 8px;
}

.tabs-menu button:hover {
    color: var(--accent);
}

.tabs-menu button.active:before {
    background: var(--accent);
}

.tabs-menu button.active {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 17px;
    fill: var(--accent);
    color: var(--accent);
}

.tabs-content {
    width: 100%;
    padding: 10px;
}

.tab-content {
    flex: 1;
    display: none;
}

.tab-content.active {
    display: block;
}

/* tabs horizontal */
/* ========== LAYOUT WRAPPER ========== */
.tabs {
    margin: 0 auto;
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 48px;
}

/* ========== TAB LIST (HORIZONTAL) ========== */
.tab-list {
    display: flex;
    align-items: center;
    gap: 0;
    overflow-x: auto;
}

.tab-btn {
    /*flex: 1 1 0;*/
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 26px;
    background: transparent;
    color: var(--text);
    border: 0;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    border-radius: 50px;
    transition: background .25s ease, color .25s ease, box-shadow .25s ease;
    white-space: nowrap;
}

.tab-btn:hover {
    background: var(--accent);
    color: var(--whiteColor);
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(28, 45, 146, .25) inset;
}

.tab-btn.active {
    background: var(--accent);
    color: var(--whiteColor);
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(28, 45, 146, .25) inset;
}

/* ========== PANELS ========== */
.tab-panels {
    background: var(--whiteColor);
    min-height: 160px;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.tab-panel > * {
    margin-bottom: 12px;
}

/* ========== VERTICAL VARIANT ========== */
.tabs.is-vertical {
    grid-template-columns: 260px 1fr;
    grid-template-rows: 1fr;
    align-items: start;
}

.tabs.is-vertical .tab-list {
    flex-direction: column;
    height: 100%;
    border-radius: 18px;
    padding: 8px;
}

.tabs.is-vertical .tab-btn {
    width: 100%;
    justify-content: flex-start;
    padding: 14px 16px;
    border-radius: 12px;
}

.tabs.is-vertical .tab-panels {
    margin-left: 0;
    height: 100%;
}

/* mega accordion */
.js-accordion {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    max-width: 900px;
    margin: auto;
}

.acc-item {
    margin: 12px 0;
    display: inline-grid;
    width: 100%;
}

.acc-trigger {
    -webkit-tap-highlight-color: transparent;
    appearance: none;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--ink);
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 18px;
    cursor: pointer;
    text-align: left;
    line-height: 1.2;
    transition: background-color .5s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.acc-trigger:hover {
    color: var(--whiteColor);
    background: var(--mainColor);
    border-color: #dbeafe;
}

.acc-trigger:focus-visible {
    outline: 3px solid color-mix(in oklab, var(--brand) 30%, transparent);
    outline-offset: 2px;
}

.acc-title {
    font-weight: 800;
    font-size: 16px;
}

.acc-icon {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--ink);
    font-weight: 800;
    font-size: 18px;
    line-height: 1;
}

.acc-trigger .acc-icon::before {
    content: "+";
}

.acc-trigger[aria-expanded="true"] .acc-icon {
    background: #fff;
    color: var(--brand);
    border-color: #fff;
}

.acc-trigger[aria-expanded="true"] .acc-icon::before {
    content: "–";
}

/* Panels are animated via JS (height/opacity) */
.acc-panel,
.sub-panel {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    padding: 0 12px;
    transition: max-height 0.7s cubic-bezier(0.25, 0.1, 0.25, 1),
    opacity 0.4s ease,
    padding 0.4s ease;
}

.acc-panel {
    background: var(--whiteColor);
    border-left: 1px dashed var(--border);
    border-right: 1px dashed var(--border);
    border-bottom: 1px dashed var(--border);
    border-bottom-left-radius: var(--radius-lg);
    border-bottom-right-radius: var(--radius-lg);
    margin-top: 8px;
    padding: 0 12px;
}

.acc-panel > * {
    margin-block: 12px;
    font-size: 13px;
}

.acc-panel table {
    border: 1px solid #8080803d;
}

.acc-panel table td {
    padding: 4px 8px;
    border: 1px solid #8080803d;
}

.sub-acc {
    margin: 10px 0 2px 0;
}

.sub-item {
    margin: 10px 0;
}

.sub-trigger {
    -webkit-tap-highlight-color: transparent;
    appearance: none;
    border: 1px solid var(--border);
    background: var(--whiteColor);
    color: var(--ink);
    border-radius: 50px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 24px;
    cursor: pointer;
    text-align: left;
    transition: background-color .5s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.sub-trigger:hover {
    background: #f9fafb;
}

.sub-trigger:focus-visible {
    outline: 3px solid color-mix(in oklab, var(--brand) 30%, transparent);
    outline-offset: 2px;
}

.sub-trigger[aria-expanded="true"] {
    background: var(--accent);
    color: var(--whiteColor);
}

.sub-title {
    font-weight: 700;
    font-size: 15px;
}

.sub-icon {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--ink);
    font-weight: 800;
    font-size: 16px;
    line-height: 1;
}

.sub-trigger .sub-icon::before {
    content: "+";
}

.sub-trigger[aria-expanded="true"] .sub-icon {
    background: var(--accent);
    color: var(--whiteColor);
    border-color: var(--accent);
}

.sub-trigger[aria-expanded="true"] .sub-icon::before {
    content: "–";
}

.sub-panel ul {
    margin: 8px 0 8px 18px;
    padding: 0;
}

.sub-panel li {
    margin: 6px 0;
}

@media (prefers-reduced-motion: reduce) {
    .acc-trigger, .sub-trigger {
        transition: none !important;
    }
}

.acc-trigger[aria-expanded="true"] + .acc-panel,
.sub-trigger[aria-expanded="true"] + .sub-panel {
    max-height: 2000px;
    overflow-y: auto;
    opacity: 1;
    padding: 12px;
    transition: max-height .8s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.6s ease 0.15s, padding 0.4s ease;
}

.go-masonry .go_gridItem {
    flex-grow: 0;
}

.editor-content ul,
.editor-content ul li,
.editor-content ol,
.editor-content ol li {
    list-style: revert;
}

.editor-content ul,
.editor-content ol {
    padding-left: 24px;
}

.calculate_button-style {
    padding: 10px 18px;
    border: none;
    background: var(--secondColor);
    color: var(--whiteColor);
    border-radius: 6px;
    cursor: pointer;
    transition: all .3s;
}

.calculate_button-style:hover {
    background: var(--mainColor);
}

/* collaborators_block */
.collaborators_section {
    overflow: hidden;
}

.collaborators_list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.collaborators_item {
    padding: 12px;
}

.collaborators_block {
    text-align: center;
}

.collaborators_link {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    min-height: 180px;
}

.collaborators_block img {
    width: 240px;
    border-radius: 54px;
    border: 1px solid #ececec;
}

.collaborators_block h3 {
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    color: #A4A4A4;
    margin-top: 12px;
}

.buttons_block {
    margin-top: 20px;
    margin-left: 10px;
}

 /*counter block*/
.figures-list {
    display: flex;
    flex-wrap: wrap;
    padding-block: 30px;
    border-top: 1px solid gray;
}

.figures-item {
    width: 25%;
    padding: 12px;
}

.funfact {
    text-align: center;
}

.funfact > div {
    display: inline-flex;
    text-align: center;
}

.figures-item h2, .figures-item span {
    font-size: 43px;
    font-weight: bolder;
    color: var(--mainColor);
}

.figures-item h5 {
    font-weight: 300;
    color: var(--mainColor);
}


/* responsive */
@media screen and (max-width: 1480px) {
    .menu-link {
        padding: 0 8px;
    }
    .nav-menu > .menu-item:first-child {
        margin-left: 0;
    }
    .nav-menu > .menu-item:last-child {
        margin-right: 0;
    }
    .menu-link {
        font-size: 13px;
    }
}

@media screen and (max-width: 1366px) {
    .top_50.hero-block_left .wrapper-content {
        /*flex-direction: column;*/
    }
    .top_50.hero-block_left .main-title {
        text-align: center;
        font-size: 48px;
    }
    .top_50.hero-block_left .second-title {
        text-align: center;
        font-size: 36px;
    }
    .top_50.hero-block_left .link-block_title + div {
        display: flex;
        flex-direction: column;
    }
    .top_50.hero-block_left .link-block {
        margin-top: 0;
    }
    .link-block_title {
        margin-bottom: 12px;
    }
    .info_block {
        margin: 48px auto 12px;
    }
    .work-item:nth-child(8n+5):before {
        left: -15%;
    }
    .work-item:nth-child(8n+6):before,
    .work-item:nth-child(8n+7):before {
        left: -13%;
    }
    .work-item:nth-child(8n+1):after,
    .work-item:nth-child(8n+2):after,
    .work-item:nth-child(8n+3):after,
    .work-item:nth-child(8n+4):after {
        left: 93%;
    }
    .work-item:nth-child(8n+4):after {
        left: 50%;
    }
    .work-item:nth-child(8n+1):after,
    .work-item:nth-child(8n+2):after,
    .work-item:nth-child(8n+3):after,
    .work-item:nth-child(8n+4):after,
    .work-item:nth-child(8n+5):before,
    .work-item:nth-child(8n+6):before,
    .work-item:nth-child(8n+7):before,
    .work-item:nth-child(8n+8):before {
        width: 36px;
        height: 36px;
    }
    .work-item .work-item:nth-child(8n+4),
    .work-item .work-item:nth-child(8n+5) {
        width: 24%;
    }
    .tab-content .item-block {
        min-height: 270px;
    }
    .oval-section {
        padding: 24px;
        border-radius: 48px;
    }
    .oval-head {
        width: 100%;
    }
}

@media screen and (max-width: 1280px) {
    .menu-item-link {
        font-size: 12px;
    }
    .footer_menu-list {
        gap: 6px;
    }
    .info-first-block {
        padding: 20px;
    }
    .info-first-block .main-title {
        font-size: 42px;
    }
    .info-first-block .second-title {
        font-size: 38px;
    }
}

@media screen and (max-width: 1198px) {
    .hero-content {
        max-width: calc(100% - 30px);
    }
    .top_50.hero-block_left.hero-content {
        max-width: 100%;
    }
    .work-item:nth-child(8n+4),
    .work-item:nth-child(8n+5) {
        width: 200px;
    }
    .item-block {
        max-width: 200px;
        min-width: 200px;
    }
    .work-item:nth-child(8n+1):after,
    .work-item:nth-child(8n+2):after,
    .work-item:nth-child(8n+3):after,
    .work-item:nth-child(8n+4):after,
    .work-item:nth-child(8n+5):before,
    .work-item:nth-child(8n+6):before,
    .work-item:nth-child(8n+7):before,
    .work-item:nth-child(8n+8):before {
        width: 28px;
        height: 28px;
    }
    .tab-content .work-item {
        width: 50%;
    }
    .tab-content .work-item:nth-child(8n+4),
    .tab-content .work-item:nth-child(8n+5) {
        width: 50%;
    }
    .tab-content .work-item:nth-child(8n+2):after {
        transform: rotate(-90deg) translateY(-50%);
        top: 97%;
        left: 40%;
    }
    .tab-content .work-item:nth-child(8n+3) {
        order: 2;
    }
    .tab-content .work-item:nth-child(8n+3):after {
        transform: rotate(0deg);
        top: 50%;
        left: -13%;
    }
    .tab-content .work-item:nth-child(8n+5) {
        order: 3;
    }
    .tab-content .work-item:nth-child(8n+5):before {
        left: 87%;
        transform: rotate(180deg) translateY(0);
    }
    .tab-content .work-item:nth-child(8n+6) {
        order: 4;
    }
    .tab-content .work-item:nth-child(8n+6):before {
        left: 40%;
        top: 93%;
        transform: rotate(-90deg) translate(-50%, 0);
    }
    .tab-content .work-item:nth-child(8n+7) {
        order: 6;
    }
    .tab-content .work-item:nth-child(8n+8) {
        order: 5;
    }
    .top_50.hero-block_left.hero-content {
        padding: 16px;
    }
    .top_50.hero-block_left .main-title {
        font-size: 36px;
    }
    .top_50.hero-block_left .second-title {
        font-size: 20px;
    }
    .info_block {
        margin: 12px auto;
    }
    .info_block-title {
        font-size: 18px;
    }
}

@media screen and (max-width: 992px) {
    .header-wrapper {
        padding: 0 0 16px;
    }
    .logo {
        padding-left: 0;
    }
    .logo-img {
        height: 32px;
        width: 160px;
    }
    .logo-text {
        font-size: 14px;
        width: 210px;
    }
    .external_link {
        font-size: 9px;
    }
    .mobile-toggle {
        display: block;
    }
    .nav-menu {
        display: block;
        padding: 64px 12px 12px;
        background-color: var(--secondColor);
        position: fixed;
        z-index: 101;
        width: 320px;
        height: 100vh;
        left: 0;
        top: 0;
        transform: translateX(-320px);
        transition: transform .9s ease-in-out;
    }
    .nav-menu.active {
        transform: translateX(0);
    }
    .menu-link {
        color: var(--whiteColor);
        justify-content: flex-start;
    }
    .sub-menu .menu-item:hover .menu-link,
    .sub-menu .menu-item:hover .item-anchor {
        color: var(--txtColor);
        text-align: left;
    }
    .mobile-close-btn {
        cursor: pointer;
        width: 36px;
        height: 36px;
        padding: 4px;
        position: fixed;
        z-index: 101;
        top: 8px;
        border: 2px solid #fff;
        border-radius: 4px;
        background: var(--secondColor);
        display: flex;
    }
    #mobile-close {
        visibility: hidden;
        opacity: 0;
        transition: opacity .3s ease-in-out, visibility 0s .3s;
    }
    #mobile-close.visible {
        left: 20px;
        visibility: visible;
        opacity: 1;
        transition: opacity .3s ease-in-out;
    }
    .sub-menu {
        position: static;
        background: transparent;
    }
    .sub-menu .item-anchor {
        color: var(--whiteColor);
        padding: 6px 12px;
        justify-content: flex-start;
    }
    .social-icons-wrapper {
        grid-template-columns: repeat(auto-fit, minmax(36px, 1fr));
    }
    .social-icon-link {
        font-size: 17px;
    }
    .cover-container .main-title {
        font-size: 36px;
        line-height: 42px;
    }
    .cover-container .second-title {
        font-size: 32px;
        line-height: 36px;
    }
    .info-first-block,
    .info-second-block {
        width: 100%;
    }
    .wrapper-container {
        flex-wrap: wrap;
    }
    .news-container {
        justify-content: center;
        flex-wrap: wrap;
    }
    .top_50.hero-block_left .wrapper-content {
        flex-direction: column;
    }
    .top_50.hero-block_left .wrapper-content_left {
        width: 100%;
    }
    .info-section {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .image-right .info-section__media,
    .image-right .info-section__content {
        grid-column: auto;
    }
    .info-section__content {
        order: 1;
    }
    .info-section__content {
        position: static;
        max-width: 100%;
        order: 2;
        margin-top: -24px;
    }
    .oval-head {
        width: 100%;
    }
    .arbitrator-img {
        left: 50%;
        transform: translateX(-50%);
    }
    .arbitrator-info {
        padding: 150px 0 0;
        text-align: center;
    }
    .work-list {
        max-width: 480px;
    }
    .work-item {
        width: 50%;
    }
    .work-item:nth-child(8n+1):after {
        left: 100%;
    }
    .work-item:nth-child(8n+2) {
        max-width: 200px;
    }
    .work-item:nth-child(8n+2):after {
        left: 50%;
        top: 100%;
        transform: translate(-50%, -50%) rotate(-90deg);
    }
    .work-item:nth-child(8n+3) {
        max-width: 200px;
        order: 1;
    }
    .work-item:nth-child(8n+3):after {
        left: -20%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    .work-item:nth-child(8n+5) {
        order: 1;
    }
    .work-item:nth-child(8n+5):before {
        left: 115%;
        transform: rotate(-180deg);
    }
    .work-item:nth-child(8n+6) {
        order: 2;
        max-width: 200px;
    }
    .work-item:nth-child(8n+6):before {
        left: 50%;
        top: 100%;
        transform: translate(-50%, -50%) rotate(-90deg);
    }
    .work-item:nth-child(8n+7) {
        order: 3;
        max-width: 200px;
    }
    .work-item:nth-child(8n+7):before {
        left: -20%;
    }
    .work-item:nth-child(8n+8) {
        /*order: 4;*/
        max-width: 200px;
    }
    .work-item:nth-child(8n+8):before {
        left: 50%;
    }
    .tab-content .work-item {
        width: 100%;
    }
    .tab-content .work-item:nth-child(1),
    .tab-content .work-item:nth-child(2),
    .tab-content .work-item:nth-child(3),
    .tab-content .work-item:nth-child(4),
    .tab-content .work-item:nth-child(5),
    .tab-content .work-item:nth-child(6),
    .tab-content .work-item:nth-child(7),
    .tab-content .work-item:nth-child(8) {
        width: 100%;
        max-width: 100%;
        order: 1;
    }
    .tab-content .item-block {
        max-width: 100%;
        min-width: 100%;
        min-height: 240px;
    }
    .tab-content .work-item:nth-child(1):after,
    .tab-content .work-item:nth-child(2):after,
    .tab-content .work-item:nth-child(3):after,
    .tab-content .work-item:nth-child(4):after,
    .tab-content .work-item:nth-child(5):before,
    .tab-content .work-item:nth-child(6):before,
    .tab-content .work-item:nth-child(7):before,
    .tab-content .work-item:nth-child(8):before {
        top: 94%;
        left: 50%;
        transform: rotate(-90deg) translate(-50%, -50%);
    }
    .sidebar {
        margin-top: 24px;
    }
    .row-layout .documentation-img {
        min-width: 150px;
        max-width: 150px;
    }
    .news-title {
        font-size: 18px;
        line-height: 24px;
        min-height: 80px;
    }
    .calc-input-block,
    .calc-output-block {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding: 12px 0;
        margin: auto;
    }
    #arithmResult,
    #arithmForm {
        width: 100%;
        max-width: 480px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 768px) {
    .search-block {width:140px}

    .external_link p {
        display: none;
    }
    .inner-container {
        flex-direction: column;
        position: relative;
        gap: 40px;
    }
    .inner-container:after {
        content: '';
        width: 100vw;
        height: 1px;
        background: #FFFFFF26;
        position: absolute;
        bottom: 0;
        left: -15px;
    }
    .logo-block {
        border-bottom: 0;
        margin: auto;
    }
    .footer_menu-list {
        grid-template-columns: none;
        grid-auto-flow: row;
    }
    .footer_menu-item {
        border-bottom: 0;
    }
    .footer_submenu-item {
        text-align: center;
    }
    .widget-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .address-list {
        text-align: center;
    }
    .hero-content {
        padding: 36px;
    }
    .main-title {
        font-size: 28px;
        line-height: 35px;
    }
    .second-title {
        font-size: 26px;
        line-height: 32px;
    }
    .link-block {
        flex-direction: column;
        align-items: center;
    }
    .link-title {
        max-width: max-content;
        padding: 12px 16px;
        font-size: 14px;
    }
    .cover-container .main-title {
        font-size: 28px;
        line-height: 35px;
    }
    .cover-container .second-title {
        font-size: 24px;
        line-height: 32px;
    }
    .h_250 {
        height: 360px;
    }
    .column-layout {
        grid-template-columns: 1fr;
    }
    .documentation-block {
        margin: 24px 0;
    }
    .info-first-block .main-title {
        font-size: 28px;
    }
    .info-first-block .second-title {
        font-size: 24px;
    }
    .arbitrator-info-item {
        width: 100%;
    }
    .calc-input-block,
    .calc-output-block {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding: 12px;
        min-width: auto;
    }
    .tabs-container-vertical {
        grid-template-columns: 1fr;
    }
    .tab-btn {
        padding: 15px 35px;
    }
    .tab-content {
        padding-left: 0;
    }
    .go-masonry .go_gridItem {
        flex-grow: 1;
    }
    .documentation-link {
        flex-direction: column;
    }
    .documentation-text {
        padding-left: 0;
        margin-top: 24px;
    }
    .figures-item {
        width: 50%;
    }
}

@media screen and (max-width: 600px) {
    .mob-menu .container {margin:unset}
    .lang-select {
        right: 10px;
        top:3px
    }
    section {
        margin: 24px 0;
    }
    .logo-text {
        font-size: 13px;
        margin-left: 12px;
    }
    .header-right-block {
        position: absolute;
        right: 8px;
        bottom: 0;
        transform: translateY(-50%);
        width: 100%;
        display: flex;
        justify-content: space-between;
        z-index: 2;
    }
    .external_link {
        left: 80px;
        position: absolute;
        z-index: 999;
    }
    .mobile-toggle {
        position: relative;
        z-index: 999;
    }
    .search-block {
        position: absolute;
        right: 55px;
        width:120px
    }
    .search-full-container .search-block {
        width: 90vw;
        padding-left:8px!important
    }
    .search-full-container .search-block .search-input {border-bottom:0}
    .search-container .search-block {
        width: 70vw;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    .info-first-block,
    .info-second-block {
        padding: 0;
    }
    .logos-wrapper {
        width: 100%;
    }
    .staff-wrapper {
        height: auto;
    }
    .staff-list {
        grid-template-columns: repeat(auto-fit, minmax(136px, 1fr));
        gap: 15px;
    }
    .load-more {
        padding: 16px 75px;
    }
    .work-list {
        justify-content: center;
    }
    .work-item, .item-block {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
    }
    .work-item:nth-child(8n+1),
    .work-item:nth-child(8n+2),
    .work-item:nth-child(8n+3),
    .work-item:nth-child(8n+4),
    .work-item:nth-child(8n+5),
    .work-item:nth-child(8n+6),
    .work-item:nth-child(8n+7),
    .work-item:nth-child(8n+8) {
        order: 1;
    }
    .work-item:nth-child(8n+1):after,
    .work-item:nth-child(8n+2):after,
    .work-item:nth-child(8n+3):after,
    .work-item:nth-child(8n+4):after,
    .work-item:nth-child(8n+5):before,
    .work-item:nth-child(8n+6):before,
    .work-item:nth-child(8n+7):before,
    .work-item:nth-child(8n+8):before {
        left: 50%;
        top: 96%;
        transform: rotate(-90deg);
    }
    .collaborators_link {
        min-height: 150px;
    }
    .acc-trigger {
        border-radius: 36px;
    }
    .th_fix tr, tbody tr {
        display: flex;
        flex-direction: column;
    }
    .calc-output-block table tr td,
    .calc-output-block table th {
        width: 100%;
        max-width: 100%;
        margin: 8px 0;
    }
}

@media screen and (max-width: 568px) {
    .top_50.hero-block_left .main-title {
        font-size: 24px;
    }
    .second-title {
        font-size: 18px;
        line-height: 27px;
    }
    .hero-block_left.top_50 .link-title {
        padding: 8px;
    }
    .info_block {
        padding: 18px;
        max-width: 300px;
        min-width: unset;
    }
    .tab-content .arbitrators-list {
        grid-template-columns: repeat(auto-fit, minmax(212px, 1fr));
    }
    .logos-list {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
    .logos-img {
        height: 270px;
        background-position: center;
    }
    .oval-title {
        font-size: 18px;
        line-height: 24px;
    }
    .oval-desc {
        font-size: 16px;
        line-height: 20px;
    }
    .calc-input-block h2,
    .calc-output-block h2 {
        font-size: 16px;
    }
}

@media screen and (max-width: 375px) {
    .logo-img {
        height: 24px;
        width: 120px;
    }
    .logo-text {
        font-size: 11px;
        width: 180px;
    }
    .row-news .news-block-list {
        grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    }
    .collaborators_list {
        grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    }
    .main-title {
        font-size: 16px;
        line-height: 20px;
    }
}