@font-face {
  font-family: "TCCC-UnityHeadline";
  src: url("./font/TCCC-UnityHeadline-Black.eot");
  src: url("./font/TCCC-UnityHeadline-Black.eot?#iefix") format("embedded-opentype"), url("./font/TCCC-UnityHeadline-Black.woff2") format("woff2"), url("./font/TCCC-UnityHeadline-Black.woff") format("woff"), url("./font/TCCC-UnityHeadline-Black.ttf") format("truetype"), url("./font/TCCC-UnityHeadline-Black.svg#TCCC-UnityHeadline-Black") format("svg");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TCCC-UnityHeadline";
  src: url("./font/TCCC-UnityHeadline-Bold.eot");
  src: url("./font/TCCC-UnityHeadline-Bold.eot?#iefix") format("embedded-opentype"), url("./font/TCCC-UnityHeadline-Bold.woff2") format("woff2"), url("./font/TCCC-UnityHeadline-Bold.woff") format("woff"), url("./font/TCCC-UnityHeadline-Bold.ttf") format("truetype"), url("./font/TCCC-UnityHeadline-Bold.svg#TCCC-UnityHeadline-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TCCC-UnityHeadline";
  src: url("./font/TCCC-UnityHeadline-Medium.eot");
  src: url("./font/TCCC-UnityHeadline-Medium.eot?#iefix") format("embedded-opentype"), url("./font/TCCC-UnityHeadline-Medium.woff2") format("woff2"), url("./font/TCCC-UnityHeadline-Medium.woff") format("woff"), url("./font/TCCC-UnityHeadline-Medium.ttf") format("truetype"), url("./font/TCCC-UnityHeadline-Medium.svg#TCCC-UnityHeadline-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TCCC-UnityText";
  src: url("./font/TCCC-UnityText-Bold.eot");
  src: url("./font/TCCC-UnityText-Bold.eot?#iefix") format("embedded-opentype"), url("./font/TCCC-UnityText-Bold.woff2") format("woff2"), url("./font/TCCC-UnityText-Bold.woff") format("woff"), url("./font/TCCC-UnityText-Bold.ttf") format("truetype"), url("./font/TCCC-UnityText-Bold.svg#TCCC-UnityText-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TCCC-UnityHeadline";
  src: url("./font/TCCC-UnityHeadline-Regular.eot");
  src: url("./font/TCCC-UnityHeadline-Regular.eot?#iefix") format("embedded-opentype"), url("./font/TCCC-UnityHeadline-Regular.woff2") format("woff2"), url("./font/TCCC-UnityHeadline-Regular.woff") format("woff"), url("./font/TCCC-UnityHeadline-Regular.ttf") format("truetype"), url("./font/TCCC-UnityHeadline-Regular.svg#TCCC-UnityHeadline-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 99px;
}

.mainWrapper {
  padding-top: 99px;
}

body {
  font-family: "TCCC-UnityHeadline";
  color: #2B2A2A;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.mainWrapper {
  flex: 1;
  display: flex;
  align-items: stretch;
}

main {
  width: 100%;
}

h1, h2, h3, h4, h5, h6, p, li, a {
  margin: 0;
}

h1 {
  font-size: clamp(25px, 6vw, 44px);
  font-style: normal;
  line-height: 140%;
}

h2 {
  font-size: clamp(25px, 6vw, 32px);
  text-align: center;
}

h3 {
  font-size: clamp(20px, 3vw, 28px);
}

h4 {
  font-size: clamp(18px, 3vw, 22px);
}

p, li {
  font-size: 16px;
  line-height: 175%;
}

section {
  padding: 0;
}

.contentWidth {
  max-width: 1430px;
  margin: auto;
  padding: 50px 20px;
}
.contentWidth.w-100 {
  max-width: inherit;
  width: 100%;
}

header {
  width: 100%;
  position: fixed;
  background-color: #FFF;
  z-index: 888;
  box-shadow: 0px 4px 200px 0px rgba(0, 0, 0, 0.05);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  max-width: 1430px;
  margin: auto;
}

.logo {
  z-index: 10;
}
.logo img {
  display: block;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  outline: none;
  cursor: pointer;
  margin-top: 5px;
  z-index: 10;
}
.burger span {
  display: block;
  width: 30px;
  height: 3px;
  margin-bottom: 5px;
  position: relative;
  z-index: 1;
  transform-origin: 0 0;
  transition: 0.4s;
  background-color: #2B2A2A;
}
.burger.is-active span:nth-child(1) {
  transform: translate(4.5px, 0px) rotate(40deg);
  background-color: #2B2A2A;
}
.burger.is-active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-15px);
}
.burger.is-active span:nth-child(3) {
  transform: translate(3px, 3.5px) rotate(-40deg);
  background-color: #2B2A2A;
}

.menu {
  display: flex;
  gap: clamp(15px, 5vw, 100px);
  margin: 0;
  padding: 0;
}
.menu li {
  list-style-type: none;
}
.menu li a {
  color: #2B2A2A;
  text-decoration: none;
  font-size: clamp(16px, 4vw, 18px);
  transition: color 0.25s;
  font-weight: 400;
}
.menu li a:hover {
  color: #F40000;
}

.menu.active {
  z-index: 9;
  display: none;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: #F3F3F3;
  width: 100%;
  min-height: 100vh;
  top: 0;
  left: 0;
  padding: 150px 0;
  animation-name: animaceMenuA;
  animation-duration: 0.5s;
}
@keyframes animaceMenuA {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.formWrapper {
  max-width: 650px;
  margin: auto;
  padding: 0 20px;
}
.formWrapper label {
  font-size: 12px;
  text-align: center;
  color: #FFF;
  line-height: 2;
  display: block;
}
.formWrapper input, .formWrapper textarea {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  outline: none;
}
.formWrapper textarea {
  height: 110px;
}
.formWrapper input[type=submit] {
  width: inherit;
  background: transparent;
  border: none;
  margin: auto;
  display: table;
}

input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus {
  -webkit-text-fill-color: #F40000;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

footer {
  padding: 30px 20px;
  background-color: #F40000;
  color: #FFF;
  text-align: center;
}

footer.powerade {
  background-color:#5F8BC8;
}

.copy {
  max-width: 1430px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 30px 40px;
}
.copy a, .copy p {
  font-size: 16px;
}
.copy a {
  display: inline;
  width: -moz-max-content;
  width: max-content;
  text-decoration: none;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  transition: text-decoration-color 0.25s;
  color: #FFF;
  text-decoration-color: rgba(255, 255, 255, 0);
}
.copy a:hover {
  text-decoration-color: #FFF;
}
.copy .socials {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 20vw, 70px);
}
.copy .socials a path {
  transition: fill 0.25s;
}
.copy .socials a:hover path {
  fill: #2B2A2A;
}

.textImg .img {
  display: flex;
  align-items: center;
  width: 95%;
  height: 100%;
}
.textImg .img img {
  width: 100%;
    -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.textImg .text {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 100px 20px;
}
.textImg .content {
  display: grid;
  align-items: center;
  gap: 0 clamp(30px, 3vw, 100px);
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
}
.textImg h2 {
  text-align: left;
}

.cover .sliderWrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cover .sliderWrapper.full {
  padding: 50px;
  height: 100%;
}

.bgImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.sliderWrapper {
  position: relative;
  overflow: hidden;
}

.actualityContainer {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.box {
  display: grid;
  align-items: center;
  justify-items: start;
  gap: 0 10px;
  grid-template-columns: auto 1fr;
  width: 100%;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.07);
  border-radius: 10px;
  overflow: hidden;
  align-items: stretch;
}
.box .text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
  padding: 50px;
}
.box .wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.box p {
  max-width: 600px;
}
.box .img img {
  display: block;
  width: 100%;
}

.formContainer {
  max-width: 500px;
  width: 100%;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

label {
  font-size: clamp(12px, 4vw, 16px);
  cursor: pointer;
}

input[type=text], input[type=email], input[type=tel], input[type=date], input[type=time], input[type=number], textarea {
  width: 100%;
  padding: 10px 10px;
  border-radius: 5px;
  border: none;
  color: #2B2A2A;
  font-size: clamp(16px, 1vw, 18px);
}
input[type=text]:focus, input[type=email]:focus, input[type=tel]:focus, input[type=date]:focus, input[type=time]:focus, input[type=number]:focus, textarea:focus {
  outline-color: #2B2A2A;
}

textarea {
  resize: none;
}

.checkbox-container {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.inputContainer {
  width: 100%;
  display: flex;
  gap: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 4fr));
}

.inputWrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input[type=radio], input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  font-family: inherit;
  width: 21px;
  height: 21px;
  border-radius: 5px;
  display: grid;
  place-content: center;
  cursor: pointer;
  margin-top: 0;
  padding: 0;
}

input[type=radio]::before, input[type=checkbox]::before {
  cursor: pointer;
  font-size: 0;
}

input[type=radio]:checked::before, input[type=checkbox]:checked::before {
  display: grid;
  place-content: center;
  width: 21px;
  height: 21px;
  border-radius: 5px;
  content: url(../images/main/cross.svg);
}

.checkboxWrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}
.checkboxWrapper label {
  text-align: center;
}

.pagination {
  display: flex;
  justify-content: center;
  list-style-type: none;
  align-items: baseline;
  padding: 0;
  margin: 0;
  gap: clamp(10px, 3vw, 30px);
}
.pagination a, .pagination .current {
  display: inline-block;
  padding: 5px 20px;
  text-decoration: none;
  color: #333;
  border-radius: 5px;
  transition: background-color 0.25s, color 0.25s;
}
.pagination a:hover {
  background-color: #F3F3F3;
}
.pagination .current {
  background-color: #F40000;
  color: #FFF;
  border-color: #F40000;
}

.howToWin {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px 100px;
}
.howToWin .wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: clamp(20px, 3vw, 30px);
  max-width: 305px;
}
.howToWin .wrapper img {
  height: 50px;
}

.registration {
  display: grid;
  align-items: center;
  justify-content: center;
  gap: clamp(30px, 3vw, 100px);
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
}
.registration img {
  max-width: 100%;
  display: block;
  margin: auto;
}
.registration .informationLink {
  display: none;
}

.winners {
  display: grid;
  justify-items: center;
  gap: 40px 30px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  width: 100%;
  max-width: 1150px;
}
.winners .wrapper {
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.winners .wrapper p {
  line-height: 1.5;
}

.winnings {
  display: grid;
  align-items: center;
  gap: 50px;
  grid-template-columns: repeat(3, 1fr);
}
.winnings .wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 0 30px;
}
.winnings .wrapper:nth-child(2) {
  position: relative;
}
.winnings .wrapper:nth-child(2)::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -25px;
  width: calc(100% + 50px);
  height: calc(100% + 100px);
  border-left: 1px solid #FFF;
  border-right: 1px solid #FFF;
}
.winnings .wrapper img {
  max-width: 100%;
}

.textPage a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  transition: text-decoration-color 0.25s;
  color: #2B2A2A;
}
.textPage a:hover {
  text-decoration-color: rgba(255, 255, 255, 0);
}
.textPage h1 {
  font-size: clamp(25px, 6vw, 32px);
  text-align: center;
  width: 100%;
  margin-bottom: 30px;
}
.textPage h1, .textPage h2, .textPage h3, .textPage h4, .textPage h5, .textPage h6 {
  margin-top: 20px;
}
.textPage ul {
  margin: 0;
  padding-left: 20px;
}
.textPage .contentWidth {
  max-width: 1100px;
}

.link {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  transition: text-decoration-color 0.25s;
  color: #F40000;
  text-decoration-color: rgba(255, 255, 255, 0);
}
.link:hover {
  text-decoration-color: #F40000;
}
.link.light {
  color: #FFF;
  text-decoration-color: #FFF;
}

.pointer {
  cursor: pointer;
}

.button {
  display: table;
  padding: clamp(10px, 6vw, 15px) clamp(20px, 6vw, 30px);
  font-size: clamp(16px, 6vw, 18px);
  text-decoration: none !important;
  border: none;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.25s, color 0.25s;
  border: 2px solid transparent;
}
.button.primary {
  color: #FFF;
  background-color: #F40000;
  border-color: #F40000;
}
.button.primary:hover {
  background-color: #FFF;
  color: #F40000;
}
.button.primary.powerade {
  background-color:#5f8bc8;
  border-color:#5f8bc8;
}
.button.primary.powerade:hover {
  background-color: #FFF;
  color:#5f8bc8;
}
.button.big {
  font-size: clamp(20px, 2vw, 32px);
  padding: clamp(5px, 3vw, 25px) clamp(20px, 3vw, 50px);
  border-width: 5px;
}
.button.secondary {
  color: #2B2A2A;
  background-color: #2B2A2A;
  transition: background-color 0.25s;
}
.button.secondary:hover {
  background-color: #F3F3F3;
}
.button.dark {
  color: #FFF;
  background-color: #2B2A2A;
  border: 1px solid #FFF;
  transition: background-color 0.25s, color 0.25s;
}
.button.dark:hover {
  color: #2B2A2A;
  background-color: #FFF;
}

.font-p {
  font-family: "TCCC-UnityHeadline" !important;
}

.font-s {
  font-family: "TCCC-UnityHeadline" !important;
}

.f-26 {
  font-size: clamp(18px, 3vw, 26px);
}

.f-22 {
  font-size: 22px;
}

.f-18 {
  font-size: clamp(16px, 3vw, 18px);
}

.f-14 {
  font-size: 14px;
}

.f-12 {
  font-size: 12px;
}

.fw-100 {
  font-weight: 100 !important;
}

.fw-200 {
  font-weight: 200 !important;
}

.fw-300 {
  font-weight: 300 !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-800 {
  font-weight: 800 !important;
}

.fw-900 {
  font-weight: 900 !important;
}

.lh-0 {
  line-height: 0;
}

.tt-up {
  text-transform: uppercase !important;
}

.tt-in {
  text-transform: initial !important;
}

.tt-low {
  text-transform: lowercase !important;
}

.tt-cap {
  text-transform: capitalize !important;
}

.ta-l {
  text-align: left !important;
}

.ta-c {
  text-align: center !important;
}

.ta-r {
  text-align: right !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.w-340 {
  max-width: clamp(200px, 20vw, 340px);
  width: 100%;
}

.mw-600 {
  max-width: 600px;
}

.mw-900 {
  max-width: 900px;
}

.mw-510 {
  max-width: 510px;
}
.mw-510 p {
  text-shadow: 1px 1px 2px #FFF;
}

.mw-230 {
  max-width: 230px;
}

.mh-500 {
  min-height: clamp(250px, 40vw, 500px);
}

.h-100 {
  height: 100vh;
}

.ch-100 {
  height: 100%;
}

.anchor {
  position: relative !important;
}

.absolute {
  position: absolute !important;
}

.hiden {
  overflow: hidden;
}

.d-flex {
  display: flex;
}

.wrap {
  flex-wrap: wrap;
}

.d-column {
  flex-direction: column;
}

.j-start {
  justify-content: flex-start;
}

.j-between {
  justify-content: space-between !important;
}

.j-around {
  justify-content: space-around;
}

.j-center {
  justify-content: center !important;
}

.a-start {
  align-items: flex-start;
}

.a-center {
  align-items: center;
}

.flex-1 {
  flex: 1;
}

.gap-200 {
  gap: 70px clamp(50px, 20vw, 200px);
}

.gap-50 {
  gap: 50px !important;
}

.gap-40 {
  gap: 40px !important;
}

.gap-30 {
  gap: 30px !important;
}

.gap-20 {
  gap: 20px !important;
}

.gap-10 {
  gap: 10px !important;
}

.wrap {
  flex-wrap: wrap;
}

.flex-column-start {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.flex-column-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.flex-start {
  display: flex;
  align-items: flex-start;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.d-grid {
  display: grid;
}

.gtp-1 {
  grid-template-columns: 1fr;
}

.gtp-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.gtp-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.gtp-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.gtp-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pl-0 {
  padding-left: 0;
}

.pr-0 {
  padding-right: 0;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.py-40 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ml-0 {
  margin-left: 0;
}

.mr-0 {
  margin-right: 0;
}

.ml-a {
  margin-left: auto;
}

.mr-a {
  margin-right: auto;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.mx-a {
  margin-left: auto !important;
  margin-right: auto !important;
}

.c-primary {
  color: #F40000!important;
}

.c-primary.powerade{
  color:#5f8bc8!important;
}

.c-secondary {
  color: #2B2A2A !important;
}

.c-ternary {
  color: #F3F3F3 !important;
}

.c-light {
  color: #FFF !important;
}

.c-dark {
  color: #2B2A2A!important;
}

.bg-primary {
  background: #F40000!important;
}

.bg-primary.powerade{
  background:#5f8bc8!important;
}

.bg-secondary {
  background: #2B2A2A !important;
}

.bg-ternary {
  background: #F3F3F3 !important;
}

.bg-light {
  background: #FFF !important;
}

.bg-dark {
  background: #2B2A2A !important;
}

.bg-gray {
  background: #F3F3F3 !important;
}

.bg-gradient {
  background: red !important;
}

.bg-opacity {
  background-color: rgba(43, 42, 42, 0.48);
}

.slick-track {
  display: flex !important;
}

.slick-slide {
  height: inherit !important;
}

.slick-arrow.slick-prev {
  z-index: 1;
  left: 100px;
}
.slick-arrow.slick-next {
  right: 100px;
}

.slick-dots {
  bottom: 0;
  display: flex;
  justify-content: center;
  gap: 5px;
  padding: 20px;
}
.slick-dots li {
  margin: 0;
}

.slick-dots li button:before {
  font-size: 15px;
}

.slick-dots li.slick-active button:before {
  opacity: 1;
  color: #FFF;
}

.slick-dots li button:before {
  color: #FFF;
}

.slick-arrow.slick-prev:before {
  content: url(../images/main/slickArrowL.svg);
}
.slick-arrow.slick-next:before {
  content: url(../images/main/slickArrowR.svg);
}

.branchMap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.branchMap img {
  width: 60px;
  display: block;
  transition: 0.4s;
}

.branchMap a:hover img {
  transform: scale(1.05);
}


.a-center {
  align-items: center !important;
}

/* MEDIA */
@media (max-width: 1200px) {
  .box {
    grid-template-columns: auto;
    max-width: 520px;
    margin: auto;
  }
  .box .text {
    padding: 30px;
    text-align: center;
  }
  .afterNone {
    display: none !important;
  }
  .pAfterNone {
    padding: 0 !important;
  }
  .textImg .text.a-start {
    align-items: center;
  }
  .box .wrapper {
    flex-direction: column;
    align-items: center;
  }
  .checkboxWrapper label {
    font-size: 13px;
  }
  .textImg .img {
    display: none;
  }
  .textImg .content {
    grid-template-columns: auto;
  }
  .textImg .content .text {
    text-align: center;
    padding: 70px 20px;
  }
  .textImg .content h2 {
    text-align: center;
  }
  .textImg .content {
    justify-items: center;
  }
  .cover .sliderWrapper.full {
    padding: 50px 20px;
  }
  .slick-prev, .slick-next {
    display: none !important;
  }
  .winnings .wrapper {
    padding: 0 20px;
  }
  .copy {
    flex-direction: column;
    align-items: center;
  }
  .copy p:nth-child(3) {
    order: 4;
    margin-top: 10px;
  }
}
@media (max-width: 900px) {
  .burger {
    display: flex;
  }
  .menu {
    display: none;
  }
  .menu.active {
    display: flex;
  }
  .logo img {
    width: 130px;
  }
  html {
    scroll-padding-top: 80px;
  }
  .mainWrapper {
    padding-top: 80px;
  }
  .box .text {
    padding: 20px;
  }
  .registration {
    grid-template-columns: 1fr;
  }
  .registration .informationLink {
    display: block;
  }
  .winnings {
    grid-template-columns: repeat(1, 1fr);
  }
  .winnings .wrapper {
    padding: 20px 30px;
  }
  .winnings .wrapper:nth-child(2)::before {
    content: "";
    position: absolute;
    top: -25px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 50px);
    border-left: none;
    border-right: none;
    border-top: 1px solid #FFF;
    border-bottom: 1px solid #FFF;
  }
}/*# sourceMappingURL=style.css.map */