@charset "UTF-8";
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  height: 100%;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100%;
  font-family: "Lato", sans-serif;
  background-color: #131010;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.m-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.m-btn--primary {
  position: relative;
  gap: 8px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  color: #f4f4f4;
  text-transform: uppercase;
  background-color: #D10B11;
  margin-top: 40px;
  padding: 11px 8px 11px 24px;
}
.m-btn--primary:before {
  content: "";
  border-right: 22px solid rgba(0, 0, 0, 0);
  border-top: 41px solid #D10B11;
  position: absolute;
  right: -22px;
  top: 0;
}
.m-btn--primary:after {
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
  content: "";
  color: #fff;
}
.m-btn--simple {
  position: relative;
  gap: 8px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  color: #D10B11;
  text-transform: uppercase;
  padding: 0;
}
.m-btn--simple:visited {
  color: #D10B11;
}
.m-btn--simple:hover {
  color: #D10B11;
}
.m-btn--simple:active {
  color: #D10B11;
}
.m-btn--simple:after {
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
  content: "";
}

.m-header {
  position: relative;
  background-size: cover;
  background-position: left center;
  padding: 500px 0 64px;
}
.m-header__date {
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.m-header__title {
  font-family: "Raleway", sans-serif;
  font-size: 48px;
  line-height: 60px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0;
}
.m-header__flag {
  padding: 0;
  margin: 0;
  list-style-type: none;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 8px 0 0 8px;
  padding: 16px 0 16px 16px;
}
.m-header__flag li {
  position: relative;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  color: #f4f4f4;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 16px 16px 16px 56px;
}
.m-header__flag li span {
  display: block;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0;
}
.m-header__flag li:before {
  display: block;
  content: var(--icon);
  position: absolute;
  top: 50%;
  left: 16px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.m-header:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  border-left: var(--width) solid rgba(0, 0, 0, 0);
  border-bottom: 72px solid #131010;
}
@media screen and (max-width: 767px) {
  .m-header {
    padding: 150px 0;
  }
  .m-header__title {
    margin-bottom: 30px;
  }
  .m-header__flag {
    position: static;
    -webkit-transform: none;
    transform: none;
    margin: 0 0 0 12px;
  }
}

.m-section {
  padding: 80px 0;
}
.m-section__header {
  text-align: center;
  margin-bottom: 80px;
}
.m-section__inner {
  padding: 40px 32px;
}
.m-section h2.m-section__title {
  font-family: "Raleway", sans-serif;
  font-size: 60px;
  line-height: 72px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #f4f4f4;
  margin: 0;
}
.m-section h3.m-section__subtitle {
  font-family: "Raleway", sans-serif;
  font-size: 36px;
  line-height: 44px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: #f4f4f4;
  margin: 0;
}
.m-section h4.m-section__title {
  font-family: "Raleway", sans-serif;
  font-size: 48px;
  line-height: 60px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}
.m-section h4.m-section__title--center {
  font-family: "Raleway", sans-serif;
  font-size: 48px;
  line-height: 60px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
}
.m-section h4.m-section__title--center.xcm {
  font-size: 40px;
  line-height: 52px;
  color: #7d6b52;
}
.m-section h5.m-section__subtitle {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
}
.m-section__text {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #f4f4f4;
}
.m-section__text p:last-of-type {
  margin: 0;
}
.m-section__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 46px;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .m-section {
    padding: 40px 0;
  }
  .m-section h2.m-section__title {
    font-size: 50px;
    line-height: 62px;
  }
}

.m-image {
  position: relative;
  margin-bottom: 64px;
}
.m-image:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  border-bottom: var(--height) solid rgba(0, 0, 0, 0);
  border-left: 80px solid #131010;
}

.m-countdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  text-align: center;
  color: #f4f4f4;
  text-transform: uppercase;
  padding: 8px 0;
}
.m-countdown span {
  display: block;
  font-family: "Raleway", sans-serif;
  font-size: 36px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: none;
  margin-bottom: 4px;
}

.m-table, .listing {
  width: 100% !important;
  color: #f4f4f4;
  margin-bottom: 80px;
}
.m-table tr th, .m-table tr td, .listing tr th, .listing tr td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px 24px;
}
.m-table tr th, .listing tr th {
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
}
.m-table tr td, .listing tr td {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}
.m-table tr td a, .listing tr td a {
  font-size: 21px;
  line-height: 1;
  color: #D10B11;
}
.m-table tr td a:visited, .listing tr td a:visited {
  color: #D10B11;
}
.m-table tr td a:hover, .listing tr td a:hover {
  color: #D10B11;
}
.m-table tr td a:active, .listing tr td a:active {
  color: #D10B11;
}
.m-table tr td:first-of-type, .listing tr td:first-of-type {
  text-transform: uppercase;
  font-weight: 700;
}
.m-table tr:last-of-type td, .listing tr:last-of-type td {
  border: 0;
}
.m-table.small-only, .listing.small-only {
  display: none;
}
.m-table.xcm td, .m-table.xcm th, .listing.xcm td, .listing.xcm th {
  border: 0;
}
.m-table.xcm td, .listing.xcm td {
  font-size: 18px;
  font-weight: 800;
  padding: 0 12px;
}
.m-table.xcm td:first-of-type, .listing.xcm td:first-of-type {
  text-transform: none;
  font-weight: 800;
}
.m-table.dark, .listing.dark {
  color: #000;
  margin: 20px 0 0 0;
}
.m-table.dark tr td, .listing.dark tr td {
  border-bottom: 1px solid #ccc;
  padding: 12px 0;
}
.m-table.dark tr:last-of-type td, .listing.dark tr:last-of-type td {
  border: 0;
}
@media screen and (max-width: 991px) {
  .m-table, .listing {
    margin-bottom: 40px;
  }
  .m-table.large-only, .listing.large-only {
    display: none;
  }
  .m-table.small-only, .listing.small-only {
    display: table;
  }
  .m-table.xcm td, .listing.xcm td {
    padding: 10px 12px;
  }
}

.m-accordion__item {
  border: 1px solid #4A4A4A;
}
.m-accordion__item.open .m-accordion__header:after {
  content: "";
}
.m-accordion__item.open .m-accordion__body {
  display: block;
}
.m-accordion__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 24px;
  cursor: pointer;
}
.m-accordion__header:after {
  font-family: "Font Awesome 6 Pro";
  content: "";
  color: #f4f4f4;
}
.m-accordion__title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: #D10B11;
  margin: 0;
}
.m-accordion__body {
  display: none;
  padding: 0 14px;
}
.m-accordion--vertical {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.m-accordion--vertical .m-accordion__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #4A4A4A;
  width: 62px;
  -webkit-transition: ease-out all 0.3s;
  transition: ease-out all 0.3s;
}
.m-accordion--vertical .m-accordion__item.open {
  width: 100%;
  -webkit-transition: ease-out all 0.3s;
  transition: ease-out all 0.3s;
}
.m-accordion--vertical .m-accordion__item.open .m-accordion__title,
.m-accordion--vertical .m-accordion__item.open .m-accordion__number {
  color: #f4f4f4;
}
.m-accordion--vertical .m-accordion__item.open .m-accordion__header:after {
  content: none;
}
.m-accordion--vertical .m-accordion__item.open .m-accordion__body {
  display: block;
}
.m-accordion--vertical .m-accordion__header {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: auto;
  height: auto;
  padding: 32px 24px;
}
.m-accordion--vertical .m-accordion__header:after {
  content: none;
}
.m-accordion--vertical .m-accordion__number {
  display: block;
  font-family: "Raleway", sans-serif;
  font-size: 24px;
  line-height: 32px;
  font-weight: 900;
  letter-spacing: 0.03em;
  color: #D10B11;
}
.m-accordion--vertical .m-accordion__title {
  display: block;
  position: absolute;
  bottom: 18px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  color: #D10B11;
  -webkit-transform: rotateZ(-90deg) translateX(50%);
  transform: rotateZ(-90deg) translateX(50%);
  white-space: nowrap;
}
.m-accordion--vertical .m-accordion__body {
  width: 100%;
  padding: 64px 48px;
}
.m-accordion--vertical .m-accordion__body h2 {
  font-family: "Raleway", sans-serif;
  font-size: 30px;
  line-height: 38px;
  font-weight: 900;
  letter-spacing: 0.03em;
  color: #f4f4f4;
  margin-bottom: 24px;
}
@media screen and (max-width: 991px) {
  .m-accordion--vertical {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .m-accordion--vertical .m-accordion__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
  }
  .m-accordion--vertical .m-accordion__header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 16px 12px;
  }
  .m-accordion--vertical .m-accordion__title {
    position: static;
    -webkit-transform: none;
    transform: none;
  }
}

.m-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}
.m-card__header {
  position: relative;
  background-size: cover;
  background-position: center;
  padding-bottom: 300px;
}
.m-card__header .m-card__title {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  font-size: 24px;
  line-height: 32px;
  margin: 0;
}
.m-card__logo {
  position: absolute;
  bottom: 0;
  left: 8px;
  max-width: 200px;
  max-height: 170px;
  margin-bottom: 30px;
}
.m-card__body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-color: #242424;
  padding: 28px 40px;
}
.m-card__title {
  font-family: "Raleway", sans-serif;
  font-size: 36px;
  line-height: 44px;
  font-weight: 900;
  letter-spacing: 0.03em;
  color: #f4f4f4;
  margin-bottom: 4px;
}
.m-card__titleNews {
  font-family: "Raleway", sans-serif;
  font-size: 28px;
  line-height: 30px;
  font-weight: 900;
  letter-spacing: 0.03em;
  color: #f4f4f4;
  margin-bottom: 4px;
}
.m-card__subtitle {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}
.m-card__text {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #fff;
}
.m-card.top:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  border-left: var(--width) solid transparent;
  border-top: 48px solid #131010;
  z-index: 1;
}
.m-card.bottom:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  border-left: var(--width) solid transparent;
  border-bottom: 20px solid #131010;
  z-index: 1;
}
@media screen and (max-width: 991px) {
  .m-card {
    height: auto;
    margin-bottom: 40px;
  }
}

.m-footer {
  background-color: #D10B11;
  margin-top: auto;
  padding: 40px 0 56px;
}
.m-footer p {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #f4f4f4;
  margin-bottom: 0;
}
.m-footer p a {
  font-weight: 700;
  color: #f4f4f4;
}
.m-footer p a:visited {
  color: #f4f4f4;
}
.m-footer p a:hover {
  color: #f4f4f4;
}
.m-footer p a:active {
  color: #f4f4f4;
}

.m-socials__label {
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  color: #f4f4f4;
}
.m-socials__icon {
  font-size: 30px;
}
.m-socials ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}
.m-socials ul li a {
  display: block;
  font-size: 20px;
  line-height: 1;
  color: #f4f4f4;
}
.m-socials ul li a:visited {
  color: #f4f4f4;
}
.m-socials ul li a:hover {
  color: #f4f4f4;
}
.m-socials ul li a:active {
  color: #f4f4f4;
}
.m-socials--nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
}
.m-socials--nav .m-socials__label {
  color: #4A4A4A;
  margin: 0;
}
.m-socials--nav ul li a {
  color: #D10B11;
}
.m-socials--nav ul li a:visited {
  color: #D10B11;
}
.m-socials--nav ul li a:hover {
  color: #D10B11;
}
.m-socials--nav ul li a:active {
  color: #D10B11;
}