@charset "UTF-8";
/***
    The new CSS reset - version 1.8.5 (last updated 14.6.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" attribute is exclud, because otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,regular,500,600,700&display=swap);
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

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

/* Reapply the pointer cursor for anchor tags */
a,
button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input,
textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* remove default dot (•) sign */
::marker {
  content: initial;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element */
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
}

html,
body {
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  color: #fff;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background: #030534;
}

p {
  line-height: 150%;
}

h1 {
  font-size: 38px;
  font-weight: 600;
  text-align: center;
  margin: 25px 0;
}

h2 {
  font-size: 32px;
  font-weight: 600;
  margin: 20px 0;
  text-align: center;
}

h3 {
  font-size: 26px;
  font-weight: 600;
  margin: 15px 0;
}

ol {
  list-style: decimal;
  padding: 15px 25px;
}

ul {
  list-style: disc;
  padding: 15px 25px;
}

li {
  line-height: 150%;
}

ol li::marker,
ul li::marker {
  color: #233d50;
}

table {
  border-collapse: collapse;
  width: 100%;
  overflow-x: auto;
  margin: 20px 0;
  overflow: auto;
}
table tr td,
table tr th {
  border: 1px solid #333;
  padding: 15px;
}
table tr th {
  background-color: #2094ff;
  color: #fff;
  font-size: 18px;
  text-align: center;
}
table tr td:hover {
  background-color: rgba(32, 147, 255, 0.231372549);
}

.header {
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  background: #131f60;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.6);
  padding: 20px 0;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .container .logo {
  flex: 0 0 150px;
}
.header .container .logo img {
  width: 100%;
}
.header .container .auth {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header .container .auth .btn {
  border-radius: 6px;
  padding: 12px 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
}
.header .container .auth .btn-1 {
  border: 1px solid #fff;
}
.header .container .auth .btn-1:hover {
  background: rgba(255, 255, 255, 0.1254901961);
}
.header .container .auth .btn-2 {
  background: radial-gradient(75% 100% at 50.34% 100%, #2094ff 0%, #0b3ddd 100%);
  color: #fff;
  font-weight: 600;
}
.header .container .auth .btn-2:hover {
  background: radial-gradient(75% 100% at 50.34% 100%, #0a6fce 0%, #082173 100%);
}

.main {
  height: 100%;
  flex: 1 1 auto;
  padding: 50px 0;
}
.main .reminder-modal {
  background: #131f60;
  border-radius: 15px;
  bottom: 0;
  display: flex;
  flex-direction: column;
  max-height: 100%;
  position: relative;
  width: 450px;
  margin: 0 auto;
}
.main .reminder-modal .reminder-modal__content {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 16px 24px;
}
.main .reminder-modal .reminder-modal__image {
  width: 360px;
}
.main .reminder-modal .reminder-modal__title {
  color: rgba(255, 255, 255, 0.7019607843);
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
  text-transform: uppercase;
  margin: 0;
}
.main .reminder-modal .reminder-modal__info {
  color: rgba(255, 255, 255, 0.9019607843);
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  text-align: center;
}
.main .reminder-modal .reminder-modal__info > span {
  color: #f6a913;
}
.main .reminder-modal .reminder-modal__buttons {
  padding: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1411764706);
}
.main .reminder-modal .reminder-btn {
  display: flex;
  padding: 15px;
  justify-content: center;
  width: 100%;
  background-color: #f6a913;
  cursor: pointer;
  color: #333;
  border-radius: 10px;
  font-weight: 600;
}
.main .reminder-modal .reminder-btn:hover {
  background-color: #b2801a;
}
.main .links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 25px 0;
  gap: 20px;
}
.main .links .link {
  background-color: #131f60;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  transition: 0.1s linear;
  will-change: height;
  border-radius: 10px;
  min-width: 172px;
  height: 80px;
}
.main .links .link img {
  flex-shrink: 0;
  height: 32px;
  opacity: 0.7;
  width: 32px;
}
.main .soft {
  padding: 30px 0;
  background-color: #2c3357;
  margin-top: 30px;
}
.main .soft-items {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: space-around;
}
.main .soft-items img {
  height: auto;
}
.main .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
}
.main .cards .card {
  border-radius: 10px;
  cursor: pointer;
  position: relative;
}
.main .cards .card:hover .card__hover {
  opacity: 1;
}
.main .cards .card .card__img img {
  margin: 0;
  border-radius: 10px;
}
.main .cards .card .card__hover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(75% 100% at 50.34% 100%, rgba(32, 147, 255, 0.6352941176) 0%, rgba(11, 60, 221, 0.7882352941) 100%);
}
.main .cards .card .card__hover {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid #0b3ddd;
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.main .cards .card .card__hover .title {
  text-align: center;
  color: #fff;
}
.main .cards .card .card__wrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.main .cards .card .card-btn {
  background: url("../img/play.svg") center/cover no-repeat;
  width: 50px;
  height: 50px;
  display: block;
}
.main .cards .card .card-btn:hover {
  background: url("../img/play-hover.svg") center/cover no-repeat;
}
.main .content {
  border-radius: 6px;
  margin: 20px 0;
}
.main .content p {
  margin: 15px 0;
}
.main .content img {
  display: flex;
  margin: 0 auto;
  max-width: 500px;
}
.main .payments {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 50px 16px;
  background-color: rgba(0, 0, 0, 0.4784313725);
  border-radius: 6px;
}
.main .payments .payment {
  cursor: pointer;
  transition: filter 0.4s ease-in-out;
}
.main .payments .payment svg path {
  transition: fill 0.4s ease-in-out;
}
.main .payments .payment:nth-child(1):hover {
  filter: drop-shadow(0px 0px 16px #1f46ff);
}
.main .payments .payment:nth-child(1):hover svg path {
  fill: #1f46ff;
}
.main .payments .payment:nth-child(2):hover {
  filter: drop-shadow(0px 0px 16px #ff8000);
}
.main .payments .payment:nth-child(2):hover svg path {
  fill: #ff8000;
}
.main .payments .payment:nth-child(3):hover {
  filter: drop-shadow(0px 0px 16px #ffc200);
}
.main .payments .payment:nth-child(3):hover svg path {
  fill: #ffc200;
}
.main .payments .payment:nth-child(4):hover {
  filter: drop-shadow(0px 0px 16px #f7931a);
}
.main .payments .payment:nth-child(4):hover svg path {
  fill: #f7931a;
}
.main .payments .payment:nth-child(5):hover {
  filter: drop-shadow(0px 0px 16px #c718e3);
}
.main .payments .payment:nth-child(5):hover svg path {
  fill: #c718e3;
}
.main .payments .payment:nth-child(6):hover {
  filter: drop-shadow(0px 0px 16px #28d49f);
}
.main .payments .payment:nth-child(6):hover svg path {
  fill: #28d49f;
}
.main__btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 25px;
  width: 250px;
  margin: 25px auto;
  background: radial-gradient(75% 100% at 50.34% 100%, #5eaffb 0%, #6789f6 100%);
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}
.main__btn a:hover {
  background: radial-gradient(75% 100% at 50.34% 100%, #5a99d4 0%, #637ac4 100%);
}
.main__btn a::before {
  content: "";
  background-color: rgba(255, 255, 255, 0.5);
  height: 100%;
  width: 3em;
  display: block;
  position: absolute;
  top: 0;
  left: -4.5em;
  transition: none;
  animation: _ngcontent-wlc-app-c30_sheen 2.5s infinite;
}
.main .faq {
  margin: 50px auto;
  padding: 40px;
  max-width: 70vw;
  background-color: rgba(103, 137, 246, 0.27);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.main .faq__item {
  border-top: 1px solid rgb(86, 66, 141);
  padding: 24px 0;
}
.main .faq__item.active .faq__body {
  display: block;
}
.main .faq__item.active .faq__question-button {
  background-color: #0b3ddd;
}
.main .faq__item.active .faq__icon {
  transform: translateY(-50%) rotate(45deg);
}
.main .faq__title {
  font-size: 30px;
  font-weight: 600;
}
.main .faq__body {
  margin-top: 40px;
  display: none;
}
.main .faq__body p {
  margin: 15px 0;
}
.main .faq__question {
  position: relative;
  width: 100%;
  text-align: left;
  padding-right: 44px;
  font-weight: 600;
  font-size: 20px;
  cursor: pointer;
}
.main .faq__question-button {
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
  z-index: 1;
  right: 0;
  width: 40px;
  height: 40px;
  background-color: #0b3ddd;
}
.main .faq__icon {
  position: absolute;
  top: 50%;
  z-index: 2;
  right: 8px;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.main .faq__icon span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.container {
  max-width: 90vw;
  margin: 0 auto;
  padding: 0 16px;
}

.footer {
  padding: 30px 0;
  background-color: #131f60;
}
.footer .container {
  display: flex;
  justify-content: space-around;
}
.footer .container .flex-1 .list-title {
  font-size: 18px;
  text-transform: uppercase;
}
.footer .container .flex-1 ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
}
.footer .container .flex-1 ul li {
  color: rgba(255, 255, 255, 0.7019607843);
}
.footer .container .flex-1 ul li:hover {
  color: rgba(255, 255, 255, 0.4705882353);
}
.footer .container .flex-2 {
  flex: 0 0 30%;
}
.footer .container .flex {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer .container .icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.footer .container .icons img {
  height: 40px;
}

.scroll-btn {
  position: fixed;
  cursor: pointer;
  right: 30px;
  bottom: 30px;
  z-index: 99;
  display: none;
}
.scroll-btn svg {
  border-radius: 6px;
}

@media (max-width: 768px) {
  h1 {
    margin: 20px 0;
    font-size: 30px;
  }
  h2 {
    font-size: 24px;
    margin: 15px 0;
  }
  h3 {
    font-size: 20px;
    margin: 10px 0;
  }
  .container {
    max-width: 100%;
  }
  .header .container {
    flex-direction: column;
    gap: 15px;
  }
  .header .container .logo {
    flex: auto;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  table {
    display: inline-table;
  }
  h1 {
    margin: 20px 0;
    font-size: 30px;
  }
  h2 {
    font-size: 24px;
    margin: 15px 0;
  }
  h3 {
    font-size: 20px;
    margin: 10px 0;
  }
  .container {
    max-width: 100%;
  }
  .header .container {
    flex-direction: column;
    gap: 15px;
  }
  .main {
    padding: 30px 0;
  }
  .main .reminder-modal {
    width: 100%;
  }
  .main .cards {
    grid-template-columns: repeat(auto-fit, minmax(150px, 2fr));
  }
  .main .content img {
    max-width: 100%;
  }
  .main .faq {
    max-width: 100%;
    margin: 30px 0;
    gap: 30px;
  }
  .main .faq__title {
    font-size: 24px;
  }
  .main .faq__question {
    font-size: 16px;
  }
  .main .faq__question-button {
    width: 30px;
    height: 30px;
  }
  .main .faq__icon {
    width: 14px;
    height: 14px;
  }
  .main .faq__body {
    margin-top: 20px;
    font-size: 14px;
  }
  .footer .container {
    flex-direction: column;
    gap: 20px;
  }
}
@keyframes _ngcontent-wlc-app-c30_sheen {
  0% {
    transform: skewY(-45deg) translateX(0);
  }
  50%, 100% {
    transform: skewX(-45deg) translateX(22em);
    transition: all 0.5s ease-in-out;
  }
}
  nav.olimp-nav {
    background: #f7f7f7;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    max-width: 600px;
    margin: 0 auto 30px;
    font-family: 'Segoe UI', sans-serif;
  }

  nav.olimp-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  nav.olimp-nav li {
    margin-bottom: 12px;
  }

  nav.olimp-nav a {
    display: block;
    padding: 12px 16px;
    background-color: #21318d;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    color: #222;
    transition: all 0.2s ease-in-out;
    border: 1px solid #000e5e;
  }

  nav.olimp-nav a:hover {
    background-color: #edf2ff;
    border-color: #b0c4ff;
    color: #0033cc;
  }

  nav.olimp-nav a::before {
    content: '🔹 ';
  }