.header .logo,
a,
ul {
  text-decoration: none;
}

.pop-up-age__list p,
.pop-up-age__list ul li:not(:last-child),
.terms__article ul li:not(:last-child) {
  margin-bottom: 0.5rem;
}

.body--scroll-disabled,
.casino,
.gambling {
  overflow: hidden;
}

.card-list__item:hover,
.cookie {
  box-shadow: 1px 0 13px rgba(0, 0, 0, 0.4);
}

.article,
.cookie,
.copy,
.footer__center,
.gambling,
h1 {
  text-align: center;
}

:root {
  --clr-accent-1: #316ff2;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

@media screen and (max-width: 520px) {
  html {
    font-size: 1.923vw;
  }
}

body,
html {
  height: 100%;
}

.container {
  max-width: 1130px;
  padding: 0 1rem;
  margin: 0 auto;
}

.clr1 {
  color: var(--clr-accent-1);
}

*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

img {
  display: block;
  max-width: 100%;
  border-style: none;
}

ul {
  list-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

.article__text,
button,
select {
  text-transform: none;
}

[type="button"],
[type="reset"],
[type="submit"],
button {
  appearance: button;
  -webkit-appearance: button;
  outline: 0;
  border: none;
}

[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring,
button:-moz-focusring {
  outline: ButtonText dotted 1px;
}

@font-face {
  font-family: Inter;
  src: url("../fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: Inter;
  src: url("../fonts/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: Inter;
  src: url("../fonts/Inter-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: Inter;
  src: url("../fonts/Inter-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

body {
  box-sizing: border-box;
  font-family: Inter, sans-serif;
  font-weight: 400;
  color: #000;
  font-size: 2rem;
  line-height: normal;
  background-color: #000;
  cursor: default;
  display: flex;
  flex-direction: column;
}

a {
  background-color: transparent;
  color: inherit;
  font-weight: 600;
}

a:hover {
  text-decoration: underline;
}

* {
  transition: 0.3s;
}

h1 {
  font-size: 4rem;
  line-height: 5rem;
  margin-bottom: 2rem;
}

.pop-up-age {
  display: none;
  padding: 1rem;
}

.pop-up-age--active {
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 9998;
  top: 0;
  left: 0;
  -webkit-backdrop-filter: blur(1rem);
  backdrop-filter: blur(1rem);
  background: rgba(0, 0, 0, 0.4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-animation: 0.4s forwards pop-up--in;
  animation: 0.4s forwards pop-up--in;
}

.pop-up-age__title {
  color: #fff;
  background: #f01a1a;
  border-radius: 1rem;
  text-align: center;
  line-height: 7rem;
  font-size: 6.2rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  width: fit-content;
  margin: 0 auto 1rem;
}

.pop-up-age__modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 2rem;
  padding: 3rem 5rem;
  border-radius: 2.5rem;
  background: #fff;
  color: #474747;
  max-width: 74rem;
  width: 100%;
  line-height: 2.6rem;
  font-size: 2rem;
  -webkit-animation: 0.4s forwards pop-up__modal--in;
  animation: 0.4s forwards pop-up__modal--in;
}

@media (max-width: 767px) {
  .pop-up-age__modal {
    padding: 2rem 3rem;
  }
}

.pop-up-age__list p {
  font-weight: 600;
}

.pop-up-age__list ul {
  margin-left: 2rem;
}

.pop-up-age__list ul li {
  list-style: disc;
}

.pop-up-age__buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.pop-up-age__buttons .btn {
  font-size: 2.6rem;
  line-height: 3rem;
  text-transform: capitalize;
  padding: 1.2rem 1rem;
  border-radius: 1rem;
  color: #fff;
  max-width: unset;
  font-weight: 700;
  cursor: pointer;
}

.pop-up-age__buttons .pop-up-age__btn--yes {
  background: #15d525;
}

.pop-up-age__buttons .pop-up-age__btn--yes:hover {
  background: #10a31c;
}

.pop-up-age__buttons .pop-up-age__btn--no {
  background: #f01a1a;
}

.pop-up-age__buttons .pop-up-age__btn--no:hover {
  background: #bb1515;
}

.pop-up-restrict {
  display: none;
}

.pop-up-restrict--active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100vh;
  width: 100vw;
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-animation: 0.4s forwards pop-up--in;
  animation: 0.4s forwards pop-up--in;
}

.pop-up-restrict__desc {
  font-size: 3.2rem;
  padding: 5rem;
  background-color: #000;
  color: #fff;
  font-weight: 700;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid #fff;
  white-space: nowrap;
  -webkit-animation: 0.4s forwards pop-up__modal--in;
  animation: 0.4s forwards pop-up__modal--in;
}

@-webkit-keyframes pop-up--in {
  0% {
    -webkit-backdrop-filter: blur(0) opacity(0);
    backdrop-filter: blur(0) opacity(0);
  }

  100% {
    -webkit-backdrop-filter: blur(1rem) opacity(1);
    backdrop-filter: blur(1rem) opacity(1);
  }
}

@keyframes pop-up--in {
  0% {
    -webkit-backdrop-filter: blur(0) opacity(0);
    background: 0 0;
    backdrop-filter: blur(0) opacity(0);
  }

  100% {
    -webkit-backdrop-filter: blur(1rem) opacity(1);
    backdrop-filter: blur(1rem) opacity(1);
    background: rgba(0, 0, 0, 0.6);
  }
}

@-webkit-keyframes pop-up--out {
  0% {
    -webkit-backdrop-filter: blur(1rem) opacity(1);
    backdrop-filter: blur(1rem) opacity(1);
    background: rgba(0, 0, 0, 0.6);
  }

  100% {
    -webkit-backdrop-filter: blur(0) opacity(0);
    backdrop-filter: blur(0) opacity(0);
    background: 0 0;
    display: none;
  }
}

@keyframes pop-up--out {
  0% {
    -webkit-backdrop-filter: blur(1rem) opacity(1);
    backdrop-filter: blur(1rem) opacity(1);
  }

  100% {
    -webkit-backdrop-filter: blur(0) opacity(0);
    backdrop-filter: blur(0) opacity(0);
    display: none;
  }
}

@-webkit-keyframes pop-up__modal--in {
  0% {
    scale: 0;
  }

  100% {
    scale: 1;
  }
}

@keyframes pop-up__modal--in {
  0% {
    scale: 0;
  }

  100% {
    scale: 1;
  }
}

@-webkit-keyframes pop-up__modal--out {
  0% {
    scale: 1;
    opacity: 1;
  }

  100% {
    scale: 0;
    opacity: 0;
  }
}

@keyframes pop-up__modal--out {
  0% {
    scale: 1;
    opacity: 1;
  }

  100% {
    scale: 0;
    opacity: 0;
  }
}

.pop-up--out {
  -webkit-animation: 0.2s forwards pop-up--out;
  animation: 0.2s forwards pop-up--out;
}

.pop-up__modal--out {
  -webkit-animation: 0.2s forwards pop-up__modal--out;
  animation: 0.2s forwards pop-up__modal--out;
}

.cookie {
  position: fixed;
  max-width: 50rem;
  right: -100%;
  bottom: 3rem;
  background: #fff;
  border-radius: 2rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 0 auto;
  padding: 2rem 4rem;
  opacity: 0;
  font-size: 1.6rem;
  line-height: 1.8rem;
  color: #474747;
}

.header,
.header::before {
  position: absolute;
  top: 0;
  left: 0;
}

.cookie--visible {
  animation: 0.6s ease-out 0.5s forwards cookie-show;
}

@media screen and (max-width: 820px) {
  .cookie--visible {
    animation: 0.5s ease-out forwards cookie-show--mobile;
  }
}

.cookie--hidden {
  animation: 0.5s ease-out forwards cookie-hide;
}

.cookie__buttons {
  display: flex;
  gap: 1.5rem;
}

.cookie__btn {
  font-size: 1.8rem;
  line-height: 3.2rem;
  font-weight: 500;
  max-width: unset;
  width: 100%;
  background: 0 0;
  border: 0.2rem solid #8c8c8c;
  text-transform: none;
  cursor: pointer;
  border-radius: 0.8rem;
  color: #000;
}

.about__title,
.article,
.gambling__title {
  text-transform: uppercase;
}

.cookie__btn--accept,
.cookie__btn:active,
.cookie__btn:hover {
  background: #8c8c8c;
  color: #fff;
}

.cookie__btn--accept:active,
.cookie__btn--accept:hover {
  background: inherit;
  color: #11111d;
}

.cookie__desc a {
  color: #5a6df6;
}

@keyframes cookie-show {
  0% {
    right: -100%;
    opacity: 0;
  }

  100% {
    right: 2rem;
    opacity: 1;
  }
}

@keyframes cookie-show--mobile {
  0% {
    right: -100%;
    opacity: 0;
  }

  100% {
    right: 0;
    opacity: 1;
  }
}

@keyframes cookie-hide {
  0% {
    right: 2rem;
    opacity: 1;
  }

  100% {
    right: -100%;
    opacity: 0;
  }
}

@keyframes cookie-hide--mobile {
  0% {
    right: 0;
    opacity: 1;
  }

  100% {
    right: -100%;
    opacity: 0;
  }
}

.logo {
  /* font-size: 2.2rem; */
  color: #000;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 2.8rem;
}

@media screen and (max-width: 640px) {
  .logo {
    /* width:60px; */
  }
}

.header {
  z-index: 100;
  width: 100%;
  right: 0;
}

.header .container {
  padding-block: 30px 10px;
}

.header--gradient .container {
  display: flex;
  column-gap: 326px;
  justify-content: flex-start;
}

@media screen and (max-width: 1200px) {
  .header--gradient .container {
    column-gap: 0;
    justify-content: space-between;
  }

  .gambling-rullet-img {
    width: 500px;
  }
}

@media screen and (max-width: 768px) {
  .header .container {
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 0 1rem;
  }
}

.header::before {
  content: "";
  visibility: hidden;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0);
  transition: 0.2s;
}

.header--active::before {
  visibility: visible;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(3px);
  z-index: 99;
}

.header--active .logo {
  color: #fff;
}

.header--active .logo span {
  color: #000;
  background: #fff;
}

.header--active .container {
  justify-content: flex-end;
}

.header .logo {
  z-index: 999;
  /* font-size: 2rem; */
}

.header__top {
  background-color: #d3d3d3;
  padding-block: 10px;
  display: flex;
  justify-content: center;
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 80px;
}

@media screen and (max-width: 980px) {
  .header__nav {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
    background: #191919;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
  }

  .header__nav .nav__link {
    color: #fff;
  }

  .header__nav--active {
    max-height: 60rem;
    height: fit-content;
    padding: 8rem 1rem 4rem;
  }

  .header--active a.logo {
    display: none;
  }
}

.gambling .container,
.gambling__subtitle {
  position: relative;
  z-index: 2;
}

.header__nav .nav__link {
  display: block;
  font-size: 1.6rem;
  font-weight: 400;
  padding: 4px 26px;
  border-radius: 1.6rem;
  white-space: nowrap;
  text-transform: capitalize;
  color: #ffffff80;
  line-height: 2.8rem;
  text-decoration: none;
}

.gambling,
.header__nav .nav__link--active,
.header__nav .nav__link:hover {
  color: #fff;
}

.header-styles .nav__link {
  background-color: #8c8c8c;
}

.header-styles .nav__link--active {
  background-color: #6dbf00;
  color: #000;
}

.gambling,
.gambling .ellipse,
.header__bottom {
  background-color: #000;
}

.header-styles .header__nav {
  column-gap: 20px;
}

.gambling {
  position: relative;
  margin-top: 169px;
  padding-top: 100px;
}

@media (max-width: 980px) {
  .gambling {
    margin-top: 72px;
  }
}

.gambling__title {
  font-weight: 700;
  font-size: 4.8rem;
  line-height: 5.8rem;
  margin-bottom: 8px;
}

.gambling__subtitle {
  font-size: 2rem;
  line-height: 3rem;
  color: #ffffff80;
}

.gambling-rullet-img {
  position: absolute;
  top: 17%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.gambling-cards-img {
  position: absolute;
  left: 10%;
  top: -10%;
  transform: rotate(16deg);
}

.gambling-crown-img {
  position: absolute;
  right: 19%;
  top: -11%;
}

.gambling .ellipse {
  position: absolute;
  top: 25%;
  z-index: 1;
  width: 100%;
  height: 476px;
  filter: blur(76px);
}

.gambling-coin-img {
  position: absolute;
  top: -60%;
  right: -1%;
}

.burger {
  display: none;
  z-index: 100;
}

@media screen and (max-width: 1090px) {
  .gambling-coin-img {
    top: -30%;
    right: 0;
    z-index: 1;
  }
}

@media screen and (max-width: 1700px) {
  .gambling-cards-img {
    width: 500px;
    left: 5%;
  }

  .gambling-crown-img {
    right: 12%;
  }
}

@media screen and (max-width: 1400px) {
  .gambling-cards-img {
    width: 300px;
    top: 9%;
  }

  .gambling-crown-img {
    right: 4%;
  }
}

@media screen and (max-width: 940px) {
  .gambling-crown-img {
    width: 280px;
    top: 4%;
    right: 8%;
  }
}

@media screen and (max-width: 920px) {
  .gambling-cards-img {
    left: -8%;
  }

  .gambling-crown-img {
    right: 0;
  }
}

@media screen and (max-width: 980px) {
  .burger {
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 0.4rem;
    cursor: pointer;
    position: absolute;
    right: 10%;
    top: 100%;
  }

  .header__footer {
    display: flex;
    justify-content: end;
  }

  .gambling__title {
    font-size: 2.6rem;
    line-height: 3.8rem;
    position: relative;
    z-index: 2;
  }
}

.casino,
.footer {
  position: relative;
}

.burger__bottom,
.burger__middle,
.burger__top {
  width: 100%;
  height: 0.4rem;
  background-color: #000000;
  border-radius: 1rem;
  transition: 0.2s;
  position: relative;
}

.burger.burger--active {
  /* align-items: center; */
}

.burger.burger--active * {
  background-color: #fff;
}

.burger.burger--active .burger__top {
  rotate: 45deg;
  top: 0.4rem;
}

.burger.burger--active .burger__bottom {
  rotate: -45deg;
  bottom: 0.4rem;
}

.burger.burger--active .burger__middle {
  scale: 0;
}

.footer {
  padding: 15px;
  background-color: #778583;
  color: #fff;
}

.footer__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 10px;
  column-gap: 3vw;
  margin-bottom: 20px;
  line-height: 2.8rem;
  font-size: 1.6rem;
  font-weight: 700;
}

.footer__center,
.footer__center span {
  font-weight: 400;
}

.footer__links .nav__link {
  background: 0 0;
}

.footer__center {
  padding-block: 0px 36px;
  line-height: 1.8;
  margin: 0 auto 15px;
  width: max-content;
  padding: 8px 60px;
}

.feedback__phone,
.footer__center p {
  font-size: 1.6rem;
  line-height: 2.8rem;
  color: #ffffff80;
}

@media screen and (max-width: 940px) {
  .footer__center {
    width: auto;
    padding: 8px 30px;
  }
}

@media screen and (max-width: 460px) {
  .footer__center {
    padding: 8px 14px;
  }
}

.copy {
  font-size: 1.8rem;
}

.terms {
  margin-top: 82px;
  padding-top: 64px;
  background-color: #000;
}

.terms__container {
  border-radius: 0.7rem;
}

.terms__article {
  padding: 54px;
  background-color: #fff;
  border-top-left-radius: 36px;
  border-top-right-radius: 36px;
}

@media screen and (max-width: 780px) {
  .terms__article {
    padding: 30px;
  }
}

@media screen and (max-width: 560px) {
  .cookie--hidden {
    animation: 0.5s ease-out forwards cookie-hide--mobile;
  }

  .terms__article {
    padding: 18px;
  }
}

.terms__article h3 {
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 3.8rem;
}

.terms__article * {
  font-size: 1.6rem;
  line-height: 2.2rem;
}

.terms__article p:not(:last-child) {
  margin-bottom: 1rem;
}

.terms__article p:not(:first-child) {
  margin-top: 1rem;
}

.terms__item:not(:last-child) {
  margin-bottom: 30px;
}

.terms__item a {
  border-bottom: 1px solid #000;
  font-weight: 400;
}

.terms__item-alert {
  color: #ffe100;
  margin-top: 40px;
}

@media (max-width: 768px) {
  h1 {
    font-size: 3.4rem;
    line-height: 4rem;
  }

  .header {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0px 0px 2px 0px #000;
  }

  .terms {
    padding-top: 4rem;
  }

  .terms__article {
    line-height: 2.8rem;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
  }

  .terms__article h3 {
    line-height: 4rem;
  }
}

@media (max-width: 540px) {
  .terms__article {
    padding: 1rem;
  }

  .terms {
    margin-top: 60px;
  }

  .terms__item:not(:last-child) {
    margin-bottom: 24px;
  }

  .terms__article h3 {
    font-size: 16px;
  }

  .terms__article p,
  .terms__item {
    font-size: 14px;
  }
}

.terms__article a {
  word-break: break-word;
}

.terms__article ul {
  margin-left: 2rem;
  margin-top: 0.5rem;
}

.terms__article ul li {
  list-style-type: disc;
}

.casino {
  padding-block: 80px 20px;
  background-color: #000;
}

.casino__bg-coin-1 {
  position: absolute;
  left: 0;
  bottom: 0;
}

.casino__bg-coin-2 {
  position: absolute;
  top: 2%;
  right: 6%;
}

.casino .container {
  position: relative;
  z-index: 5;
}

.card-list {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: end;
}

@media screen and (max-width: 960px) {
  .card-list {
    grid-template-columns: repeat(auto-fit, minmax(40rem, max-content));
  }

  .casino__bg-coin-1 {
    width: 300px;
  }

  .casino__bg-coin-2 {
    top: auto;
    bottom: 0;
    right: 0;
    width: 180px;
  }
}

.card-list__item {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  max-width: 354px;
  margin: auto;
}

.card-list__text {
  margin-top: 26px;
  font-size: 10px;
  line-height: 12px;
  color: #ffffff80;
}

.card-list__block {
  background-color: #fff;
  border-radius: 86px 16px 16px;
  padding: 20px 26px 26px 56px;
  width: 100%;
}

.card-list__header {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.card-list__item-title {
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 3rem;
}

.card-list__body {
  position: relative;
  display: flex;
  justify-content: space-between;
}

.card-list__number {
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 3.6rem;
}

.card-list__left {
  display: flex;
  flex-direction: column;
}

.card-list__options {
  display: inline-flex;
  align-items: center;
  column-gap: 30px;
  font-size: 10px;
  line-height: 10px;
  margin-bottom: 22px;
}

.card-list__left .card-list__option span {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: #747474;
}

.article__item h1,
.article__text p:not(:last-child) {
  margin-bottom: 10px;
}

.card-list__link {
  background-color: #6dbf00;
  padding: 4px 30px;
  border-radius: 600px;
  font-size: 12px;
  width: max-content;
}

.card-list__payments {
  display: flex;
  flex-direction: column;
  row-gap: 4px;
}

.card-list__payment {
  padding: 6px;
  background-color: #eef4fb;
  border-radius: 6px;
}

.about,
.article {
  background-color: #fff;
}

.article {
  padding-block: 54px 76px;
  color: #000;
  overflow: hidden;
  position: relative;
}

.article::after {
  content: "";
  background: url(../img/1.png) no-repeat;
  position: absolute;
  left: 2%;
  color: #1c1c1d12;
  width: 440px;
  height: 307px;
  bottom: 0;
}

@media (max-width: 1300px) {
  .article::after {
    width: 200px;
    height: 134px;
    background-size: 100%;
  }
}
.article__item {
  font-size: 2rem;
  line-height: 3rem;
}

.about__title,
.article__item h1 {
  font-weight: 700;
}

.article__item h1 {
  text-align: left;
}

.article__item p {
  text-align: left;
  font-size: 1.6rem;
  line-height: 2.6rem;
}

p.article-bottom {
  font-style: normal;
  color: #000;
  text-align: right;
}

.about__title span,
.article__title--grey {
  color: #1c1c1dbf;
}

.article__item:not(:last-child) {
  margin-bottom: 40px;
}

@media screen and (max-width: 990px) {
  .footer {
    padding-block: 30px;
  }

  .casino {
    padding: 26px 0 30px;
  }

  .article__item h1 {
    margin-bottom: 20px;
    text-align: center;
  }
}

@media screen and (max-width: 600px) {
  .logo img {
    /* width:100px; */
  }

  .article__item h1 {
    /* line-height: 4.2rem; */
  }
}

@media screen and (max-width: 580px) {
  .article {
    padding-block: 18px 26px;
  }
}

.note {
  color: red;
}

.about {
  padding-block: 30px 60px;
}

.about__title {
  margin-bottom: 42px;
}

.about__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  column-gap: 26px;
  row-gap: 66px;
}

@media screen and (max-width: 720px) {
  .gambling-cards-img,
  .gambling-crown-img {
    display: none;
  }

  .gambling-rullet-img {
    width: 340px;
    top: 26%;
    filter: blur(2px);
  }

  .gambling-coin-img {
    top: auto;
    left: 0;
    bottom: 0;
    filter: blur(2px);
  }

  .about__list {
    row-gap: 24px;
  }
}

.about__list-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  background: #1c1c1d;
  padding: 26px 102px 26px 20px;
  border-radius: 4px 30px 30px;
  max-width: 350px;
  width: 100%;
}

@media screen and (max-width: 1110px) {
  .about__list {
    grid-template-columns: repeat(2, 1fr);
    place-content: center;
  }
}

@media screen and (max-width: 980px) {
  .header__top {
    /* padding:0; */
  }

  .burger {
    position: absolute;
    right: 10%;
    top: 20px;
    /* transform: translateY(-50%); */
  }

  .about__list {
    gap: 26px;
    grid-template-columns: 1fr;
    place-items: center;
  }
}

.about__item-title {
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 3rem;
  margin-bottom: 6px;
  color: #fff;
}

.about__item-text {
  font-size: 1.4rem;
  line-height: 1.8rem;
  color: #a6a6a6;
}

.about__item-text a {
  font-weight: 400;
}

.about__item-text span {
  font-weight: 700;
  color: #a6a6a6;
  white-space: nowrap;
}

.about__list-image {
  position: absolute;
  top: 24px;
  right: 30px;
}

@media screen and (max-width: 780px) {
  .about__list-item img {
    width: auto;
    float: left;
  }

  .about__list-item {
    padding: 50px 30px 30px;
  }

  .about__title {
    margin-bottom: 24px;
    text-align: center;
  }

  .about__item-title {
    line-height: 3.2rem;
  }
}

@media screen and (max-width: 540px) {
  .article__item p,
  .header__nav .nav__link {
    font-size: 14px;
  }

  .gambling {
    margin-top: 67px;
    padding-top: 50px;
  }

  .about__item-title,
  .copy,
  .footer__center,
  .footer__center p,
  .footer__links {
    font-size: 16px;
  }

  .about__title {
    line-height: 3.8rem;
  }

  .about__item-text {
    font-size: 14px;
    line-height: 2rem;
  }

  .about__list-item {
    padding: 50px 20px 14px;
  }

  .about__list-image {
    top: 10px;
    right: 10px;
  }
}

.feedback {
  background-color: #778583;
  color: #fff;
}

.feedback .container {
  padding-block: 32px;
  background: url("../img/feedback-bg.png") 84% no-repeat;
}

.feedback__title {
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 2.6rem;
  margin-bottom: 8px;
}

.feedback__list {
  display: flex;
  column-gap: 40px;
  font-size: 1.6rem;
  line-height: 2.8rem;
}

.feedback__list-item:not(:first-child) {
  color: #ffffff80;
}
