* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
}

html {
  font: 16px/1.5 sans-serif;
  color: #000;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */ /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */ /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
   supported by Chrome, Edge, Opera and Firefox */
}

.bg-blue {
  background-color: var(--blue) !important;
}

.text-blue {
  color: var(--blue) !important;
}

.text-red {
  color: var(--red) !important;
}

:root {
  --green: #008131;
  --darkgreen: #007637;
  --yellow: #ffd500;
  --yellow-intensive: #fdbb00;
  --lighgrey2: #eaeaea;
  --lightgrey: #ebedef;
  --white: #ffffff;
  --transparent: rgba(255,255,255,0);
  --red: #d10a11;
  --blue: #033f78;
  --grey: #ebecee;
  --warn: var(--yellow-intensive);
  --lightgrey-grad: linear-gradient(90deg, rgba(221,221,221,1) 0%, rgba(236,237,239,1) 25%, rgba(236,237,239,1) 75%, rgba(221,221,221,1) 100%);
}

.bg-grey {
  background-color: var(--grey);
}

.bg-red {
  background-color: var(--red) !important;
}

@font-face {
  font-family: Organetto;
  src: url(./fonts/Organetto-UltraBoldUltraCnd.ttf);
}
@font-face {
  font-family: RobotoRegular;
  src: url(./fonts/Roboto-Regular.ttf);
}
@font-face {
  font-family: BrandonTextBold;
  src: url(./fonts/BrandonText-Bold.otf);
}
@font-face {
  font-family: FranklinGothicHeavy;
  src: url(./fonts/FRAHV.TTF);
}
@font-face {
  font-family: FranklinGothicDemi;
  src: url(./fonts/FRADM.TTF);
}
@font-face {
  font-family: ActiveRegular;
  src: url(./fonts/ActiveRegular.OTF);
}
.ff-1 {
  font-family: ActiveRegular !important;
}

.ff-2 {
  font-family: FranklinGothicHeavy !important;
}

@keyframes levito {
  50% {
    transform: translateY(-1rem);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes appear {
  0% {
    transform: scale(0);
  }
  90% {
    transform: scale(1.05);
  }
  95% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
.levito-anim {
  --levito-animation-delay: 0;
  animation: levito 5s;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
  animation-delay: var(--levito-animation-delay);
}

.appear {
  --appear-animation-delay: 0;
  animation: appear 1s;
  animation-iteration-count: 1;
  animation-timing-function: ease;
  animation-delay: var(--appear-animation-delay);
}

html {
  font-family: RobotoRegular;
}

body {
  color: var(--txt-color);
  background: url("img/bg/bg.webp") top center repeat-y;
}

a {
  color: var(--txt-color);
}

section h1, section h2 {
  font-family: ActiveRegular;
}
section h2 {
  font-size: clamp(2.8rem, 8vw, 5rem);
  text-shadow: rgb(255, 255, 255) 3px 0 0, rgb(255, 255, 255) 3px 0 0, rgb(255, 255, 255) -3px 0 0, rgb(255, 255, 255) 0 3px 0, rgb(255, 255, 255) 0 -3px 0, 0 0.5rem 0.5rem rgba(3, 63, 120, 0.74);
}

.ge-list-mark {
  max-width: 100px;
}
.ge-list-mark span {
  line-height: 1;
  font-size: 5rem;
  text-align: center;
  display: block;
  width: -moz-min-content;
  width: min-content;
  height: -moz-max-content;
  height: max-content;
  inset: 0;
  margin: auto;
  font-family: sans-serif;
  font-weight: 900;
}

.logo {
  position: fixed;
  width: clamp(150px, 25%, 400px);
  top: 0;
  z-index: 300;
}
.logo img {
  width: 100%;
}

.main_container {
  background: url("assets/img/content/big_logo.png") no-repeat -2% top;
  background-size: 35%;
}

.grid {
  display: grid;
}

.flex {
  display: flex;
}

.grid_tpl {
  grid-template-columns: auto 1200px auto;
}

.mobile_show {
  display: none;
}

.fly {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
}
@media only screen and (max-width: 648px) {
  .fly {
    position: fixed;
  }
}

.navi_bn {
  background-color: var(--bg-color);
  border: 2px solid var(--br-color);
  z-index: 300;
}

.main_header {
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.3);
  height: 100%;
  padding: 0 1em;
}
.main_header .navi ul {
  list-style: none;
}
.main_header .navi ul li {
  display: block;
  text-align: center;
  padding: 0 2%;
}
.main_header .navi ul li a {
  font-size: 1.4rem;
  text-transform: uppercase;
  text-decoration: none;
  display: block;
  line-height: 0;
  white-space: pre;
  transition: 0.3s padding;
}
.main_header .navi.mini a {
  padding-top: 20px;
  padding-bottom: 20px;
}

.full_viewport {
  padding: 1em;
}

#head {
  padding: 0 !important;
  margin-bottom: -11rem;
}

#zasady_konkursu {
  color: var(--blue);
  font-size: clamp(1rem, 8vw, 3.5rem);
  line-height: 1.2;
}
#zasady_konkursu ol li {
  font-family: FranklinGothicDemi;
  list-style-type: none;
}
#zasady_konkursu ol li::before {
  content: attr(data-iter);
  display: block;
  background: #1f3d80;
  width: 3em;
  height: 1.6em;
  position: absolute;
  right: 100%;
  z-index: 0;
  top: 0.25em;
  border-radius: 0.5rem;
  margin-right: 0.5rem;
  color: white;
  font-family: FranklinGothicHeavy;
  text-align: center;
  font-size: 0.8em;
}
#zasady_konkursu p {
  font-family: FranklinGothicHeavy;
}

#regulamin > div, #zwyciezcy > div {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  color: var(--blue);
}

#nagrody .grid_awards {
  grid-template-columns: 1fr 1fr;
}
#nagrody .grid_awards .express {
  text-align: right;
  transform: translateY(-14%);
}

#formularz, #regulamin {
  background-color: var(--bg-color);
}
#formularz header, #regulamin header {
  text-align: center;
}

input:not([type=checkbox]), textarea {
  width: 100% !important;
  height: 100% !important;
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form {
  grid-template-areas: "name answer" "surname answer" "phone answer" "email answer" "receipt answer" "info submit" "terms terms";
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.form .item1 {
  grid-area: name;
}
.form .item2 {
  grid-area: surname;
}
.form .item3 {
  grid-area: email;
}
.form .item4 {
  grid-area: phone;
}
.form .item5 {
  grid-area: receipt;
}
.form .item6 {
  grid-area: answer;
}
.form .item7 {
  grid-area: submit;
}
.form .item8 {
  grid-area: terms;
}
.form .item9 {
  grid-area: info;
}
.form .item8 {
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 3rem white;
}
.form > div {
  font: 1.6rem/1.3 Arial;
  color: var(--txt-color);
}
.form > div input, .form > div textarea {
  font: inherit;
  color: inherit;
  padding: 0.5em 0.6em;
  background-color: var(--bg-color);
  border-radius: 3px;
}
.form > div input:focus, .form > div textarea:focus {
  background-color: var(--white);
}
.form > div input[type=button], .form > div textarea[type=button] {
  font-weight: bold;
  text-transform: uppercase;
  background: var(--bg-color);
  color: var(--txt-color);
  cursor: pointer;
}
.form > div input::-moz-placeholder, .form > div textarea::-moz-placeholder {
  color: inherit;
  -moz-transition: 0.3s color;
  transition: 0.3s color;
}
.form > div input::placeholder, .form > div textarea::placeholder {
  color: inherit;
  transition: 0.3s color;
}
.form > div input:focus::-moz-placeholder, .form > div textarea:focus::-moz-placeholder {
  color: transparent;
}
.form > div input:focus::placeholder, .form > div textarea:focus::placeholder {
  color: transparent;
}
.form > div input.valid, .form > div textarea.valid {
  border-left: 10px solid #009234;
}
.form > div input.no_valid, .form > div textarea.no_valid {
  border-left: 10px solid red;
}
.form > div label {
  color: var(--txt-color);
  font-size: 0.7em;
}
.form > div.submit {
  max-width: 300px;
  margin: 0 0 0 auto;
}
.form > div.info {
  color: var(--txt-color);
}

/* AGE 18 */
#modal_screen {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  overflow: hidden;
}

#modal_content {
  width: 400px;
  height: 400px;
  background: #ffd500;
  color: #000;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 1000;
  transform: translate(-50%, -50%);
  padding: 3em;
  border-radius: 50%;
  text-align: center;
}
#modal_content ul {
  list-style: none;
}
#modal_content ul li {
  flex-basis: 50%;
  display: block;
}
#modal_content ul li a {
  display: block;
  padding: 20px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  width: 100px;
  border-radius: 10px;
  text-decoration: none;
  color: #000;
  font-weight: bold;
  cursor: pointer;
}
#modal_content p {
  margin: 10px 0;
}
#modal_content:before {
  padding: 100% 0;
  content: "";
  float: left;
  display: table;
}
#modal_content #modal_content_wrapper {
  transform: translateY(50%);
}
#modal_content #modal_regret_wrapper {
  transform: translateY(30%);
}
#modal_content #modal_regret_wrapper ul li {
  flex-basis: 100%;
}
#modal_content #modal_regret_wrapper ul li a {
  width: 200px;
}

.main_bg {
  background: var(--bg-color);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 21.8%;
  z-index: -1;
}
.main_bg:before {
  content: "";
  width: 100%;
  height: 50%;
  background: inherit;
  position: absolute;
  transform: translateY(-55%) skewY(-10deg);
}

@media only screen and (max-width: 1199px) {
  html {
    background-size: 150%;
  }
  .grid_tpl {
    grid-template-columns: auto 1024px auto;
  }
  .main_bg {
    height: 24.8%;
  }
}
@media only screen and (max-width: 1023px) {
  html {
    background-size: 150%;
  }
  .grid_tpl {
    grid-template-columns: auto 950px auto;
  }
  .main_bg {
    height: 26.7%;
  }
}
@media only screen and (max-width: 949px) {
  .mobi_full_viewport_disabled {
    min-height: auto;
  }
  html {
    background-size: 150%;
  }
  .grid_tpl {
    grid-template-columns: auto 648px auto;
  }
  #head {
    margin-bottom: -7rem;
  }
  .main_header .navi ul li a {
    font-size: 1.1rem;
    padding: 2em 0;
  }
  .main_bg {
    height: 36%;
  }
}
@media only screen and (max-width: 648px) {
  #modal_content {
    width: 320px;
    height: 320px;
  }
  html {
    background-size: 150%;
  }
  .mobile_show {
    display: block;
  }
  .mobi_full_viewport_disabled {
    min-height: auto;
  }
  .main_container {
    background-size: 75%;
    background-position-x: -12%;
  }
  .navi_bn {
    position: fixed;
    right: 0;
    left: auto;
    top: 0;
    width: 3rem;
    height: 3rem;
    z-index: 300;
    border-radius: 50%;
    margin: 1em;
    background: url(img/svg/navi_bn_bg.svg) center no-repeat;
    background-size: 60%;
  }
  .navi_bn.navi_opened {
    background-image: url("img/svg/close_navi_bn_bg.svg");
  }
  .navi_bn.navi_bn:before {
    float: left;
    display: table;
    content: "";
    padding-top: 100%;
  }
  .main_header {
    display: none;
  }
  .main_header .navi ul {
    flex-direction: column;
  }
  .main_header .navi ul li {
    display: block;
    width: 100%;
    text-align: center;
  }
  .main_header .navi ul li a {
    font-size: 1.5rem;
    text-align: left;
    font: bold;
    color: var(--txt-color);
    text-transform: uppercase;
    text-decoration: none;
    display: block;
    padding: 45px 20px;
    line-height: 0;
    transition: none;
  }
  .main_header .navi.mini a {
    padding: inherit;
  }
  #head {
    margin-bottom: -9rem;
  }
  #head picture.bicycle {
    position: relative;
    margin-top: 0;
  }
  #head picture.bottle {
    width: 50%;
    right: 0;
    top: 100px !important;
    z-index: -1;
  }
  #head picture.bottle img {
    width: 90%;
    height: auto;
  }
  #regulamin > div {
    font-size: 1.1rem;
  }
  .grid_tpl {
    grid-template-columns: auto 100% auto;
  }
  .full_viewport {
    padding: 1em;
  }
  .form {
    grid-template-areas: "name" "surname" "phone" "email" "receipt" "answer" "terms" "info" "submit";
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .form .item6 {
    min-height: 128px;
  }
  .form > div {
    font-size: 1.2rem;
  }
  .form > div.submit {
    max-width: 100%;
    margin: 0;
  }
  .form > div label {
    display: block;
  }
  .main_bg {
    height: 44%;
  }
}/*# sourceMappingURL=custom.css.map */