* {
  font-family: "Roboto", sans-serif;
  box-sizing: border-box;
  outline: none !important;
}

html {
  scroll-behavior: smooth;
  min-height: 100vh;
}

body {
  background-color: #000;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  padding: 0;
  margin: 0;
  position: relative;
}

body::-webkit-scrollbar {
  display: none;
}

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

.m-0 {
  margin: 0 !important;
}

.main_header_wrap {
  background-color: #FCF5FF;
}

.main_header_bar_menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: 75px;
}
@media (max-width: 769px) {
  .main_header_bar_menu {
    display: none;
  }
}

.main_header_bar_menu_item.dropdown:hover .dropdown_content {
  display: block;
}

.main_header_bar_menu_item {
  position: relative;
}

.dropdown .dropdown_content {
  position: absolute;
  top: 100%;
  left: -20%;
  border: 1px solid #ddd;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 10;
  width: 100%;
  min-width: 178px;
  background-color: #fcf5ff;
  margin: 0;
  padding: 0;
  display: none;
}

.main_header_bar_menu_link svg {
  transition: transform 0.3s ease;
}

.main_header_bar_menu_link svg.rotate-up {
  transform: rotate(180deg);
}

.dropdown:hover .dropdown_content {
  display: block;
}

.dropdown_item {
  display: block;
  color: #333;
  text-decoration: none;
  width: 80%;
  text-align: center;
  padding: 12px 0;
  border-bottom: 1px solid #333;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 500;
}

.mobile-only {
  display: none;
}

.desktop-only {
  display: block;
}

@media (max-width: 540px) {
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: block;
  }
}
.main_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  min-height: 75px;
  height: 100%;
}

.logo {
  display: block;
  height: 28px;
}
.logo img {
  display: block;
  height: 100%;
}

.main_header_menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding-left: 20px;
}

.main_header_menu_item,
.main_header_bar_menu_item,
.main_header_bar_menu_link {
  font-weight: 500;
  color: #2f334e;
  text-decoration: none;
}

.upcoming_fixtures_wrap {
  background-color: #1c1f33;
  height: 50px;
  width: 100%;
  position: relative;
  padding: 0 0 0 150px;
  overflow: hidden;
  display: none;
}
.upcoming_fixtures_wrap.show {
  display: block;
}

.upcoming_fixtures_label {
  position: absolute;
  height: 50px;
  width: 140px;
  background-image: url(../images/upcoming-fixtures-label-bg.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  padding: 0 0 0 20px;
  font-weight: 500;
  top: 0;
  left: 0;
  z-index: 1;
}

.upcoming_fixtures_list_wrap {
  display: flex;
}

.upcoming_fixtures_list {
  margin: 0;
  padding: 5px 0;
  list-style-type: none;
  display: flex;
  align-items: center;
  height: 50px;
}
.upcoming_fixtures_list li {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  position: relative;
}
.upcoming_fixtures_list li:after {
  top: 10%;
  right: 0;
  width: 1px;
  height: 80%;
  background-color: #ffffff;
  position: absolute;
  content: "";
}

.fixture_info {
  text-align: center;
  margin: 0 20px;
}

.fixture_team_logo {
  height: 28px;
  display: block;
  max-width: 28px;
}

.fixture_participants {
  white-space: nowrap;
  font-weight: 300;
}

.fixture_date {
  font-weight: 500;
  white-space: nowrap;
}

.main_title_block_wrap {
  display: flex;
  align-items: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 0 20px;
  min-height: 400px;
}
.main_title_block_wrap .container {
  max-width: 900px;
}

.main_title_block {
  padding: 40px 0;
  text-align: center;
}

h1 {
  font-size: 48px;
  text-align: center;
  font-weight: 500;
  margin: 0 0 30px;
}
h1 .title_date {
  display: block;
}

h2 {
  font-size: 24px;
  font-weight: 500;
}

.content-block-wrap {
  margin-bottom: 30px;
}
.content-block-wrap .content-block-title {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
@media (max-width: 540px) {
  .content-block-wrap .content-block-title {
    font-size: 21px;
  }
}
.content-block-wrap .content-block {
  align-items: center;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.content-block-wrap .content-block-content {
  padding: 20px 20px 20px 0;
  width: 60%;
}
@media (max-width: 540px) {
  .content-block-wrap .content-block-content {
    padding: 0 0 10px 0;
    width: auto;
  }
}
.content-block-wrap .content-block .content-block__item {
  align-items: center;
  border-radius: 24px;
  display: flex;
  gap: 30px;
  background: #2f334e;
}
@media (max-width: 540px) {
  .content-block-wrap .content-block .content-block__item {
    gap: 10px;
  }
}
.content-block-wrap .content-block .content-block__item .content-block-content a {
  text-decoration: none;
}
.content-block-wrap .content-block .content-block__item .content-block-image {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 200px;
  height: 100%;
  width: 100%;
  max-width: 400px;
}
@media (max-width: 540px) {
  .content-block-wrap .content-block .content-block__item .content-block-image {
    min-width: 180px;
  }
}
.content-block-wrap .content-block .content-block__item .content-item-title {
  font-size: 24px;
  margin-bottom: 14px;
  line-height: 30px;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
}
@media (max-width: 540px) {
  .content-block-wrap .content-block .content-block__item .content-item-title {
    font-size: 18px;
  }
}
.content-block-wrap .content-block .content-block__item .content-item-text {
  font-size: 12px;
  line-height: 15px;
  padding-right: 12px;
  margin-bottom: 30px;
}
@media (max-width: 540px) {
  .content-block-wrap .content-block .content-block__item .content-item-text {
    font-size: 10px;
    text-align: justify;
    margin-bottom: 6px;
  }
}
.content-block-wrap .content-block .content-block__item .content-item-link {
  color: #00b67a;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 540px) {
  .content-block-wrap .content-block .content-block__item .content-item-link {
    font-style: 12px;
  }
}

.cookie_block.cookie-desktop-show {
  display: block;
}
@media (max-width: 991px) {
  .cookie_block.cookie-desktop-show {
    display: none;
  }
}
.cookie_block.cookie-mobile-show {
  display: block;
}
@media (min-width: 992px) {
  .cookie_block.cookie-mobile-show {
    display: none;
  }
}
.cookie_block .cookie_block_btn {
  position: fixed;
  bottom: 28px;
  right: 38px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 999;
}
@media (max-width: 991px) {
  .cookie_block .cookie_block_btn {
    right: 17px;
    border: 34px;
  }
}
.cookie_block .cookie_popup {
  position: fixed;
  bottom: 81px;
  right: 38px;
  width: 281px;
  padding: 22px 20px 18px;
  border-radius: 12px;
  display: none;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.3s ease;
  z-index: 10001;
}
.cookie_block .cookie_popup.visible {
  display: flex;
  transform: translateY(0);
}
.cookie_block .cookie_popup .cookie_popup_title_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
}
.cookie_block .cookie_popup .cookie_popup_title_wrap .cookie_popup_title {
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  margin: 0;
  width: 80%;
}
.cookie_block .cookie_popup .cookie_popup_title_wrap svg {
  position: absolute;
  top: -7px;
  right: -8px;
  width: 22px;
  height: 22px;
  cursor: pointer;
}
.cookie_block .cookie_popup p {
  margin: 0;
  font-size: 10px;
  font-weight: 500;
  line-height: normal;
}
.cookie_block .cookie_popup .cookie_popup_accept_btn,
.cookie_block .cookie_popup .cookie_popup_customize_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 39px;
  flex-shrink: 0;
  min-width: 189px;
  width: fit-content;
  margin: 0 auto;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  line-height: normal;
  border-radius: 100px;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  transition: box-shadow 0.3s ease-out;
  padding: 9px 23px;
  cursor: pointer;
  border: none;
}
@media (max-width: 991px) {
  .cookie_block .cookie_popup {
    right: 17px;
  }
}

.cookie_popup_overlay {
  position: fixed;
  top: 0;
  right: -1000px;
  width: 424px;
  height: 100%;
  overflow-y: auto;
  scrollbar-gutter: stable;
  z-index: 1000;
  transition: left 0.3s ease-in-out;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie_popup_overlay.open {
  right: 0;
}
.cookie_popup_overlay .cookie_popup_title_block {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 70px 43px 0;
}
.cookie_popup_overlay .cookie_popup_title_block .cookie_popup_title {
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
  margin: 0;
}
.cookie_popup_overlay .cookie_popup_title_block .cookie_popup_text {
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  margin: 0;
}
@media (max-width: 640px) {
  .cookie_popup_overlay .cookie_popup_title_block .cookie_popup_text {
    font-weight: 500;
  }
}
.cookie_popup_overlay .cookie_popup_title_block .cookie_popup_close {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 24px;
  right: 29px;
  cursor: pointer;
}
@media (max-width: 640px) {
  .cookie_popup_overlay .cookie_popup_title_block .cookie_popup_close {
    width: 21px;
    height: 21px;
    top: 21px;
    right: 20px;
  }
}
@media (max-width: 640px) {
  .cookie_popup_overlay .cookie_popup_title_block {
    padding: 70px 20px 0 16px;
  }
}
.cookie_popup_overlay .cookie_popup_body_block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-bottom: 1px solid #2F334E;
  padding-bottom: 16px;
}
.cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item .cookie_popup_title_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 43px;
}
.cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item .cookie_popup_title_row .cookie_popup_title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
}
.cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item .cookie_popup_title_row .switch {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item .cookie_popup_title_row .switch .switch__input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
}
.cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item .cookie_popup_title_row .switch .switch__svg {
  display: block;
}
.cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item .cookie_popup_title_row .switch .switch__svg .bg {
  transition: fill 200ms ease, fill-opacity 200ms ease;
}
.cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item .cookie_popup_title_row .switch .switch__svg .knob {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1), fill 200ms ease;
  will-change: transform;
}
.cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item .cookie_popup_title_row .switch__input:checked + .switch__svg .knob {
  transform: translateX(32px);
}
.cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item .cookie_popup_title_row .switch__input:not(:checked) + .switch__svg .knob {
  transform: translateX(0);
}
.cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item .cookie_popup_title_row .switch:has(.switch__input:focus-visible) .bg {
  outline: 2px solid #005fcc;
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  .cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item .cookie_popup_title_row .bg,
  .cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item .cookie_popup_title_row .knob {
    transition: none;
  }
}
@media (max-width: 640px) {
  .cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item .cookie_popup_title_row {
    padding: 0 20px 0 16px;
  }
}
.cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item .cookie_popup_text {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  padding: 0 43px;
}
@media (max-width: 640px) {
  .cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item .cookie_popup_text {
    font-weight: 500;
    padding: 0 20px 0 16px;
  }
}
.cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item .cookie_popup_link {
  display: flex;
  border: none;
  background: transparent;
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  text-decoration: underline;
  padding: 0 43px;
  cursor: pointer;
}
@media (max-width: 640px) {
  .cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item .cookie_popup_link {
    padding: 0 20px 0 16px;
  }
}
.cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item .cookie_list {
  background: #ECECEC;
  list-style: none;
  margin: 0;
  padding: 24px 43px;
}
.cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item .cookie_list.is-hidden {
  display: none;
}
.cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item .cookie_list .cookie_item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-bottom: 1px solid #2F334E;
  padding: 16px 0;
}
.cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item .cookie_list .cookie_item:first-child {
  padding-top: 0;
}
.cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item .cookie_list .cookie_item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item .cookie_list .cookie_item .cookie_kv {
  display: flex;
  gap: 54px;
}
.cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item .cookie_list .cookie_item .cookie_kv dt,
.cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item .cookie_list .cookie_item .cookie_kv dd {
  margin: 0;
}
.cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item .cookie_list .cookie_item .cookie_kv dt {
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  min-width: 100px;
  max-width: 100px;
}
@media (max-width: 640px) {
  .cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item .cookie_list .cookie_item .cookie_kv dt {
    min-width: 78px;
    max-width: 78px;
  }
}
.cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item .cookie_list .cookie_item .cookie_kv dd {
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
}
@media (max-width: 640px) {
  .cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item .cookie_list .cookie_item .cookie_kv {
    gap: 34px;
  }
}
@media (max-width: 640px) {
  .cookie_popup_overlay .cookie_popup_body_block .cookie_popup_body_item .cookie_list {
    padding: 18px 20px 18px 16px;
  }
}
.cookie_popup_overlay .cookie_popup_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 338px;
  height: 40px;
  padding: 9px 23px;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  white-space: nowrap;
  text-transform: uppercase;
  border: none;
  margin: 0 auto;
  border-radius: 100px;
  margin-bottom: 16px;
  cursor: pointer;
}
@media (max-width: 640px) {
  .cookie_popup_overlay .cookie_popup_btn {
    max-width: 286px;
  }
}
@media (max-width: 640px) {
  .cookie_popup_overlay {
    width: 322px;
  }
}

.main_footer_wrap {
  background-color: #1c1f33;
  padding: 50px 0;
}

.main_footer {
  position: relative;
}

.footer_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  margin: 0 0 50px;
}

.footer_logo {
  height: 28px;
  display: block;
  flex-shrink: 0;
  margin: 0 15px 0 0;
}
.footer_logo img {
  display: block;
  height: 100%;
}

.footer_menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 20px auto;
  position: relative;
  flex-wrap: wrap;
  gap: 24px;
}
.footer_menu > a {
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  margin: 0 0 0 25px;
}
.footer_menu > a:hover {
  text-decoration: underline;
}

.footer_text {
  margin: 0 0 45px;
}
.footer_text p {
  font-weight: 300;
  margin: 0 0 15px;
}

.awareness_block {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 0 0 50px;
}
.awareness_block img {
  display: block;
}

.footer_copyright {
  font-weight: 300;
  text-align: center;
  text-transform: uppercase;
}

.js_text__short,
.js_text__full,
.js_showhide_btn {
  display: none;
}

.js_text__short.show,
.js_text__full.show,
.js_showhide_btn.show {
  display: initial;
}

.mobile_menu_btn,
.menu_close_btn {
  display: none;
}

@media (max-width: 1024px) {
  .logo {
    height: 24px;
  }
  .main_header_menu_item {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  .main_header_wrap .container {
    padding: 0;
  }
  .main_header {
    height: 48px;
    position: relative;
  }
  .mobile_menu_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    margin: 0 0 0 10px;
  }
  .mobile_menu_btn img {
    display: block;
    width: 18px;
  }
  .logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 21px;
  }
  .main_header_menu {
    position: fixed;
    bottom: 100%;
    left: 0;
    top: 0;
    width: 100%;
    flex-direction: column;
    z-index: 999;
    transform: translateY(-1000px);
    transition: all 0.3s ease-in-out;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    gap: 0;
    padding: 0;
  }
  .main_header_menu.show {
    transform: translateY(0);
  }
  .main_header_menu .main_header_bar_menu_item {
    margin: 0;
    font-size: 18px;
    background-color: #fcf5ff;
    padding: 10px;
    width: 100%;
    text-align: center;
    border-radius: 0;
    border-bottom: 1px solid #2f334e;
  }
  .main_header_menu .main_header_bar_menu_item .dropdown_content {
    display: none;
  }
  .main_header_menu .main_header_bar_menu_link svg {
    display: none;
  }
  .menu_close_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    border: none;
    background: #fcf5ff;
    font-size: 18px;
    padding: 10px;
    color: #2f334e;
    font-weight: 500;
    border-radius: 0 0 16px 16px;
  }
  .main_title_block_wrap {
    margin: 0 0 10px;
  }
  .main_title_block {
    padding: 15px 0 0;
  }
  .last_update_block {
    font-size: 14px;
    margin: 0 0 10px;
  }
  h1 {
    font-size: 28px;
    margin: 0 0 15px;
  }
  h2 {
    font-size: 14px;
  }
  .text_section_wrap {
    padding: 35px 0 80px;
  }
  .text_section_wrap .container {
    padding: 0 15px;
  }
  .text_section p {
    color: #fff;
    font-size: 14px;
    margin: 0 0 5px;
  }
  .text_section_title {
    font-size: 24px;
    margin: 0 0 10px;
  }
  .section_subtitle {
    font-size: 18px;
    margin: 20px 0 10px;
  }
  .main_footer_wrap {
    padding: 60px 0 80px;
  }
  .main_footer_wrap .container {
    padding: 0 40px;
  }
  .main_footer {
    display: flex;
    flex-direction: column;
  }
  .footer_header {
    flex-wrap: wrap;
    order: 1;
    margin: 0 0 15px;
    flex-direction: column;
  }
  .footer_logo {
    height: 21px;
    margin: 0 auto;
  }
  .footer_menu {
    flex-wrap: wrap;
    margin: 30px 0 30px;
    width: 100%;
    gap: 8px;
  }
  .footer_menu a {
    width: 50%;
    margin: 0;
  }
  .footer_menu a:nth-child(2n) {
    text-align: right;
    margin-left: auto;
  }
  .footer_text {
    order: 3;
    margin: 0 0 10px;
  }
  .footer_text p {
    font-size: 12px;
    text-align: center;
  }
  .awareness_block {
    order: 2;
    justify-content: space-between;
    flex-wrap: wrap;
    width: calc(100% + 20px);
    transform: translateX(-10px);
    margin: 0 0 10px;
  }
  .awareness_block .awareness_block_item {
    margin: 0 10px 25px;
    display: block;
  }
  .awareness_block .awareness_block_item:nth-child(1) img {
    width: 36px;
  }
  .awareness_block .awareness_block_item:nth-child(2) img {
    width: 68px;
  }
  .awareness_block .awareness_block_item:nth-child(3) img {
    width: 132px;
  }
  .awareness_block .awareness_block_item:nth-child(4) img {
    width: 100px;
  }
  .awareness_block .awareness_block_item:nth-child(5) img {
    width: 78px;
  }
  .awareness_block .awareness_block_item:nth-child(6) img {
    width: 140px;
  }
  .footer_copyright {
    order: 5;
    font-size: 12px;
  }
}
@media (max-width: 540px) {
  .main_title_block_wrap {
    background-position: center bottom;
    min-height: 200px;
  }
}
@media (max-width: 350px) {
  .logo {
    height: 18px;
  }
}

/*# sourceMappingURL=main.css.map */
