p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0;
}

ul,
ol {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

body {
  font-family: "Montserrat", sans-serif;
  height: 100%;
  background: #ffffff;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.link {
  text-decoration: none;
}

.list {
  list-style-type: none;
}

.no-scroll {
  overflow: hidden;
}

.content_img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.overflow_hidden {
  overflow: hidden;
}

textarea::-webkit-scrollbar {
  width: 12px;
}

textarea::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 44px;
  margin: 44px 0;
}

textarea::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

textarea::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.section_content {
  background-image: url("../images/bg-point-2.png");
  background-position: center;
}

@media (max-width: 768px) {
  .section_content {
    /* padding: 20px 0; */
    padding: 24px 0;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .section_content {
    /* padding: 30px 0; */
    padding: 32px 0;
  }
}

@media (min-width: 1024px) {
  .section_content {
    padding: 40px 0;
  }
}

.section_league_list {
  background-color: #fe5900;
}

@media (max-width: 768px) {
  .section_league_list {
    /* padding: 20px 0; */
    padding: 24px 0;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .section_league_list {
    /* padding: 30px 0; */
    padding: 32px 0;
  }
}

@media (min-width: 1024px) {
  .section_league_list {
    padding: 40px 0;
  }
}

.section_title_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section_subtitle {
  font-size: 10px;
  font-weight: 500;
  color: rgb(140, 140, 140);
  text-transform: uppercase;
  letter-spacing: 4px;
  /* margin-bottom: 5px; */
  margin-bottom: 8px;
}

.section_title {
  font-weight: 700;
  color: rgb(13, 13, 13);
  text-transform: uppercase;
  letter-spacing: 4px;
}

@media (max-width: 768px) {
  .section_title_wrap {
    /* margin-bottom: 20px; */
    margin-bottom: 24px;
  }

  .section_title {
    font-size: 20px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .section_title_wrap {
    /* margin-bottom: 25px; */
    margin-bottom: 24px;
  }

  .section_title {
    font-size: 30px;
  }
}

@media (min-width: 1024px) {
  .section_title_wrap {
    /* margin-bottom: 30px; */
    margin-bottom: 32px;
  }

  .section_subtitle {
    font-size: 13px;
    /* margin-bottom: 10px; */
    margin-bottom: 16px;
  }

  .section_title {
    font-size: 40px;
  }
}

/*! -----HEADER----- */

.header {
  /* padding: 10px 0; */
  padding: 8px 0;
}

.header_container {
  position: relative;
}

.header_logo_link {
  display: flex;
}

.header_menu_list_wrap {
  display: flex;
  align-items: center;
  transform: none;
  transition: none;
}

.header_menu_list {
  display: flex;
  align-items: center;
}

.header_menu_link {
  font-weight: 600;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  transition: 0.3s all ease;
  display: inline-block;
  background: linear-gradient(to bottom, white, #ffffff);
  background-size: 0% 5%;
  background-position-y: 100%;
  background-repeat: no-repeat;
}

.header_menu_link:hover {
  background-size: 100% 5%;
}

.burger_menu {
  display: none;
}

.header_menu_link_active {
  background-size: 100% 5%;
}

@media (max-width: 1440px) {
  .header {
    background-color: #0d0d0d;
  }

  .header_logo_link {
    width: 50px;
  }
}

@media (max-width: 1023px) {
  .header_menu_list_wrap {
    position: fixed;
    left: 0;
    top: 4.5rem;
    width: 100%;
    height: 100%;
    /* row-gap: 25px; */
    row-gap: 24px;
    background-color: #0d0d0d;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px;
    transform: translateX(100%);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s ease, opacity 0.2s ease;
    z-index: 10;
  }

  .header_menu_list_wrap.hide_show {
    transform: translateX(0%);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .header_menu_list {
    flex-direction: column;
    /* row-gap: 25px; */
    row-gap: 24px;
  }

  .header_menu_link {
    font-size: 18px;
  }

  .burger_menu {
    display: block;
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
  }

  .bar,
  .bar_1,
  .bar_2 {
    width: 35px;
    height: 3px;
    background-color: #fe5900;
    border-radius: 4px;
    /* margin: 5px; */
    margin: 8px;
    transition: 0.3s;
  }

  .change .bar {
    transform: translate(0, 12px) rotate(-45deg);
  }

  .change .bar_1 {
    opacity: 0;
    width: 0;
  }

  .change .bar_2 {
    transform: translate(0, -10px) rotate(45deg);
  }
}

@media (min-width: 1023px) {
  .header_navigation {
    display: flex;
    justify-content: space-around;
  }

  .header_menu_list_wrap {
    position: static;
    transform: none;
    transition: none;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    height: auto;
    flex-direction: row;
    background: none;
    padding: 0;
    /* column-gap: 25px; */
    column-gap: 24px;
  }

  .header_menu_list {
    /* column-gap: 25px; */
    /* column-gap: 16px; */
    column-gap: 24px;
  }

  .burger_menu {
    display: none;
  }
}

@media screen and (min-width: 1023px) and (max-width: 1440px) {
  .header_menu_link {
    /* font-size: 12px; */
    font-size: 12px;
  }
}

@media (min-width: 1441px) {
  .header_position {
    left: 0;
    right: 0;
    top: 0;
    /* padding: 40px 0 20px; */
    padding: 40px 0 24px;
    position: absolute;
    z-index: 10;
  }

  .header_logo_link {
    width: 125px;
  }

  .header_logo_link_position {
    position: absolute;
    left: 50%;
    top: -150%;
    transform: translate(-50%, 0);
  }

  .header_menu_list_wrap_position {
    /* justify-content: space-around; */
    justify-content: space-between;
    flex-grow: 1;
  }

  .header_menu_link {
    font-size: 16px;
  }

  .width_50 {
    width: 50px;
  }
}

.main {
  flex: 1 1 auto;
}

/*! -----HERO----- */

.section_hero {
  background-image: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.6) 100%
    ),
    url("../images/bg-hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.bg_point_img {
  background-image: url("../images/bg-point-1.png");
  position: absolute;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.hero_container {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero_subtitle {
  font-size: 10px;
  font-weight: 600;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 2px;
  /* margin-bottom: 5px; */
  margin-bottom: 8px;
}

.hero_title {
  font-weight: 700;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  /* margin-bottom: 60px; */
  margin-bottom: 56px;
}

.league_list {
  display: flex;
  justify-content: center;
  /* column-gap: 55px; */
  column-gap: 56px;
}

.league_swiper_item {
  width: 25%;
}

.league_swiper_link {
  display: inline-flex;
  transition: 0.15s cubic-bezier(0.45, 0.05, 0.37, 0.93);
}

.league_swiper_link:hover {
  /* margin-left: 10px; */
  margin-left: 8px;
}

@media (max-width: 768px) {
  .section_hero {
    height: 65vh;
  }

  .hero_title {
    font-size: 32px;
    max-width: 330px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .section_hero {
    height: 75vh;
  }

  .hero_title {
    font-size: 48px;
    max-width: 495px;
  }
}

@media (min-width: 1024px) {
  .section_hero {
    height: 85vh;
  }

  .hero_subtitle {
    font-size: 13px;
    /* margin-bottom: 10px; */
    margin-bottom: 16px;
  }

  .hero_title {
    font-size: 64px;
    max-width: 660px;
  }

  .hero_container {
    bottom: -10%;
  }
}

.bg_color_white {
  background: #ffffff;
}

/*! -----HOME NEWS----- */

.section_home_news {
  background-image: url("../images/bg-point-2.png");
  background-position: center;
}

.home_news_list {
  display: flex;
  flex-wrap: wrap;
}

.home_news_info_wrapper {
  background-image: url("../images/bg-home-news-info-wrapper.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 24px;
}

.home_news_info_wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.home_news_info_subtitle {
  font-size: 11px;
  font-weight: 500;
  color: rgb(182, 182, 182);
  text-transform: uppercase;
  letter-spacing: 2px;
  /* margin-bottom: 5px; */
  margin-bottom: 8px;
}

.home_news_info_title {
  font-weight: 600;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  /* margin-bottom: 10px; */
  margin-bottom: 16px;
}

.home_news_info_text {
  font-weight: 400;
  color: rgb(182, 182, 182);
  margin-bottom: 25px;
}

.home_news_info_text_link {
  font-weight: 600;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  transition: 0.3s all ease;
  width: 100%;
  background: linear-gradient(to bottom, white, #ffffff);
  background-size: 25% 5%;
  background-repeat: no-repeat;
  background-position-y: 100%;
}

.home_news_info_text_link:hover {
  background-size: 100% 5%;
}

.home_news_link_img_wrapper {
  overflow: hidden;
}

.home_news_link_img_wrap {
  transition: scale 1s;
  scale: 1;
}

.home_news_link_img_wrap:hover {
  scale: 1.1;
}

@media (max-width: 768px) {
  .section_home_news {
    /* padding: 20px 0; */
    padding: 24px 0;
  }

  .home_news_list {
    flex-direction: column;
  }

  .home_news_item {
    width: 100%;
  }

  .home_news_info_wrapper {
    height: 250px;
  }

  .home_news_info_subtitle {
    text-align: center;
  }

  .home_news_info_title {
    font-size: 18px;
    text-align: center;
    /* margin-bottom: 15px; */
    margin-bottom: 16px;
  }

  .home_news_info_text {
    font-size: 16px;
    /* margin-bottom: 20px; */
    margin-bottom: 24px;
  }

  .home_news_info_text_link_wrap {
    width: 74px;
  }

  .home_news_info_text_link {
    font-size: 13px;
  }

  .home_news_link_img_wrap {
    height: 250px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .section_home_news {
    /* padding: 30px 0; */
    padding: 32px 0;
  }

  .home_news_item {
    width: 100%;
  }

  .home_news_link {
    display: flex;
  }

  .home_news_info_wrapper {
    width: 100%;
  }

  .home_news_info_title {
    font-size: 20px;
  }

  .home_news_info_text {
    font-size: 18px;
  }
  .home_news_info_text_link_wrap {
    width: 85px;
  }

  .home_news_info_text_link {
    font-size: 15px;
  }
}

@media (min-width: 1024px) {
  .section_home_news {
    padding: 40px 0;
  }

  .home_news_item {
    width: 50%;
  }

  .home_news_link {
    display: flex;
  }

  .flex_direction_row_reverse {
    flex-direction: row-reverse;
  }

  .home_news_info_wrapper {
    width: 50%;
  }

  .home_news_info_title {
    font-size: 25px;
  }

  .home_news_info_text {
    font-size: 18px;
  }

  .home_news_info_text_link_wrap {
    width: 184px;
  }

  .home_news_info_text_link {
    font-size: 13px;
    width: 40%;
  }

  .home_news_link_img_wrapper {
    width: 50%;
  }

  .home_news_link_img_wrap {
    height: 420px;
  }
}

/*! -----HOME CALENDAR----- */

.section_home_calendar {
  background-image: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.6) 100%
    ),
    url("../images/bg-home-calendar.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}

.home_calendar_container {
  position: relative;
}

.home_calendar_item {
  border-style: solid;
  border-width: 1px;
  border-color: rgb(232, 232, 233);
  padding: 24px;
}

.home_calendar_item_left_wrap {
  display: flex;
  /* column-gap: 35px; */
  column-gap: 32px;
  align-items: baseline;
}

.home_calendar_meet_team_link {
  align-items: center;
  display: flex;
  flex-direction: column;
  flex: 2 1;
  transition: ease 0.5s;
  color: rgb(13, 13, 13);
  /* row-gap: 10px; */
  row-gap: 8px;
  justify-content: center;
  width: 25%;
}

.home_calendar_meet_team_link:hover {
  color: rgb(254, 89, 0);
}

.home_calendar_meet_team_link_img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.home_calendar_meet_team_link_title {
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  margin-left: auto;
  margin-right: auto;
}

.home_calendar_meet_team_text {
  font-weight: 700;
  color: rgb(13, 13, 13);
  text-transform: uppercase;
  text-align: center;
}

.home_calendar_meet_team_name {
  font-weight: 500;
  text-align: center;
  color: rgb(140, 140, 140);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.home_calendar_meet_team_place {
  font-weight: 600;
  text-align: center;
  color: rgb(13, 13, 13);
  text-transform: uppercase;
}

.home_calendar_meet_team_score {
  font-weight: 700;
  text-align: center;
  color: rgb(13, 13, 13);
}

.home_calendar_item_right_wrap {
  display: flex;
  justify-content: center;
}

.home_calendar_link {
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  transition: ease 0.5s;
  display: block;
}
.home_calendar_link:hover {
  color: rgb(255, 255, 255);
  background: #fe5900;
}
.color_dark {
  color: rgb(13, 13, 13);
}
.border_gray {
  border-style: solid;
  border-width: 1px;
  border-color: rgb(191, 191, 191);
}

.bg_color_dark {
  background: #0d0d0d;
}

@media (max-width: 768px) {
  .section_home_calendar {
    /* padding: 20px 0; */
    padding: 24px 0;
  }

  .home_calendar_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* row-gap: 15px; */
    row-gap: 16px;
  }

  .home_calendar_meet_team_link_title {
    font-size: 16px;
  }

  .home_calendar_meet_team_text {
    font-size: 25px;
  }

  .home_calendar_meet_team_name {
    font-size: 13px;
    /* margin-bottom: 10px; */
    margin-bottom: 8px;
  }

  .home_calendar_meet_team_place {
    font-size: 18px;
    /* margin-bottom: 15px; */
    margin-bottom: 16px;
  }

  .home_calendar_meet_team_score {
    font-size: 25px;
  }

  .home_calendar_link {
    font-size: 11px;
    padding: 8px;
    width: 145px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .section_home_calendar {
    /* padding: 30px 0; */
    padding: 32px 0;
  }

  .home_calendar_meet_team_link_title {
    font-size: 18px;
  }

  .home_calendar_meet_team_text {
    font-size: 20px;
  }

  .home_calendar_meet_team_name {
    font-size: 12px;
  }

  .home_calendar_meet_team_place {
    font-size: 16px;
  }

  .home_calendar_meet_team_score {
    font-size: 20px;
  }

  .home_calendar_link {
    font-size: 10px;
    /* padding: 6px 12px; */
    padding: 8px;
    width: 115px;
  }
}

@media (min-width: 768px) {
  .home_calendar_item {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
  }

  .home_calendar_meet_team_name {
    /* margin-bottom: 15px; */
    margin-bottom: 16px;
  }

  .home_calendar_meet_team_place {
    /* margin-bottom: 20px; */
    margin-bottom: 24px;
  }
}

@media (max-width: 1024px) {
  .home_calendar_link_list {
    display: flex;
    flex-direction: column;
    /* row-gap: 15px; */
    row-gap: 16px;
  }
}

@media (min-width: 1024px) {
  .section_home_calendar {
    padding: 40px 0;
  }

  .home_calendar_meet_team_link_title {
    font-size: 20px;
  }

  .home_calendar_meet_team_text {
    font-size: 30px;
  }

  .home_calendar_meet_team_name {
    font-size: 11px;
  }

  .home_calendar_meet_team_place {
    font-size: 25px;
  }

  .home_calendar_meet_team_score {
    font-size: 30px;
  }

  .home_calendar_link {
    font-size: 15px;
    padding: 8px;
    width: 145px;
  }

  .home_calendar_link_list {
    display: flex;
    align-items: center;
    /* column-gap: 25px; */
    column-gap: 24px;
  }
}

/*! -----HOME VIDEO----- */

.section_home_video {
  background-position: center;
  background-image: url("../images/bg-point-2.png");
}

@media (max-width: 768px) {
  .section_home_video {
    /* padding: 20px 0; */
    padding: 24px 0;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .section_home_video {
    /* padding: 30px 0; */
    padding: 32px 0;
  }
}

@media (min-width: 1024px) {
  .section_home_video {
    padding: 40px 0;
  }
}

/*! -----HOME RESULTS----- */

.section_home_results {
  background-image: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.6) 100%
    ),
    url("../images/6fb5b3012fc0cf35e8be170921e2c6b8.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}

@media (max-width: 768px) {
  .section_home_results {
    /* padding: 20px 0; */
    padding: 24px 0;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .section_home_results {
    /* padding: 30px 0; */
    padding: 32px 0;
  }
}

@media (min-width: 1024px) {
  .section_home_results {
    padding: 40px 0;
  }
}

/*! -----STANDINGS----- */

.section_standings {
  background-image: url("../images/bg-point-2.png");
  background-position: center;
}

@media (max-width: 768px) {
  .section_standings {
    /* padding: 20px 0; */
    padding: 24px 0;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .section_standings {
    /* padding: 30px 0; */
    padding: 32px 0;
  }
}

@media (min-width: 1024px) {
  .section_standings {
    padding: 40px 0;
  }
}

/*! -----EVENTS----- */

.section_events {
  background-image: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.6) 100%
    ),
    url("../images/bg-events.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
}

.events_container {
  position: relative;
}

.events_list {
  display: flex;
}

.events_item {
  border-style: solid;
  border-width: 1px;
  border-color: rgb(232, 232, 232);
  display: flex;
}

.events_left_wrap {
  background: #fe5900;
}

.events_data {
  font-weight: 700;
  color: rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  text-align: center;
}

.events_data_accent {
  line-height: 15px;
  text-transform: uppercase;
}

.events_right_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* column-gap: 10px; */
  column-gap: 8px;
  width: 100%;
  padding: 24px;
}

.events_meet_link {
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 25%;
  text-transform: uppercase;
  transition: ease 0.5s;
  color: rgb(13, 13, 13);
}

.events_meet_link:hover {
  color: rgb(254, 89, 0);
}

.events_meet_link_img {
  height: 30px;
  width: 30px;
  object-fit: contain;
}

.events_meet_score {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgb(13, 13, 13);
}

.events_meet_link_live {
  font-weight: 600;
  text-transform: uppercase;
  transition: ease 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.events_meet_link_live:hover {
  background: #fe5900;
}

@media (max-width: 768px) {
  .section_events {
    /* padding: 20px 0; */
    padding: 24px 0;
  }

  .events_list {
    flex-direction: column;
    /* row-gap: 15px; */
    row-gap: 16px;
  }

  .events_item {
    width: 100%;
  }

  .events_data {
    font-size: 16px;
  }

  .events_data_accent {
    font-size: 11px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .section_events {
    /* padding: 30px 0; */
    padding: 32px 0;
  }

  .events_list {
    flex-wrap: wrap;
    /* column-gap: 15px;
    row-gap: 15px; */
    gap: 16px;
  }

  .events_item {
    width: calc((100% - 15px) / 2);
    flex-direction: column;
  }

  .events_data {
    font-size: 18px;
  }

  .events_data_accent {
    font-size: 13px;
  }
}

@media (max-width: 1024px) {
  .events_item {
    flex-direction: column;
  }

  .events_left_wrap {
    padding: 8px;
    width: 100%;
  }

  .events_meet_link {
    flex-direction: column-reverse;
    /* row-gap: 10px; */
    row-gap: 8px;
    font-size: 12px;
  }

  .events_meet_link_live {
    font-size: 8px;
    /* padding: 6px 9px; */
    padding: 8px 16px;
  }
}

@media (min-width: 1024px) {
  .section_events {
    padding: 40px 0;
  }

  .events_list {
    flex-wrap: wrap;
    /* row-gap: 25px;
    column-gap: 25px; */
    gap: 24px;
  }

  .events_item {
    width: calc((100% - 25px) / 2);
  }

  .events_left_wrap {
    /* padding: 12px; */
    padding: 16px;
  }

  .events_data {
    font-size: 20px;
  }

  .events_data_accent {
    font-size: 15px;
  }

  .events_meet_link {
    font-size: 10px;
    /* column-gap: 10px; */
    column-gap: 8px;
  }

  .events_meet_link_live {
    font-size: 11px;
    /* padding: 6px 12px; */
    padding: 8px 24px;
  }
}

/*! -----HOME TEAMS----- */

.section_home_teams {
  background-image: url("../images/bg-point-2.png");
  background-position: center;
}

@media (max-width: 768px) {
  .section_home_teams {
    /* padding: 20px 0; */
    padding: 24px 0;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .section_home_teams {
    /* padding: 30px 0; */
    padding: 32px 0;
  }
}

@media (min-width: 1024px) {
  .section_home_teams {
    padding: 40px 0;
  }
}

/*! -----HOME AWARDS----- */

.section_awards {
  background-image: url("../images/bg-home-awards.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}

@media (max-width: 768px) {
  .section_awards {
    /* padding: 20px 0; */
    padding: 24px 0;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .section_awards {
    /* padding: 30px 0; */
    padding: 32px 0;
  }
}

@media (min-width: 1024px) {
  .section_awards {
    padding: 40px 0;
  }
}

/*! -----TOP VIDEO----- */

.section_top_video {
  background-image: url("../images/bg-point-2.png");
  background-position: center;
}

@media (max-width: 768px) {
  .section_top_video {
    /* padding: 20px 0; */
    padding: 24px 0;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .section_top_video {
    /* padding: 30px 0; */
    padding: 32px 0;
  }
}

@media (min-width: 1024px) {
  .section_top_video {
    padding: 40px 0;
  }
}

/*! -----FOOTER----- */

.footer_top_wrapper {
  background: #0d0d0d;
}

.footer_top_container {
  display: flex;
}

.footer_top_title {
  font-weight: 600;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  /* margin-bottom: 15px; */
  margin-bottom: 16px;
}

.footer_top_text {
  color: rgb(182, 182, 182);
  font-weight: 400;
}

.footer_top_item:not(:last-child) {
  /* margin-bottom: 5px; */
  margin-bottom: 8px;
}

.footer_top_link {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: baseline;
  /* column-gap: 5px; */
  column-gap: 8px;
  font-weight: 400;
  color: rgb(254, 89, 0);
  filter: grayscale(95%);
  transition: ease 0.5s;
}

.footer_top_link:hover {
  filter: grayscale(1%);
}

.padding_left {
  /* padding-left: 20px; */
  padding-left: 16px;
}

.footer_top_link_point {
  height: 5px;
  width: 5px;
  background: #fe5900;
}

.align_items_center {
  align-items: center;
}

.column_gap_10 {
  /* column-gap: 10px; */
  column-gap: 8px;
}

.footer_top_wrap_container {
  display: flex;
}

.footer_top_link_text {
  display: flex;
}

.footer_top_link_text_accent {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer_bottom_wrapper {
  background: #1a1a1a;
}

.footer_bottom_container {
  display: flex;
}

.footer_logo_link {
  width: 115px;
  height: 50px;
}

.footer_bottom_text {
  font-size: 14px;
  font-weight: 400;
  color: rgb(182, 182, 182);
}

.footer_bottom_text_link {
  color: rgb(182, 182, 182);
  transition: ease 0.5s;
}

.footer_bottom_text_link:hover {
  color: rgb(254, 89, 0);
}

.footer_bottom_socials_list {
  display: flex;
  /* column-gap: 15px; */
  column-gap: 16px;
}

.footer_bottom_socials_link {
  transition: ease 0.5s;
  filter: invert(40%);
}

.footer_bottom_socials_link:hover {
  filter: invert(1%);
}

.footer_bottom_socials_link_img {
  width: 15px;
  height: 15px;
}

@media (max-width: 768px) {
  .footer_top_wrapper {
    /* padding: 20px 0 10px; */
    padding: 24px 0 16px;
  }

  .footer_top_wrap_container {
    flex-direction: column;
    /* row-gap: 15px; */
    row-gap: 16px;
  }

  .footer_top_link_text {
    align-items: baseline;
    /* column-gap: 5px; */
    column-gap: 8px;
  }

  .footer_bottom_wrapper {
    /* padding: 10px 0 20px; */
    padding: 8px 0 24px;
  }

  .footer_bottom_container {
    flex-direction: column;
    row-gap: 16px;
    /* row-gap: 15px; */
  }
}

@media (min-width: 768px) {
  .footer_top_text {
    width: 75%;
  }

  .footer_top_link_text {
    flex-direction: column;
    row-gap: 8px;
    /* row-gap: 5px; */
  }

  .footer_bottom_container {
    justify-content: space-between;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .footer_top_wrapper {
    /* padding: 20px 0 15px; */
    padding: 24px 0 16px;
  }

  .footer_top_wrap_container {
    /* column-gap: 15px; */
    column-gap: 16px;
    justify-content: center;
  }

  .footer_bottom_wrapper {
    /* padding: 15px 0 20px; */
    padding: 16px 0 24px;
  }
}

@media (max-width: 1024px) {
  .footer_top_container {
    flex-direction: column;
    /* row-gap: 15px; */
    row-gap: 16px;
  }

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

  .footer_top_title {
    font-size: 18px;
    text-align: center;
  }

  .footer_top_text {
    font-size: 16px;
    text-align: center;
    /* margin-bottom: 10px; */
    margin-bottom: 16px;
  }

  .footer_top_link {
    font-size: 16px;
    align-items: center;
  }

  .footer_top_link_img {
    height: 15px;
    width: 15px;
  }
}

@media (min-width: 1024px) {
  .footer_top_wrapper {
    /* padding: 30px 0 15px; */
    padding: 32px 0 16px;
  }

  .block_footer_top_container {
    justify-content: space-between;
  }

  .width_50pr {
    width: 50%;
  }

  .footer_top_title {
    font-size: 20px;
  }

  .footer_top_text {
    font-size: 18px;
    margin-bottom: 24px;
    /* margin-bottom: 25px; */
  }

  .footer_top_link {
    font-size: 18px;
  }

  .footer_top_link_img {
    height: 18px;
    width: 18px;
  }

  .width_60pr {
    width: 60%;
  }

  .footer_top_wrap_container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    width: 50%;
  }

  .footer_bottom_wrapper {
    /* padding: 15px 0 30px; */
    padding: 16px 0 32px;
  }
}

/*! -----TABLE----- */

.league_table_wrapper {
  border-style: solid;
  border-width: 1px;
  border-color: rgb(232, 232, 233);
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.league_table_wrapper::-webkit-scrollbar {
  height: 5px;
}

.league_table_wrapper::-webkit-scrollbar-thumb {
  background-color: #fe5900;
}

.league_table_wrapper::-webkit-scrollbar-track {
  background-color: rgb(252, 185, 0);
}

.league_table {
  width: 100%;
}

.bg_color_orange {
  background: #fe5900;
}

.league_table_head_point {
  /* padding-bottom: 18px;
  padding-left: 18px;
  padding-right: 18px;
  padding-top: 18px; */
  padding: 16px;
}

.league_table_head_point_text {
  font-size: 18px;
  font-weight: 500;
  color: rgb(255, 255, 255);
  text-align: center;
  text-transform: uppercase;
}

.z-index_9 {
  z-index: 9;
}

.league_table_body_line {
  transition: ease 0.5s;
}

.league_table_body_line:hover {
  background-color: rgb(252, 185, 0);
}

.block_league_table_body_point_team {
  align-items: center;
  display: flex;
  /* column-gap: 10px; */
  justify-content: space-around;
  column-gap: 8px;
}

.league_table_body_point_team {
  font-size: 15px;
  font-weight: 500;
  color: rgb(140, 140, 140);
  width: 10%;
}

.league_table_body_point_team_link {
  align-items: center;
  display: flex;
  column-gap: 8px;
  /* column-gap: 10px; */
  transition: ease 0.5s;
  color: rgb(140, 140, 140);
}

.league_table_body_point_team_link:hover {
  color: #fe5900;
}

.league_table_body_point_team_link_img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.league_table_body_point_team_link_text {
  display: none;
}

.league_table_body_point {
  /* padding-bottom: 18px;
  padding-left: 18px;
  padding-right: 18px;
  padding-top: 18px; */
  padding: 16px;
}

.league_table_body_point_text {
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  color: rgb(140, 140, 140);
}

@media screen and (min-width: 768px) {
  .league_table_body_point_team_link_text {
    font-size: 15px;
    font-weight: 500;
    display: flex;
  }

  .block_league_table_body_point_team {
    justify-content: flex-start;
  }
}

@media (max-width: 990px) {
  .league_table {
    /* width: 1000px; */
    width: 700px;
  }

  .league_table_head th:first-child {
    position: sticky;
    width: 32px;
    left: 0;
    top: 0;
    bottom: 0;
  }

  /* .league_table_head th:nth-child(2) {
    position: sticky;
    width: 140px;
    left: 0;
    top: 0;
    bottom: 0;
  } */

  .league_table_head td:first-child {
    position: sticky;
    width: 32px;
    left: 0;
    top: 0;
    bottom: 0;
  }

  /* .league_table_head td:nth-child(2) {
    position: sticky;
    width: 140px;
    left: 0;
    top: 0;
    bottom: 0;
  } */

  .league_table_body th:first-child {
    position: sticky;
    width: 32px;
    left: 0;
    top: 0;
    bottom: 0;
  }

  /* .league_table_body th:nth-child(2) {
    position: sticky;
    width: 140px;
    left: 0;
    top: 0;
    bottom: 0;
  } */

  .league_table_body td:first-child {
    position: sticky;
    width: 32px;
    left: 0;
    top: 0;
    bottom: 0;
  }

  /* .league_table_body td:nth-child(2) {
    position: sticky;
    width: 140px;
    left: 0;
    top: 0;
    bottom: 0;
  } */

  .league_table_head_point {
    /* padding: 10px; */
    padding: 8px;
  }

  .league_table_body_point {
    /* padding: 10px; */
    padding: 8px;
  }

  .league_table_head_point_text {
    font-size: 12px;
  }

  .league_table_body_point_team {
    font-size: 12px;
  }

  .league_table_body_point_text {
    font-size: 12px;
  }

  .league_table_body_point_team_link_text {
    font-size: 12px;
  }

  .league_table_body_point_team_link_img {
    height: 15px;
    width: 15px;
  }
}

/*! -----NEWS----- */

.block_news_top_wrapper {
  display: flex;
}

.block_news_top_wrap {
  display: flex;
}
.news_top_link {
  color: rgb(13, 13, 13);
  transition: ease 0.5s;
}
.news_top_link:hover {
  color: rgb(254, 89, 0);
}
.block_news_top_link_img {
  transition: scale 1s;
  scale: 1;
}
.block_news_top_link_img:hover {
  scale: 1.1;
}
.news_top_link_img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.block_news_top_info {
  /* padding-bottom: 20px;
  padding-top: 20px; */
  padding: 24px 0;
}
.news_top_info_subtitle {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 8px;
  /* margin-bottom: 10px; */
  color: rgb(140, 140, 140);
  text-transform: uppercase;
}
.news_top_info_title {
  font-size: 20px;
  font-weight: 700;
  /* margin-bottom: 10px; */
  margin-bottom: 8px;
  text-transform: uppercase;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news_top_info_text {
  font-size: 18px;
  font-weight: 400;
  /* margin-bottom: 25px; */
  margin-bottom: 24px;
  color: rgb(138, 138, 138);

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news_top_info_text_link {
  background: linear-gradient(to bottom, black, #0d0d0d);
  background-position-y: 100%;
  background-repeat: no-repeat;
  background-size: 25% 5%;
  font-size: 14px;
  font-weight: 600;
  width: 19%;
  transition: 0.3s all ease;
  text-transform: uppercase;
  color: rgb(13, 13, 13);
}
.news_top_info_text_link:hover {
  background: linear-gradient(to bottom, orange, #fe5900);
  background-position-y: 100%;
  background-repeat: no-repeat;
  background-size: 100% 5%;
  color: rgb(254, 89, 0);
}

@media screen and (min-width: 768px) {
  .news_top_info_text_link {
    font-size: 11px;
    width: 23%;
  }
}

@media screen and (min-width: 1024px) {
  .news_top_info_text_link {
    font-size: 13px;
    width: 30%;
  }
}

@media (max-width: 768px) {
  .block_news_top_wrapper {
    flex-direction: column;
    /* row-gap: 15px; */
    row-gap: 16px;
  }

  .block_news_top_wrap {
    flex-direction: column;
    /* row-gap: 15px; */
    row-gap: 16px;
  }

  .block_news_top_link_img {
    height: 350px;
  }
}

@media (min-width: 768px) {
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .block_news_top_wrapper {
    flex-wrap: wrap;
    /* row-gap: 25px;
    column-gap: 25px; */
    gap: 24px;
  }

  .block_news_top_wrap {
    /* column-gap: 25px; */
    column-gap: 24px;
  }

  .block_news_top_link_img {
    height: 400px;
  }
}

@media (max-width: 1024px) {
}

@media (min-width: 1024px) {
  .block_news_top_wrapper {
    display: flex;
    /* column-gap: 25px; */
    column-gap: 24px;
  }

  .block_news_top_wrap {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    /* row-gap: 25px; */
  }

  .height_350 {
    height: 350px;
  }
  .height_700 {
    height: 700px;
  }
}

/*! -----CALENDAR----- */

.f-row {
  display: flex;
}

.a-i-c {
  align-items: center;
}

.jcc {
  justify-content: center;
}

.c-gap-12px {
  column-gap: 12px;
}

.mb-24 {
  margin-bottom: 24px;
}

.p-l-r-8 {
  padding: 0 8px;
}

.fz-24 {
  font-size: 24px;
}

.fw-600 {
  font-weight: 600;
}

.controls-container {
  display: flex;
  gap: 24px;
  font-size: 24px;
  font-weight: bold;
}

.switcher {
  display: flex;
  align-items: center;
}

.arrow {
  cursor: pointer;
  padding: 0 15px;
  user-select: none;
  font-weight: bold;
  color: #8c8c8c;
  transition: ease 0.5s;
}

.arrow:hover {
  color: #fe5900;
}

.label {
  min-width: 140px;
  text-align: center;
  color: #8c8c8c;
  cursor: pointer;
  transition: ease 0.5s;
}

.label:hover {
  color: #fe5900;
}

.calendar-head {
  background: #fe5900;
  align-items: center;
  display: grid;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 10px 0;
  width: 100%;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  color: rgb(255, 255, 255);
  font-variant: small-caps;
}

.calendar-matches {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: auto;
  border-style: solid;
  border-width: 0;
  border-color: #e8e8e9;
  border-top-width: 1px;
  border-left-width: 1px;
  background: #f7f7f7;
  color: rgb(21, 11, 11);
  border-right-width: 1px;
  border-bottom-width: 1px;
}

.calendar-day {
  border-style: solid;
  border-color: #e8e8e9;
  display: flex;
  justify-content: space-between;
  height: 205px;
  padding: 16px 0;
  position: relative;
  text-align: center;
  flex-direction: column;
  border-width: 0;
  border-right-width: 1px;
  border-bottom-width: 1px;
  transition: 0.3s;
  border-top-width: 1px;
  border-left-width: 1px;
}

.calendar-team-logo {
  height: 40px;
  width: 40px;
  object-fit: contain;
}

.bg-dark-grey {
  background: #1d1d1d;
}

.calendar-link {
  text-decoration: none;
  color: #fff;
  padding: 5px 10px;
  font-weight: 500;
  font-variant: small-caps;
  background: #0d0d0d;
  text-transform: uppercase;
  transition: ease 0.5s;
}

.calendar-link:hover {
  background: #fe5900;
}

.dropdown-date-menu {
  display: flex;
  flex-direction: column;
  max-height: 200px;
  overflow-y: auto;
  padding: 4px 0;
  background-color: #f7f7f7;
  color: #8c8c8c;
  border-radius: 6px;
  border: 1px solid #e8e8e9;
  font-size: 14px;
  min-width: 100px;
  max-width: 140px;
  width: 100%;
}

.dropdown-date-menu::-webkit-scrollbar {
  width: 8px;
}

.dropdown-date-menu::-webkit-scrollbar-track {
  background: #8c8c8c;
  border-radius: 4px;
}

.dropdown-date-menu::-webkit-scrollbar-thumb {
  background-color: #fe5900;
  border-radius: 4px;
  border: 2px solid transparent;
  background-clip: content-box;
}

.dropdown-date-menu::-webkit-scrollbar-thumb:hover {
  background-color: #1d1d1d;
}
.dropdown-item {
  padding: 6px 12px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  transition: 0.2s;
}

.dropdown-item:hover {
  background-color: rgb(252, 185, 0);
  color: #fff;
}

@media (max-width: 1440px) {
  .calendar-team-logo {
    height: 48px;
    width: 48px;
  }
}

@media (max-width: 1200px) {
  .calendar-head,
  .day-empty {
    display: none;
  }

  .calendar-matches {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-template-rows: auto;
    gap: 24px;
    background-color: #fff;
    border: 0;
  }

  .calendar-day {
    background: #f7f7f7;
  }

  .calendar-team-logo {
    height: 50px;
    width: 50px;
  }
}

@media (max-width: 928px) {
  .calendar-matches {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .controls-container {
    flex-direction: column;
    align-items: center;
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .calendar-matches {
    grid-template-columns: 1fr;
  }
}

.calendar_filter_wrapper {
  padding: 10px;
  background-color: #fff;
  border: solid 1px #e8e8e9;
  margin-bottom: 30px;
}

.calendar_filter_wrap {
  display: flex;
  justify-content: center;
  column-gap: 25px;
}

/*! -----RESULTS----- */

.results_list {
  display: flex;
  /* row-gap: 25px;
  column-gap: 25px; */
  gap: 24px;
  flex-wrap: wrap;
}

.results_item {
  border-style: solid;
  border-width: 1px;
  border-color: rgb(232, 232, 233);
  background-color: #f7f7f7;
  padding: 16px;
  display: flex;
  flex-direction: column;
  /* row-gap: 15px; */
  row-gap: 16px;
}

.results_team_meet_score {
  display: flex;
  align-items: center;
  /* column-gap: 10px; */
  column-gap: 8px;
}

.results_team_meet_score_link {
  flex: 2 1;
}

.results_team_meet_score_link_img {
  height: 55px;
  width: 55px;
  object-fit: contain;
  margin-left: auto;
  margin-right: auto;
}

.results_team_meet_score_value_wrap {
  display: flex;
  /* column-gap: 10px; */
  column-gap: 8px;
}

.results_team_meet_score_value {
  color: rgb(13, 13, 13);
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.results_team_meet_info {
  /* padding-top: 15px; */
  padding-top: 16px;
  border-style: solid;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  border-top-width: 1px;
  border-top-color: rgb(191, 191, 191);
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  /* row-gap: 10px; */
}

.results_team_meet_info_place {
  font-size: 11px;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgb(140, 140, 140);
}

.results_team_meet_info_link_wrap {
  display: flex;
  align-items: center;
  /* column-gap: 25px; */
  column-gap: 24px;
  justify-content: space-between;
}

.results_team_meet_info_link {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  transition: ease 0.5s;
  color: rgb(13, 13, 13);
  width: 35%;
  margin-left: auto;
  margin-right: auto;
}

.results_item:has(.results_team_meet_score_link:nth-of-type(1):hover)
  .results_team_meet_info_link:nth-of-type(1) {
  color: #fe5900;
}

.results_item:has(.results_team_meet_score_link:nth-of-type(2):hover)
  .results_team_meet_info_link:nth-of-type(2) {
  color: #fe5900;
}

.results_team_meet_info_link:hover {
  color: #fe5900;
}

.results_team_meet_info_link_text {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  color: rgb(13, 13, 13);
}

.results_team_meet_info_date {
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  color: rgb(140, 140, 140);
}

@media (max-width: 768px) {
  .results_item_width {
    width: 100%;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .results_item_width {
    width: calc((100% - 24px) / 2);
  }
}

@media (min-width: 1024px) {
  .results_item_width {
    width: calc((100% - 48px) / 3);
  }
}

/*! -----REVIEW----- */

/*! -----VIDEOS----- */

.block_video_top {
  display: flex;
}

.video_top_left_link {
  color: rgb(13, 13, 13);
  transition: 0.3s all ease;
  background: linear-gradient(to bottom, black, #0d0d0d);
  background-repeat: no-repeat;
  display: inline-block;
  background-position-y: 100%;
  background-size: 100px 4px;
  position: relative;
  height: 100%;
}

.video_top_left_link:hover {
  color: rgb(254, 89, 0);
  background: linear-gradient(to bottom, orange, #fe5900);
  background-size: 1000px 4px;
  background-repeat: no-repeat;
  background-position-y: 100%;
}

.block_video_top_left_link_img {
  position: relative;
}

.video_top_left_play_icon {
  object-fit: contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.block_video_top_left_info {
  /* padding: 20px 0; */
  padding: 24px 0;
}

.video_top_left_info_subtitle {
  font-size: 16px;
  font-weight: 600;
  color: rgb(140, 140, 140);
  text-transform: uppercase;
  letter-spacing: 2px;
  /* margin-bottom: 10px; */
  margin-bottom: 8px;
}

.video_top_left_info_title {
  font-weight: 700;
  text-transform: uppercase;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.block_video_top_right {
  display: flex;
}

.video_top_right_link {
  transition: 0.3s all ease;
  color: rgb(13, 13, 13);
  background: linear-gradient(to bottom, black, #0d0d0d);
  background-position-y: 100%;
  background-repeat: no-repeat;
  display: inline-block;
  background-size: 20% 1%;
  position: relative;
}

.video_top_right_link:hover {
  color: rgb(254, 89, 0);
  background: linear-gradient(to bottom, orange, #fe5900);
  background-position-y: 100%;
  background-repeat: no-repeat;
  background-size: 100% 1%;
}

.block_video_top_right_link_img {
  position: relative;
}

.video_top_right_play_icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.video_top_right_info_subtitle {
  font-weight: 600;
  color: rgb(140, 140, 140);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.video_top_right_info_title {
  font-weight: 700;
  text-transform: uppercase;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.video_list {
  display: flex;
}

.video_link {
  transition: 0.3s all ease;
  color: rgb(13, 13, 13);
  background: linear-gradient(to bottom, black, #0d0d0d);
  display: inline-block;
  background-repeat: no-repeat;
  background-position-y: 100%;
  background-size: 70px 3px;
}

.video_link:hover {
  color: rgb(254, 89, 0);
  background: linear-gradient(to bottom, orange, #fe5900);
  background-position-y: 100%;
  background-repeat: no-repeat;
  background-size: 1000px 3px;
}

.block_video_link_img {
  position: relative;
}

.video_play_icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.block_video_info {
  /* padding: 20px 0; */
  padding: 24px 0;
}

.video_info_subtitle {
  font-weight: 600;
  letter-spacing: 2px;
  /* margin-bottom: 10px; */
  margin-bottom: 8px;
  color: rgb(140, 140, 140);
  text-transform: uppercase;
}

.video_info_title {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 768px) {
  .video_top_margin_bottom {
    margin-bottom: 24px;
    /* margin-bottom: 20px; */
  }

  .block_video_top_left_link_img {
    height: 350px;
  }

  .video_top_left_play_icon {
    width: 90px;
    height: 90px;
  }

  .block_video_top_right {
    flex-direction: column;
    /* row-gap: 15px; */
    row-gap: 16px;
  }

  .block_video_top_right_wrap {
    width: 100%;
  }

  .block_video_top_right_link_img {
    height: 350px;
  }

  .block_video_top_right_info {
    /* padding: 20px 0; */
    padding: 24px 0;
  }

  .video_top_right_info_subtitle {
    font-size: 16px;
    /* margin-bottom: 10px; */
    margin-bottom: 8px;
  }

  .video_top_right_info_title {
    font-size: 20px;
  }

  .video_list {
    flex-direction: column;
    /* row-gap: 15px; */
    row-gap: 16px;
  }

  .video_item {
    width: 100%;
  }

  .block_video_link_img {
    height: 350px;
  }

  .video_play_icon {
    height: 90px;
    width: 90px;
  }

  .video_info_subtitle {
    font-size: 16px;
  }
}

@media (min-width: 768px) {
  .video_top_right_info_subtitle {
    font-size: 12px;
    /* margin-bottom: 5px; */
    margin-bottom: 8px;
  }

  .video_info_subtitle {
    font-size: 13px;
  }

  .video_list {
    flex-wrap: wrap;
    /* row-gap: 25px;
    column-gap: 25px; */
    gap: 24px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .video_top_margin_bottom {
    /* margin-bottom: 25px; */
    margin-bottom: 24px;
  }

  .block_video_top_left_link_img {
    height: 400px;
  }

  .video_top_left_play_icon {
    width: 100px;
    height: 100px;
  }

  .block_video_top_right {
    flex-wrap: wrap;
    /* column-gap: 15px;
    row-gap: 15px; */
    gap: 16px;
  }

  .block_video_top_right_wrap {
    width: calc((100% - 16px) / 2);
  }

  .block_video_top_right_link_img {
    height: 250px;
  }

  .block_video_top_right_info {
    /* padding: 15px 0; */
    padding: 16px 0;
  }

  .video_top_right_info_title {
    font-size: 15px;
  }

  .video_item {
    width: calc((100% - 24px) / 2);
  }

  .block_video_link_img {
    height: 450px;
  }

  .video_play_icon {
    height: 100px;
    width: 100px;
  }
}

@media (max-width: 1024px) {
  .block_video_top {
    flex-direction: column;
    /* row-gap: 15px; */
    row-gap: 16px;
  }

  .block_video_top_left {
    width: 100%;
  }

  .video_top_left_info_title {
    font-size: 20px;
  }

  .video_top_right_play_icon {
    width: 90px;
    height: 90px;
  }
}

@media (min-width: 1024px) {
  .video_top_margin_bottom {
    /* margin-bottom: 30px; */
    margin-bottom: 32px;
  }

  .block_video_top {
    /* column-gap: 25px; */
    column-gap: 24px;
  }

  .block_video_top_left {
    width: 50%;
  }

  .block_video_top_left_link_img {
    height: 450px;
  }

  .video_top_left_play_icon {
    width: 120px;
    height: 120px;
  }

  .video_top_left_info_title {
    font-size: 25px;
  }

  .block_video_top_right {
    flex-wrap: wrap;
    /* column-gap: 25px;
    row-gap: 25px; */
    gap: 24px;
    width: 50%;
  }

  .block_video_top_right_wrap {
    width: calc((100% - 24px) / 2);
  }

  .block_video_top_right_link_img {
    height: 187px;
  }

  .video_top_right_play_icon {
    width: 75px;
    height: 75px;
  }

  .block_video_top_right_info {
    padding: 16px 0;
  }

  .video_top_right_info_title {
    font-size: 16px;
  }

  .video_item {
    width: calc((100% - 72px) / 4);
  }

  .block_video_link_img {
    height: 500px;
  }

  .video_play_icon {
    height: 120px;
    width: 120px;
  }
}

/*! -----TEAMS----- */

.teams_list {
  display: flex;
  /* row-gap: 25px;
  column-gap: 25px; */
  gap: 24px;
  flex-wrap: wrap;
}

.teams_item {
  border-style: solid;
  border-width: 1px;
  border-color: rgb(232, 232, 233);
  /* padding: 20px 16px; */
  padding: 24px 16px;
}

.teams_logo_link {
  display: flex;
  flex-direction: column;
  /* row-gap: 15px; */
  row-gap: 16px;
  align-items: center;
  color: rgb(13, 13, 13);
  transition: ease 0.5s;
}

.teams_logo_link:hover {
  color: rgb(254, 89, 0);
}

.teams_logo_link_img {
  width: 96px;
  margin-left: auto;
  margin-right: auto;
  height: 96px;
  object-fit: contain;
}

.teams_logo_link_text {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.teams_info_list {
  /* padding-top: 15px; */
  padding-top: 16px;
  border-style: solid;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  border-top-width: 1px;
  border-top-color: rgb(191, 191, 191);
  /* margin-bottom: 15px; */
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.teams_info_item {
  /* margin-bottom: 5px; */
  margin-bottom: 8px;
}

.teams_info_item:last-child {
  margin-bottom: 0;
}

.teams_info_item_text {
  font-size: 18px;
  font-weight: 500;
  color: rgb(140, 140, 140);
}

.teams_link_list {
  display: flex;
  justify-content: center;
}

.teams_link_item {
  /* padding-left: 5px;
  padding-right: 5px; */
  padding-left: 8px;
  padding-right: 8px;
}

.teams_link {
  font-weight: 500;
  color: rgb(13, 13, 13);
  transition: 0.3s all ease;
  background: linear-gradient(to bottom, orange, #fe5900);
  background-size: 0% 5%;
  background-repeat: no-repeat;
  background-position-y: 100%;
}

.teams_link:hover {
  color: rgb(254, 89, 0);
  background-size: 100% 5%;
}

.border_right_dark_gray {
  z-index: 0;
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  border-right-width: 1px;
  border-right-color: rgb(191, 191, 191);
}

@media (max-width: 768px) {
  .teams_item_width {
    width: 100%;
  }

  .teams_link {
    font-size: 18px;
  }
}

@media (min-width: 768px) {
  .teams_link {
    font-size: 15px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .teams_item_width {
    width: calc((100% - 24px) / 2);
  }
}

@media screen and (min-width: 1024px) and (max-width: 1440px) {
  .teams_item_width {
    width: calc((100% - 48px) / 3);
  }
}

@media (min-width: 1441px) {
  .teams_item_width {
    width: calc((100% - 72px) / 4);
  }

  .teams_link {
    font-size: 15px;
  }
}

/*! -----CONTACTS----- */

.contacts_content_wrapper {
  display: flex;
}

.contacts_info_wrap {
  background: #ffffff;
  /* padding: 18px; */
  padding: 16px;
}

.contacts_text {
  font-size: 14px;
  font-weight: 400;
  color: rgb(138, 138, 138);
}

.contacts_subtitle {
  font-weight: 700;
  text-align: center;
  color: rgb(13, 13, 13);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.contacts_item {
  margin-bottom: 10px;
  display: flex;
  align-items: baseline;
  /* column-gap: 10px; */
  column-gap: 8px;
}
.contacts_item:last-child {
  margin-bottom: 0;
}

.contacts_item_link_wrap {
  display: flex;
  flex-direction: column;
  /* row-gap: 5px; */
  row-gap: 8px;
}
.contacts_item_link {
  font-weight: 400;
  color: rgb(138, 138, 138);
  transition: ease 0.5s;
}

.contacts_item_link:hover {
  color: rgb(254, 89, 0);
}

.contacts_local_map_link {
  cursor: grab;
}

.contacts_local_map_link_img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .contacts_text {
    /* margin-bottom: 15px; */
    margin-bottom: 16px;
  }

  .contacts_subtitle {
    /* margin-bottom: 10px; */
    margin-bottom: 8px;
  }

  .contacts_item {
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .contacts_item {
    justify-content: flex-start;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .contacts_info_wrap {
    display: flex;
    align-items: center;
    /* column-gap: 15px; */
    column-gap: 16px;
  }

  .contacts_text {
    margin-bottom: 0;
  }

  .contacts_subtitle {
    /* margin-bottom: 15px; */
    margin-bottom: 16px;
  }
}

@media (max-width: 1024px) {
  .contacts_content_wrapper {
    flex-direction: column;
  }

  .contacts_text {
    text-align: center;
  }

  .contacts_subtitle {
    font-size: 18px;
  }

  .contacts_item_img {
    height: 15px;
    width: 15px;
  }

  .contacts_item_link {
    font-size: 16px;
  }
}

@media (min-width: 1024px) {
  .contacts_content_wrapper {
    justify-content: space-between;
  }

  .contacts_info_wrap {
    width: 49%;
  }

  .contacts_text {
    width: 75%;
    /* margin-bottom: 25px; */
    margin-bottom: 24px;
  }

  .contacts_subtitle {
    font-size: 25px;
    /* margin-bottom: 20px; */
    margin-bottom: 24px;
  }

  .contacts_item_img {
    height: 18px;
    width: 18px;
  }

  .contacts_item_link {
    font-size: 18px;
  }

  .width_75pr {
    width: 75%;
  }

  .contacts_local_map_link {
    width: 50%;
  }
}

.bg_color_gray {
  background: #f7f7f7;
}

.block_team_stats_table::-webkit-scrollbar-thumb {
  background-color: #fe5900;
}

.block_team_stats_table::-webkit-scrollbar-track {
  background-color: #ffffff;
}

.rstwrap {
  border-style: solid;
  border-width: 1px;
  border-color: rgb(232, 232, 233);

  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
}

.rstwrap::-webkit-scrollbar {
  height: 10px;
}

.rstwrap::-webkit-scrollbar-thumb {
  background-color: #fe5900;
}

.rstwrap::-webkit-scrollbar-track {
  background-color: #ffffff;
}

.width_70pr {
  width: 70%;
}

.heght_50 {
  height: 50px;
}
.block_header_menu_list {
  display: flex;
  /* column-gap: 25px; */
  column-gap: 24px;
}

.font_size_36 {
  font-size: 36px;
}

.border_bottom_gray {
  border-style: solid;
  border-top-width: 0;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 1px;
  border-bottom-color: rgb(232, 232, 233);
}

.block_news_link_img {
  height: 350px;
  transition: scale 1s;
  scale: 1;
}
.block_news_link_img:hover {
  scale: 1.1;
}

/* .news_list {
  display: flex;
  row-gap: 25px;
  column-gap: 25px;
  flex-wrap: wrap;
} */
.news_item {
  /* width: calc(calc((100% - 50px) / 3)); */
}
.news_link {
  color: rgb(13, 13, 13);
  transition: ease 0.5s;
}
.news_link:hover {
  color: rgb(254, 89, 0);
}
.news_link_img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.block_news_info {
  /* padding-bottom: 20px;
  padding-top: 20px; */
  padding: 24px 0;
}
.news_info_subtitle {
  font-size: 13px;
  font-weight: 600;
  color: rgb(140, 140, 140);
  text-transform: uppercase;
  letter-spacing: 2px;
  /* margin-bottom: 10px; */
  margin-bottom: 8px;
}
.news_info_title {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  /* margin-bottom: 10px; */
  margin-bottom: 8px;
}
.news_info_text {
  font-size: 18px;
  font-weight: 400;
  color: rgb(138, 138, 138);
  /* margin-bottom: 25px; */
  margin-bottom: 24px;
}
.news_info_text_link {
  font-size: 14px;
  font-weight: 600;
  color: rgb(13, 13, 13);
  text-transform: uppercase;
  width: 19%;
  background: linear-gradient(to bottom, black, #0d0d0d);
  background-position-y: 100%;
  background-repeat: no-repeat;
  background-size: 25% 5%;
  transition: 0.3s all ease;
}
.news_info_text_link:hover {
  color: rgb(254, 89, 0);
  background: linear-gradient(to bottom, orange, #fe5900);
  background-position-y: 100%;
  background-repeat: no-repeat;
  background-size: 100% 5%;
}

.section_page_title {
  background-image: url("../images/05e0d1a23697412b237d7d3ebf1dc691.jfif");
  background-size: cover;
  padding-bottom: 90px;
  padding-top: 90px;
  background-repeat: no-repeat;
}
.player_info_table_head {
}
/* .block_news_top_wrapper {
  display: flex;
  column-gap: 25px;
} */
.section_post {
  padding-bottom: 40px;
  padding-top: 40px;
  background-image: url("../images/5bec5473a10613cc4039f1fab95431b3.png");
  background-position: center;
}
/* .block_post_wrapper {
  display: flex;
  flex-direction: row-reverse;
  column-gap: 45px;
  align-items: flex-start;
} */
/* .block_post_content {
  width: 75%;
  padding-bottom: 18px;
  padding-left: 18px;
  padding-right: 18px;
  padding-top: 18px;
  background: #ffffff;
} */
/* .block_post_content_img {
  height: 550px;
} */
.post_content_img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.mb_10 {
  /* margin-bottom: 10px; */
  margin-bottom: 8px;
}

.post_content_title {
  /* font-size: 30px; */
  font-weight: 700;
  color: #0d0d0d;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.post_content_text {
  /* font-size: 18px; */
  font-weight: 400;
  color: rgb(138, 138, 138);
}

.mb_15 {
  /* margin-bottom: 15px; */
  margin-bottom: 16px;
}

.block_post_content_artickle {
  /* padding-bottom: 24px;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 24px; */
  border-style: solid;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 5px;
  border-left-color: rgb(254, 89, 0);
  align-items: center;
}
.post_content_artickle_img {
  /* width: 40px;
  margin-bottom: 10px;
  height: 40px; */
}
.post_content_artickle_text {
  /* font-size: 24px; */
  font-weight: 600;
  color: rgb(13, 13, 13);
  text-transform: uppercase;
}
/* .block_post_aside {
  width: 25%;
  padding-bottom: 12px;
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 12px;
  background: #ffffff;
  position: sticky;
  top: 10%;
} */
.aside_content_news_item {
  /* margin-bottom: 20px; */
}
.aside_content_news_item:last-child {
  margin-bottom: 0;
}
.aside_content_news_link {
  transition: ease 0.5s;
  color: rgb(13, 13, 13);
  display: flex;
  /* column-gap: 15px; */
  column-gap: 16px;
}
.aside_content_news_link:hover {
  color: rgb(254, 89, 0);
}
.block_aside_content_news_link_img {
  height: 100px;
  width: 150px;
  transition: scale 1s;
  scale: 1;
}
.block_aside_content_news_link_img:hover {
  scale: 1.1;
}
.aside_content_news_link_img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: relative;
}
.block_aside_content_news_info {
  width: 50%;
}
.aside_content_news_info_subtitle {
  /* font-size: 10px; */
  font-weight: 600;
  color: rgb(140, 140, 140);
  text-transform: uppercase;
  letter-spacing: 2px;
  /* margin-bottom: 5px; */
  margin-bottom: 8px;
}
.padding_10 {
  color: rgba(0, 0, 0, 0);
  /* padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 10px; */
  padding: 8px;
}
.section_video_post {
  padding-bottom: 40px;
  padding-top: 40px;
  background-image: url("../images/5bec5473a10613cc4039f1fab95431b3.png");
  background-position: center;
}

/* .pr {
  position: relative;
} */

.video_post_content_link {
  display: block;
  position: relative;
}
/* .block_video_post_content_link_img {
  height: 600px;
} */
.video_post_content_link_img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.video_post_content_play_icon {
  /* width: 200px; */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* height: 200px; */
}
.block_video_post_aside {
  padding-bottom: 16px;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 16px;
  background-color: rgba(171, 184, 195, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 30%;
  display: flex;
  align-items: center;
}
.video_post_aside_play_icon {
  width: 40px;
  height: 40px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.video_post_content_text {
  /* font-size: 18px; */
  font-weight: 400;
  color: rgb(138, 138, 138);
}

.section_player {
  padding-bottom: 40px;
  padding-top: 40px;
  background-image: url("../images/5bec5473a10613cc4039f1fab95431b3.png");
  background-position: center;
}

.position_relative {
  position: relative;
}

.filter_invert_50pr {
  filter: invert(50%);
}

.calendar_team_meet_text {
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  color: rgb(13, 13, 13);
}
.block_calendar_team_meet_info {
  display: flex;
  flex-direction: column;
  /* row-gap: 15px; */
  row-gap: 16px;
  align-items: center;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  bottom: 0;
  background: #fe5900;
  /* padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 5px;
  padding-right: 5px; */
  padding: 16px 8px;
  justify-content: flex-end;
}
.block_calendar_team_meet_info:hover {
  opacity: 1;
}
.block_calendar_team_meet {
  display: flex;
  align-items: baseline;
  /* column-gap: 20px; */
  column-gap: 24px;
}
.calendar_team_meet_link {
  align-items: center;
  display: flex;
  flex-direction: column;
  transition: ease 0.5s;
  color: rgb(13, 13, 13);
  flex: 2 1;
  /* row-gap: 5px; */
  row-gap: 8px;
  text-align: center;
  width: 25%;
}
.calendar_team_meet_link:hover {
  color: rgb(255, 255, 255);
}
.calendar_team_meet_link_img {
  height: 30px;
  width: 30px;
  object-fit: contain;
}
.calendar_team_meet_link_title {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
}
.calendar_team_meet_place {
  font-size: 11px;
  font-weight: 500;
  text-align: center;
  color: rgb(13, 13, 13);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.block_calendar_link {
  display: flex;
}
.calendar_link {
  /* padding-bottom: 5px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 5px; */
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 500;
  border-color: rgba(0, 0, 0, 0);
  color: rgb(255, 255, 255);
  transition: ease 0.5s;
  margin-left: auto;
  margin-right: auto;
  text-transform: uppercase;
  display: block;
  background: #0d0d0d;
}
.calendar_link:hover {
  background: #ffffff;
  color: rgb(254, 89, 0);
}

.color_black {
  color: rgb(13, 13, 13);
}

.rotate_deg_180 {
  rotate: 180deg;
}
.border_bottom_right_gray {
  border-style: solid;
  border-top-width: 0;
  border-left-width: 0;
  border-right-width: 1px;
  border-right-color: rgb(232, 232, 233);
  border-bottom-width: 1px;
  border-bottom-color: rgb(232, 232, 233);
}
.border_left_gray {
  border-style: solid;
  border-top-width: 0;
  border-left-width: 1px;
  border-left-color: rgb(232, 232, 233);
}
.border_top_gray {
  border-style: solid;
  border-top-width: 1px;
  border-top-color: rgb(232, 232, 233);
}
.aside_content_news_info_title {
  /* font-size: 15px; */
  font-weight: 700;
  text-transform: uppercase;
  /* margin-bottom: 20px; */
  margin-bottom: 24px;
}
.aside_content_news_info_text_link {
  background: linear-gradient(to bottom, black, #0d0d0d);
  background-position-y: 100%;
  background-repeat: no-repeat;
  background-size: 25% 5%;
  transition: 0.3s all ease;
  color: rgb(13, 13, 13);
  /* font-size: 12px; */
  font-weight: 600;
  text-transform: uppercase;
  /* width: 42%; */
}
.aside_content_news_info_text_link:hover {
  background: linear-gradient(to bottom, orange, #fe5900);
  background-position-y: 100%;
  background-repeat: no-repeat;
  background-size: 100% 5%;
  color: rgb(254, 89, 0);
}
.player_info_table_head_point {
  /* padding-bottom: 12px;
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 12px; */
  padding: 16px;
}
.width_20 {
  width: 20px;
}
.height_20 {
  height: 20px;
}
.block_post_content_info {
  /* padding-bottom: 15px; */
  padding-bottom: 16px;
  border-style: solid;
  border-top-width: 0;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 1px;
  border-bottom-color: rgb(232, 232, 233);
}
.post_content_info_list {
  display: flex;
  /* column-gap: 25px; */
  column-gap: 24px;
}
.post_content_info_item {
  align-items: center;
  display: flex;
  /* column-gap: 10px; */
  column-gap: 8px;
}
.post_content_info_item_img {
  /* width: 20px;
  height: 20px; */
  object-fit: contain;
}
.post_content_info_item_text {
  /* font-size: 13px; */
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgb(140, 140, 140);
}
.block_post_socials_list {
  /* padding-bottom: 15px; */
  padding-bottom: 16px;
  border-style: solid;
  border-top-width: 0;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 1px;
  border-bottom-color: rgb(232, 232, 233);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.post_socials_list {
  align-items: center;
  display: flex;
  /* column-gap: 15px; */
  column-gap: 16px;
}
.post_socials_link {
  transition: ease 0.5s;
  filter: invert(50%);
}
.post_socials_link:hover {
  filter: invert(25%);
}
.post_socials_link_img {
  /* height: 20px;
  width: 20px; */
}

.block_team_info_wrapper {
  display: flex;
  /* column-gap: 25px; */
  column-gap: 24px;
}
.color_dark_black {
  color: rgb(13, 13, 13);
}
.block_team_info_content {
  width: 80%;
  background: #ffffff;
  /* padding-bottom: 18px;
  padding-left: 18px;
  padding-right: 18px;
  padding-top: 18px; */
  padding: 16px;
}
.team_info_content_text {
  font-size: 18px;
  font-weight: 400;
  color: rgb(138, 138, 138);
}
.team_info_content_text_accent {
  color: rgb(138, 138, 138);
}
.font_size_25 {
  font-size: 25px;
}
.block_team_info_history_wrap {
  display: flex;
  justify-content: space-between;
}
.block_team_info_history_content {
  width: 49%;
}
.block_team_info_history_img {
  width: 49%;
}
.team_info_history_img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.team_info_history_title {
  font-size: 20px;
  font-weight: 600;
  color: rgb(13, 13, 13);
  text-transform: uppercase;
}
.team_info_history_text {
  font-size: 18px;
  font-weight: 400;
  color: rgb(138, 138, 138);
}
.margin_bottom_10 {
  /* margin-bottom: 10px; */
  margin-bottom: 8px;
}
.block_team_info_aside {
  width: 25%;
}
.block_team_info_aside_content {
  /* padding-bottom: 5px;
  padding-left: 5px;
  padding-right: 5px;
  padding-top: 5px; */
  padding: 8px;
  border-style: solid;
  border-width: 1px;
  border-color: rgb(232, 232, 233);
}
.team_info_aside_content_link {
  /* padding-bottom: 15px; */
  padding-bottom: 16px;
  display: block;
  border-style: solid;
  border-top-width: 0;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 1px;
  border-bottom-color: rgb(191, 191, 191);
}
.team_info_aside_content_link_img {
  width: 260px;
  height: 175px;
  object-fit: contain;
  margin-left: auto;
  margin-right: auto;
}
.team_info_aside_content_table {
  width: 100%;
}
.team_info_aside_content_table_body_point {
  /* padding-bottom: 6px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 6px; */
  padding: 8px 16px;
}
.team_info_aside_content_table_body_point_text {
  font-size: 16px;
  font-weight: 400;
  color: rgb(13, 13, 13);
}
.team_info_aside_content_table_body_point_link {
  font-size: 16px;
  font-weight: 400;
  color: rgb(254, 89, 0);
  transition: 0.3s all ease;
  background: linear-gradient(to bottom, orange, #fe5900);
  background-position-y: 100%;
  background-size: 0% 5%;
  background-repeat: no-repeat;
}
.team_info_aside_content_table_body_point_link:hover {
  background-size: 100% 5%;
}
.team_info_aside_content_table_body_point_text_accent {
  font-size: 13px;
}
.font_weight_bold {
  font-weight: bold;
}
.font_size_13 {
  font-size: 13px;
}
.margin_bottom_80 {
  margin-bottom: 80px;
}
.flex_direction_column {
  flex-direction: column;
}
.margin_bottom_40 {
  margin-bottom: 40px;
}
.display_inline_flex {
  display: inline-flex;
}
.width_66pr {
  width: 66%;
}
.width_62pr {
  width: 62%;
}
.block_team_stats_table {
  border-style: solid;
  border-width: 1px;
  border-color: rgb(232, 232, 233);
  background: #ffffff;

  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
}

.team_stats_table {
  width: 100%;
}
.team_stats_table_head_line {
}
.team_stats_table_head_point {
  /* padding-bottom: 18px;
  padding-left: 18px;
  padding-right: 18px;
  padding-top: 18px; */
  padding: 16px;
}
.team_stats_table_head_point_text {
  font-size: 18px;
  font-weight: 500;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
}

.team_stats_table_body_line {
  transition: ease 0.5s;
}
.team_stats_table_body_line:hover {
  background-color: rgb(252, 185, 0);
}
.team_stats_table_body_point {
  /* padding-bottom: 18px;
  padding-left: 18px;
  padding-right: 18px;
  padding-top: 18px; */
  padding: 16px;
}
.block_team_players_link_img {
  transition: scale 1s;
  scale: 1;
}
.block_team_players_link_img:hover {
  scale: 1.1;
}
.team_stats_table_body_point_text {
  font-size: 15px;
  font-weight: 500;
  color: rgb(140, 140, 140);
}
.team_players_item {
  width: calc(calc((100% - 96px) / 5));
}
.team_stats_table_body_point_link {
  font-size: 15px;
  font-weight: 500;
  color: rgb(140, 140, 140);
  transition: ease 0.5s;
  display: block;
}
.team_stats_table_body_point_link:hover {
  color: rgb(255, 255, 255);
}

.team_players_list {
  display: flex;
  /* column-gap: 25px;
  row-gap: 25px; */
  gap: 24px;
  flex-wrap: wrap;
}
.team_players_link {
  color: rgb(13, 13, 13);
  transition: ease 0.5s;
}
.team_players_link:hover {
  color: rgb(254, 89, 0);
}
.team_players_link_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.block_team_players_info {
  /* padding-bottom: 20px;
  padding-top: 20px; */
  padding: 24px 0;
}
.team_players_info_subtitle {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  /* margin-bottom: 10px; */
  margin-bottom: 8px;
  letter-spacing: 2px;
  color: rgb(140, 140, 140);
}
.team_players_info_title {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}
.league_table_body_line_active {
  background-color: rgb(252, 185, 0);
}
.awards_list {
  display: flex;
  /* column-gap: 25px; */
  column-gap: 24px;
}
.awards_item {
  border-style: solid;
  border-width: 1px;
  border-color: rgb(232, 232, 233);
  background-image: url("../images/bg-point-2.png");
  background-position: center;
}
.awards_link {
  height: 100%;
  padding-bottom: 16px;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 16px;
  display: flex;
  justify-content: center;
  background: linear-gradient(to bottom, orange, #fe5900);
  background-size: 0% 1%;
  background-repeat: no-repeat;
  background-position-y: 100%;
  transition: 0.3s all ease;
  color: rgb(13, 13, 13);
  position: relative;
}
.awards_link:hover {
  color: rgb(254, 89, 0);
  background-size: 100% 1%;
}
.block_awards_link_img {
  z-index: 2;
}
.awards_link_img {
  width: 275px;
}
.block_awards_info {
  position: absolute;
  top: 0;
  left: 0;
}
.awards_info_subtitle {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  /* margin-bottom: 10px; */
  margin-bottom: 8px;
  color: rgb(140, 140, 140);
  text-transform: uppercase;
}
.awards_info_title {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}
.margin_top_75 {
  /* margin-top: 75px; */
  margin-top: 72px;
}
.block_awards_number {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  left: 0;
}
.awards_number {
  font-size: 100px;
  font-weight: 700;
  letter-spacing: -5px;
  color: rgb(232, 232, 233);
}
.scale_1 {
  scale: 1;
}
.scale_1:hover {
  scale: 1;
}
.centring {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.block_player_info {
  background: #ffffff;
  /* padding-bottom: 18px;
  padding-left: 18px;
  padding-right: 18px;
  padding-top: 18px; */
  padding: 16px;
  /* display: flex;
  column-gap: 45px; */
}
.player_info_img {
  /* width: 100%;
  height: 100%; */
  object-fit: cover;
}
.block_player_info_img {
  /* width: 30%; */
}
.player_info_table {
  width: 100%;
}
.block_player_info_table {
  border-style: solid;
  border-width: 1px;
  border-color: rgb(232, 232, 233);
  /* width: 70%; */
}

.block_review_wrap {
  border-style: solid;
  border-color: rgb(232, 232, 233);
  border-width: 1px;
}
.block_review_team_meet {
  padding-bottom: 24px;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  /* row-gap: 15px; */
}
.block_review_team_meet_score {
  display: flex;
  align-items: center;
  /* column-gap: 25px; */
  column-gap: 24px;
  justify-content: center;
}
.block_review_content {
  width: 100%;
}
.block_review_wrapper {
}
.review_title {
  /* font-size: 24px; */
  font-weight: 700;
  color: rgb(13, 13, 13);
  text-align: center;
  text-transform: uppercase;
}
.review_team_meet_score_link {
  align-items: center;
  display: flex;
  flex-direction: column;
  transition: ease 0.5s;
  color: rgb(13, 13, 13);
  justify-content: center;
  /* row-gap: 15px; */
  row-gap: 16px;
  width: 40%;
}
.review_team_meet_score_link:hover {
  color: rgb(254, 89, 0);
}
.review_team_meet_score_link_img {
  /* height: 50px;
  width: 50px; */
  object-fit: contain;
}
.review_team_meet_score_link_title {
  /* font-size: 20px; */
  font-weight: 600;
  text-transform: uppercase;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.block_results_team_meet_score_info {
  display: flex;
  flex-direction: column;
  /* row-gap: 5px; */
  row-gap: 8px;
  align-items: center;
  width: 25%;
}

.results_team_meet_score_info_date {
  /* font-size: 15px; */
  font-weight: 600;
  color: rgb(140, 140, 140);
  text-transform: uppercase;
}
.results_team_meet_score_info_value {
  /* font-size: 36px; */
  font-weight: 700;
  color: rgb(13, 13, 13);
  text-transform: uppercase;
}
.results_team_meet_score_info_status {
  /* font-size: 18px; */
  font-weight: 600;
  text-transform: uppercase;
  color: rgb(140, 140, 140);
}
.block_review_team_meet_info {
  /* padding-top: 15px; */
  padding-top: 16px;
  border-style: solid;
  border-bottom-width: 0;
  border-left-width: 0;
  border-right-width: 0;
  border-top-width: 1px;
  border-top-color: rgb(191, 191, 191);
}
.review_team_meet_info_item {
  display: flex;
  justify-content: space-between;
  /* margin-bottom: 20px; */
  margin-bottom: 24px;
  align-items: center;
}
.review_team_meet_info_item:last-child {
  margin-bottom: 0;
}
.block_review_team_meet_info_item_question {
  align-items: center;
  display: flex;
  /* column-gap: 10px; */
  column-gap: 8px;
}
.review_team_meet_info_item_question_img {
  /* height: 20px;
  width: 20px; */
  object-fit: contain;
}
.review_team_meet_info_item_question_text {
  color: rgb(140, 140, 140);
  text-transform: uppercase;
  /* font-size: 16px; */
  font-weight: 700;
}
.review_team_meet_info_item_respond_text {
  color: rgb(13, 13, 13);
  /* font-size: 16px; */
  font-weight: 700;
}
.review_team_meet_info_item_respond_text_accent {
  font-weight: 500;
}
.review_team_meet_info_title {
  /* font-size: 18px; */
  font-weight: 700;
  color: rgb(13, 13, 13);
  text-transform: uppercase;
  text-align: center;
}
.review_stats_table {
  width: 100%;
}
.review_stats_table_head_point {
  /* padding-bottom: 18px;
  padding-left: 18px;
  padding-right: 18px;
  padding-top: 18px; */
  padding: 16px;
}
.review_stats_table_head_point_text {
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
}
.review_stats_table_body_line {
  transition: ease 0.5s;
}
.review_stats_table_body_line:hover {
  background: #fcb900;
}
.review_stats_table_body_point {
  /* padding-bottom: 18px;
  padding-left: 18px;
  padding-right: 18px;
  padding-top: 18px; */
  padding: 16px;
}
.review_stats_table_body_point_link {
  font-size: 15px;
  font-weight: 500;
  color: rgb(140, 140, 140);
  transition: ease 0.5s;
}
.review_stats_table_body_point_link:hover {
  color: rgb(255, 255, 255);
}
.color_text_black {
  color: rgb(13, 13, 13);
}
.font_weight_700 {
  font-weight: 700;
}
.text_transform_uppercase {
  text-transform: uppercase;
}
.padding_24 {
  padding-bottom: 24px;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 24px;
}
.review_stat_title {
  /* font-size: 18px; */
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: rgb(13, 13, 13);
}
.block_review_stat_teams {
  align-content: center;
  display: flex;
  justify-content: space-between;
}
.review_stat_teams_link_img {
  /* height: 30px;
  width: 30px; */
  object-fit: contain;
}
.review_stat_item {
  /* margin-bottom: 20px; */
  margin-bottom: 24px;
}
.review_stat_item:last-child {
  margin-bottom: 0;
}
.block_review_stat_item_top {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.review_stat_item_top_text {
  /* font-size: 16px; */
  font-weight: 700;
  color: rgb(13, 13, 13);
  text-align: center;
  /* width: 5%; */
}
.review_stat_item_top_title {
  /* font-size: 16px; */
  font-weight: 700;
  color: rgb(13, 13, 13);
  /* width: 25%; */
  text-align: center;
}
.block_review_stat_item_bottom {
  align-items: center;
  display: flex;
  /* column-gap: 5px; */
  column-gap: 8px;
}
.block_review_stat_item_wrap {
  width: 50%;
  /* height: 6px; */
  background: #f7f7f7;
}
.block_review_stat_item_value {
  /* height: 6px; */
}
.margin_left_auto {
  margin-left: auto;
}
.width_40pr {
  width: 40%;
}
.width_100pr {
  max-height: 100%;
}
.width_80pr {
  width: 80%;
}
.width_20pr {
  width: 20%;
}
.review_text {
  /* font-size: 18px; */
  font-weight: 400;
  color: rgb(138, 138, 138);
}
.review_item {
  position: relative;
  padding-left: 16px;
  /* margin-bottom: 10px; */
  margin-bottom: 8px;
}
.review_item:last-child {
  margin-bottom: 0;
}
.review_item::before {
  content: "";
  border-radius: 50%;
  background: #0d0d0d;
  position: absolute;
  height: 8px;
  width: 8px;
  top: 35%;
  left: 0;
}
.review_item_text {
  /* font-size: 18px; */
  font-weight: 600;
  color: rgb(13, 13, 13);
}
.review_item_text_accent {
  font-weight: 400;
}
.review_subtitle {
  /* font-size: 20px; */
  font-weight: 700;
  color: rgb(13, 13, 13);
  text-transform: uppercase;
}
.league_table_body_point_team_link_avtive {
  color: rgb(255, 255, 255);
}
.player_info_table_head_point_text {
  font-size: 18px;
  font-weight: 500;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
}
.player_info_table_body_line {
  transition: ease 0.5s;
}
.player_info_table_body_line:hover {
  background: #fcb900;
}
.player_info_table_body_point {
  /* padding-bottom: 12px;
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 12px; */
  padding: 16px;
}
.player_info_table_body_point_text {
  font-size: 15px;
  font-weight: 500;
  color: rgb(140, 140, 140);
  text-transform: uppercase;
}
.block_player_bio_banner {
  background-image: url("../images/bg-home-awards.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
  padding-bottom: 40px;
  padding-top: 40px;
}
.player_bio_text {
  font-size: 18px;
  font-weight: 400;
  color: rgb(255, 255, 255);
}
.block_player_stats_table {
  border-style: solid;
  border-width: 1px;
  border-color: rgb(232, 232, 233);
  background: #ffffff;
}
.player_stats_table {
  width: 100%;
}
.player_stats_table_head_point {
  /* padding-bottom: 18px;
  padding-left: 18px;
  padding-right: 18px;
  padding-top: 18px; */
  padding: 16px;
}
.player_stats_table_head_point_text {
  font-size: 18px;
  font-weight: 500;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
}
.player_stats_table_body_line {
  transition: ease 0.5s;
}
.player_stats_table_body_line:hover {
  background: #fcb900;
}
.player_stats_table_body_point {
  /* padding-bottom: 18px;
  padding-left: 18px;
  padding-right: 18px;
  padding-top: 18px; */
  padding: 16px;
}
.player_stats_table_body_text {
  font-size: 15px;
  font-weight: 500;
  color: rgb(140, 140, 140);
}
.player_stats_table_body_link {
  font-size: 15px;
  font-weight: 500;
  transition: ease 0.5s;
  color: rgb(140, 140, 140);
  display: block;
}
.player_stats_table_body_link:hover {
  color: rgb(255, 255, 255);
}
.color_text_table_black {
  color: rgb(13, 13, 13);
}
.padding_18 {
  /* padding-bottom: 18px;
  padding-left: 18px;
  padding-right: 18px;
  padding-top: 18px; */
  padding: 16px;
}
.color_white {
  color: rgb(255, 255, 255);
}

.pt-32 {
  padding-top: 32px;
}

.mb-16 {
  margin-bottom: 16px;
}

.justufy-start {
  justify-content: flex-start;
}

.title-main {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 16px;
  /* padding-left: 15px; */
}

.col-white {
  color: rgb(237, 237, 237);
  text-decoration: none;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pb-15px {
  /* padding-bottom: 15px; */
  padding-bottom: 16px;
}

.pt-18px {
  /* padding-top: 18px; */
  padding-top: 40px;
}

.mc-filter__block {
  padding: 24px;
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* border-radius: 20px; */
  margin-bottom: 24px;
  /* gap: 12px; */
  gap: 8px;
}

.mc-filter__dates {
  display: flex;
  align-items: center;
}

#calendarIcon {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

#calendar {
  position: absolute;
  top: 35px;
  left: -560%;
  background: #0d0d0d;
  color: #ebebeb;
  border: 1px solid #464646;
  /* border-radius: 14px; */
  /* padding: 10px; */
  padding: 16px;
  display: none;
  z-index: 100;
}

#calendarDays .week {
  display: flex;
  justify-content: space-between;
}

.custom-select {
  position: relative;
  width: 120px;
  font-size: 14px;
}

.custom-select-trigger {
  background: #0d0d0d;
  color: #ffffff;
  /* padding: 6px 10px; */
  padding: 8px;
  display: flex;
  align-items: center;
  /* border-radius: 6px; */
  cursor: pointer;
  text-align: center;
  position: relative;
}

.custom-select-trigger::before {
  content: "﹀";
  position: absolute;
  right: 14px;
  top: 10px;
  transition: transform 0.2s;
  font-size: 16px;
}

.custom-select.open .custom-select-trigger::before {
  transform: rotate(180deg);
  bottom: 10px;
  transition: transform 0.2s;
}

.custom-options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #0d0d0d;
  /* border-radius: 6px; */
  z-index: 1000;
}

.custom-option {
  /* padding: 6px 10px; */
  padding: 8px 16px;
  cursor: pointer;
  color: #ffffff;
}

#yearSelect {
  width: 80px;
}

.custom-options.open {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 180px;
  overflow-y: auto;
}

#calendarDays .day {
  width: 30px;
  text-align: center;
  margin: 2px 0;
  cursor: pointer;
}

.title-main {
  display: flex;
  align-items: center;
  justify-content: start;
  /* padding-left: 15px; */
  padding-left: 16px;
}

.custom-option:hover,
.custom-option.selected {
  background: #fb4c35;
  color: rgb(18, 18, 18);
}

.calendar-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  /* grid-gap: 14px; */
  grid-gap: 16px;
}

.main-calendar-card {
  width: 100%;
  background: #0d0d0d;
  /* border-radius: 14px; */
}

/* body {
  background-image: url("../images/53ce2a005a5f1df97e2f59b2a76d2d53.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  flex: 1;
}

main {
  flex: 1;
}

.title-main h2 {
  position: relative;
  font-size: 32px;
  font-weight: 700;
  color: #f7f7f7;
  padding: 0 16px;
}

.title-main h2::before,
.title-main h2::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 6px;
  background: #d3a21b;
}

.title-main h2::before {
  left: -11px;
  width: 20px;
}

.title-main h2::after {
  right: -90px;
  width: 100px;
} */

.filter_dates_btn {
  /* padding: 6px 12px; */
  padding: 8px 16px;
  /* border-radius: 14px; */
  background-color: #212121;
  color: #f9f9f9;
  transition: 0.3s all;
}

.filter_dates_btn.btn_now_date {
  /* padding: 6px 12px; */
  padding: 8px 16px;
  /* border-radius: 14px; */
  background-color: #fb4c35;
  color: #fff;
}

.header_logo {
  height: 60px;
}

.header-link {
  /* padding-bottom: 6px;
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 6px; */
  padding: 8px;
  text-transform: uppercase;
  transition: 0.3s all;
  font-size: 14px;
}

.active-link {
  background: #fb4c35;
  /* color: rgb(11, 11, 11); */
  color: rgb(18, 18, 18);
}

.calendar-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  /* grid-gap: 14px; */
  grid-gap: 16px;
}

.main-calendar-card {
  width: 100%;
  background: #0d0d0d;
  /* border-radius: 14px; */
}

.calend-card-top {
  padding-bottom: 12px;
  padding-top: 12px;
  background: #fb4c35;
  color: rgb(0, 0, 0);
  text-align: center;
  /* border-radius: 14px 14px 0px 0px; */
}

.main-calendar-card-content {
  border-style: solid;
  border-color: #fb4c35;
  padding-bottom: 14px;
  padding-top: 14px;
}

.main-calendar-bootom {
  /* padding-bottom: 12px;
  padding-top: 12px; */
  padding: 16px 0;
  /* border-radius: 0px 0px 14px 14px; */
  display: inline-block;
  text-align: center;
  border-style: solid;
  border-color: #fb4c35;
  border-top-width: 0;
}

.main-calendar-card {
  width: 100%;
  background: #0d0d0d;
  /* border-radius: 14px; */
}

.calend-card-top {
  /* padding-bottom: 12px; */
  padding-bottom: 16px;
  padding-top: #fb4c35;
  color: #fff;
  text-align: center;
  /* border-radius: 14px 14px 0px 0px; */
}

.main-calendar-card-content {
  border-style: solid;
  border-color: #fb4c35;
  /* padding-bottom: 14px;
  padding-top: 14px; */
  padding: 16px 0;
}

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

.al-center {
  align-items: center;
  display: flex;
}

.match-box-team {
  /* padding: 0 12px; */
  padding: 0 16px;
}

.main-calendar-bootom {
  /* padding-bottom: 12px;
  padding-top: 12px; */
  padding: 16px 0;
  /* border-radius: 0px 0px 14px 14px; */
  display: inline-block;
  text-align: center;
  border-style: solid;
  border-color: #fb4c35;
  border-top-width: 0;
}

.icon-60 {
  height: 90px;
  width: 90px;
}

.contain {
  -o-object-fit: contain;
  object-fit: contain;
}

.main-calendar-card .main-calendar-card-content a {
  text-align: center;
  /* padding-left: 12px;
  padding-right: 12px; */
  padding: 0 16px;
  padding-top: 16px;
}

.mc-filter__dates,
.mc-filter__dates-slider-wrapper {
  display: flex;
  align-items: center;
  /* gap: 12px; */
  gap: 16px;
}

.main-calendar-card .main-calendar-card-content a {
  height: 100%;
  justify-content: space-between;
}

.w-100 {
  width: 100% !important;
}

.coll {
  display: flex;
  flex-direction: column;
}

.empty_match {
  padding-top: 40px;
  color: #0d0d0d;
  grid-column: 1 / -1;
  width: 100%;
  text-align: center;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mc-filter__icon_calendar {
  background: transparent;
}

/* @media (max-width: 1400px) {
  .header-list {
    display: none;
  }

  .menu-burger {
    display: block;
  }

  .header-nav-list-mobile {
    align-items: center;
    color: #fff;
    transform: translateY(0);
  }

  .header_menu_list {
    display: flex;
    flex-direction: column;
    position: fixed;
    z-index: 99;
    overflow: scroll;
    width: 200px;
    background: rgb(0, 0, 0);
    color: #1f1f1f;
    flex-direction: column;
    padding-top: 50px;
    height: 100vh;
    top: 0;
    right: 0;
    bottom: 0;
    align-items: center;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
} */

@media (max-width: 966px) {
  .calendar_content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .mc-filter__dates-slider-wrapper {
    overflow-x: scroll;
  }

  .filter_dates_btn {
    flex-shrink: 0;
  }

  .mc-filter__dates-slider {
    overflow: hidden;
  }
}

@media (max-width: 655px) {
  .calendar_content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) {
  .filter_dates_btn {
    font-size: 12px;
  }

  .title-main h2::before {
    width: 5px;
    left: 0;
  }

  .title-main h2::before,
  .title-main h2::after {
    height: 25px;
  }

  .title-main h2::after {
    display: none;
  }
}

@media (max-width: 450px) {
  #calendar {
    left: -377%;
  }

  .filter__dates-arrow {
    position: absolute;
    right: 0;
    top: -35px;
  }

  .filter__dates-arrow_img {
    width: 25px;
    height: 25px;
  }

  .filter__dates-arrow_img {
    width: 25px;
    height: 25px;
  }

  .mc-filter__icons {
    position: absolute;
    right: 68px;
    top: -35px;
  }

  .mc-filter__block {
    position: relative;
  }

  .filter__dates-arrow-prew {
    right: 35px;
  }
}

.block_input_wrapper {
  width: 100%;
  position: relative;
  margin-bottom: 16px;
}

.input_label {
  display: block;

  color: rgb(18, 18, 18);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.17;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.block_input_wrap {
  /* position: relative; */
}

.input_modal {
  width: 100%;
  height: 40px;
  border: 1px solid rgba(46, 47, 66, 0.4);
  padding: 0 16px 0 40px;
  outline: transparent;
  background-color: transparent;
  color: #434455;
  transition: border-color 250ms cubic-bezier(0.4, 0, 0.2, 1);

  background-color: #fff;
}

.input_modal_icon {
  position: absolute;
  left: 16px;
  top: 50%;
  /* transform: translateY(-50%); */
  color: #fcb900;
}

.block_input_wrapper_label {
}

.input_textarea {
  width: 100%;
  height: 120px;
  border: 1px solid rgba(46, 47, 66, 0.4);
  padding: 8px 16px;
  color: rgb(18, 18, 18);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.17;
  letter-spacing: 0.04em;
  outline: transparent;
  background-color: transparent;
  resize: none;
  background: #fff;
  transition: border-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.input_modal::placeholder,
.input_textarea {
  color: rgb(18, 18, 18);
}

.input_textarea:hover,
.input_textarea:focus {
  border-color: #fcb900;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.input_modal:hover,
.input_modal:focus {
  border-color: #fcb900;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.input_btn {
  color: #fff;
  font-size: 16px;

  font-weight: 500;

  background-color: #fcb900;
  cursor: pointer;
  display: block;
  /* padding: 16px 32px; */
  padding: 16px;

  border: none;
  margin: 0 auto;
  min-width: 169px;
  transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.contacts_local_map_link {
  /* width: 49%; */
  display: flex;
  height: auto;
  cursor: grab;
}
.contacts_local_map_link_img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

@media screen and (min-width: 576px) {
}

@media screen and (min-width: 768px) {
  .section_subtitle {
    font-size: 13px;
  }

  .section_title {
    font-size: 25px;
  }

  .contacts_text {
    font-size: 14px;
  }

  .contacts_subtitle {
    font-size: 20px;
  }

  .contacts_item_img {
    height: 18px;
    width: 18px;
  }

  .contacts_item_link {
    font-size: 18px;
  }
}

@media screen and (min-width: 1024px) {
  .block_contacts_content {
    grid-template-columns: repeat(2, 1fr);
  }

  .section_subtitle {
    text-align: left;
  }

  .section_title {
    font-size: 30px;
    text-align: left;
  }

  .contacts_text {
    margin: 0;
    text-align: left;
  }

  .contacts_subtitle {
    font-size: 25px;
    text-align: left;
  }

  .contacts_list {
    align-items: start;
  }

  /* .block_contacts_form {
    width: 39%;
  } */
}

@media screen and (min-width: 1200px) {
  .section_title {
    font-size: 35px;
  }
}

@media screen and (min-width: 1440px) {
  .section_title {
    font-size: 40px;
  }
}

.privacy_title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgb(13, 13, 13);
}

.privacy_text {
  font-size: 14px;
  font-weight: 400;
  color: rgb(138, 138, 138);
}

@media screen and (min-width: 768px) {
  .privacy_title {
    font-size: 20px;
  }
}

@media screen and (min-width: 1024px) {
  .privacy_title {
    font-size: 25px;
  }

  .privacy_text {
    font-size: 16px;
  }
}

@media screen and (min-width: 120px) {
  .privacy_text {
    font-size: 18px;
  }
}
