@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: #333;
}

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

p {
  line-height: 150%;
}

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

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: #fc0;
  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: #fc0;
  font-size: 18px;
  text-align: center;
}

.header {
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 101;
  background: linear-gradient(320deg, #242424, #1a1a1a, #0f0f0f);
  padding: 20px 0;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .container .logo {
  flex: 0 0 150px;
}
.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;
  transition: all 0.2s ease-in-out;
}
.header .container .auth .btn-1 {
  background-color: #fff;
  color: #333;
}
.header .container .auth .btn-1:hover {
  background-color: #c8c7c7;
}
.header .container .auth .btn-2 {
  position: relative;
  overflow: hidden;
  background-color: #fc0;
}
.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 {
  color: #fff;
  background-color: rgb(203, 164, 11);
}
.header .container .auth .btn-2:hover::before {
  content: none;
  animation: none;
}

.main {
  height: 100%;
  flex: 1 1 auto;
  padding: 50px 0;
}
.main .banner {
  background: #ff9401;
  background: linear-gradient(180deg, #3ec2fa, #195fee);
  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: 60%;
  transform: translate(-60%);
  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;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}
.main .banner .btns .btn {
  padding: 12px 24px;
  border-radius: 16px;
  font-size: 18px;
  width: 200px;
  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: linear-gradient(320deg, #242424, #1a1a1a, #0f0f0f);
  border-radius: 16px;
  margin: 30px auto 0;
}
.main .payments .payment__item img {
  height: 32px;
}

.box-brend {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.box-brend .brend-card {
  position: relative;
  background: #fff;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.1);
  width: 100%;
  margin-bottom: 30px;
  border-radius: 10px;
}

.box-brend .start-card {
  display: flex;
  justify-content: flex-start;
  position: relative;
  padding: 15px;
  background: #fff;
  width: 100%;
  border-radius: 5px;
}

.box-brend .brend-card .start-card .place {
  display: block;
  position: absolute;
  font-weight: 700;
  width: 36px;
  height: 24px;
  top: 10px;
  left: -7px;
  font-size: 13px;
  background: #fc0;
  color: #4e3e0a;
  text-align: center;
  line-height: 2;
  border-radius: 4px 4px 4px 0;
}

.box-brend .brend-card .start-card .place::before {
  position: absolute;
  top: 100%;
  left: 0;
  content: "";
  border-top: 7px solid #e6b800;
  border-left: 7px solid rgba(255, 255, 255, 0);
}

.box-brend .brend-card .start-card .promokod {
  position: absolute;
  color: #bb9c2d;
  width: 140px;
  height: 40px;
  right: 25%;
  top: 0;
  padding: 5px 0;
  text-align: center;
  font-size: 8px;
  display: block;
  line-height: 1.3;
  cursor: pointer;
  text-transform: uppercase;
  border-radius: 0 0 10px 10px;
  letter-spacing: 0.4mm;
  background: #fff6d4;
}

.box-brend .brend-card .start-card .promokod span {
  display: block;
  font-weight: 900;
  text-transform: none;
  font-size: 14px;
  letter-spacing: 0;
  color: #4e4e4e;
}

.box-brend .brend-card .start-card .images {
  display: flex;
  align-items: center;
  padding: 10px 25px;
}

.box-brend .brend-card .start-card .images img {
  padding: 0;
  border-radius: 5px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.box-brend .brend-card .start-card .info {
  max-width: 660px;
  min-width: 340px;
  width: 100%;
  padding: 10px;
}

.box-brend .brend-card .start-card .info h3 {
  margin: 0;
}

.box-brend .brend-card .start-card .info .name {
  padding: 0;
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  color: #4e4e4e;
}

.box-brend .brend-card .start-card .info .bonus {
  font-size: 14px;
  color: #535353;
  line-height: 1.6;
  padding: 5px 0;
  position: relative;
}

.box-brend .brend-card .start-card .info .bonus b {
  color: #4e4e4e;
}

.box-brend .brend-card .start-card .info .stars {
  display: flex;
  position: relative;
  gap: 20px;
}

.box-brend .brend-card .start-card .info .stars .item::before {
  position: absolute;
  content: "";
  top: 2px;
  width: 15px;
  height: 15px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.box-brend .brend-card .start-card .info .stars .item.select::before {
  position: absolute;
  content: "";
  top: 2px;
  width: 15px;
  height: 15px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.box-brend .brend-card .start-card .info .stars .grade {
  color: #444;
  margin: 0 10px;
  font-size: 10px;
  display: block;
  padding: 0 10px;
  height: 20px;
  background: #fffbee;
  line-height: 2;
  border-radius: 4px;
}

.box-brend .brend-card .start-card .themain {
  min-width: 210px;
  width: 210px;
  padding: 10px;
  position: relative;
}

.box-brend .brend-card .start-card .themain a.review-btn {
  display: inline-block;
  position: relative;
  width: 180px;
  padding: 6px 0;
  font-weight: 600;
  font-size: 14px;
  color: #4e3e00;
  background: #fc0;
  margin: 0 5px;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

.box-brend .brend-card .start-card .themain a.review-btn:hover {
  background: #ffdf5d;
}

.box-brend .brend-card .start-card .themain a.links-btn {
  display: inline-block;
  width: 180px;
  padding: 6px 0;
  margin: 0 5px;
  font-weight: 600;
  font-size: 14px;
  color: #4e3e00;
  background: #fc0;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

.box-brend .brend-card .start-card .themain a.links-btn:hover {
  background: #ffdf5d;
}

.box-brend .brend-card .start-card .themain .icons {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}

.box-brend .brend-card .start-card .themain .icons a.youtube,
.box-brend .brend-card .start-card .themain .icons a.bonuses,
.box-brend .brend-card .start-card .themain .icons a.comments,
.box-brend .brend-card .start-card .themain .icons a.review,
.box-brend .brend-card .start-card .themain .icons a.link {
  position: relative;
  width: 56px;
  height: 44px;
  padding: 4px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
  font-size: 8px;
  font-weight: 500;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

.box-brend .brend-card .start-card .themain .icons a.bonuses {
  color: #175f32;
  background: #cfe6d8;
}

.box-brend .brend-card .start-card .themain .icons a.bonuses:hover {
  background: #b5d7c2;
}

.box-brend .brend-card .start-card .themain .icons a.bonuses::before {
  position: absolute;
  content: "";
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15px;
  height: 15px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.box-brend .brend-card .start-card .themain .icons a.comments {
  color: #244d7a;
  background: #d7e4f2;
}

.box-brend .brend-card .start-card .themain .icons a.comments:hover {
  background: #c2d3e5;
}

.box-brend .brend-card .start-card .themain .icons a.comments::before {
  position: absolute;
  content: "";
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15px;
  height: 15px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.box-brend .brend-card .start-card .themain .icons a.review {
  color: #73400d;
  background: #ffe6cb;
}

.box-brend .brend-card .start-card .themain .icons a.review:hover {
  background: #f0d7bb;
}

.box-brend .brend-card .start-card .themain .icons a.review::before {
  position: absolute;
  content: "";
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15px;
  height: 15px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/icon/icon-review-v2.svg);
}

.box-brend .brend-card .start-card .themain .icons a.link {
  color: #9d1e1e;
  background: #ffd6d6;
}

.box-brend .brend-card .start-card .themain .icons a.link:hover {
  background: #ffc4c4;
}

.box-brend .brend-card .start-card .themain .icons a.link::before {
  position: absolute;
  content: "";
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15px;
  height: 15px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.box-brend .additional-card {
  display: flex;
  justify-content: flex-start;
  position: relative;
  background: #fffbef;
  width: 100%;
  padding: 5px 30px;
  display: none;
  border-radius: 0 0 5px 5px;
}

.box-brend .more-information {
  width: 30px;
  height: 30px;
  background: #fff6d4;
  border-bottom: 1px solid #fc0;
  position: absolute;
  bottom: -14px;
  right: 40px;
  border-radius: 5px;
  cursor: pointer;
  z-index: 100;
}

.box-brend .more-information::after {
  position: absolute;
  content: "";
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15px;
  height: 15px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.box-brend .more-information.active {
  transform: rotate(180deg);
}

.box-brend .more-information:hover {
  background: #ffefb6;
}

.box-brend .additional-card .block {
  display: flex;
  justify-content: center;
  padding: 10px 0;
}

.box-brend .additional-card .block .comp {
  padding: 5px 20px;
  align-items: center;
  align-content: center;
  justify-content: center;
  display: grid;
  border-right: 1px solid #f6f1df;
  text-align: center;
}

.box-brend .additional-card .block .comp.top {
  display: unset;
}

.box-brend .additional-card .block .comp:nth-last-child(1) {
  border: 0;
}

.box-brend .additional-card .block .comp ul.dignity {
  list-style: none;
  position: relative;
  display: block;
  padding: 5px 15px;
  text-align: left;
  min-width: 300px;
}

.box-brend .additional-card .block .comp ul.dignity li {
  padding: 10px 0 10px 30px;
  position: relative;
  font-size: 13px;
  font-weight: 500;
}

.box-brend .additional-card .block .comp ul.dignity li::before {
  position: absolute;
  content: "";
  top: 22px;
  left: 12px;
  transform: translate(-50%, -50%);
  width: 15px;
  height: 15px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/icon/icon-checkmark.svg);
}

.box-brend .additional-card .block .comp .h-wiew {
  padding: 0;
  margin: 0 0 5px 0;
  font-size: 14px;
  font-weight: 700;
}

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

.footer {
  padding: 30px 0;
  background: linear-gradient(320deg, #242424, #1a1a1a, #0f0f0f);
  color: #fff;
}
.footer .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

@media (max-width: 1199px) {
  .main {
    padding: 30px 0;
  }
  .main .banner {
    flex-direction: column;
    padding: 6.25vw 6.25vw 8.75vw 6.25vw;
    height: auto;
    gap: 20px;
    align-items: center;
  }
  .main .banner__img {
    width: 100%;
    position: inherit;
  }
  .main .banner .btns {
    bottom: 25px;
    top: auto;
    gap: 20px;
  }
  .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;
  }
  .box-brend .brend-card .start-card .info .stars .grade {
    margin-top: 0;
    margin-left: 10px;
  }
  .box-brend .brend-card .start-card .info .stars {
    flex-wrap: wrap;
  }
  .box-brend .brend-card .start-card .info {
    min-width: initial;
  }
  .box-brend .brend-card .start-card .info .stars .grade {
    margin-top: 10px;
    margin-left: 0;
  }
  .box-brend .brend-card .start-card .images {
    padding: 0 0 0 15px;
  }
  .box-brend .additional-card .block {
    flex-wrap: wrap;
  }
  .box-brend .additional-card .block .comp {
    width: 50%;
  }
  .box-brend .additional-card .block .comp:nth-child(2) {
    border-right: 0;
  }
  .box-brend .brend-card .start-card .info {
    padding: 10px 30px;
  }
  .box-brend .start-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .box-brend .brend-card .start-card .themain .icons {
    margin-top: 0;
    width: 100%;
    margin-top: 10px;
  }
  .box-brend .brend-card .start-card .info {
    padding: 10px 30px;
  }
  .box-brend .brend-card .start-card .themain {
    width: 100%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  .box-brend .more-information {
    right: 20px;
  }
  .box-brend .brend-card .start-card .info .stars {
    justify-content: center;
    flex-wrap: wrap;
  }
  .box-brend .brend-card .start-card .images {
    padding: 20px 0;
  }
  .box-brend .brend-card .start-card .info {
    min-width: initial;
  }
  .box-brend .additional-card .block {
    padding-left: 0;
    padding-right: 0;
  }
  .box-brend .additional-card .block .comp ul.dignity {
    min-width: initial;
    margin-bottom: 0;
  }
  .box-brend .additional-card .block .comp h4 {
    margin-bottom: 10px;
  }
  .box-brend .additional-card .block .comp ul.dignity {
    padding: 0;
    margin-top: 0;
  }
}
.rate {
  background-color: #cfe6d8;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
  border-radius: 20px;
}

.rate h2 {
  text-align: center;
  margin-bottom: 0;
}

.rate .rate__blocks {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.rate .rate__blocks .rate__block h5 {
  margin-bottom: 5px;
}

.rate .rate__blocks .rate__block .rate__line {
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
}

.rate .rate__blocks .rate__block .rate__line span {
  background-color: #fc0;
  display: flex;
  justify-content: flex-end;
  border-radius: 10px;
  padding: 2px 5px;
  font-size: 14px;
}

/* adv */
.adv {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 2rem 0;
}

.adv__item {
  background-color: #d7e4f2;
  padding: 1.5rem;
  flex: 1;
  border-radius: 5px;
}

.adv__item ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0 0 0 1.5rem;
  list-style: none;
}

.adv__item ul li {
  position: relative;
  font-size: 18px;
}

.adv__item .plus li::before {
  content: "+";
  position: absolute;
  top: -2.5px;
  left: -25px;
  font-size: 24px;
  color: #333;
  font-weight: 600;
}

.adv__item .minus li::before {
  content: "-";
  position: absolute;
  top: -2.5px;
  left: -25px;
  font-size: 24px;
  color: #333;
  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 {
    flex-direction: column;
    gap: 15px;
  }
  .header .container .logo {
    flex: auto;
  }
  .header .container .logo img {
    max-width: 120px;
  }
  .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;
  }
  .adv {
    flex-direction: column;
  }
}
@keyframes blickBtn {
  0% {
    transform: translate(-200%, -25%) rotate(20deg);
  }
  20% {
    transform: translate(250%, -25%) rotate(20deg);
  }
  to {
    transform: translate(250%, -25%) rotate(20deg);
  }
}