html {
  scroll-behavior: smooth;
}

body {
  font-family: "proxima-nova", sans-serif;
  color: #2B2B2B;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  width: 100%;
}

.mainWrapper {
  flex: 1;
  display: flex;
  align-items: flex-start;
  align-items: stretch;
}

.headlineWrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.headlineWrapper img {
  max-width: 100%;
}

.headlineImg {
  max-width: clamp(50%, 6vw, 100%);
}

h1, h2, h3, h4, h5, h6, p, li, a {
  margin: 0;
  line-height: 1.2;
}

h1 {
  font-size: clamp(30px, 6vw, 48px);
}

h2 {
  font-size: clamp(25px, 6vw, 32px);
}

h3 {
  font-size: clamp(17px, 3vw, 22px);
}

p, li {
  font-size: clamp(16px, 3vw, 18px);
}

.contentWidth {
  max-width: 1430px;
  margin: auto;
  padding: 100px 20px;
}
.contentWidth.w-100 {
  max-width: inherit;
  width: 100%;
}

header {
  width: 100%;
  padding: 0;
  position: relative;
  padding: 20px;
  box-shadow: 0px 4px 200px 0px rgba(0, 0, 0, 0.05);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1430px;
  margin: auto;
}
nav.temporary {
  justify-content: center;
}

.logo {
  z-index: 10;
}
.logo img {
  display: block;
  width: clamp(85px, 20vw, 147px);
}

.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: #2B2B2B;
}
.burger.is-active span:nth-child(1) {
  transform: translate(4.5px, 0px) rotate(40deg);
  background-color: #2B2B2B;
}
.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: #2B2B2B;
}

.menu {
  display: flex;
  gap: clamp(15px, 4vw, 50px);
  margin: 0;
  padding: 0;
}
.menu li {
  list-style-type: none;
  text-transform: uppercase;
}
.menu li:first-child {
  margin-left: 0;
}
.menu li a {
  color: #2B2B2B;
  text-decoration: none;
  font-size: clamp(16px, 4vw, 18px);
  transition: color 0.25s;
  font-weight: 600;
}
.menu li a:hover {
  color: #FF6D6D;
}

.menu.active {
  z-index: 9;
  display: none;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: #FFF9DB;
  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;
  }
}

.textImg img {
  max-width: 100%;
  display: block;
}
.textImg .imgWrapper {
  display: grid;
  justify-content: center;
  gap: 20px;
}
.textImg .imgWrapper img {
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  width: 100%;
  height: 100%;
}
.textImg .imgWrapper a:first-child {
  width: 420px;
  height: 100%;
}
.textImg .imgWrapper a:nth-child(n+2) {
  width: 175px;
  height: 130px;
}
.textImg .imgWrapper a:first-child {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 1;
  grid-row-end: 4;
}
.textImg .imgWrapper a:nth-child(2) {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 2;
}
.textImg .imgWrapper a:nth-child(3) {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 2;
  grid-row-end: 3;
}
.textImg .imgWrapper a:nth-child(4) {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 3;
  grid-row-end: 4;
}
.textImg .text {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.textImg a:not(.button) {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  transition: text-decoration-color 0.25s;
  color: #FFF9DB;
}
.textImg a:not(.button):hover {
  text-decoration-color: rgba(255, 255, 255, 0);
}
.textImg .content {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.timmerBox, .dateBox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  background-color: #ffffff;
  max-width: 700px;
  width: 100%;
  border-radius: 10px;
  color: #2B2B2B;
  padding: 25px 50px;
  box-shadow: 0px 4px 90px 0px rgba(0, 0, 0, 0.25);
  bottom: -50px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 1;
  flex-wrap: wrap;
}
.timmerBox .wrapper, .dateBox .wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}
.timmerBox .lightBox, .dateBox .lightBox {
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: #FFF9DB;
  border-radius: 5px;
  padding: 10px;
}
.timmerBox .timeContainer, .dateBox .timeContainer {
  display: flex;
  gap: 20px;
}

.dateBox {
  width: auto;
  transform: none;
}
.dateBox .timeContainer {
  gap: 10px;
}

.winnersTable {
  max-width: 800px;
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.winnersTable img.miniature {
  width: 40px;
  height: 40px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.winnersTable.withPrimaryBg .line:nth-child(odd) .container {
  background-color: rgba(217, 31, 58, 0.33);
}
.winnersTable .line {
  display: flex;
  align-items: center;
  gap: 20px;
}
.winnersTable .line:nth-child(odd) .container {
  background-color: #FFEB7E;
}
.winnersTable .iconWrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}
.winnersTable .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  gap: 10px;
  align-items: center;
  padding: 10px 30px;
  border-radius: 10px;
}
.winnersTable p {
  width: -moz-max-content;
  width: max-content;
}

.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 4fr));
  gap: 30px;
  width: 100%;
}
.process .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.process p {
  max-width: 210px;
  margin: auto;
}

.partnersGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 4fr));
  gap: 20px;
  justify-items: center;
  width: 100%;
}
.partnersGrid img {
  max-width: clamp(70%, 6vw, 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], textarea {
  width: 100%;
  padding: 10px 10px;
  border-radius: 5px;
  border: none;
  font-size: clamp(16px, 1vw, 18px);
}
input[type=text]:focus, input[type=email]:focus, input[type=tel]:focus, textarea:focus {
  outline-color: #FFE559;
}

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: 5px;
}

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

.ec-v-form-input label[for=ec_chck_ERZmYXpHH-] {
  display: none !important;
}

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/icons/inputCross.svg);
}

.checkboxWrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}
.checkboxWrapper label {
  text-align: center;
}

.ec-v-form-input input[type=checkbox] + label:after {
  border-color: #2B2B2B !important;
}

.ec-v-forms-form-control, input[type=text].ec-v-forms-form-control, input[type=email].ec-v-forms-form-control {
  box-shadow: none !important;
  border: none !important;
  color: #2B2B2B !important;
}

.ec-v-form-error {
  color: #FF6D6D !important;
  background-color: #ffffff !important;
}

.ec-v-form-input input[type=checkbox] + label:before {
  background-color: #ffffff !important;
  border: none !important;
}

.ec-v-form-step.ec-v-form-step-visible {
  height: unset !important;
}

#ec_form_2-2bb287d15897fe2f9d89c882af9a3a8b .ec-v-form-holder h2 span {
  font-size: clamp(25px, 6vw, 32px) !important;
  color: #ffffff !important;
}

.carousel__button {
  color: #FF6D6D;
  background-color: transparent;
  border: 2px solid #FF6D6D;
  transition: background-color 0.25s, color 0.25s;
  border-radius: 5px;
}
.carousel__button path {
  stroke: #FF6D6D !important;
  transition: stroke 0.25s;
}

.carousel__button svg {
  filter: none;
}

.fancybox__container.is-closing .fancybox__image {
  display: none !important;
}

.fancybox {
  display: none;
}

.fancybox__thumbs {
  display: none;
}

.carousel__button:hover {
  background-color: #FF6D6D;
  color: #ffffff;
}
.carousel__button:hover path {
  stroke: #ffffff !important;
}

.yourWin {
  width: 160px;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

.registrationForm input[type=email], .registrationForm input[type=checkbox] {
  background-color: #EDF1F2;
  border-color: #EDF1F2;
  outline: none !important;
}
.registrationForm form {
  align-items: flex-center;
  gap: 40px;
}

.popupContent {
  border-radius: 10px;
  max-width: 800px;
  height: auto;
  width: 100%;
  cursor: auto !important;
  padding: 100px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.popupContent > .carousel__button.is-close {
  top: 20px;
  right: 20px;
  border: none;
  width: 50px;
  height: 50px;
}
.popupContent > .carousel__button.is-close svg {
  width: 40px;
  height: 40px;
  stroke-width: 1px;
}
.popupContent h2 {
  max-width: 520px;
  text-align: center;
}

footer {
  box-shadow: 0px -4px 200px 0px rgba(0, 0, 0, 0.05);
}
footer.temporary {
  box-shadow: none;
}
footer.temporary .contentWidth {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px clamp(40px, 10vw, 150px);
}
footer.temporary .wrapper {
  justify-content: center !important;
  gap: 0 !important;
}
footer.temporary .wrapper p, footer.temporary .wrapper a {
  line-height: 1.5;
  display: block;
}
footer.temporary .wrapper:nth-child(2) {
  max-width: 100%;
  width: auto;
  margin: 0;
}
footer .wrapper {
  display: flex;
  gap: 20px;
  grid-row-start: 1;
  grid-row-end: 4;
}
footer .wrapper:nth-child(1) {
  grid-row-start: 1;
  grid-row-end: 2;
}
footer .wrapper:nth-child(2) {
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
  justify-content: space-between;
}
footer .wrapper:nth-child(3) {
  flex-direction: column;
}
footer .wrapper:nth-child(3) input[type=email], footer .wrapper:nth-child(3) input[type=checkbox] {
  background-color: #EDF1F2;
  border-color: #EDF1F2;
}
footer .wrapper:nth-child(3) form {
  align-items: flex-start;
  gap: 20px;
}
footer .wrapper:nth-child(4) {
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 2;
  grid-row-end: 4;
}
footer .textWrapper {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
footer p, footer a {
  font-size: 16px;
  color: #2B2B2B;
}
footer a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  transition: text-decoration-color 0.25s;
}
footer a:hover {
  text-decoration-color: rgba(255, 255, 255, 0);
}
footer .contentWidth {
  display: grid;
  gap: 50px;
  grid-template-columns: auto 1fr auto;
  align-items: start;
}

.ec-v-form-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ec-v-form-column label {
  text-align: left;
  font-weight: 400;
}
.ec-v-form-column .ec-v-form-submit button {
  display: table;
  padding: clamp(5px, 6vw, 10px) clamp(20px, 6vw, 40px);
  font-weight: 600;
  font-size: clamp(16px, 6vw, 18px);
  text-decoration: none !important;
  border: none;
  text-transform: uppercase;
  border-radius: 13px;
  cursor: pointer;
  margin: auto;
  color: #2B2B2B;
  background-color: #FFE559;
  transition: background-color 0.25s;
}
.ec-v-form-column .ec-v-form-submit button:hover {
  background-color: #FFF9DB !important;
}

.ec-v-form-holder {
  background: transparent !important;
}

.ec-v-form-input label {
  font-weight: 400 !important;
}

#ec_form_2-2bb287d15897fe2f9d89c882af9a3a8b .ec-v-form-holder > form {
  min-height: auto !important;
}

.ecoForm form {
  color: #ffffff !important;
}
.ecoForm form .ec-v-form-input label {
  color: #ffffff !important;
  font-family: "proxima-nova", sans-serif !important;
  font-size: 16px;
}
.ecoForm form .ec-forms-chck-lbl-text {
  width: 100%;
}
.ecoForm form div {
  padding: 0 !important;
}
.ecoForm form .ec-v-form-input {
  cursor: pointer;
  width: 100%;
}
.ecoForm form .ec-v-form-input:nth-child(1) {
  display: flex;
  align-items: center;
}
.ecoForm form .ec-v-form-btntype-submit, .ecoForm form .ec_chck_MAC_qu9SQk {
  width: -moz-max-content;
  width: max-content;
  margin: auto;
}
.ecoForm form button {
  display: table;
  padding: clamp(5px, 6vw, 10px) clamp(20px, 6vw, 40px);
  font-weight: 600;
  font-size: clamp(16px, 6vw, 18px);
  text-decoration: none !important;
  border: none;
  text-transform: uppercase;
  border-radius: 13px;
  cursor: pointer;
  margin: auto;
  color: #2B2B2B;
  background-color: #FFE559;
  transition: background-color 0.25s;
  font-family: "proxima-nova", sans-serif !important;
}
.ecoForm form button:hover {
  background-color: #FFF9DB;
}
.ecoForm .ec-v-form-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 360px;
  background-color: transparent;
  height: auto;
  align-items: flex-start;
  font-family: "proxima-nova", sans-serif !important;
}
.ecoForm .ec-v-form-error {
  padding: 5px 10px !important;
  font-family: "proxima-nova", sans-serif !important;
  text-align: center;
}

.ec-v-form-step.ec-v-form-step-visible {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: center !important;
}
.ec-v-form-step.ec-v-form-step-visible h4 {
  font-weight: 400;
}

.ec-v-form-input input[type=checkbox]:checked + label:before {
  border: #ffffff !important;
  background: #ffffff !important;
}

.ec-v-form-holder .ec-v-form-input p {
  margin: auto;
}

.ec_chck_MAryq3WOZk {
  display: none !important;
}

.footerMenu {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 10px 25px;
  padding: 0;
  margin: 0;
}
.footerMenu li {
  list-style: none;
}
.footerMenu a {
  color: #2B2B2B;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.25s;
}
.footerMenu a:hover {
  color: #FF6D6D;
}

.copy {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1300px;
  margin: auto;
  width: 100%;
}
.copy p {
  font-size: clamp(12px, 4vw, 16px);
  text-align: center;
  color: #ffffff;
}
.copy .socials {
  display: flex;
  align-items: center;
  gap: 20px;
}
.copy path {
  transition: fill 0.25s;
}
.copy a {
  display: block;
  text-decoration: none;
  align-items: center;
}
.copy a:hover path {
  fill: #FFE559;
}

.contactContainer {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: clamp(20px, 5vw, 100px);
  flex-wrap: wrap;
}
.contactContainer .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(10px, 5vw, 20px);
}
.contactContainer .wrapper img {
  max-width: clamp(10%, 10vw, 100%);
}
.contactContainer a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  transition: text-decoration-color 0.25s;
  color: #2B2B2B;
  font-weight: 800;
  font-size: clamp(16px, 3vw, 18px);
}
.contactContainer a:hover {
  text-decoration-color: rgba(255, 255, 255, 0);
}

.emailWrapper {
  max-width: clamp(30%, 5vw, 100%);
}
.emailWrapper .circle {
  position: absolute;
  right: -20px;
  top: -10px;
  animation: zoomInOut 2s infinite alternate ease-in-out;
  -webkit-animation: zoomInOut 2s infinite alternate ease-in-out; /* Safari and Chrome */
  -moz-animation: zoomInOut 2s infinite alternate ease-in-out; /* Firefox */
  -o-animation: zoomInOut 2s infinite alternate ease-in-out; /* Opera */
}
.emailWrapper .envelope {
  max-width: 100%;
}

@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
.boxContainer {
  display: grid;
  justify-items: center;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  padding: 20px;
  width: 100%;
  justify-content: center;
}
.boxContainer .img {
  position: relative;
  width: 100%;
  height: 100%;
}
.boxContainer .img img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: opacity 0.3s ease;
}
.boxContainer .box {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #D65252;
  transition: transform 0.3s ease;
  height: 430px;
  width: 320px;
  box-sizing: border-box;
}
.boxContainer .box:hover .img img {
  opacity: 0;
}
.boxContainer .box:hover .content {
  opacity: 1;
  z-index: 1;
}
.boxContainer .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  padding: 40px;
}
.boxContainer .content h3 {
  font-size: clamp(20px, 3vw, 26px);
}
.boxContainer.logos .box {
  background-color: #ffffff;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: background-color 0.25s;
}
.boxContainer.logos .box img {
  filter: grayscale(1);
  transition: filter 0.25s;
  position: relative;
  z-index: 2;
  max-width: 100%;
}
.boxContainer.logos .box .button {
  position: absolute;
  z-index: -1;
  opacity: 0;
  transition: position 0.25s, z-index 0.25s, opacity 0.25s;
}
.boxContainer.logos .box:hover {
  background: #D65252;
  gap: 40px;
}
.boxContainer.logos .box:hover img {
  filter: grayscale(0);
}
.boxContainer.logos .box:hover .button {
  position: inherit;
  z-index: 1;
  opacity: 1;
}

button.show {
  background-color: transparent;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ffffff;
  border-radius: 5px;
  transition: background-color 0.25s;
}
button.show svg {
  transition: transform 0.25s;
}
button.show path {
  transition: stroke 0.25s;
}
button.show.active svg {
  transform: rotate(180deg);
}
button.show:hover {
  background-color: #ffffff;
}
button.show:hover path {
  stroke: #FF6D6D;
}

.textPage a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  transition: text-decoration-color 0.25s;
  color: #2B2B2B;
}
.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;
}

.wave {
  overflow: hidden;
  margin-bottom: -4px;
}
.wave img {
  width: calc(100% + 40px);
  display: block;
  min-width: 1440px;
  margin-left: -20px;
  margin-bottom: -3px;
}

.link {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  transition: text-decoration-color 0.25s;
  color: #FFF9DB;
}
.link:hover {
  text-decoration-color: rgba(255, 255, 255, 0);
}

.button {
  display: table;
  padding: clamp(5px, 6vw, 10px) clamp(20px, 6vw, 40px);
  font-weight: 600;
  font-size: clamp(16px, 6vw, 18px);
  text-decoration: none !important;
  border: none;
  text-transform: uppercase;
  border-radius: 13px;
  cursor: pointer;
}
.button.primary {
  color: #ffffff;
  background-color: #FF6D6D;
  transition: background-color 0.25s;
}
.button.primary:hover {
  background-color: #F9BB4B;
}
.button.secondary {
  color: #2B2B2B;
  background-color: #FFE559;
  transition: background-color 0.25s;
}
.button.secondary:hover {
  background-color: #FFF9DB;
}
.button.transparent {
  color: #FF6D6D;
  background-color: transparent;
  border: 1px solid #FF6D6D;
  transition: background-color 0.25s, color 0.25s;
}
.button.transparent:hover {
  background-color: #FF6D6D;
  color: #ffffff;
}
.button.dark {
  color: #ffffff;
  background-color: #FFE559;
  border: 1px solid #ffffff;
  transition: background-color 0.25s, color 0.25s;
}
.button.dark:hover {
  color: #FFE559;
  background-color: #ffffff;
}
.button.large {
  border-radius: 20px;
  padding: clamp(16px, 6vw, 20px) clamp(20px, 6vw, 40px);
  font-size: clamp(16px, 6vw, 18px);
}

.font-p {
  font-family: "proxima-nova", sans-serif !important;
}

.font-s {
  font-family: "proxima-nova", sans-serif !important;
}

.f-22 {
  font-size: 22px;
}

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

.mw-100 {
  max-width: 100%;
}

.mw-850 {
  max-width: 850px;
}

.mw-750 {
  max-width: 750px;
}

.mw-600 {
  max-width: 600px;
}

.mw-500 {
  max-width: 500px;
}

.mw-510 {
  max-width: 510px;
}
.mw-510 p {
  text-shadow: 1px 1px 2px #ffffff;
}

.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-50 {
  gap: 50px;
}

.gap-40 {
  gap: 40px;
}

.gap-30 {
  gap: 30px;
}

.gap-20 {
  gap: 20px;
}

.gap-10 {
  gap: 10px;
}

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

.flex-column-center {
  display: flex;
  flex-direction: column;
  align-items: 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: #FF6D6D !important;
}

.c-secondary {
  color: #FFE559 !important;
}

.c-ternary {
  color: #FFF9DB !important;
}

.c-light {
  color: #ffffff !important;
}

.c-dark {
  color: #2B2B2B !important;
}

.bg-primary {
  background: #FF6D6D !important;
}

.bg-secondary {
  background: #FFE559 !important;
}

.bg-ternary {
  background: #FFF9DB !important;
}

.bg-light {
  background: #ffffff !important;
}

.bg-dark {
  background: #2B2B2B !important;
}

.bg-gradient {
  background: linear-gradient(69deg, #FD9B02 -44.91%, #FF6D6D 59.24%) !important;
}

.bg-img {
  background-image: url(../images/main/bgImg.jpg);
  background-size: cover;
  background-position: center;
}

/* MEDIA */
@media (max-width: 1400px) {
  .boxContainer {
    max-width: 1190px;
  }
  .boxContainer .box {
    height: 370px;
    max-width: 270px;
  }
}
@media (max-width: 1300px) {
  .textImg .imgWrapper a:first-child {
    width: auto;
    height: 100%;
  }
  .textImg .imgWrapper a:nth-child(n+2) {
    width: auto;
    height: auto;
  }
  .textImg {
    display: flex;
    flex-wrap: wrap;
  }
  .textImg .imgWrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
  .textImg .imgWrapper a {
    flex: 1 1 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
  .textImg .imgWrapper img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 200px;
  }
  .contentWidth {
    padding: 50px 20px;
  }
  .timmerBox.absolute {
    position: inherit !important;
    margin: auto;
    transform: none;
    bottom: 0;
    left: 0;
    margin-bottom: 50px;
  }
  .inputContainer, form {
    gap: 20px;
  }
  .gap-50 {
    gap: 30px;
  }
  .textImg .text {
    gap: 30px;
  }
}
@media (max-width: 1200px) {
  .boxContainer {
    display: flex;
    flex-wrap: wrap;
    max-width: 620px;
  }
  .boxContainer .content {
    opacity: 1;
    z-index: 1;
    background-color: rgba(214, 82, 82, 0.7490196078);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .boxContainer .img img {
    filter: blur(5px);
    opacity: 1 !important;
  }
  .boxContainer.logos .box {
    background: #D65252;
    gap: 40px;
  }
  .boxContainer.logos .box img {
    filter: grayscale(0);
  }
  .boxContainer.logos .box .button {
    position: inherit;
    z-index: 1;
    opacity: 1;
  }
}
@media (max-width: 1000px) {
  footer .contentWidth {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  footer .wrapper:nth-child(3) form {
    align-items: center;
  }
  footer .wrapper:nth-child(2) {
    max-width: 360px;
  }
  .ecoForm form .ec-v-form-input label {
    font-size: 13px;
  }
  .ecoForm {
    width: 100%;
  }
}
@media (max-width: 900px) {
  .burger {
    display: flex;
  }
  .menu {
    display: none;
  }
  .menu.active {
    display: flex;
  }
  .popupContent {
    max-width: 570px;
  }
  header {
    padding: 15px 20px;
  }
  .cover .img {
    display: none;
  }
  .headlineWrapper {
    justify-content: center;
  }
  .process {
    grid-template-columns: repeat(auto-fit, minmax(250px, 3fr));
  }
  .textImg .text {
    align-items: center;
    width: 100%;
  }
  .textImg .content {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .copy {
    flex-direction: column-reverse;
  }
  .timmerBox {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    width: auto;
  }
  .timmerBox .wrapper {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }
  .afterCenter {
    align-items: center;
    text-align: center;
  }
  .dateBox {
    width: auto;
    transform: none;
    gap: 15px;
  }
}
@media (max-width: 600px) {
  .winnersTable .line {
    gap: 10px;
  }
  .timmerBox, .dateBox {
    padding: 30px;
  }
  .winnersTable .container {
    display: flex;
    gap: 10px 20px;
    flex-wrap: wrap;
  }
}/*# sourceMappingURL=style.css.map */