@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=Noto+Sans:100,200,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: "Noto Sans", sans-serif;
  color: #fff;
  background-color: #06112e;
}

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

p {
  line-height: 150%;
}

h1 {
  font-size: 38px;
  font-weight: 600;
  margin: 25px 0;
  color: #ff4c00;
}

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

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: #ff4c00;
  font-weight: 700;
}

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: #ff4c00;
  color: #fff;
  font-size: 18px;
  text-align: center;
}
table tr td:hover {
  background-color: #e3e3e3;
}

.header {
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  background-color: #06112e;
  padding: 20px 0;
  box-shadow: 0 2px 5px #ff4c00;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .container .logo-desc {
  height: 48px;
  width: auto;
}
.header .container .logo-mob {
  display: none;
}
.header .container .auth {
  display: flex;
  gap: 15px;
}
.header .container .auth .btn {
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 16px;
}
.header .container .auth .btn-1:hover {
  background-color: rgba(56, 68, 91, 0.08);
}
.header .container .auth .btn-2 {
  position: relative;
  overflow: hidden;
  color: #fff;
  background-color: #ff4c00;
}
.header .container .auth .btn-2:before {
  content: "";
  width: 50%;
  height: 300%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.4;
  background: linear-gradient(270deg, rgba(255, 195, 106, 0), #ffc56d, rgba(255, 193, 99, 0));
  animation: blickBtn 4s ease-in-out infinite;
}
.header .container .auth .btn-2:hover {
  background-color: #ff5c16;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
}
.header .container .auth .btn-2:hover::before {
  content: none;
  animation: none;
}

.main {
  height: 100%;
  flex: 1 1 auto;
  padding: 120px 0 50px;
}
.main .banner {
  background: #ff9401;
  background: radial-gradient(at center, #ff9401, #c31483);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  padding: 50px;
  position: relative;
  height: 350px;
  border-radius: 20px;
}
.main .banner__img {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  bottom: -4.5px;
}
.main .banner__text {
  display: flex;
  flex-direction: column;
  font-size: 24px;
  font-weight: 600;
}
.main .banner__text .gold {
  color: #ffe600;
}
.main .banner__text .big {
  font-size: 40px;
}
.main .banner__text .black {
  color: #333;
}
.main .banner .btns {
  display: flex;
  align-items: center;
  gap: 100px;
  position: absolute;
  top: 68%;
  left: 50%;
  transform: translate(-50%, -68%);
}
.main .banner .btns .btn {
  padding: 12px 24px;
  border-radius: 16px;
  font-size: 18px;
  width: 150px;
  text-align: center;
}
.main .banner .btns .btn-1 {
  background-color: #f10933;
  box-shadow: 0 0 10px #f10933;
}
.main .banner .btns .btn-2 {
  background-color: #1809f1;
  box-shadow: 0 0 10px #1809f1;
}
.main .content {
  padding: 30px 0 0 0;
}
.main .content p {
  margin: 15px 0;
}
.main .content img {
  display: flex;
  margin: 0 auto;
  max-width: 500px;
}
.main .payments {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 5rem;
       column-gap: 5rem;
  row-gap: 2rem;
  max-width: 60vw;
  padding: 22px 28px;
  background-color: #142245;
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  margin: 30px auto 0;
}
.main .payments .payment__item img {
  height: 32px;
}

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

.footer {
  padding: 30px 0;
  box-shadow: 2px 0 5px #ff4c00;
}
.footer .container {
  display: flex;
  justify-content: center;
}

@media (max-width: 1199px) {
  .main {
    padding: 30px 0;
  }
  .main .banner {
    flex-direction: column;
    padding: 6.25vw 6.25vw 8.75vw 6.25vw;
    height: 130vw;
    gap: 20px;
    align-items: center;
  }
  .main .banner__img {
    width: 100%;
    left: 50%;
    top: 50%;
    bottom: auto;
    transform: translate(-50%, -50%);
  }
  .main .banner .btns {
    bottom: 25px;
    top: auto;
    transform: translate(-50%, 0);
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 75%;
  }
  .main .banner .btns .btn {
    width: 100%;
  }
  .main .banner__text {
    font-size: 18px;
    gap: 0;
    font-weight: 500;
  }
  .main .banner__text .big {
    font-size: 28px;
    font-weight: 700;
  }
  .main .banner__btn {
    padding: 2.5vw 7.5vw;
    font-weight: 600;
  }
}
@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 .logo-mob {
    display: block;
  }
  .header .container .logo-mob img {
    height: 36px;
    width: auto;
  }
  .header .container .logo-desc {
    display: none;
  }
  .header .container .auth {
    gap: 10px;
  }
  .header .container .auth .btn {
    padding: 8px 16px;
    font-weight: 500;
    font-size: 14px;
  }
  .main .content img {
    max-width: 100%;
  }
  .main .payments {
    max-width: 100%;
    gap: 2rem;
  }
}
@keyframes blickBtn {
  0% {
    transform: translate(-200%, -25%) rotate(20deg);
  }
  20% {
    transform: translate(250%, -25%) rotate(20deg);
  }
  to {
    transform: translate(250%, -25%) rotate(20deg);
  }
}