/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

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

html {
  scroll-behavior: smooth;
}

/* Links */

a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */

aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

address {
  font-style: normal;
}

/* Form */

input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type='submit'] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

input[type='file'] {
  max-width: 100%;
}

/* fonts */
@font-face {
  font-family: 'Rubik';
  src: url('/fontsBPEG/rubik-variablefontwght.woff2') format('woff2-variations'),
    url('/fontsBPEG/rubik-variablefontwght.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* container */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

@media (max-width: 992px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 600px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* header */

.headerBPEG {
  background: #10224a;
}

.header-containerBPEG {
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
}

/* ===== LOGO ===== */
.header-logoBPEG {
  flex-shrink: 0;
  margin-right: 32px;
}

.header-logoBPEG img {
  width: 151px;
  height: 70px;
  object-fit: contain;
}

/* ===== BURGER (hidden desktop) ===== */
.header-burgerBPEG {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.header-burgerBPEG span {
  width: 24px;
  height: 2px;
  background: #fff;
}

/* ===== NAV DESKTOP ===== */
.header-navBPEG {
  display: flex;
  align-items: center;
  flex: 1;
}

.header-menuBPEG {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-right: 32px;
}

.header-menuBPEG a {
  color: #fff;
  font-family: Rubik, sans-serif;
  font-size: 14px;
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
}

/* ===== BUTTONS ===== */
.btn-redBPEG {
  background: #ef1e23;
  padding: 7px 18px;
  border-radius: 100px;
  color: #fff;
  font-family: Rubik;
  font-size: 14px;
  font-style: italic;
  font-weight: 700;
  border: none;
}

.btn-outlineBPEG {
  border-radius: 100px;
  border: 2px solid #ef1e23;
  padding: 6px 18px;
  background: transparent;
  color: #fff;
  font-family: Rubik;
  font-size: 14px;
  font-style: italic;
  font-weight: 700;
}

.header-actionsBPEG {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

/* ===== PHONE BLOCK ===== */
.header-phoneBPEG {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #243460;
  padding: 8px 16px;
  border-radius: 100px;
}

.header-phoneBPEG img {
  width: 16px;
}

.header-phoneBPEG a {
  color: #fff;
  font-family: Rubik;
  font-size: 14px;
  font-style: italic;
  font-weight: 700;
}

/* ========================================================= */
/* == CLOSE BUTTON (desktop hidden always) ================= */
/* ========================================================= */

.header-closeBPEG {
  display: none; /* по умолчанию скрыт */
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  margin-left: auto;
  margin-bottom: 20px;
}

/* ========================================================= */
/* ====================   TABLET MODE   ==================== */
/* ========================================================= */

@media (max-width: 1130px) {
  .header-logoBPEG img {
    width: 120px;
    height: 56px;
  }

  .header-menuBPEG {
    gap: 20px;
    margin-right: 20px;
  }

  .header-menuBPEG a {
    font-size: 13px;
  }

  .btn-redBPEG,
  .btn-outlineBPEG {
    padding: 7px 16px;
    font-size: 13px;
  }

  .header-phoneBPEG {
    padding: 7px 14px;
  }

  .header-phoneBPEG a {
    font-size: 13px;
  }

  /* Burger appears */
  .header-burgerBPEG {
    display: flex;
    margin-left: auto;
  }

  /* Desktop nav hides */
  .header-navBPEG {
    position: fixed;
    top: 0;
    right: 0;
    width: 70%;
    max-width: 330px;
    height: 100vh;
    background: #10224a;
    flex-direction: column;
    padding: 60px 24px;
    transform: translateX(100%);
    transition: 0.3s ease-in-out;
    z-index: 999;
    align-items: center;
    gap: 32px;
  }

  /* OPEN MENU — PERFECT CENTER */
  .header-navBPEG.active {
    transform: translateX(0);
    align-items: center;
    justify-content: flex-start;
    padding-top: 70px;
  }

  /* Close button visible only here */
  .header-closeBPEG {
    display: block;
  }

  .header-menuBPEG {
    flex-direction: column;
    gap: 22px;
    margin-right: 0;
  }

  .header-actionsBPEG {
    flex-direction: column;
    gap: 18px;
    width: 100%;
  }

  .header-phoneBPEG {
    justify-content: center;
    width: 100%;
  }
}

/* ========================================================= */
/* ====================   MOBILE MODE   ==================== */
/* ========================================================= */

@media (max-width: 768px) {
  .header-navBPEG {
    width: 85%;
    padding: 50px 24px;
  }

  .header-navBPEG.active {
    padding-top: 70px;
  }
}

/* hero */

/* ========= HERO BASE ========= */
.heroBPEG {
  width: 100%;
  background: url('/imgagesBPEG/hero-bg-deskBPEG.webp') #10224a 50% / cover
    no-repeat;
  padding: 120px 0 160px;
  color: #fff;
}

@media (max-width: 768px) {
  .heroBPEG {
    background: url('/imgagesBPEG/hero-bg-mbBPEG.webp') #10224a 50% / cover
      no-repeat;
    padding: 80px 0 120px;
  }
}

.hero-containerBPEG {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/* ========= TITLE ========= */
.hero-titleBPEG {
  color: #fff;
  font-family: Rubik, sans-serif;
  font-size: 48px;
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .hero-titleBPEG {
    font-size: 30px;
  }
}

/* ========= SUBTITLE ========= */
.hero-subtitleBPEG {
  color: #fff;
  font-family: Rubik;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 35px;
}

@media (max-width: 768px) {
  .hero-subtitleBPEG {
    font-size: 13px;
  }
}

/* ========= BUTTON ========= */
.hero-btnBPEG {
  display: inline-block;
  padding: 18px 40px;
  border-radius: 100px;
  background: #3767b1;
  color: #fff;
  font-family: Rubik;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 45px;
  transition: 0.25s ease;
}

.hero-btnBPEG:hover {
  background: #2f5693;
}

@media (max-width: 768px) {
  .hero-btnBPEG {
    padding: 14px 30px;
    font-size: 16px;
  }
}

/* ========= SMALL TITLE ========= */
.hero-smallTitleBPEG {
  color: #fff;
  font-family: Rubik;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .hero-smallTitleBPEG {
    font-size: 16px;
  }
}

/* ========= DESCRIPTION ========= */
.hero-descBPEG {
  color: #fff;
  font-family: Rubik;
  font-size: 15px;
  font-weight: 400;
  max-width: 720px;
  margin: 0 auto 45px;
}

@media (max-width: 768px) {
  .hero-descBPEG {
    font-size: 13px;
  }
}

/* ========= FEATURES ========= */
.hero-featuresBPEG {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
  list-style: none;
  padding: 0;
}

@media (max-width: 768px) {
  .hero-featuresBPEG {
    gap: 10px;
    justify-content: space-between;
  }
}

/* ========= FEATURE ITEM ========= */
.hero-featureBPEG {
  width: 250px;
  padding: 24px 0;
  border-radius: 10px;
  border: 1px solid rgba(155, 142, 255, 0.8);
  background: rgba(52, 44, 114, 0.25);
  backdrop-filter: blur(9.6px);
  text-align: center;
  font-family: Rubik;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
}

.hero-featureNumBPEG {
  font-family: Rubik;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
}

/* ========= MOBILE VERSION — 3 IN ROW ========= */
@media (max-width: 768px) {
  .hero-featureBPEG {
    width: 31%;
    padding: 14px 0;
    font-size: 13px;
  }

  .hero-featureNumBPEG {
    font-size: 22px;
    margin-bottom: 6px;
  }
}

/* =============== WHY SECTION =============== */
.whyBPEG {
  background: #0f214b;
  padding: 80px 0;
}

.why-containerBPEG {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/* ===== TITLE ===== */
.why-titleBPEG {
  color: #fff;
  font-family: Rubik;
  font-size: 36px;
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 50px;
}

/* ===== LIST ===== */
.why-listBPEG {
  display: flex;
  justify-content: center;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (max-width: 768px) {
  .why-listBPEG {
    gap: 16px;
    flex-direction: column;
  }
}

/* ===== ITEM ===== */
.why-itemBPEG {
  width: 350px;
  padding: 32px 22px;
  border-radius: 10px;
  border: 1px solid #527cdb;
  background: radial-gradient(
    87.25% 87.24% at 50.13% 12.76%,
    #0f3ea9 0%,
    #203668 100%
  );
  color: #fff;
  text-align: center;
  transition: 0.3s ease;
}

.why-itemBPEG:hover {
  background: #203668;
  border-color: #527cdb;
}

@media (max-width: 768px) {
  .why-itemBPEG {
    width: 100%;
    padding: 24px 16px;
  }
}

/* ===== ICON ===== */
.why-iconBPEG {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .why-iconBPEG {
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
  }
}

/* ===== ITEM TITLE ===== */
.why-itemTitleBPEG {
  color: #fff;
  font-family: Rubik;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 14px;
}

@media (max-width: 768px) {
  .why-itemTitleBPEG {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

/* ===== TEXT ===== */
.why-itemTextBPEG {
  color: #fff;
  font-family: Rubik;
  font-size: 15px;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 768px) {
  .why-itemTextBPEG {
    font-size: 14px;
  }
}

/* ===== SECTION ===== */
.winnersBPEG {
  background: #0f214b;
  padding: 80px 0;
  text-align: center;
}

.winners-containerBPEG {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== TITLE ===== */
.winners-titleBPEG {
  color: #fff;
  font-family: Rubik;
  font-size: 28px;
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* ===== SUBTITLE ===== */
.winners-subtitleBPEG {
  color: #fff;
  font-family: Rubik;
  font-size: 15px;
  font-weight: 400;
  max-width: 720px;
  margin: 0 auto 40px;
  line-height: 1.4;
}

/* ===== MARQUEE WRAPPER ===== */
.winners-marqueeBPEG {
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* ===== TRACK ===== */
.winners-trackBPEG {
  list-style: none;
  display: flex;
  gap: 24px;
  padding: 0;
  margin: 0;
  animation: scrollWinners 24s linear infinite;
}

@keyframes scrollWinners {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ===== CARD ===== */
.winner-cardBPEG {
  min-width: 260px;
  background: linear-gradient(180deg, #27427f 0%, #1f3463 100%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  padding: 20px 22px;
  color: #fff;
  font-family: Rubik;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .winner-cardBPEG {
    min-width: 70%;
    margin-right: 12px;
  }
}

/* ===== TOP WIN TEXT ===== */
.winner-topBPEG {
  background: #fff;
  color: #000;
  padding: 12px 16px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 16px;
}

.winner-topBPEG span {
  font-weight: 700;
  color: #000;
}

/* ===== USER BLOCK ===== */
.winner-userBPEG {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  gap: 8px;
  font-size: 20px;
  font-weight: 400;
}

.winner-userBPEG img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

/* ===== BASE SECTION ===== */
.secureBPEG {
  background: #0f214b;
  padding: 80px 0;
}

.secure-containerBPEG {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/* ===== TITLE ===== */
.secure-titleBPEG {
  color: #fff;
  font-family: Rubik;
  font-size: 28px;
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 18px;
}

/* ===== DESCRIPTION ===== */
.secure-descBPEG {
  color: #fff;
  font-family: Rubik;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  margin: 0 auto 40px;
}

/* ===== UL LIST ===== */
.secure-listBPEG {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

/* ===== ITEM ===== */
.secure-itemBPEG {
  background: #ef1e23;
  border-radius: 100px;
  padding: 16px 26px;
  color: #fff;
  font-family: Rubik;
  font-size: 17px;
  font-weight: 500;
  white-space: nowrap;
}

/* ===== MOBILE ADAPTATION ===== */
@media (max-width: 768px) {
  .secure-itemBPEG {
    width: 100%;
    text-align: center;
    font-size: 15px;
    padding: 15px 20px;
    white-space: normal;
  }

  .secure-listBPEG {
    gap: 16px;
    flex-direction: column;
  }
}

/* ===== SECTION BACKGROUND ===== */
.responsibleBPEG {
  background: #0f214b;
  padding: 80px 0;
}

.responsible-containerBPEG {
  max-width: 754px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== GRADIENT BOX ===== */
.responsible-boxBPEG {
  background: radial-gradient(
    87.25% 87.24% at 50.13% 12.76%,
    #a9450f 0%,
    #203668 100%
  );
  border-radius: 10px;
  padding: 40px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

/* ===== TITLE ===== */
.responsible-titleBPEG {
  font-family: Rubik;
  font-size: 26px;
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 22px;
}

/* ===== TEXT ===== */
.responsible-textBPEG {
  font-family: Rubik;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.4;
}

/* ===== UL LIST (visible bullets) ===== */
.responsible-listBPEG {
  font-family: Rubik;
  font-size: 15px;
  font-weight: 500;
  text-align: left; /* чтобы точки были видны */
  margin: 0 auto;
  padding-left: 20px; /* стандартное расстояние для bullets */
  max-width: 550px;
  list-style: disc; /* включаем точки */
}

/* LIST ITEMS */
.responsible-listBPEG li {
  margin-bottom: 8px;
  line-height: 1.4;
  text-align: center;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .responsible-boxBPEG {
    padding: 30px 22px;
  }

  .responsible-titleBPEG {
    font-size: 20px;
  }

  .responsible-textBPEG {
    font-size: 14px;
  }

  .responsible-listBPEG {
    font-size: 14px;
  }
}

/* ===== FOOTER BASE ===== */

.footerBPEG {
  background: #203668;
  padding: 80px 0;
  color: #fff;
}

.footer-containerBPEG {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== MAIN H2 ===== */

.footer-titleBPEG {
  color: #fff;
  text-align: center;
  font-family: Rubik;
  font-size: 36px;
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 40px;
}

/* ===== BLOCKS ===== */

.footer-blockBPEG {
  background: #344e8b;
  border-radius: 10px;
  padding: 30px 30px;
  margin-bottom: 24px;
}

.footer-blockTitleBPEG {
  color: #fff;
  font-family: Rubik;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
}

.footer-blockTextBPEG {
  color: #fff;
  font-family: Rubik;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 14px;
}

/* ===== UL-LIST INSIDE BLOCK ===== */

.footer-ulBPEG {
  padding-left: 20px;
  margin-bottom: 20px;
  list-style: disc;
}

.footer-ulBPEG li {
  font-family: Rubik;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 8px;
}

/* ===== CONTACT BLOCK ===== */

.footer-contactBPEG {
  background: #344e8b;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 40px;
}

.footer-contactTitleBPEG {
  font-size: 20px;
  font-family: Rubik;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-contactTextBPEG {
  font-size: 15px;
  margin-bottom: 8px;
}

.footer-contactTextBPEG a {
  color: #fff;
  text-decoration: underline;
}

/* ===== NAVIGATION LINKS ===== */

.footer-navBPEG {
  margin-bottom: 40px;
}

.footer-navListBPEG {
  display: flex;
  gap: 40px;
  justify-content: center;
  list-style: none;
  padding: 0;
}

.footer-navListBPEG a {
  color: #fff;
  font-family: Rubik;
  font-size: 20px;
  font-weight: 700;
  text-decoration: underline;
}

/* ===== LOGOS ===== */

.footer-logosBPEG {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-bottom: 40px;
}

.footer-logosBPEG img {
  height: 50px;
  object-fit: contain;
}

/* ===== COPYRIGHT ===== */

.footer-copyBPEG {
  text-align: center;
  font-family: Rubik;
  font-size: 16px;
  margin-top: 20px;
}

/* ===== MOBILE RESPONSIVE ===== */

@media (max-width: 768px) {
  .footer-navListBPEG {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-logosBPEG {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .footer-logosBPEG img {
    height: 40px;
  }

  .footer-titleBPEG {
    font-size: 26px;
  }

  .footer-contactBPEG,
  .footer-blockBPEG {
    padding: 24px;
  }
}

/*  */
.formSectionBPEG {
  background: #0f214b;
  padding: 60px 0;
}

.form-containerBPEG {
  max-width: 900px;
  margin: 0 auto;
  background: #203668;
  border-radius: 12px;
  padding: 40px 40px 60px;
}

.form-titleBPEG {
  color: #fff;
  text-align: center;
  font-family: Rubik;
  font-size: 36px;
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.req {
  color: #ef1e23; /* красные звёздочки */
}

/* ===== GRID DESKTOP ===== */
.form-gridBPEG {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 22px;
}

/* MOBILE: 1 колонка */
@media (max-width: 768px) {
  .form-gridBPEG {
    grid-template-columns: 1fr;
  }
}

/* LABEL */
.form-labelBPEG {
  color: #fff;
  font-family: Rubik;
  font-size: 14px;
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
}

/* INPUT */
.form-rowBPEG input {
  width: 100%;
  padding: 14px;
  border-radius: 5px;
  background: #344e8b;
  border: 2px solid #344e8b;
  color: #fff;
  font-family: Rubik;
  font-size: 14px;
}

/* CHECKBOX */
.checkboxBPEG {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #fff;
  font-family: Rubik;
  font-size: 14px;
  margin-bottom: 14px;
  margin-top: 20px;
}

.checkboxBPEG input {
  width: 18px;
  height: 18px;
}

/* BUTTON */
.form-btnBPEG {
  margin-top: 26px;
  width: 100%;
  padding: 16px;
  border-radius: 100px;
  border: 2px solid #ef1e23;
  background: transparent;
  color: #fff;
  font-family: Rubik;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
}

.form-btnBPEG:hover {
  background: #ef1e2320;
}

/* ===== SUCCESS MESSAGE APPEARS FROM BOTTOM ===== */
.form-successMsgBPEG {
  display: none;
  text-align: center;
  margin-top: 20px;
  color: #fff;
  font-family: Rubik;
  font-size: 18px;

  opacity: 0;
  transform: translateY(20px);
  transition: 0.35s ease;
}

.form-successMsgBPEG.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* ===== SECTION BACKGROUND ===== */
.contactSectionBPEG {
  background: #0f214b;
  padding: 80px 0;
}

/* ===== H1 ===== */
.contact-titleBPEG {
  max-width: 1180px;
  margin: 0 auto 40px;
  padding: 0 20px;
  text-align: center;

  color: #fff;
  font-family: Rubik;
  font-size: 36px;
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
}

/* ===== INNER WRAPPER ===== */
.contact-innerBPEG {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;

  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

/* ===== LEFT FORM CARD ===== */
.contact-formCardBPEG {
  width: 100%;
  flex: 1.6;
  background: #203668;
  border-radius: 10px;
  padding: 24px 22px 26px;
}

/* FORM LAYOUT */
.contact-row2BPEG {
  display: flex;
  gap: 18px;
  margin-bottom: 14px;
}

.contact-fieldBPEG {
  flex: 1;
  margin-bottom: 14px;
}

/* LABEL */
.contact-labelBPEG {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-family: Rubik;
  font-size: 15px;
  font-weight: 700;
}

.contact-reqBPEG {
  color: #ef1e23;
}

/* INPUT / TEXTAREA */
.contact-fieldBPEG input,
.contact-fieldBPEG textarea {
  width: 100%;
  border-radius: 5px;
  background: #344e8b;
  border: none;
  padding: 12px 14px;
  color: #fff;
  font-family: Rubik;
  font-size: 15px;
}

textarea {
  min-height: 170px;
  resize: none;
}

/* BUTTON */
.contact-btnBPEG {
  width: 100%;
  margin-top: 12px;
  padding: 14px 0;
  border-radius: 100px;
  border: 2px solid #ef1e23;
  background: transparent;

  color: #fff;
  font-family: Rubik;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

/* SUCCESS MESSAGE */
.contact-successBPEG {
  margin-top: 10px;
  margin-left: 4px;
  font-family: Rubik;
  font-size: 15px;
  color: #fff;

  display: none;
  opacity: 0;
  transform: translateY(6px);
  transition: 0.25s ease;
}

.contact-success--visibleBPEG {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* ===== RIGHT INFO CARD ===== */
.contact-infoCardBPEG {
  flex: 1;
  max-width: 340px;

  background: #203668;
  border-radius: 10px;
  padding: 24px 22px;
}

.contact-infoTitleBPEG {
  margin: 0 0 14px;
  color: #fff;
  font-family: Rubik;
  font-size: 15px;
  font-weight: 700;
}

.contact-infoTextBPEG {
  margin-bottom: 6px;
  color: #fff;
  font-family: Rubik;
  font-size: 15px;
  font-weight: 500;
}

.contact-infoLinkBPEG {
  color: #fff;
  text-decoration: underline;
}

/* ===== TABLET (VERY IMPORTANT) ===== */
@media (max-width: 1180px) and (min-width: 769px) {
  .contact-innerBPEG {
    gap: 16px;
  }

  .contact-infoCardBPEG {
    max-width: 300px;
  }

  .contact-titleBPEG {
    font-size: 32px;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .contact-innerBPEG {
    flex-direction: column;
    gap: 20px;
  }

  .contact-titleBPEG {
    font-size: 28px;
  }

  .contact-row2BPEG {
    flex-direction: column;
    gap: 14px;
  }

  .contact-infoCardBPEG {
    max-width: 100%;
  }
}

/* ===== PAGE BLOCK ===== */
.policyBPEG {
  background: #10224a;
  padding: 80px 0;
}

/* ===== CONTAINER ===== */
.policy-containerBPEG {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  color: #fff;
  font-family: Rubik, sans-serif;
}

/* ===== TITLE H1 ===== */
.policy-titleBPEG {
  color: #fff;
  font-family: Rubik;
  font-size: 36px;
  font-style: italic;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 25px;
}

/* ===== DATE ===== */
.policy-dateBPEG {
  color: #fff;
  font-family: Rubik;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 30px;
}

/* ===== CONTENT BLOCK ===== */
.policy-blockBPEG h2 {
  color: #fff;
  font-family: Rubik;
  font-size: 15px;
  font-weight: 700;
  margin: 25px 0 10px;
}

.policy-blockBPEG p {
  color: #fff;
  font-family: Rubik;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 15px;
}

.policy-blockBPEG ul {
  margin: 10px 0 20px 20px;
  padding: 0;
}

.policy-blockBPEG ul li {
  color: #fff;
  font-family: Rubik;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 6px;
}

/* ===== MAIL LINK ===== */
.policy-blockBPEG a {
  color: #fff;
  font-family: Rubik;
  font-size: 15px;
  font-weight: 700;
  text-decoration-line: underline;
  text-decoration-style: solid;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .policy-titleBPEG {
    font-size: 28px;
    text-align: left;
  }

  .policy-dateBPEG {
    font-size: 14px;
  }

  .policy-blockBPEG h2 {
    font-size: 15px;
  }
}

/* ===== COOKIES PAGE ===== */
.cookiesBPEG {
  background: #10224a;
  padding: 80px 0;
}

/* ===== CONTAINER ===== */
.cookies-containerBPEG {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  color: #fff;
  font-family: Rubik, sans-serif;
}

/* ===== TITLE H1 ===== */
.cookies-titleBPEG {
  color: #fff;
  font-family: Rubik;
  font-size: 36px;
  font-style: italic;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 25px;
}

/* ===== DATE ===== */
.cookies-dateBPEG {
  color: #fff;
  font-family: Rubik;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 30px;
}

/* ===== CONTENT ===== */
.cookies-blockBPEG h2 {
  color: #fff;
  font-family: Rubik;
  font-size: 15px;
  font-weight: 700;
  margin: 25px 0 10px;
}

.cookies-blockBPEG p {
  color: #fff;
  font-family: Rubik;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 15px;
}

.cookies-blockBPEG ul {
  margin: 10px 0 20px 20px;
  padding: 0;
}

.cookies-blockBPEG ul li {
  color: #fff;
  font-family: Rubik;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 8px;
}

/* ===== LINK ===== */
.cookies-blockBPEG a {
  color: #fff;
  font-family: Rubik;
  font-size: 15px;
  font-weight: 700;
  text-decoration-line: underline;
  text-decoration-style: solid;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .cookies-titleBPEG {
    font-size: 28px;
    text-align: left;
  }

  .cookies-dateBPEG {
    font-size: 14px;
  }
}

/* ===== TERMS PAGE ===== */
.termsBPEG {
  background: #10224a;
  padding: 80px 0;
}

/* ===== CONTAINER ===== */
.terms-containerBPEG {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  color: #fff;
  font-family: Rubik, sans-serif;
}

/* ===== TITLE H1 ===== */
.terms-titleBPEG {
  color: #fff;
  font-family: Rubik;
  font-size: 36px;
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 25px;
}

/* ===== DATE ===== */
.terms-dateBPEG {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 30px;
}

/* ===== CONTENT ===== */
.terms-blockBPEG h2 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin: 25px 0 10px;
}

.terms-blockBPEG p {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 15px;
  line-height: normal;
}

.terms-blockBPEG a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-style: solid;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .terms-titleBPEG {
    font-size: 28px;
  }
  .terms-dateBPEG {
    font-size: 14px;
  }
}

/* acc */

/* SECTION BACKGROUND */
.historyBPEG {
  background: #0f1f47;
  padding: 80px 0;
  color: #fff;
  font-family: Rubik, sans-serif;
}

/* CONTAINER */
.history-containerBPEG {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* USER INFO BLOCK */
.history-userBPEG {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 90px;
}

/* SMALL AVATAR */
.history-avatarBPEG {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 100%;
}

/* USER NAME + BALANCE */
.history-userInfoBPEG {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.history-usernameBPEG {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
}

.history-balanceBPEG {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  opacity: 0.95;
}

.history-currencyBPEG {
  font-size: 12px;
  font-weight: 700;
}

/* EMPTY STATE */
.history-emptyBPEG {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 70px;
}

/* BIG CLOUD ICON */
.history-cloudBPEG {
  width: 160px;
  height: 160px;
  object-fit: contain;
  margin-bottom: 25px;
}

/* MAIN TITLE */
.history-emptyTitleBPEG {
  color: #fff;
  text-align: center;
  font-family: Rubik;
  font-size: 36px;
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
}
