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 {
  height: 100%;
  background: #ffffff;
}

body.lock {
  overflow: hidden;
}

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

.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;
}

.position_relative {
  position: relative;
}

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

.header {
  z-index: 9999;
  padding: 15px 0;
  background: rgba(0, 0, 0);
}

.header_logo_link {
  display: flex;
  width: 90px;
}

.menu_btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 25px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}

.menu_btn .close_menu {
  display: none;
}

.menu_btn.active .open_menu {
  display: none;
}

.menu_btn.active .close_menu {
  display: block;
}

.header_menu_list {
  text-align: center;
  height: 0;
  width: 100%;
  position: fixed;
  left: 0;
  top: 50px;
  padding: 0 16px;
  overflow: hidden;
  background: #000;
  transition: ease 0.5s;
}

.header_menu_list.active {
  height: 100vh;
}

.header_menu_item {
  margin-bottom: 25px;
}

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

.header_menu_link {
  font-size: 20px;
  font-weight: 600;
  color: rgb(255, 255, 255);
  transition: ease 0.5s;
}

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

@media screen and (min-width: 1024px) {
  .header {
    background: rgba(0, 0, 0, 0.2);
  }

  .header_position {
    position: absolute;
    left: 0;
    right: 0;
  }

  .header_navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .menu_btn {
    display: none;
  }

  .header_menu_list {
    display: flex;
    align-items: center;
    column-gap: 15px;
    overflow: visible;
    position: static;
    height: auto;
    width: auto;
    background: transparent;
    padding: 0;
  }

  .header_menu_list.active {
    height: 0;
  }

  .header_menu_item {
    margin-bottom: 0;
  }

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

@media screen and (min-width: 1200px) {
  .header_logo_link {
    width: 120px;
  }
}

@media screen and (min-width: 1440px) {
  .header_logo_link {
    width: 150px;
  }

  .header_menu_list {
    column-gap: 25px;
  }

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

.main {
  flex-grow: 1;
}

.margin_bottom_30 {
  margin-bottom: 30px;
}

.margin_right_75 {
  margin-right: 75px;
}

/*! -----SECTION TITLE----- */

.section_content {
  padding: 16px 0;
}

.section_content_top_0 {
  padding-top: 0;
}

.section_title_wrap {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  margin-bottom: 16px;
}

.section_title {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
  color: rgb(3, 5, 35);
}

.section_title_font_size_h3 {
  font-size: 16px;
}

.section_title_font_size_h4 {
  font-size: 14px;
}

.section_title_border_bottom_wrap {
  background: #fe5900;
  color: rgba(0, 0, 0, 0);
  border-radius: 5px;
  height: 3px;
  width: 7%;
}

@media screen and (min-width: 576px) {
  /* .section_content {
    padding: 20px 0;
  } */

  .section_content_top_0 {
    padding-top: 0;
  }

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

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

  .section_title_font_size_h3 {
    font-size: 18px;
  }

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

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

  .section_content_top_0 {
    padding-top: 0;
  }

  .section_title_wrap {
    margin-bottom: 24px;
  }

  .section_title {
    font-size: 25px;
  }

  .section_title_font_size_h3 {
    font-size: 20px;
  }

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

@media screen and (min-width: 1200px) {
  .section_content {
    padding: 32px 0;
  }

  .section_content_top_0 {
    padding-top: 0;
  }

  .section_title_wrap {
    margin-bottom: 32px;
  }
}

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

  .section_title_font_size_h3 {
    font-size: 25px;
  }

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

/*! -----BOTTOM MARGIN----- */

.bottom_margin {
  margin-bottom: 15px;
}

@media screen and (min-width: 576px) {
  .bottom_margin {
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 1024px) {
  .bottom_margin {
    margin-bottom: 25px;
  }
}

@media screen and (min-width: 1200px) {
  .bottom_margin {
    margin-bottom: 30px;
  }
}

/*! -----BOTTOM MARGIN TEXT----- */

.bottom_margin_text {
  margin-bottom: 5px;
}

@media screen and (min-width: 768px) {
  .bottom_margin_text {
    margin-bottom: 10px;
  }
}

@media screen and (min-width: 1200px) {
  .bottom_margin_text {
    margin-bottom: 15px;
  }
}

/*! -----PAGINATION----- */

.pagination_wrapper {
  align-items: center;
  display: flex;
  column-gap: 15px;
  justify-content: center;
}

.pagination_btn {
  background: transparent;
  border: none;
  cursor: pointer;
}

.pagination_btn_img {
  width: 30px;
  height: 30px;
  transition: ease 0.5s;
  filter: grayscale(15%);
}

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

.rotate_deg_180 {
  rotate: 180deg;
  color: rgba(254, 89, 0, 0);
}

.pagination_list {
  align-items: center;
  display: flex;
  column-gap: 25px;
}

.pagination_link {
  font-size: 20px;
  font-weight: 700;
  color: rgb(105, 105, 105);
  transition: ease 0.5s;
}

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

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

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

.footer {
  background-image: url("../images/ffa79f017bc8ddb3a036b2db9a069617.jpg");
  background-position: top;
  position: relative;
  padding: 15px 0;
}

.footer::before {
  content: "";
  width: 100%;
  position: absolute;
  top: 0;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 30%, #000);
}

.footer_top_content_wrapper {
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(165, 165, 165, 0.35);
  position: relative;
}

.footer_top_content_container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer_top_logo_link {
  display: flex;
  width: 100px;
  margin-bottom: 5px;
}

.footer_top_text {
  color: rgb(105, 105, 105);
  font-size: 11px;
  font-weight: 500;
}

.footer_top_title {
  font-size: 14px;
  font-weight: 700;
  color: rgb(254, 89, 0);
  text-transform: uppercase;
  margin-bottom: 15px;
}

.footer_top_news_item {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
  margin-bottom: 5px;
}

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

.footer_top_news_text {
  font-size: 8px;
  font-weight: 500;
  color: rgb(255, 172, 75);
  text-transform: uppercase;
}

.footer_top_news_link {
  font-size: 11px;
  font-weight: 700;
  transition: ease 0.5s;
  color: rgb(255, 255, 255);
  opacity: 0.6;
  text-transform: uppercase;
}

.footer_top_news_link:hover {
  color: rgb(255, 255, 255);
  opacity: 1;
}

.footer_top_menu_item {
  margin-bottom: 5px;
}

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

.footer_top_menu_link {
  font-size: 11px;
  font-weight: 500;
  transition: ease 0.5s;
  color: rgb(255, 255, 255);
  opacity: 0.6;
}

.footer_top_menu_link:hover {
  color: rgb(255, 255, 255);
  opacity: 1;
}

.footer_top_address_item {
  display: flex;
  gap: 5px;
  margin-bottom: 5px;
}

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

.footer_top_address_text {
  font-size: 11px;
  font-weight: 500;
  color: rgb(255, 255, 255);
  opacity: 0.6;
  text-transform: uppercase;
}

.footer_top_address_link {
  font-size: 11px;
  font-weight: 500;
  color: rgb(255, 255, 255);
  transition: ease 0.5s;
  opacity: 0.6;
}

.footer_top_address_link:hover {
  opacity: 1;
}

.footer_bottom_content_wrapper {
  padding-top: 15px;
  position: relative;
}

.footer_bottom_text {
  font-size: 11px;
  font-weight: 500;
  color: rgb(105, 105, 105);
  text-align: center;
}

.footer_bottom_text_link {
  font-weight: 700;
  color: rgb(254, 89, 0);
  transition: easy 0.5s;
}

.footer_bottom_text_link:hover {
  color: rgb(255, 172, 75);
}

@media screen and (min-width: 576px) {
  .footer {
    padding: 20px 0;
  }

  .footer_top_content_wrapper {
    padding-bottom: 20px;
  }

  .footer_top_text {
    width: 75%;
  }

  .footer_top_menu_list {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
  }

  .footer_top_menu_item {
    width: 20%;
  }

  .footer_bottom_content_wrapper {
    padding-top: 20px;
  }
}

@media screen and (min-width: 768px) {
  .footer_top_content_container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .footer_top_logo_link {
    width: 120px;
    margin-bottom: 10px;
  }

  .footer_top_text {
    font-size: 13px;
  }

  .footer_top_title {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .footer_top_news_item {
    margin-bottom: 10px;
  }

  .footer_top_news_text {
    font-size: 10px;
  }

  .footer_top_news_link {
    font-size: 13px;
  }

  .footer_top_menu_list {
    gap: 15px;
  }

  .footer_top_menu_item {
    width: auto;
  }

  .footer_top_menu_link {
    font-size: 13px;
  }

  .footer_top_address_item {
    margin-bottom: 10px;
  }

  .footer_top_address_text {
    font-size: 13px;
  }

  .footer_top_address_link {
    font-size: 13px;
  }

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

@media screen and (min-width: 1024px) {
  .footer {
    padding: 25px 0;
  }

  .footer_top_content_wrapper {
    padding-bottom: 25px;
  }

  .footer_bottom_content_wrapper {
    padding-top: 25px;
  }
}

@media screen and (min-width: 1200px) {
  .footer {
    padding: 30px 0;
  }

  .footer_top_content_wrapper {
    padding-bottom: 30px;
  }

  .footer_top_content_container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .footer_top_text {
    width: auto;
  }

  .footer_bottom_content_wrapper {
    padding-top: 30px;
  }
}

@media screen and (min-width: 1440px) {
  .footer_top_logo_link {
    width: 140px;
    margin-bottom: 15px;
  }

  .footer_top_text {
    font-size: 15px;
    width: 100%;
  }

  .footer_top_title {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .footer_top_news_item {
    margin-bottom: 15px;
  }

  .footer_top_news_text {
    font-size: 12px;
  }

  .footer_top_news_link {
    font-size: 15px;
  }

  .footer_top_menu_item {
    margin-bottom: 10px;
  }

  .footer_top_menu_link {
    font-size: 15px;
  }

  .footer_top_address_item {
    gap: 10px;
    margin-bottom: 15px;
  }

  .footer_top_address_text {
    font-size: 15px;
  }

  .footer_top_address_link {
    font-size: 15px;
  }

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

.section_home_calendar {
  padding-bottom: 30px;
  padding-top: 30px;
  background: #000000;
}
.color_white {
  color: rgb(255, 255, 255);
}

.width_70pr {
  width: 70%;
}

.width_30pr {
  width: 30%;
}

.width_45pr {
  width: 45%;
}

.width_60pr {
  width: 60%;
}

.width_40pr {
  width: 40%;
}

.width_80pr {
  width: 80%;
}

.width_90pr {
  width: 90%;
}

.width_55pr {
  width: 55%;
}

.width_25pr {
  width: 25%;
}

.flex_direction_row_reverse {
  flex-direction: row-reverse;
}
.block_live_circle {
  height: 6px;
  width: 6px;
  border-radius: 50%;
}
.bg_color_green {
  background: #e0f465;
}
.section_home_video {
  padding-bottom: 30px;
  padding-top: 30px;
}

.section_home_teams {
  background: #000000;
  padding-bottom: 30px;
  padding-top: 30px;
}

.box_shadow_white_grey {
  box-shadow: 0px 0px 5px rgb(246, 246, 246);
  transition: ease 0.5s;
}
.box_shadow_white_grey:hover {
  box-shadow: 0px 0px 25px rgb(246, 246, 246);
}
.section_standings {
  padding-bottom: 30px;
  padding-top: 30px;
}

.text_align_center {
  text-align: center;
}

.bg_color_orange {
  background: #fe5900;
}

.bg_color_gray {
  background: #f6f6f6;
}

.bg_color_white {
  background: #ffffff;
}

.bg_color_black {
  background: #000000;
}

.bg_color_light_orange {
  background: rgb(255, 172, 75);
}

.header_container {
  background: #000000;
}

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

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

.team_meet_stat_title {
  font-size: 25px;
  font-weight: 700;
  text-align: center;
  color: rgb(3, 5, 35);
  text-transform: uppercase;
}
.team_meet_stat_item {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
}
.team_meet_stat_item:last-child {
  margin-bottom: 0;
}
.team_meet_stat_item_text {
  font-size: 18px;
  font-weight: 500;
  color: rgb(3, 5, 35);
}

.team_meet_stat_item_subtitle {
  color: rgb(3, 5, 35);
  font-size: 20px;
  font-weight: 700;
}
.border_bottom_gray {
  border-style: solid;
  border-top-width: 0;
  border-right-width: 0;
  border-left-width: 0;
  border-bottom-width: 2px;
  border-bottom-color: rgba(165, 165, 165, 0.35);
}
.border_top_yellow {
  border-style: solid;
  border-right-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  border-top-width: 5px;
  border-top-color: rgb(255, 172, 75);
}

.font_size_25 {
  font-size: 25px;
}

.letter_spacing_1 {
  letter-spacing: 1px;
}

.line_height_30 {
  line-height: 30px;
}

.margin_bottom_20 {
  margin-bottom: 20px;
}

.margin_bottom_15 {
  margin-bottom: 15px;
}

.bg_color_black_gray {
  background: #a5a5a5;
}
.team_title_container {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 15%;
}

.font_size_15 {
  font-size: 15px;
}
.font_size_12 {
  font-size: 12px;
}
.width_height_20 {
  height: 20px;
  width: 20px;
}

.font_size_50 {
  font-size: 50px;
}

.border_right_orange {
  border-style: solid;
  border-top-width: 0;
  border-bottom-width: 0;
  border-left-width: 0;
  border-right-width: 4px;
  border-right-color: rgba(254, 89, 0, 0.5);
}
.flex_direction_column_gap_5 {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}
.block_border_bottom_orange {
  height: 2px;
  background-color: rgba(254, 89, 0, 0.5);
}

.block_border_orange {
  width: 5px;
  background-color: rgba(254, 89, 0, 0.5);
}

.box_shadow_green {
  box-shadow: 0px 0px 5px rgb(224, 244, 101);
  transition: ease 0.5s;
}
.box_shadow_green:hover {
  box-shadow: 0px 0px 25px rgb(224, 244, 101);
}
.font_weight_bold {
  font-weight: bold;
}

.color_light_white {
  opacity: 0.6;
}

.team_info_btn {
  background: transparent;
  border: none;
  cursor: pointer;
}
.team_info_btn_img {
  width: 70px;
  height: 70px;
  transition: scale 1s;
}
.team_info_btn_img:hover {
  scale: 1.1;
}

.margin_left_auto {
  margin-left: auto;
}

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

.events_list {
  /* display: flex;
  flex-wrap: wrap;
  row-gap: 25px;
  column-gap: 25px; */
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.events_item {
  display: flex;
  border-radius: 5px;
  overflow: hidden;
  /* width: calc(calc(((100% - 25px) / 2))); */
  width: 100%;
  transition: ease 0.5s;
}

.block_events_left {
  background: #fe5900;
  /* padding: 12px; */
  padding: 8px;
  width: 10%;
}

.events_data {
  font-size: 12px;
  /* font-size: 20px; */
  font-weight: 700;
  display: flex;
  flex-direction: column;
  text-align: center;
  color: rgb(255, 255, 255);
}

.events_data_accent {
  font-size: 7px;
  /* font-size: 15px; */
  line-height: 15px;
  text-transform: uppercase;
}

.block_events_right {
  background: #f6f6f6;
  width: 100%;
  padding: 16px;
  /* padding: 24px; */
}

.block_events_meet {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 5px;
}

.events_meet_link {
  align-items: center;
  font-size: 12px;
  /* font-size: 20px; */
  font-weight: 700;
  transition: ease 0.5s;
  color: rgb(3, 5, 35);
  text-transform: uppercase;
  display: flex;
  gap: 2px;
  width: 25%;
  justify-content: space-between;
}

.events_meet_link:hover {
  color: rgb(255, 172, 75);
}

.events_meet_link_img {
  /* height: 50px;
  width: 50px; */
  height: 15px;
  width: 15px;
}

.events_meet_score {
  font-size: 16px;
  /* font-size: 30px; */
  font-weight: 700;
  text-transform: uppercase;
  color: rgb(3, 5, 35);
}

.events_meet_link_live {
  background: #fe5900;
  border-radius: 5px;
  display: flex;
  font-size: 9px;
  /* font-size: 18px; */
  font-weight: 700;
  color: rgb(255, 255, 255);
  /* text-transform: uppercase; */
  transition: ease 0.5s;
  /* padding-bottom: 10px;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 10px; */
  padding: 8px 10px;
  align-items: center;
}

.events_meet_link_live:hover {
  background: #ffac4b;
}

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

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

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

  .events_data_accent {
    font-size: 10px;
  }

  .events_meet_link {
    font-size: 14px;
  }

  .events_meet_link_img {
    height: 25px;
    width: 25px;
  }

  .events_meet_link_live {
    font-size: 12px;
  }
}

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

  .events_meet_link {
    font-size: 16px;
  }

  .events_meet_link_img {
    height: 35px;
    width: 35px;
  }

  .events_meet_link_live {
    font-size: 12px;
  }

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

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

  .events_meet_link {
    font-size: 18px;
  }

  .events_meet_link_img {
    height: 45px;
    width: 45px;
  }

  .events_meet_link_live {
    font-size: 14px;
  }

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