body {
  min-height: 100%;
}

.container {
  width: min(100%, 1320px);
  margin: 0 auto;
  padding: 0 30px;
}

header {
  position: relative;
  box-sizing: border-box;
}

header .header-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0 0;
  width: 100%;
  margin: 0 auto;
}

header .logo {
  max-width: 168px;
  width: 100%;
}

header .logo img {
  width: 100%;
  max-width: none;
}

header .center_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1030px;
  width: 100%;
}

header .search_block {
  position: relative;
  max-width: 664px;
  width: 100%;
}

header .input-group {
  position: relative;
}

header .input-group .text_field {
  background: transparent;
  font-family: "Nunito";
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #c0bfbe;
  border: 0;
  border-bottom: 1px solid #e8e8e8;
  width: 100%;
  padding: 4px 0 11px 38px;
  margin: 0;
}

header .input-group .text_field::placeholder {
  color: #c0bfbe;
  transition: 0.3s;
}

header .input-group .text_field:focus::placeholder {
  font-size: 0;
}

header .icon-search {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.1296 17.1721L15.2651 14.3715L15.198 14.2694C15.0731 14.1451 14.9025 14.0751 14.7243 14.0751C14.5461 14.0751 14.3754 14.1451 14.2506 14.2694C11.8162 16.5028 8.06511 16.6242 5.48499 14.5531C2.90488 12.482 2.29638 8.86114 4.06306 6.09181C5.82974 3.32248 9.42338 2.26404 12.4607 3.61845C15.498 4.97286 17.0365 8.31983 16.0558 11.4397C15.9852 11.665 16.0429 11.9101 16.2073 12.0826C16.3716 12.2551 16.6176 12.3288 16.8525 12.2759C17.0875 12.223 17.2757 12.0516 17.3464 11.8262C18.5187 8.12387 16.7481 4.13963 13.1801 2.45088C9.61207 0.762136 5.31736 1.87569 3.0742 5.07118C0.831048 8.26668 1.31264 12.5851 4.20743 15.2329C7.10223 17.8807 11.5415 18.0632 14.6534 15.6624L17.1897 18.1421C17.4516 18.3971 17.8751 18.3971 18.1371 18.1421C18.3987 17.8835 18.3987 17.4672 18.1371 17.2086L18.1296 17.1721Z' fill='%23C0BFBE'/%3E%3C/svg%3E");
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  top: 2px;
  left: 0;
}

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

.mt-figma-locales {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mt-figma-locales a {
  color: #c0bfbe;
  font-family: Nunito, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 17px;
  text-transform: uppercase;
  transition: 0.3s;
}

.mt-figma-locales a.is-active,
.mt-figma-locales a:hover {
  color: #000;
}

.mobile-toogle {
  display: none;
}

.toggle-mnu {
  display: block;
  width: 24px;
  height: 24px;
  margin-top: 4px;
  position: relative;
  cursor: pointer;
}

.toggle-mnu:before {
  content: "";
  width: 7px;
  height: 7px;
  background-color: #000;
  display: block;
  border-radius: 50%;
  position: absolute;
  right: -2px;
  top: -3px;
}

.toggle-mnu span:after,
.toggle-mnu span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
}

.toggle-mnu span:after {
  top: 12px;
}

.toggle-mnu span {
  position: relative;
  display: block;
}

.toggle-mnu span,
.toggle-mnu span:after,
.toggle-mnu span:before {
  width: 100%;
  height: 2px;
  background: #000;
  border-radius: 16px;
  transition: all 0.3s;
  backface-visibility: hidden;
}

.toggle-mnu[aria-expanded="true"]:before {
  display: none;
}

.toggle-mnu[aria-expanded="true"] span {
  background-color: transparent;
}

.toggle-mnu[aria-expanded="true"] span:before {
  transform: rotate(45deg) translate(-2px, 0px);
}

.toggle-mnu[aria-expanded="true"] span:after {
  transform: rotate(-45deg) translate(4px, -7px);
}

main {
  padding: 30px 0 0;
  flex: 1 1 auto;
}

.page-flex {
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-wrap: nowrap;
  column-gap: 52px;
  align-items: flex-start;
}

.page-flex .page-body {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 1020px;
}

.sidebar {
  flex: 0 0 194px;
  max-width: 194px;
  width: 100%;
  position: relative;
}

.sidebar .sidebar_body {
  position: relative;
  box-sizing: border-box;
}

.sidebar .side-menu {
  position: relative;
  width: 100%;
  margin: 0;
}

.sidebar .side-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar .side-menu ul li {
  padding: 9px 0;
  position: relative;
}

.sidebar .side-menu ul li > a,
.mt-figma-dropdown-head > a {
  color: #6e6e6e;
  font-size: 14px;
  font-family: Nunito, sans-serif;
  font-weight: 600;
  line-height: 21px;
  transition: 0.3s;
  display: block;
}

.sidebar .side-menu ul li > a.active,
.mt-figma-dropdown-head > a.active,
.sidebar .side-menu ul li > a:hover,
.mt-figma-dropdown-head > a:hover {
  color: #000;
}

.sidebar .side-menu ul li > a .live {
  background: #000;
  color: #fff;
  font-size: 10px;
  font-family: Nunito, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  display: inline-block;
  padding: 3px 11px;
  position: absolute;
  right: 0;
  line-height: normal;
}

.mt-figma-sidebar-title {
  color: #000;
  font-family: Nunito, sans-serif;
  font-size: 12px;
  font-weight: 800;
  line-height: 17px;
  text-transform: uppercase;
  margin: 0 0 15px;
  letter-spacing: 0.04em;
}

.mt-figma-sidebar-title--secondary {
  margin-top: 24px;
}

.mt-figma-dropdown-head {
  position: relative;
}

button.mt-figma-drop-toggle {
  all: unset;
  position: absolute;
  right: 0;
  top: 50%;
  width: 20px;
  height: 20px;
  padding: 0;
  border: 0 !important;
  border-radius: 0;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  background-color: transparent !important;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
  transform: translateY(-50%);
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.82778 5.16266C3.04213 4.94627 3.38962 4.94479 3.60397 5.16415L8.38837 10.0482C8.60272 10.2668 8.60199 10.62 8.38691 10.8371C8.2801 10.945 8.13964 11 7.99992 11C7.85872 11 7.71826 10.945 7.61146 10.8357L2.82705 5.95163C2.6127 5.73301 2.61344 5.3798 2.82778 5.16266ZM12.3953 5.16423C12.6096 4.94486 12.9571 4.94635 13.1715 5.16274C13.3865 5.37987 13.3873 5.73309 13.1737 5.95171L9.99649 9.19533C9.88968 9.30464 9.74849 9.35967 9.60803 9.35967C9.4683 9.35967 9.32785 9.30464 9.22104 9.19682C9.00596 8.97969 9.00523 8.62647 9.21884 8.40785L12.3953 5.16423Z' fill='%23C0BFBE'/%3E%3C/svg%3E");
  transition: 0.3s;
}

[data-sidebar-dropdown].is-open .mt-figma-drop-toggle {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M13.1722 10.8373C12.9579 11.0537 12.6104 11.0552 12.396 10.8358L7.61163 5.95182C7.39728 5.7332 7.39801 5.37998 7.61309 5.16285C7.7199 5.05503 7.86036 5 8.00008 5C8.14128 5 8.28174 5.05503 8.38854 5.16434L13.1729 10.0484C13.3873 10.267 13.3866 10.6202 13.1722 10.8373ZM3.60472 10.8358C3.39038 11.0551 3.04288 11.0537 2.82854 10.8373C2.61346 10.6201 2.61273 10.2669 2.82634 10.0483L6.00351 6.80467C6.11032 6.69535 6.25151 6.64033 6.39197 6.64033C6.5317 6.64033 6.67216 6.69535 6.77896 6.80318C6.99404 7.02031 6.99477 7.37353 6.78116 7.59215L3.60472 10.8358Z' fill='black'/%3E%3C/svg%3E");
}

.sidebar .side-menu ul.sub-menu {
  display: none;
  padding: 7px 0 0 18px;
}

.sidebar .side-menu [data-sidebar-dropdown].is-open > ul.sub-menu,
.sidebar .side-menu ul.sub-menu.visible {
  display: block !important;
}

.sidebar .side-menu ul.sub-menu[hidden] {
  display: none !important;
}

.sidebar .side-menu ul.sub-menu li a {
  font-size: 14px;
  font-family: Nunito, sans-serif;
  font-weight: 500;
  line-height: 21px;
  color: #b3b3b3;
}

.sidebar .side-menu ul.sub-menu li a.active {
  color: #a0a0a0;
}

.page-home .block-header,
.page-home .news-block .block-header,
.page-home .tour-table .block-header {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 26px;
}

.page-home .tabs_hd {
  display: flex;
  align-items: center;
  gap: 34px;
}

.page-home .block-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  padding: 10px 0 0;
}

.page-home .block-title {
  color: #000;
  font-size: 23px;
  font-family: Mulish, sans-serif;
  font-weight: 700;
  line-height: 31px;
}

.page-home button.tabs-label {
  all: unset;
  display: inline-block;
  padding: 0;
  border: 0 !important;
  border-radius: 0;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  background: transparent !important;
  color: #c0bfbe;
  font-size: 16px;
  font-family: Nunito, sans-serif;
  font-weight: 500;
  line-height: 24px;
  cursor: pointer;
}

.page-home .tabs-label.active,
.page-home .tabs-label:hover {
  color: #000;
  font-weight: 700;
}

.mt-figma-header-tools {
  display: flex;
  align-items: center;
  gap: 22px;
}

.mt-figma-link,
.btn-grpup .btn-more {
  color: #000;
  font-size: 11px;
  font-family: Nunito, sans-serif;
  font-weight: 900;
  line-height: 14px;
  text-transform: uppercase;
  transition: 0.3s;
}

.mt-figma-link:hover,
.btn-grpup .btn-more:hover {
  color: #a0a0a0;
}

.block-arrow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

button.arr-prev,
button.arr-next {
  all: unset;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0 !important;
  border-radius: 0;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  background-color: transparent !important;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px 22px;
  display: block;
  cursor: pointer;
  transition: 0.3s;
}

.arr-prev {
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12.1919 3.18209C12.4353 3.42323 12.437 3.81416 12.1902 4.0553L8.54114 7.62879L8.47667 7.68385C8.23003 7.8673 7.87747 7.84812 7.65355 7.62632C7.53225 7.50616 7.47034 7.34815 7.47034 7.19095C7.47034 7.03294 7.53225 6.8741 7.65522 6.75394L11.3043 3.17962L11.3688 3.12457C11.6154 2.94112 11.968 2.96029 12.1919 3.18209ZM12.2469 14.0088C12.4352 14.2508 12.4152 14.5977 12.192 14.8187C11.9477 15.0599 11.5504 15.0607 11.3044 14.8196L5.80988 9.4371L5.75349 9.37404C5.66799 9.26425 5.625 9.13245 5.625 9.00008C5.625 8.84289 5.68691 8.68487 5.80821 8.56471C6.05248 8.32275 6.44985 8.32193 6.6958 8.56307L12.1903 13.9455L12.2469 14.0088Z' fill='%23C0BFBE'/%3E%3C/svg%3E");
}

.arr-prev:hover {
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12.1919 3.18209C12.4353 3.42323 12.437 3.81416 12.1902 4.0553L8.54114 7.62879L8.47667 7.68385C8.23003 7.8673 7.87747 7.84812 7.65355 7.62632C7.53225 7.50616 7.47034 7.34815 7.47034 7.19095C7.47034 7.03294 7.53225 6.8741 7.65522 6.75394L11.3043 3.17962L11.3688 3.12457C11.6154 2.94112 11.968 2.96029 12.1919 3.18209ZM12.2469 14.0088C12.4352 14.2508 12.4152 14.5977 12.192 14.8187C11.9477 15.0599 11.5504 15.0607 11.3044 14.8196L5.80988 9.4371L5.75349 9.37404C5.66799 9.26425 5.625 9.13245 5.625 9.00008C5.625 8.84289 5.68691 8.68487 5.80821 8.56471C6.05248 8.32275 6.44985 8.32193 6.6958 8.56307L12.1903 13.9455L12.2469 14.0088Z' fill='black'/%3E%3C/svg%3E");
}

.arr-next {
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.80811 3.18209C5.56467 3.42323 5.563 3.81416 5.80978 4.0553L9.45886 7.62879L9.52333 7.68385C9.76997 7.8673 10.1225 7.84812 10.3465 7.62632C10.4678 7.50616 10.5297 7.34815 10.5297 7.19095C10.5297 7.03294 10.4678 6.8741 10.3448 6.75394L6.6957 3.17962L6.63123 3.12457C6.38459 2.94112 6.03203 2.96029 5.80811 3.18209ZM5.75315 14.0088C5.56484 14.2508 5.58485 14.5977 5.808 14.8187C6.05227 15.0599 6.44964 15.0607 6.69559 14.8196L12.1901 9.4371L12.2465 9.37404C12.332 9.26425 12.375 9.13245 12.375 9.00008C12.375 8.84289 12.3131 8.68487 12.1918 8.56471C11.9475 8.32275 11.5502 8.32193 11.3042 8.56307L5.80967 13.9455L5.75315 14.0088Z' fill='%23C0BFBE'/%3E%3C/svg%3E");
}

.arr-next:hover {
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.80811 3.18209C5.56467 3.42323 5.563 3.81416 5.80978 4.0553L9.45886 7.62879L9.52333 7.68385C9.76997 7.8673 10.1225 7.84812 10.3465 7.62632C10.4678 7.50616 10.5297 7.34815 10.5297 7.19095C10.5297 7.03294 10.4678 6.8741 10.3448 6.75394L6.6957 3.17962L6.63123 3.12457C6.38459 2.94112 6.03203 2.96029 5.80811 3.18209ZM5.75315 14.0088C5.56484 14.2508 5.58485 14.5977 5.808 14.8187C6.05227 15.0599 6.44964 15.0607 6.69559 14.8196L12.1901 9.4371L12.2465 9.37404C12.332 9.26425 12.375 9.13245 12.375 9.00008C12.375 8.84289 12.3131 8.68487 12.1918 8.56471C11.9475 8.32275 11.5502 8.32193 11.3042 8.56307L5.80967 13.9455L5.75315 14.0088Z' fill='black'/%3E%3C/svg%3E");
}

.arr-prev:disabled,
.arr-next:disabled {
  opacity: 0.25;
  cursor: default;
}

.mt-figma-carousel__viewport {
  overflow-x: auto;
  scrollbar-width: none;
  cursor: grab;
}

.mt-figma-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.mt-figma-carousel__viewport.is-dragging {
  cursor: grabbing;
}

.mt-figma-carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(228px, 1fr);
  gap: 20px;
}

.mt-figma-carousel__track--compact {
  grid-auto-columns: minmax(264px, 1fr);
}

.page-home .mt-match-card {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.page-home .mt-match-card__media {
  height: 104px;
  border-radius: 0;
}

.page-home .mt-match-card__media::after {
  content: "";
  opacity: 0.8;
  background: linear-gradient(180deg, #2c2a25 0%, rgba(44, 42, 37, 0) 100%);
  position: absolute;
  inset: 0;
}

.page-home .mt-match-card__media-overlay {
  z-index: 2;
  padding: 8px;
  align-items: flex-start;
}

.page-home .mt-match-card__media-status {
  color: #fff;
  font-size: 11px;
  font-family: Nunito, sans-serif;
  font-weight: 900;
  line-height: 14px;
}

.page-home .mt-match-card__head {
  padding: 10px 8px 8px;
  background: #fff;
}

.page-home .mt-match-card__league {
  color: #a0a0a0;
  font-size: 11px;
  font-family: Nunito, sans-serif;
  font-weight: 900;
  line-height: 14px;
  text-transform: uppercase;
}

.page-home .mt-match-card__head-meta {
  color: #000;
  font-size: 11px;
  font-family: Nunito, sans-serif;
  font-weight: 900;
  line-height: 14px;
}

.page-home .mt-match-card__body {
  padding: 0 8px 10px;
  background: #fff;
}

.page-home .mt-match-card__team-row {
  margin-bottom: 7px;
}

.page-home .mt-match-card__team-row:last-child {
  margin-bottom: 0;
}

.page-home .mt-match-card__team img {
  width: 18px;
  height: 18px;
}

.page-home .mt-match-card__team-name {
  color: #000;
  font-size: 11px;
  font-family: Nunito, sans-serif;
  font-weight: 500;
  line-height: 14px;
}

.page-home .mt-match-card__score-box {
  width: 16px;
  min-width: 16px;
  height: 16px;
  background: #000;
  color: #fff;
  font-size: 10px;
  font-family: Nunito, sans-serif;
  font-weight: 700;
  line-height: 16px;
}

.page-home .mt-match-card:hover,
.page-home .block-item:hover .block-content {
  box-shadow: 0 20px 20px -5px rgba(192, 191, 190, 0.36);
}

.match-center {
  padding: 28px 0 22px;
}

.mt-home-match-note {
  color: #c0bfbe;
  font-size: 14px;
  font-family: Nunito, sans-serif;
  font-weight: 500;
  line-height: 20px;
  margin: -6px 0 20px;
}

.match-center .block-item {
  position: relative;
  box-sizing: border-box;
}

.match-center .block-item a {
  display: block;
}

.match-center .block-item .item-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background: #000;
  padding: 8px 10px;
  color: #fff;
  font-size: 9px;
  font-family: Nunito, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}

.match-center .block-item .item-header .tm-time {
  font-size: 11px;
  font-weight: 700;
}

.match-center .block-item .block-content {
  padding: 8px 8px 6px;
  background: #fff;
  transition: 0.3s;
}

.match-center .block-item .item-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.match-center .block-item .itm-block {
  display: flex;
  align-items: center;
  gap: 5px;
}

.match-center .block-item .club-name {
  color: #000;
  font-size: 11px;
  font-family: Nunito, sans-serif;
  font-weight: 500;
  line-height: 14px;
}

.match-center .block-item .club-ico {
  width: 17px;
  height: 17px;
  overflow: hidden;
}

.match-center .block-item .club-ico img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.match-center .block-item .itm-score {
  background: #f5f5f5;
  padding: 5px 8px;
  color: #000;
  font-size: 11px;
  font-family: Nunito, sans-serif;
  font-weight: 700;
  line-height: 14px;
}

.tour-table .tour-list {
  position: relative;
}

.tour-table .tour-list select {
  border: 0;
  background: transparent;
  color: #000;
  font-size: 14px;
  font-family: Nunito, sans-serif;
  line-height: 20px;
  cursor: pointer;
  padding-right: 18px;
}

.tour-table .table-body {
  margin-top: 10px;
}

.btn-grpup {
  text-align: center;
  margin-top: 18px;
}

.btn-grpup .btn-more:after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.495 6.49497C12.7683 6.22161 12.7683 5.77839 12.495 5.50503L8.0402 1.05025C7.76684 0.776886 7.32362 0.776886 7.05025 1.05025C6.77689 1.32362 6.77689 1.76684 7.05025 2.0402L11.0101 6L7.05025 9.9598C6.77689 10.2332 6.77689 10.6764 7.05025 10.9497C7.32362 11.2231 7.76684 11.2231 8.0402 10.9497L12.495 6.49497ZM0 6.7H12V5.3H0V6.7Z' fill='black'/%3E%3C/svg%3E");
  width: 12px;
  height: 12px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
  margin-top: -3px;
}

.btn-grpup .btn-more:hover:after {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.495 6.49497C12.7683 6.22161 12.7683 5.77839 12.495 5.50503L8.0402 1.05025C7.76684 0.776886 7.32362 0.776886 7.05025 1.05025C6.77689 1.32362 6.77689 1.76684 7.05025 2.0402L11.0101 6L7.05025 9.9598C6.77689 10.2332 6.77689 10.6764 7.05025 10.9497C7.32362 11.2231 7.76684 11.2231 8.0402 10.9497L12.495 6.49497ZM0 6.7H12V5.3H0V6.7Z' fill='%23A0A0A0'/%3E%3C/svg%3E");
}

.page-home .mt-table-wrap {
  background: transparent;
  border: 0;
  padding: 0;
  border-radius: 0;
}

.page-home .mt-table {
  margin: 14px 0 0;
}

.page-home .mt-table th,
.page-home .mt-table td {
  padding: 8px 10px;
}

.page-home .mt-table th {
  color: #c0bfbe;
  font-size: 9px;
  font-family: Nunito, sans-serif;
  font-weight: 900;
  line-height: 14px;
  text-transform: uppercase;
}

.page-home .mt-table td {
  color: #000;
  font-size: 11px;
  font-family: Nunito, sans-serif;
  font-weight: 500;
  line-height: 14px;
}

.page-home .mt-table tbody tr:nth-child(even) {
  background: #fafafa;
}

.page-home .mt-table__team img {
  width: 26px;
  height: 26px;
}

.news-block {
  margin: 34px 0 18px;
}

.mt-home-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.news-item {
  width: 100%;
  height: 166px;
  position: relative;
  overflow: hidden;
}

.news-item a {
  height: 100%;
  display: block;
  position: relative;
  z-index: 2;
}

.news-item a:after {
  content: "";
  opacity: 0.6;
  background: linear-gradient(180deg, rgba(44, 42, 37, 0) 0%, #2c2a25 100%);
  position: absolute;
  inset: 0;
}

.news-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0) blur(0);
  transition: 0.3s ease-in-out;
}

.news-item .news-data {
  position: absolute;
  bottom: 12px;
  z-index: 1;
  padding: 0 12px;
}

.news-item .news-hd {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: #e8e8e8;
  font-size: 9px;
  font-family: Nunito, sans-serif;
  font-weight: 600;
  line-height: 14px;
  text-transform: uppercase;
}

.news-item .news-title {
  color: #fff;
  font-size: 11px;
  font-family: Nunito, sans-serif;
  font-weight: 500;
  line-height: 14px;
  padding: 6px 0;
}

.news-item .more {
  color: #fff;
  font-size: 14px;
  font-family: Nunito, sans-serif;
  font-weight: 700;
  line-height: 20px;
  position: relative;
  display: none;
  transition: 0.3s ease-in-out;
}

.news-item .more::before {
  content: "";
  width: 30px;
  height: 1px;
  background-color: #fff;
  display: block;
  margin: 5px 0;
}

.news-item:hover img {
  filter: grayscale(100%) blur(3px);
}

.news-item:hover .more {
  display: block;
}

.section-seo {
  position: relative;
  box-sizing: border-box;
  margin: 42px 0 0;
  display: flex;
  width: 100%;
  justify-content: flex-end;
}

.section-seo .seo-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.section-seo .block-data {
  max-width: 510px;
  width: 100%;
}

.section-seo .block-data h3 {
  color: #000;
  font-size: 19px;
  font-family: Mulish, sans-serif;
  line-height: 26px;
  font-weight: 400;
}

.section-seo .block-text {
  padding: 18px 0 0;
  color: #a0a0a0;
  font-size: 10px;
  font-family: Nunito, sans-serif;
  font-weight: 500;
  line-height: 15px;
}

.section-seo .block-text p {
  color: #a0a0a0;
  margin-bottom: 15px;
}

.section-seo .block-text p:last-child {
  margin-bottom: 0;
}

.section-seo .block-text ul {
  padding: 10px 0 10px 16px;
  column-count: 2;
  margin-bottom: 10px;
  list-style: circle;
}

.section-seo .data-cover {
  max-width: 305px;
  width: 100%;
  height: 305px;
  overflow: hidden;
}

.section-seo .data-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-body .mt-page-header {
  padding: 0 0 24px;
  margin: 0 0 24px;
  border-bottom: 1px solid #f0f0f0;
}

.page-body .mt-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
  color: #a0a0a0;
  font-size: 11px;
  font-family: Nunito, sans-serif;
  font-weight: 700;
  line-height: 14px;
  text-transform: uppercase;
}

.page-body .mt-breadcrumbs a,
.page-body .mt-breadcrumbs span {
  color: inherit;
}

.page-body .mt-page-header h1 {
  color: #000;
  font-size: 32px;
  font-family: Mulish, sans-serif;
  font-weight: 700;
  line-height: 42px;
}

.page-body .mt-page-header p {
  color: #a0a0a0;
  font-size: 14px;
  font-family: Nunito, sans-serif;
  font-weight: 500;
  line-height: 20px;
  margin-top: 12px;
  max-width: 720px;
}

.page-body .mt-empty-state {
  border: 1px solid #f0f0f0;
  background: #fff;
  border-radius: 0;
  padding: 24px 22px;
  box-shadow: none;
}

.page-body .mt-empty-state p {
  color: #a0a0a0;
}

footer {
  position: relative;
  box-sizing: border-box;
  margin-top: 42px;
}

footer .footer-content {
  background: #000;
  padding: 18px 0;
}

footer .footer-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}

footer .w-side {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

footer .logo-block {
  max-width: 112px;
}

footer .logo-block img {
  width: 100%;
  max-width: none;
}

footer .ft-copy,
footer .w-center ul li a,
footer .w-contact a {
  color: #fff;
  font-size: 9px;
  font-family: Nunito, sans-serif;
  font-weight: 500;
  line-height: 12px;
}

footer .w-center ul {
  list-style: none;
  column-count: 2;
  column-gap: 48px;
}

footer .w-center ul li {
  padding: 3px 0;
}

footer .w-right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 36px;
  margin-top: -5px;
}

footer .w-contact .label {
  color: #fff;
  font-size: 9px;
  font-family: Nunito, sans-serif;
  font-weight: 600;
  line-height: 12px;
  text-transform: uppercase;
  padding: 4px 0;
}

footer .w-rss .rss {
  display: block;
  width: 30px;
  height: 30px;
  background: url("../images/rss.svg") center/cover no-repeat;
}

@media screen and (max-width: 1360px) {
  .container {
    width: min(100%, 1180px);
  }

  header .center_wrap {
    max-width: calc(100% - 220px);
  }

  .page-flex {
    column-gap: 40px;
  }

  .page-flex .page-body {
    max-width: none;
  }
}

@media screen and (max-width: 1024px) {
  .mobile-toogle {
    display: block;
    position: relative;
    z-index: 9;
  }

  header .center_wrap {
    max-width: none;
    width: auto;
  }

  header .search_block {
    display: none;
  }

  .sidebar {
    display: none;
  }

  .page-flex {
    flex-wrap: wrap;
    justify-content: center;
  }

  .page-flex .page-body {
    flex: 1 1 100%;
    max-width: none;
  }

  .section-seo .seo-flex {
    width: 100%;
  }

  .section-seo .block-data,
  .section-seo .data-cover {
    max-width: none;
  }
}

@media screen and (max-width: 992px) {
  .section-seo {
    justify-content: center;
  }

  .section-seo .data-cover {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .mt-home-news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  footer .footer-flex {
    gap: 30px;
    align-items: flex-start;
  }

  footer .w-right {
    gap: 24px;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  header .header-flex {
    width: calc(100% - 30px);
    padding-top: 24px;
  }

  main {
    padding-top: 20px;
  }

  .page-home .block-header,
  .page-home .news-block .block-header,
  .page-home .tour-table .block-header {
    width: calc(100% - 30px);
    margin: 0 auto 20px;
  }

  .page-home .tabs_hd {
    gap: 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .page-home .block-title {
    font-size: 26px;
    line-height: 34px;
  }

  .page-home .block-tabs {
    gap: 14px;
  }

  .mt-home-news-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    width: calc(100% - 30px);
    margin: 0 auto;
  }

  .news-item {
    height: 260px;
  }

  .news-item:hover img {
    filter: none;
  }

  .section-seo {
    width: calc(100% - 30px);
    margin: 30px auto 0;
  }

  footer .w-center ul {
    column-count: 1;
    column-gap: 0;
  }
}
