html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* DEFINE DEFAULT STYLES */
/* INPUT STYLES */
html {
  font-size: 10px;
}
body {
  font-family: 'Chakra Petch', sans-serif;
  overflow: hidden;
  font-size: 1.6rem;
  color: #3b3641;
  position: relative;
}
input[type="text"] {
  background-color: transparent;
  border: 1px solid #efdfd0;
  font-size: 1.6rem;
  font-weight: 500;
  color: #ffffff;
  padding: 10px;
}
input[type="text"][readonly] {
  background-color: #F2F6FC;
  color: #3b3641;
  cursor: not-allowed;
}
h1,
h2,
h3,
h4,
p,
span,
a {
  color: #3b3641;
}
/* CUSTOM SELECT */
.customSelect {
  position: relative;
  flex-grow: 1;
}
.customSelect select {
  display: none;
  /*hide original SELECT element:*/
}
.customSelect label {
  color: rgba(59, 54, 65, 0.5);
  font-size: 18px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 5px;
  top: 13px;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
  background: #F2F6FC;
  padding: 0 8px;
}
.customSelect label.filled {
  top: -7px;
  font-size: 14px;
  color: #3664A5;
  background: linear-gradient(to bottom, #fff 50%, #F2F6FC 100%);
}
.customSelect .select-items div,
.customSelect .select-selected {
  color: #3b3641;
  font-weight: 400;
  text-align: left;
  padding: 8px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
}
.customSelect .select-items div:hover {
  background-color: rgba(242, 246, 252, 0.1);
}
.customSelect .same-as-selected {
  background-color: #F2F6FC;
  color: #3b3641 !important;
}
.customSelect .select-selected {
  display: flex;
  align-items: center;
  background-color: #F2F6FC;
  min-height: 42px;
  line-height: 25px;
  border: 1px solid #757575;
  border-radius: 4px;
  padding: 0px 10px;
  font-weight: 500;
  color: #3b3641;
}
.customSelect .select-selected:after {
  position: absolute;
  content: "";
  top: 50%;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #3b3641 transparent transparent transparent;
  margin-top: -3px;
}
.customSelect .select-selected.select-arrow-active:after {
  border-color: transparent transparent #3b3641 transparent;
  margin-top: -10px;
}
.customSelect .select-items {
  position: absolute;
  background-color: #ffffff;
  top: 94%;
  left: 0;
  right: 0;
  z-index: 99;
  overflow: auto;
  border-width: 0 1px 1px 1px;
  border-style: solid;
  border-color: #757575;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.customSelect .select-items > div:first-of-type {
  padding: 0 !important;
  border: 0 !important;
  border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
}
.customSelect .select-hide {
  display: none;
}
.customSelect.filter {
  margin: 0 10px;
}
.customSelect.filter .select-items div,
.customSelect.filter .select-selected {
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.customSelect.filter .select-selected {
  height: 45px;
  line-height: 28px;
}
.customSelect.sorter {
  flex-grow: 0;
}
.customSelect.sorter .select-items div,
.customSelect.sorter .select-selected {
  font-size: 1.4rem;
  font-weight: 500;
  padding: 5px 10px;
}
.customSelect.sorter .select-selected {
  background-color: transparent;
  height: 30px;
  padding-right: 30px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  line-height: 16px;
}
/* CUSTOM CHECKBOX */
.customCheckbox {
  position: relative;
  display: inline-block;
  padding-left: 25px;
  margin-bottom: 0;
  cursor: pointer;
}
.customCheckbox input[type="checkbox"] {
  display: none;
}
.customCheckbox input[type="checkbox"] + span::before {
  content: "";
  width: 15px;
  height: 15px;
  border: 2px solid #757575;
  border-radius: 4px;
  position: absolute;
  top: 5px;
  left: 0;
}
.customCheckbox input[type="checkbox"]:checked + span:after {
  content: '';
  width: 9px;
  height: 9px;
  background-color: #3664A5;
  border-radius: 2px;
  position: absolute;
  top: 10px;
  left: 5px;
}
.customCheckbox a {
  color: #3b3641;
  font-weight: 500;
}
.customCheckbox span {
  font-size: 1.6rem;
  line-height: 30px;
  display: inline-block;
}
/* CUSTOM INPUT */
.customInput {
  position: relative;
  margin-bottom: 15px;
}
.customInput input {
  font-size: 16px;
  padding: 11px 10px 11px 5px;
  display: block;
  width: 100%;
  background-color: #F2F6FC;
  border: 1px solid #757575;
  border-radius: 4px;
  box-sizing: border-box;
  box-shadow: none !important;
  color: #3b3641;
}
.customInput input.error {
  border-color: #ff0000;
}
.customInput input.error:focus ~ .bar:before,
.customInput input.error:focus ~ .bar:after {
  background: #ff0000;
}
.customInput input:focus {
  outline: none;
}
.customInput input:focus ~ .bar:before,
.customInput input:focus ~ .bar:after {
  width: 50%;
}
.customInput input:focus ~ label,
.customInput input[readonly] ~ label {
  top: -7px;
  font-size: 14px;
  color: #3664A5;
  background: linear-gradient(to bottom, #fff 50%, #F2F6FC 100%);
}
.customInput input[readonly] {
  background-color: #ffffff;
  color: #3b3641;
  pointer-events: none;
  padding: 10px 5px 5px;
  font-size: 1.4rem;
}
.customInput input[readonly] ~ label {
  background: #ffffff;
}
.customInput input::placeholder {
  font-size: 14px;
}
.customInput label {
  color: rgba(59, 54, 65, 0.5);
  font-size: 18px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 5px;
  top: 13px;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
  background: #F2F6FC;
  padding: 0 8px;
}
.customInput label.filled {
  top: -7px;
  font-size: 14px;
  color: #3664A5;
  background: linear-gradient(to bottom, #fff 50%, #F2F6FC 100%);
}
.customInput .bar {
  position: relative;
  display: block;
  width: 100%;
}
.customInput .bar:before,
.customInput .bar:after {
  content: '';
  height: 2px;
  width: 0;
  bottom: 1px;
  position: absolute;
  background: #3664A5;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}
.customInput .bar::before {
  left: 50%;
}
.customInput .bar:after {
  right: 50%;
}
/* CUSTOM BTN */
.customBtn {
  font-size: 1.5rem;
  font-weight: 800;
  background-color: #3664A5;
  color: #ffffff;
  padding: 15px 30px;
  text-align: center;
  text-transform: uppercase;
  margin-top: 0;
  border: 0;
  z-index: 1;
  cursor: pointer;
  transition: 0.5s ease-in-out;
}
.customBtn:hover {
  background-color: #3b3641;
  color: #F2F6FC;
}
.customBtn.gMorza {
  background-color: transparent;
}
.customBtn.gMorza:hover {
  background-color: #3b3641;
  color: #29235c;
}
.customBtn.gold {
  background-color: #3b3641;
  color: #F2F6FC;
}
.customBtn.gold:hover {
  background-color: #F2F6FC;
  color: #3b3641;
}
.customBtn.dark {
  background-color: #3b3641;
  color: #ffffff;
}
.customBtn.dark:hover {
  opacity: 0.7;
}
.customBtn.withBorder {
  border: 2px solid #3b3641;
  border-radius: 0;
}
.customBtn.withBorder.dark {
  border-color: #F2F6FC;
  background-color: #F2F6FC;
  color: #3b3641;
}
.customBtn.withBorder.dark:hover {
  background-color: #3b3641;
  color: #F2F6FC;
}
/* SCROLL DOWN ARROW */
.scrollArrowParent {
  position: absolute;
  left: 50%;
  margin-left: -15px;
  display: block;
  width: 40px;
  height: 150px;
  z-index: 1;
  background-color: transparent;
  border: 0;
  transform: scale(0.5);
}
.scrollArrowParent.down {
  bottom: 50px;
}
.scrollArrowParent.up {
  top: 0;
  transform: scale(0.5) rotateZ(180deg);
}
.scrollArrowParent.left {
  top: -40px;
  left: 50px;
  transform: scale(0.5) rotateZ(90deg);
}
.scrollArrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.scrollArrow span {
  display: block;
  width: 30px;
  height: 30px;
  border-bottom: 5px solid #3b3641;
  border-right: 5px solid #3b3641;
  transform: rotate(45deg);
  margin: -10px;
  animation: scrollDownAnimate 2s infinite;
}
.scrollArrow span:nth-child(2) {
  animation-delay: -0.2s;
}
.scrollArrow span:nth-child(3) {
  animation-delay: -0.4s;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes scrollDownAnimate {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-20px, -20px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(20px, 20px);
  }
}
/* TYPING ANIMATION */
.cursor {
  animation: blink 0.5s ease-in-out infinite;
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* PAGE CONTAINER */
#pageContainer {
  display: flex;
  justify-content: center;
  height: 100vh;
  position: relative;
  overflow: auto;
}
#pageContainer.fCenter {
  align-items: center;
}
.contentWrapper {
  max-width: 50%;
  text-align: center;
  padding-top: 10rem;
}
.contentWrapper h1 {
  font-size: 10rem;
  margin-bottom: 5rem;
}
.contentWrapper h2 {
  font-size: 5rem;
  margin-bottom: 2.5rem;
  margin-top: 5rem;
}
.contentWrapper p {
  font-size: 1.6rem;
  line-height: 2.2rem;
  margin-bottom: 1.5rem;
}
.contentWrapper p a {
  display: block;
}
.euNoteWrapper {
  margin-top: 5rem;
}
.euNoteWrapper img {
  width: 100%;
}
.euNoteWrapper p {
  font-size: 1.2rem;
  line-height: 1.6rem;
}
/* PARTICLES LOGO */
#particlesLogoContainer {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  overflow: hidden;
  transition: all 0.7s ease-in-out;
}
#particlesLogoContainer #logo {
  background: #ffffff;
  width: 100%;
  height: 100vh;
  position: relative;
  transition: all 0.7s ease-in-out;
}
#particlesLogoContainer input {
  display: none;
}
#particlesLogoContainer > img {
  max-width: 90%;
  margin: 0 auto;
}
/* OFFER SECTION */
#offerContainer {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
}
#offerContainer > .scrollArrowParent.down {
  bottom: 0;
}
.offerWrapper {
  width: 100%;
  max-width: 1200px;
  padding: 10rem 5rem;
  text-align: center;
  box-sizing: border-box;
}
.offerSectionTitle {
  font-size: 5rem;
  margin-bottom: 5rem;
}
.offerCards {
  display: flex;
  align-items: stretch;
  gap: 4rem;
  text-align: left;
}
.offerCard {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 3rem;
  border: 1px solid rgba(59, 54, 65, 0.15);
  background-color: #ffffff;
}
.offerCard strong,
.offerCard b {
  font-weight: 600;
}
.offerCard h3 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #3b3641;
}
.offerCard .offerCardSubtitle {
  font-style: italic;
  font-size: 1.6rem;
  line-height: 2.2rem;
  color: rgba(59, 54, 65, 0.7);
  margin-bottom: 2.5rem;
}
.offerCard ul {
  margin: 0 0 2.5rem 1.8rem;
  list-style: disc outside;
}
.offerCard ul li {
  font-size: 1.6rem;
  line-height: 2.2rem;
  margin-bottom: 1rem;
  padding-left: 0.5rem;
  overflow-wrap: break-word;
}
.offerCard ul li::marker {
  color: #FF4626;
}
.offerCard .offerCardModel {
  margin-top: auto;
  font-size: 1.6rem;
  line-height: 2.2rem;
}
@media (max-width: 650px) {
  body {
    overflow-x: hidden;
    overflow-y: auto;
  }
  #offerContainer,
  #pageContainer {
    height: auto;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: visible;
  }
  .scrollArrowParent {
    display: none;
  }
  .contentWrapper {
    max-width: 90%;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .contentWrapper h1 {
    font-size: 6rem;
    margin-bottom: 2.5rem;
  }
  .contentWrapper h2 {
    font-size: 3.5rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
  }
  .contentWrapper p {
    line-height: 2.2rem;
  }
  .euNoteWrapper {
    margin-top: 3rem;
  }
  .offerWrapper {
    padding: 4rem 2rem;
  }
  .offerSectionTitle {
    font-size: 3.5rem;
    margin-bottom: 2.5rem;
  }
  .offerCards {
    flex-direction: column;
    gap: 1.5rem;
  }
  .offerCard {
    padding: 2rem;
  }
  .offerCard h3 {
    font-size: 2.2rem;
  }
  .offerCard .offerCardSubtitle {
    margin-bottom: 1.5rem;
  }
  .offerCard ul {
    margin-bottom: 1.5rem;
  }
  .offerCard ul li {
    margin-bottom: 0.7rem;
  }
}

/* HERO SWITCH — replaces the former PHP get_browser() branch (see index.html + custom.js).
   Default (no JS / no class): canvas hidden, static logo shown — safe for noscript.
   .hero-canvas: show the particle canvas, hide the static logo. */
#particlesLogoContainer #logo {
  display: none;
}
.hero-canvas #particlesLogoContainer #logo {
  display: block;
}
.hero-canvas #particlesLogoContainer > img {
  display: none;
}
