@charset "UTF-8";
/*!
Theme Name: club60sec
Theme URI: 
Author: 
Author URI: 
Description: club60sec
Version: 1.0.0
Tested up to: 6.6
Requires PHP: 5.6
Text Domain: club60sec
*/
@font-face {
  font-family: "Intro";
  src: url("./fonts/intro-blackcaps-webfont.woff2") format("woff2"), url("./fonts/intro-blackcaps-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
:root {
  --radius-m: 10px;
  --radius-l: 20px;
  --background-light1: #fefefc;
  --background-light2: #EBF9F9;
  --background-light3: #dee;
  --background-dark1: #32bbc4;
  --background-dark2: #24858C;
  --background-dark3: #08919A;
  --color-blue: #2a528a;
  --color-white: #ffffff;
  --color-accent: #19C9D0;
  --color-text-dark: #1B506A;
  --color-text-primary: #3b5b5d;
  --color-text-accent: #17a6af;
  --table-header-bg: var(--background-dark3);
  --table-header-bg-accent: var(--background-dark1);
  --button-bg: var(--color-accent);
  --button-bg-hover: var(--color-white);
  --button-color-text: var(--color-white);
  --font-family: "Intro", sans-serif;
  --second-family: "Montserrat", sans-serif;
}

html, body {
  margin: 0;
  padding: 0;
  background-color: var(--background-light2);
  font-size: 20px;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  html, body {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  html, body {
    font-size: 14px;
  }
}

body {
  overflow-x: hidden;
}

*, *::before, *::after {
  box-sizing: border-box;
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1, h2,
h3, h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 16px;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .container {
    padding: 0 10px;
    overflow: hidden;
  }
}
@media screen and (max-width: 767px) {
  .container {
    padding: 0 10px;
    overflow: hidden;
  }
}

.med-section {
  background: var(--background-dark1);
}
.med-section__title {
  padding: 0;
  margin: 0 0 58px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 50px;
  text-align: center;
  text-transform: uppercase;
  color: var(--color-white);
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .med-section__title {
    font-size: 32px;
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 767px) {
  .med-section__title {
    font-size: 18px;
    margin-bottom: 12px;
  }
}

.med-button {
  border: none;
  background: none;
  outline: none;
  box-shadow: none;
  border-radius: 0px;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  border-radius: 80px;
  width: auto;
  height: 97px;
  padding: 30px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 30px;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
  color: var(--button-color-text);
  background: var(--button-bg);
}
.med-button:hover {
  transition: all ease 0.5s;
}
.med-button:hover {
  background: var(--button-bg-hover);
}
.med-button:active {
  background: var(--button-bg-hover);
}
.med-button:hover {
  color: var(--button-bg);
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .med-button {
    font-size: 22px;
    height: 70px;
    padding: 18px;
  }
}
@media screen and (max-width: 767px) {
  .med-button {
    font-size: 16px;
    height: 48px;
    padding: 10px;
  }
}

.med-header {
  background: var(--background-light2);
}
.med-header .container {
  position: relative;
}
.med-header__top {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  max-width: 851px;
  min-height: 442px;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .med-header__top {
    min-height: auto;
    padding: 32px 0 64px;
  }
}
@media screen and (max-width: 767px) {
  .med-header__top {
    min-height: auto;
    padding: 32px 0 64px;
  }
}
@media screen and (max-width: 480px) {
  .med-header__top {
    min-height: auto;
    padding: 32px 0 64px;
  }
}
.med-header__logo-group {
  position: relative;
  z-index: 3;
  padding: 16px 0 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
  gap: 67px;
}
.med-header__logo-group .logo-medsi {
  width: 481px;
  height: 110px;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .med-header__logo-group .logo-medsi {
    width: 300px;
    height: 68px;
  }
}
@media screen and (max-width: 767px) {
  .med-header__logo-group .logo-medsi {
    width: 200px;
    height: 45px;
  }
}
@media screen and (max-width: 480px) {
  .med-header__logo-group .logo-medsi {
    width: 140px;
    height: 32px;
  }
}
.med-header__logo-group .logo-60sec {
  width: 171px;
  height: 171px;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .med-header__logo-group .logo-60sec {
    width: 100px;
    height: 100px;
  }
}
@media screen and (max-width: 767px) {
  .med-header__logo-group .logo-60sec {
    width: 70px;
    height: 70px;
  }
}
@media screen and (max-width: 480px) {
  .med-header__logo-group .logo-60sec {
    width: 48px;
    height: 48px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .med-header__logo-group {
    gap: 32px;
    padding: 16px 0;
    max-height: 100px;
  }
}
@media screen and (max-width: 767px) {
  .med-header__logo-group {
    gap: 32px;
    padding: 10px 0;
  }
}
@media screen and (max-width: 480px) {
  .med-header__logo-group {
    gap: 12px;
    padding: 10px 0;
  }
}
.med-header__title {
  margin: 20px 0 0;
  position: relative;
  z-index: 3;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 60px;
  line-height: 115%;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
  color: #1b506a;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .med-header__title {
    font-size: 42px;
    margin-top: 16px;
  }
}
@media screen and (max-width: 767px) {
  .med-header__title {
    font-size: 32px;
    margin-top: 0;
  }
}
@media screen and (max-width: 480px) {
  .med-header__title {
    font-size: 24px;
    margin-top: 0;
  }
}
.med-header__bubble {
  position: absolute;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .med-header__bubble svg {
    width: 100px;
    height: 100px;
  }
}
@media screen and (max-width: 767px) {
  .med-header__bubble svg {
    width: 90px;
    height: 90px;
  }
}
@media screen and (max-width: 480px) {
  .med-header__bubble svg {
    width: 60px;
    height: 60px;
  }
}
.med-header__bubble-first {
  top: -7%;
  left: 17%;
}
.med-header__bubble-second {
  bottom: 17%;
  left: 5%;
}
.med-header__bubble-third {
  bottom: -20%;
  right: -4%;
}
.med-header .med-header__winner-wrap {
  position: absolute;
  z-index: 1;
  width: 319px;
  height: 336px;
  bottom: 10px;
  right: 0;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .med-header .med-header__winner-wrap {
    width: 200px;
    height: 200px;
    bottom: 5px;
  }
}
@media screen and (max-width: 767px) {
  .med-header .med-header__winner-wrap {
    width: 120px;
    height: 120px;
    bottom: 0;
  }
}
@media screen and (max-width: 480px) {
  .med-header .med-header__winner-wrap {
    width: 100px;
    height: 100px;
  }
}
.med-header .med-header__winner-wrap::after {
  color: #f3ecd2;
  content: "";
  position: absolute;
  top: 18%;
  left: 50%;
  width: 38px;
  height: 38px;
  pointer-events: none;
  opacity: 0;
  z-index: 2;
  animation: med-winner-star-blink 6s infinite;
  background: none;
  background-image: url('data:image/svg+xml;utf8,<svg width="38" height="38" viewBox="0 0 38 38" fill="white" xmlns="http://www.w3.org/2000/svg"><polygon points="19,0 24,14 38,19 24,24 19,38 14,24 0,19 14,14" /></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  transform: scale(1);
}
.med-header .med-header__winner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  animation: med-winner-incline 8s ease-in-out infinite;
}
.med-header .med-header__cube {
  position: absolute;
  z-index: 1;
  width: 214px;
  height: 214px;
  left: 7%;
  bottom: 12%;
  animation: med-cube-rotate 14s linear infinite;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .med-header .med-header__cube {
    width: 120px;
    height: 120px;
  }
}
@media screen and (max-width: 767px) {
  .med-header .med-header__cube {
    width: 120px;
    height: 120px;
    animation: none;
  }
}
@media screen and (max-width: 480px) {
  .med-header .med-header__cube {
    width: 60px;
    height: 60px;
    bottom: 40px;
    animation: none;
  }
}

@keyframes med-cube-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes med-winner-incline {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.07);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes med-winner-star-blink {
  0%, 80% {
    opacity: 0;
    transform: scale(0.7);
  }
  85% {
    opacity: 1;
    transform: scale(1.2);
  }
  90% {
    opacity: 0.7;
    transform: scale(1.05);
  }
  92% {
    opacity: 1;
    transform: scale(1.2);
  }
  95%, 100% {
    opacity: 0;
    transform: scale(0.7);
  }
}
.med-calendar {
  padding: 73px 0 76px;
  background-color: var(--background-dark1);
}
.med-calendar__title {
  margin: 0 0 58px;
  text-shadow: 4px 2px 0px rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .med-calendar__title {
    font-size: 36px;
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 767px) {
  .med-calendar__title {
    font-size: 22px;
    margin-bottom: 18px;
  }
}
.med-calendar__list {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  align-self: stretch;
  gap: 22px;
  max-width: 555px;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .med-calendar__list {
    gap: 14px;
  }
}
@media screen and (max-width: 767px) {
  .med-calendar__list {
    gap: 8px;
    max-width: 80%;
  }
}
.med-calendar__item {
  border: none;
  background: none;
  outline: none;
  box-shadow: none;
  border-radius: 0px;
  margin: 0;
  padding: 0;
  display: inline-block;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  justify-content: stretch;
  width: 100%;
  transition: all ease 0.3s;
}
.med-calendar__date {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 10px;
  gap: 0;
  width: 102px;
  height: 91px;
  border-radius: var(--radius-l);
  background: #fefefc;
  box-shadow: 0 0 9px 2px rgba(51, 144, 151, 0.24);
  transition: inherit;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .med-calendar__date {
    border-radius: var(--radius-m);
  }
}
@media screen and (max-width: 767px) {
  .med-calendar__date {
    border-radius: var(--radius-m);
  }
}
.med-calendar__date-day, .med-calendar__date-month {
  display: block;
  margin: 0;
  padding: 0;
  line-height: 1;
}
.med-calendar__date-day {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 50px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #3b5b5d;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .med-calendar__date-day {
    font-size: 32px;
  }
}
@media screen and (max-width: 767px) {
  .med-calendar__date-day {
    font-size: 18px;
  }
}
.med-calendar__date-month {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  color: var(--color-text-accent);
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .med-calendar__date-month {
    font-size: 13px;
  }
}
@media screen and (max-width: 767px) {
  .med-calendar__date-month {
    font-size: 9px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .med-calendar__date {
    width: 72px;
    height: 64px;
    padding: 6px;
  }
}
@media screen and (max-width: 767px) {
  .med-calendar__date {
    width: 54px;
    height: 44px;
    padding: 2px;
  }
}
.med-calendar__city {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70px;
  margin-left: -4px;
  margin-right: -4px;
  border-radius: 0 var(--radius-m) var(--radius-m) 0;
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 35px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #fff;
  background: var(--background-dark2);
  transition: inherit;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .med-calendar__city {
    height: 48px;
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .med-calendar__city {
    height: 32px;
    font-size: 14px;
  }
}
.med-calendar--opened {
  position: relative;
  box-shadow: 0 4px 5px 0 rgba(56, 123, 119, 0.25);
}
.med-calendar__item:hover .med-calendar__date {
  scale: 1.05;
}
.med-calendar__item:hover .med-calendar__city {
  box-shadow: 0 0px 25px 0 rgba(255, 255, 255, 0.51);
}

.med-table {
  position: relative;
  padding: 126px 0 172px;
  background-color: var(--background-light2);
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .med-table {
    padding: 60px 0;
  }
}
@media screen and (max-width: 767px) {
  .med-table {
    padding: 32px 0;
  }
}
.med-table--visible {
  display: block;
}
.med-table__title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 30px;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
  color: #1b506a;
  margin: 0 0 60px;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .med-table__title {
    font-size: 22px;
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 767px) {
  .med-table__title {
    font-size: 14px;
    margin-bottom: 12px;
  }
}
.med-table__grid {
  border: 2px solid #017e8a;
  border-radius: 10px;
  max-width: 1107px;
  width: 100%;
  box-shadow: inset 0 0 4px 0 rgba(0, 0, 0, 0.25);
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  margin: 0 auto;
  background: #ddeeee;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .med-table__grid {
    max-width: 100%;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .med-table__grid {
    max-width: 100%;
    font-size: 10px;
  }
}
.med-table__grid th:nth-child(n+3):nth-child(-n+8),
.med-table__grid td:nth-child(n+3):nth-child(-n+8) {
  width: 70px;
  min-width: 70px;
  max-width: 70px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .med-table__grid th:nth-child(n+3):nth-child(-n+8),
  .med-table__grid td:nth-child(n+3):nth-child(-n+8) {
    width: 50px;
    min-width: 50px;
    max-width: 50px;
  }
}
@media screen and (max-width: 767px) {
  .med-table__grid th:nth-child(n+3):nth-child(-n+8),
  .med-table__grid td:nth-child(n+3):nth-child(-n+8) {
    width: 24px;
    min-width: 24px;
    max-width: 24px;
  }
}
.med-table__head {
  background: #08919a;
  height: 69px;
}
.med-table__head th {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  padding: 0 12px;
  height: 69px;
  border-bottom: 1px solid #2a528a;
  border-right: 1px solid #2a528a;
  border-top: 1px solid #2a528a;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .med-table__head th {
    font-size: 14px;
    height: 40px;
    padding: 0 6px;
  }
}
@media screen and (max-width: 767px) {
  .med-table__head th {
    font-size: 10px;
    height: 24px;
    padding: 0 2px;
  }
}
.med-table__head th:first-child {
  font-size: 35px;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .med-table__head th:first-child {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .med-table__head th:first-child {
    font-size: 12px;
  }
}
.med-table__head th:nth-child(n+3):nth-child(-n+8) {
  background: #32bbc4;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 40px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #fefefc;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .med-table__head th:nth-child(n+3):nth-child(-n+8) {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .med-table__head th:nth-child(n+3):nth-child(-n+8) {
    font-size: 12px;
  }
}
.med-table__head th:last-child {
  border-right: none;
}
.med-table__body {
  background: #ddeeee;
}
.med-table__body .med-table__row {
  border-bottom: 1px solid #2a528a;
  min-height: 48px;
  height: 48px;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .med-table__body .med-table__row {
    min-height: 32px;
    height: 32px;
  }
}
@media screen and (max-width: 767px) {
  .med-table__body .med-table__row {
    min-height: 18px;
    height: 18px;
  }
}
.med-table__body .med-table__row td {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 0 12px;
  border-right: 1px solid #2a528a;
  border-top: 1px solid #2a528a;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .med-table__body .med-table__row td {
    font-size: 12px;
    padding: 0 6px;
  }
}
@media screen and (max-width: 767px) {
  .med-table__body .med-table__row td {
    font-size: 8px;
    padding: 0 2px;
  }
}
.med-table__body .med-table__row td:first-child {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 30px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #2a528a;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .med-table__body .med-table__row td:first-child {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .med-table__body .med-table__row td:first-child {
    font-size: 10px;
  }
}
.med-table__body .med-table__row td:last-child {
  border-right: none;
}
.med-table__body .med-table__row:last-child {
  border-bottom: none;
}
.med-table__close {
  position: absolute;
  right: 40px;
  top: 40px;
  border: none;
  background: none;
  outline: none;
  box-shadow: none;
  border-radius: 0px;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  font-size: 50px;
  font-weight: bold;
  background: none;
  color: #1b506a;
  transition: all ease 0.2s;
}
.med-table__close:hover {
  transform: scale(1.2);
}
@media screen and (max-width: 767px) {
  .med-table__close {
    right: 10px;
    top: 10px;
    width: 30px;
    height: 30px;
    font-size: 30px;
  }
}
@media screen and (max-width: 480px) {
  .med-table__close {
    right: 10px;
    top: 10px;
    width: 25px;
    height: 25px;
    font-size: 25px;
  }
}

.sortable {
  transition: all ease 0.5s;
}
.sortable th {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.sortable th::after {
  content: "";
  display: inline-block;
  margin-left: 0;
  font-size: 1rem;
  vertical-align: middle;
  width: 0;
}
.sortable th:hover {
  transition: all ease 0.5s;
}
.sortable th:hover::after {
  content: " ▽";
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .sortable th:hover::after {
    font-size: 0.5rem;
  }
}
.sortable th[aria-sort=ascending]::after {
  content: " ▲";
  font-size: 1rem;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .sortable th[aria-sort=ascending]::after {
    font-size: 0.5rem;
  }
}
.sortable th[aria-sort=descending]::after {
  content: " ▼";
  font-size: 1rem;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .sortable th[aria-sort=descending]::after {
    font-size: 0.5rem;
  }
}

.med-finalists {
  padding: 122px 0 144px;
  background-color: #1D3241;
  background-image: url("./img/particles.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .med-finalists {
    padding: 60px 0 80px;
  }
}
@media screen and (max-width: 767px) {
  .med-finalists {
    padding: 32px 0 40px;
  }
}
.med-finalists__title {
  margin-bottom: 96px;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .med-finalists__title {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .med-finalists__title {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 767px) {
  .med-finalists__title {
    margin-bottom: 16px;
  }
}
.med-finalists__list {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px 88px;
  max-width: 952px;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .med-finalists__list {
    gap: 18px 32px;
    max-width: 70%;
  }
}
@media screen and (max-width: 767px) {
  .med-finalists__list {
    gap: 8px 8px;
    max-width: 80%;
    flex-direction: column;
  }
}
.med-finalists__list-item {
  width: 432px;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .med-finalists__list-item {
    width: 100%;
    min-width: 0;
  }
}
@media screen and (max-width: 767px) {
  .med-finalists__list-item {
    width: 100%;
    min-width: 0;
  }
}/*# sourceMappingURL=style.css.map */