/* 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%;
}

@font-face {
  font-family: 'Inter';
  src: url('/fontsDUckmarl4/inter-variablefontDUckmarl4.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Source Sans 3';
  src: url('/fontsDUckmarl4/sourcesans3-variablefontDUckmarl4.woff2')
    format('woff2');
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
}
/* HEADER */
.headerDUckmarl4 {
  position: relative;
  z-index: 50;
  background: linear-gradient(180deg, #000 63%, #641c1f 86.84%, #952b2f 100%);
}

.headerDUckmarl4__container {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.headerDUckmarl4__logo {
  display: inline-flex;
  align-items: center;
  width: 178px;
  flex-shrink: 0;
  text-decoration: none;
}

.headerDUckmarl4__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.headerDUckmarl4__nav {
  display: flex;
  align-items: center;
}

.headerDUckmarl4__list {
  display: flex;
  align-items: center;
  gap: 36px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.headerDUckmarl4__list a {
  color: #fefefe;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  text-decoration: none;
  transition: color 0.3s ease;
}

.headerDUckmarl4__list a:hover {
  color: #f34a50;
}

.headerDUckmarl4__burger {
  display: none;
  position: relative;
  width: 36px;
  height: 28px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  z-index: 60;
}

.headerDUckmarl4__burger span {
  position: absolute;
  left: 0;
  width: 36px;
  height: 3px;
  border-radius: 10px;
  background: #fff;
  transition: 0.3s ease;
}

.headerDUckmarl4__burger span:nth-child(1) {
  top: 3px;
}

.headerDUckmarl4__burger span:nth-child(2) {
  top: 13px;
}

.headerDUckmarl4__burger span:nth-child(3) {
  top: 23px;
}

.headerDUckmarl4.is-open .headerDUckmarl4__burger span:nth-child(1) {
  top: 13px;
  transform: rotate(45deg);
}

.headerDUckmarl4.is-open .headerDUckmarl4__burger span:nth-child(2) {
  opacity: 0;
}

.headerDUckmarl4.is-open .headerDUckmarl4__burger span:nth-child(3) {
  top: 13px;
  transform: rotate(-45deg);
}

@media (max-width: 768px) {
  .headerDUckmarl4 {
    position: relative;
  }

  .headerDUckmarl4__container {
    min-height: 64px;
  }

  .headerDUckmarl4__logo {
    width: 150px;
  }

  .headerDUckmarl4__burger {
    display: block;
  }

  .headerDUckmarl4__nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 55;

    display: block;
    overflow: hidden;

    max-height: 0;
    opacity: 0;
    visibility: hidden;

    background: #080808;
    border-top: 1px solid rgba(243, 74, 80, 0.35);
    transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  }

  .headerDUckmarl4.is-open .headerDUckmarl4__nav {
    max-height: 260px;
    opacity: 1;
    visibility: visible;
  }

  .headerDUckmarl4__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 16px 20px 20px;
  }

  .headerDUckmarl4__list li {
    width: 100%;
  }

  .headerDUckmarl4__list a {
    display: block;
    width: 100%;
    padding: 12px 0;
    font-size: 18px;
  }
}

@media (max-width: 420px) {
  .headerDUckmarl4__logo {
    width: 132px;
  }
}

.heroDUckmarl4 {
  position: relative;
  overflow: hidden;
  background: #000;
  padding-bottom: 40px;
}

.heroDUckmarl4__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
}

.heroDUckmarl4__bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.heroDUckmarl4__container {
  position: relative;
  z-index: 2;
  min-height: 778px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 96px;
}

.heroDUckmarl4__visual {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 4;
  width: 62%;
  max-width: 850px;
  pointer-events: none;
}

.heroDUckmarl4__ducks {
  display: block;
  width: 100%;
  height: auto;
}

.heroDUckmarl4__card {
  position: relative;
  z-index: 3;
  width: 658px;
  max-width: 100%;
  padding: 34px 24px 30px;
  border-radius: 30px;
  background: #fff;
}

.heroDUckmarl4__title {
  max-width: 470px;
  margin: 0 0 14px;
  color: #0a0a0a;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 40px;
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
}

.heroDUckmarl4__title span {
  color: #e2454b;
}

.heroDUckmarl4__text {
  max-width: 470px;
  margin: 0 0 20px;
  color: #0a0a0a;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: normal;
}

.heroDUckmarl4__actions {
  max-width: 470px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.heroDUckmarl4__btn {
  min-width: 198px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 30px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  font-weight: 900;
  line-height: normal;
  text-decoration: none;
}

.heroDUckmarl4__btn--primary {
  color: #fff;
  background: linear-gradient(146deg, #f34a50 16.84%, #8f0000 86.55%);
}

.heroDUckmarl4__btn--secondary {
  color: #0a0a0a;
  border: 1px solid #f34a50;
  background: #fff;
}

.heroDUckmarl4__line {
  position: absolute;
  left: 0;
  bottom: 15px;
  z-index: 6;
  width: 100%;
  height: 70px;
  pointer-events: none;
}

/* desktop */
@media (max-width: 1200px) {
  .heroDUckmarl4__container {
    min-height: 700px;
  }

  .heroDUckmarl4__visual {
    right: -7%;
    width: 70%;
  }

  .heroDUckmarl4__card {
    width: 600px;
  }
}

/* tablet: уже используется mobile bg и mobile-позиционирование */
@media (max-width: 992px) {
  .heroDUckmarl4__container {
    min-height: 900px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 76px;
  }

  .heroDUckmarl4__bg img {
    object-position: center top;
  }

  .heroDUckmarl4__visual {
    position: absolute;
    top: 0;
    left: 50%;
    right: auto;
    bottom: auto;
    z-index: 3;
    width: 100%;
    max-width: none;
    transform: translateX(-50%);
  }

  .heroDUckmarl4__card {
    width: 100%;
    max-width: 100%;
    padding: 32px 34px;
    border-radius: 16px;
  }

  .heroDUckmarl4__title,
  .heroDUckmarl4__text,
  .heroDUckmarl4__actions {
    max-width: none;
  }

  .heroDUckmarl4__title {
    font-size: 40px;
  }

  .heroDUckmarl4__text {
    margin-bottom: 28px;
    font-size: 24px;
    line-height: 1.16;
  }

  .heroDUckmarl4__actions {
    gap: 26px;
  }

  .heroDUckmarl4__btn {
    flex: 1;
    min-width: 0;
    min-height: 70px;
    font-size: 26px;
  }
}

/* mobile */
@media (max-width: 520px) {
  .heroDUckmarl4__container {
    min-height: 760px;
    padding-bottom: 60px;
  }

  .heroDUckmarl4__visual {
    top: 0;
    width: 100%;
  }

  .heroDUckmarl4__card {
    padding: 28px 22px;
    border-radius: 12px;
  }

  .heroDUckmarl4__title {
    font-size: 30px;
  }

  .heroDUckmarl4__text {
    font-size: 18px;
    line-height: 1.18;
  }

  .heroDUckmarl4__actions {
    gap: 16px;
  }

  .heroDUckmarl4__btn {
    min-height: 58px;
    font-size: 18px;
  }

  .heroDUckmarl4__line {
    height: 54px;
  }
}

@media (max-width: 390px) {
  .heroDUckmarl4__container {
    min-height: 632px;
  }

  .heroDUckmarl4__card {
    padding: 24px 18px;
  }

  .heroDUckmarl4__title {
    font-size: 26px;
  }

  .heroDUckmarl4__text {
    font-size: 15px;
  }

  .heroDUckmarl4__actions {
    gap: 12px;
  }

  .heroDUckmarl4__btn {
    min-height: 48px;
    font-size: 16px;
  }

  .heroDUckmarl4 {
    padding-bottom: 0;
  }
}

/* video section */

.videoDUckmarl4 {
  padding: 72px 0 0;
  background: #000;
  padding-bottom: 80px;
}

.videoDUckmarl4__wrapper {
  width: 100%;
  max-width: 1194px;
  margin: 0 auto;

  overflow: hidden;

  border-radius: 28px;
}

.videoDUckmarl4__video {
  display: block;

  width: 100%;
  height: auto;

  aspect-ratio: 1194 / 540;

  object-fit: cover;
}

/* line block */
.videoLineDUckmarl4 {
  background: #000;
}

.videoLineDUckmarl4__img {
  display: block;

  width: 100%;
  height: auto;
}

/* laptop */
@media (max-width: 1200px) {
  .videoDUckmarl4 {
    padding-top: 64px;
  }

  .videoDUckmarl4__wrapper {
    border-radius: 24px;
  }
}

/* tablet */
@media (max-width: 768px) {
  .videoDUckmarl4 {
    padding-top: 48px;
  }

  .videoDUckmarl4__wrapper {
    border-radius: 18px;
  }
}

/* mobile */
@media (max-width: 520px) {
  .videoDUckmarl4 {
    padding-top: 32px;
  }

  .videoDUckmarl4__wrapper {
    border-radius: 12px;
  }

  .videoDUckmarl4__video {
    aspect-ratio: 16 / 10;
  }

  .videoLineDUckmarl4__img {
    min-height: 56px;

    object-fit: cover;
    object-position: center;
  }
}

.aboutDUckmarl4 {
  padding: 80px 0;
  background: #080808;
}

.aboutDUckmarl4__container {
  display: grid;
  grid-template-columns: minmax(0, 482px) minmax(0, 580px);
  align-items: center;
  justify-content: center;
  gap: 82px;
}

.aboutDUckmarl4__slider {
  position: relative;
  width: 100%;
}

.aboutDUckmarl4__slides {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.aboutDUckmarl4__slide {
  display: none;
}

.aboutDUckmarl4__slide.is-active {
  display: block;
}

.aboutDUckmarl4__slide img {
  display: block;
  width: 100%;
  aspect-ratio: 482 / 383;
  object-fit: cover;
}

.aboutDUckmarl4__arrow {
  position: absolute;
  top: 50%;
  right: -52px;
  width: 38px;
  height: 26px;
  padding: 0;
  border: 0;
  background: transparent;
  transform: translateY(-50%);
  cursor: pointer;
}

.aboutDUckmarl4__arrow img {
  display: block;
  width: 100%;
  height: auto;
}

.aboutDUckmarl4__dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 10px;
}

.aboutDUckmarl4__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.aboutDUckmarl4__dot.is-active {
  width: 36px;
  border-radius: 20px;
  background: #e2454b;
}

.aboutDUckmarl4__label {
  margin: 0 0 34px;
  color: var(--r, #e2454b);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.aboutDUckmarl4__title {
  max-width: 560px;
  margin: 0 0 24px;
  color: var(--White_0, #fefefe);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.45;
  text-transform: uppercase;
}

.aboutDUckmarl4__text {
  margin: 0;
  color: var(--White_0, #fefefe);
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

@media (max-width: 992px) {
  .aboutDUckmarl4 {
    padding: 64px 0;
  }

  .aboutDUckmarl4__container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .aboutDUckmarl4__content {
    order: 1;
  }

  .aboutDUckmarl4__slider {
    order: 2;
    max-width: 520px;
    margin: 0 auto;
  }

  .aboutDUckmarl4__arrow {
    display: none;
  }

  .aboutDUckmarl4__label {
    margin-bottom: 24px;
  }

  .aboutDUckmarl4__title {
    margin-bottom: 16px;
    font-size: 28px;
    line-height: 1.25;
  }
}

@media (max-width: 520px) {
  .aboutDUckmarl4 {
    padding: 48px 0;
  }

  .aboutDUckmarl4__container {
    gap: 22px;
  }

  .aboutDUckmarl4__label {
    margin-bottom: 24px;
    font-size: 20px;
  }

  .aboutDUckmarl4__title {
    font-size: 24px;
    line-height: 1.45;
  }

  .aboutDUckmarl4__text {
    font-size: 16px;
  }

  .aboutDUckmarl4__slides {
    border-radius: 10px;
  }

  .aboutDUckmarl4__dot {
    width: 10px;
    height: 10px;
  }

  .aboutDUckmarl4__dot.is-active {
    width: 36px;
  }
}
.tutorialDUckmarl4 {
  padding: 90px 0 0;
  background: #080808;
  overflow: hidden;
}

.tutorialDUckmarl4__container {
  display: grid;
  grid-template-columns: minmax(0, 585px) minmax(0, 550px);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* LEFT */

.tutorialDUckmarl4__content {
  max-width: 585px;
}

.tutorialDUckmarl4__label {
  margin: 0 0 34px;
  color: #e2454b;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.tutorialDUckmarl4__title {
  max-width: 585px;
  margin: 0 0 24px;
  color: #fefefe;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.tutorialDUckmarl4__text {
  max-width: 585px;
  margin: 0;
  color: #fefefe;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: normal;
}

/* SLIDER */

.tutorialDUckmarl4__slider {
  position: relative;
  width: 100%;
  max-width: 550px;
  padding-right: 50px;
  margin-left: auto;
}

.tutorialDUckmarl4__slides {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tutorialDUckmarl4__slide {
  display: none;
}

.tutorialDUckmarl4__slide.is-active {
  display: block;
}

/* CARD */

.tutorialDUckmarl4__card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}

.tutorialDUckmarl4__card img {
  display: block;
  width: 100%;
  aspect-ratio: 500 / 470;
  object-fit: cover;
}

.tutorialDUckmarl4__card-content {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
}

.tutorialDUckmarl4__card-content h3 {
  margin: 0 0 10px;
  color: #e2454b;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
}

.tutorialDUckmarl4__card-content p {
  margin: 0;
  color: #fefefe;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.2;
}

/* BUTTON */

.tutorialDUckmarl4__download {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 16px;
  border-radius: 30px;
  background: linear-gradient(146deg, #f34a50 16.84%, #8f0000 86.55%);
  color: #fff;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  font-weight: 900;
  line-height: normal;
  text-decoration: none;
}

/* ARROW */

.tutorialDUckmarl4__arrow {
  position: absolute;
  top: 50%;
  right: 0;
  width: 38px;
  height: 26px;
  padding: 0;
  border: 0;
  background: transparent;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 10;
}

.tutorialDUckmarl4__arrow img {
  display: block;
  width: 100%;
  height: auto;
}

/* DOTS */

.tutorialDUckmarl4__dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 12px;
  padding-right: 50px;
}

.tutorialDUckmarl4__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid #e2454b;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.tutorialDUckmarl4__dot.is-active {
  width: 36px;
  border-radius: 20px;
  background: #e2454b;
}

/* LINE */

.tutorialDUckmarl4__line {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 70px;
}

/* LAPTOP */

@media (max-width: 1200px) {
  .tutorialDUckmarl4__container {
    grid-template-columns: minmax(0, 1fr) minmax(0, 500px);
    gap: 20px;
  }

  .tutorialDUckmarl4__slider {
    max-width: 500px;
    padding-right: 44px;
  }

  .tutorialDUckmarl4__dots {
    padding-right: 44px;
  }

  .tutorialDUckmarl4__arrow {
    width: 34px;
    height: 24px;
  }
}

/* TABLET */

@media (max-width: 992px) {
  .tutorialDUckmarl4 {
    padding-top: 64px;
  }

  .tutorialDUckmarl4__container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .tutorialDUckmarl4__content {
    max-width: 585px;
  }

  .tutorialDUckmarl4__slider {
    max-width: 550px;
    padding-right: 50px;
    margin: 0 auto;
  }

  .tutorialDUckmarl4__dots {
    padding-right: 50px;
  }

  .tutorialDUckmarl4__arrow {
    right: 0;
  }

  .tutorialDUckmarl4__label {
    margin-bottom: 24px;
  }

  .tutorialDUckmarl4__title {
    margin-bottom: 18px;
    font-size: 28px;
  }

  .tutorialDUckmarl4__line {
    margin-top: 48px;
  }
}

/* MOBILE */

@media (max-width: 768px) {
  .tutorialDUckmarl4__slider {
    max-width: 500px;
    padding-right: 0;
  }

  .tutorialDUckmarl4__dots {
    padding-right: 0;
  }

  .tutorialDUckmarl4__arrow {
    display: none;
  }
}

@media (max-width: 520px) {
  .tutorialDUckmarl4 {
    padding-top: 48px;
  }

  .tutorialDUckmarl4__container {
    gap: 26px;
  }

  .tutorialDUckmarl4__label {
    margin-bottom: 20px;
    font-size: 18px;
  }

  .tutorialDUckmarl4__title {
    margin-bottom: 16px;
    font-size: 24px;
    line-height: 1.3;
  }

  .tutorialDUckmarl4__text {
    font-size: 16px;
  }

  .tutorialDUckmarl4__card {
    border-radius: 10px;
  }

  .tutorialDUckmarl4__card-content {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .tutorialDUckmarl4__card-content h3 {
    margin-bottom: 8px;
    font-size: 16px;
  }

  .tutorialDUckmarl4__card-content p {
    font-size: 13px;
  }

  .tutorialDUckmarl4__download {
    min-height: 38px;
    margin-top: 14px;
    font-size: 14px;
  }

  .tutorialDUckmarl4__line {
    min-height: 56px;
    margin-top: 38px;
    object-fit: cover;
    object-position: center;
  }
}

/* SMALL MOBILE */

@media (max-width: 380px) {
  .tutorialDUckmarl4__title {
    font-size: 22px;
  }

  .tutorialDUckmarl4__text {
    font-size: 15px;
  }

  .tutorialDUckmarl4__card-content h3 {
    font-size: 14px;
  }

  .tutorialDUckmarl4__card-content p {
    font-size: 12px;
  }

  .tutorialDUckmarl4__download {
    min-height: 34px;
    font-size: 13px;
  }
}

.featuresDUckmarl4 {
  padding: 90px 0;
  background: #080808;
}

.featuresDUckmarl4__label {
  margin: 0 0 34px;

  color: var(--r, #e2454b);

  font-family: 'Source Sans 3', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.featuresDUckmarl4__title {
  max-width: 760px;

  margin: 0 0 32px;

  color: var(--White_0, #fefefe);

  font-family: 'Source Sans 3', sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.featuresDUckmarl4__text {
  max-width: 1120px;

  margin: 0 0 72px;

  color: var(--White_0, #fefefe);

  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.featuresDUckmarl4__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.featuresDUckmarl4__item {
  text-align: center;
}

.featuresDUckmarl4__number {
  display: inline-block;

  margin-bottom: 26px;

  background: linear-gradient(146deg, #8f0000 16.84%, #f34a50 86.55%);

  -webkit-background-clip: text;
  background-clip: text;

  -webkit-text-fill-color: transparent;
  color: transparent;

  font-family: 'Source Sans 3', sans-serif;
  font-size: 56px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.featuresDUckmarl4__description {
  margin: 0;

  color: var(--White_0, #fefefe);

  text-align: center;

  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

/* tablet */

@media (max-width: 992px) {
  .featuresDUckmarl4 {
    padding: 64px 0;
  }

  .featuresDUckmarl4__title {
    margin-bottom: 24px;

    font-size: 28px;
  }

  .featuresDUckmarl4__text {
    margin-bottom: 56px;
  }

  .featuresDUckmarl4__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 24px;
  }

  .featuresDUckmarl4__number {
    font-size: 52px;
  }
}

/* mobile */

@media (max-width: 520px) {
  .featuresDUckmarl4 {
    padding: 48px 0;
  }

  .featuresDUckmarl4__label {
    margin-bottom: 24px;

    font-size: 18px;
  }

  .featuresDUckmarl4__title {
    margin-bottom: 20px;

    font-size: 24px;
    line-height: 1.35;
  }

  .featuresDUckmarl4__text {
    margin-bottom: 42px;

    font-size: 16px;
  }

  .featuresDUckmarl4__list {
    gap: 42px 18px;
  }

  .featuresDUckmarl4__number {
    margin-bottom: 18px;

    font-size: 44px;
  }

  .featuresDUckmarl4__description {
    font-size: 15px;
  }
}

/* small mobile */

@media (max-width: 380px) {
  .featuresDUckmarl4__list {
    grid-template-columns: 1fr;
  }

  .featuresDUckmarl4__number {
    font-size: 40px;
  }
}

.firstStrikeDUckmarl4 {
  padding: 80px 0 0;
  background: #080808;
}

.firstStrikeDUckmarl4__inner {
  width: 100%;
  display: grid;
  grid-template-columns: 473px 1fr;
  align-items: center;
  gap: 56px;
  padding: 30px;
  border-radius: 30px;
  background: linear-gradient(146deg, #8f0000 16.84%, #f34a50 86.55%);
}

.firstStrikeDUckmarl4__form {
  width: 473px;
  max-width: 100%;
  padding: 16px;
  border-radius: 16px;
  background: #080808;
}

.firstStrikeDUckmarl4__form label {
  display: block;
}

.firstStrikeDUckmarl4__form input {
  width: 100%;
  height: 38px;
  margin-bottom: 16px;
  padding: 0 14px;
  border: 1px solid #e2454b;
  border-radius: 8px;
  outline: none;
  background: transparent;
  color: #fefefe;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 14px;
  font-weight: 300;
}

.firstStrikeDUckmarl4__form input::placeholder {
  color: #fefefe;
}

.firstStrikeDUckmarl4__form button {
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: 30px;
  background: linear-gradient(146deg, #f34a50 16.84%, #8f0000 86.55%);
  color: #fff;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
}

.firstStrikeDUckmarl4__label {
  margin: 0 0 24px;
  color: var(--White_0, #fefefe);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}

.firstStrikeDUckmarl4__title {
  max-width: 620px;
  margin: 0 0 24px;
  color: var(--White_0, #fefefe);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.firstStrikeDUckmarl4__text {
  max-width: 620px;
  margin: 0;
  color: var(--White_0, #fefefe);
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: normal;
}

.firstStrikeDUckmarl4__line {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 60px;
}

.popupDUckmarl4 {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.popupDUckmarl4.is-active {
  display: flex;
}

.popupDUckmarl4__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.popupDUckmarl4__body {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 445px;
  min-height: 160px;
  overflow: hidden;
  border: 1px solid #f34a50;
  border-radius: 16px;
  background: #080808;
  box-shadow: 0 0 34px rgba(243, 74, 80, 0.7);
}

.popupDUckmarl4__content {
  position: relative;
  z-index: 2;
  width: 78%;
  padding: 34px 24px;
  text-align: center;
}

.popupDUckmarl4__content h3 {
  margin: 0 0 26px;
  color: #e2454b;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
}

.popupDUckmarl4__content p {
  margin: 0;
  color: #fefefe;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.1;
}

.popupDUckmarl4__img {
  position: absolute;
  right: -42px;
  bottom: -26px;
  z-index: 1;
  width: 170px;
  height: auto;
  pointer-events: none;
}

.popupDUckmarl4__close {
  position: absolute;
  top: 8px;
  right: 12px;
  z-index: 4;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

@media (max-width: 992px) {
  .firstStrikeDUckmarl4__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .firstStrikeDUckmarl4__content {
    order: -1;
  }

  .firstStrikeDUckmarl4__form {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .firstStrikeDUckmarl4 {
    padding-top: 48px;
  }

  .firstStrikeDUckmarl4__inner {
    padding: 22px 20px;
    border-radius: 8px;
  }

  .firstStrikeDUckmarl4__title {
    font-size: 24px;
    line-height: 1.35;
  }

  .firstStrikeDUckmarl4__text {
    font-size: 16px;
  }

  .firstStrikeDUckmarl4__form {
    padding: 20px;
  }

  .firstStrikeDUckmarl4__form input {
    height: 50px;
  }

  .firstStrikeDUckmarl4__form button {
    min-height: 52px;
  }

  .firstStrikeDUckmarl4__line {
    min-height: 56px;
    margin-top: 40px;
    object-fit: cover;
    object-position: center;
  }

  .popupDUckmarl4__body {
    max-width: 430px;
    min-height: 160px;
  }

  .popupDUckmarl4__content {
    width: 76%;
    padding: 30px 22px;
  }

  .popupDUckmarl4__img {
    right: -50px;
    bottom: -18px;
    width: 150px;
  }
}

.teamDUckmarl4 {
  padding: 90px 0;
  background: #080808;
}

.teamDUckmarl4__label {
  margin: 0 0 44px;
  color: var(--r, #e2454b);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.teamDUckmarl4__title {
  margin: 0 0 30px;
  color: var(--White_0, #fefefe);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.teamDUckmarl4__text {
  max-width: 1180px;
  margin: 0 0 36px;
  color: var(--White_0, #fefefe);
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: normal;
}

.teamDUckmarl4__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 48px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.teamDUckmarl4__card img {
  display: block;
  width: 100%;
  aspect-ratio: 223 / 210;
  margin-bottom: 14px;
  border-radius: 20px;
  object-fit: cover;
}

.teamDUckmarl4__card h3 {
  margin: 0 0 16px;
  color: var(--r, #e2454b);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.teamDUckmarl4__role {
  margin: 0 0 16px;
  color: var(--White_0, #fefefe);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
}

.teamDUckmarl4__desc {
  margin: 0;
  color: var(--White_0, #fefefe);
  font-family: 'Inter', Arial, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: normal;
}

@media (max-width: 1200px) {
  .teamDUckmarl4__list {
    gap: 28px;
  }
}

@media (max-width: 992px) {
  .teamDUckmarl4 {
    padding: 64px 0;
  }

  .teamDUckmarl4__list {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    padding-bottom: 14px;
    scroll-snap-type: x mandatory;
  }

  .teamDUckmarl4__list::-webkit-scrollbar {
    display: none;
  }

  .teamDUckmarl4__item {
    flex: 0 0 260px;
    scroll-snap-align: start;
  }
}

@media (max-width: 520px) {
  .teamDUckmarl4 {
    padding: 48px 0;
  }

  .teamDUckmarl4__label {
    margin-bottom: 28px;
    font-size: 20px;
  }

  .teamDUckmarl4__title {
    margin-bottom: 18px;
    font-size: 26px;
    line-height: 1.4;
  }

  .teamDUckmarl4__text {
    margin-bottom: 24px;
    font-size: 16px;
  }

  .teamDUckmarl4__item {
    flex-basis: 228px;
  }

  .teamDUckmarl4__card img {
    border-radius: 8px;
  }
}

.downloadDUckmarl4 {
  padding: 90px 0;
  background: #080808;
}

.downloadDUckmarl4__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 70px;

  padding: 48px 56px;

  border-radius: 30px;

  background: linear-gradient(146deg, #8f0000 16.84%, #f34a50 86.55%);
}

.downloadDUckmarl4__label {
  margin: 0 0 44px;

  color: var(--White_0, #fefefe);

  font-family: 'Source Sans 3', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.downloadDUckmarl4__title {
  max-width: 760px;

  margin: 0 0 34px;

  color: var(--White_0, #fefefe);

  font-family: 'Source Sans 3', sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.downloadDUckmarl4__text {
  max-width: 720px;

  margin: 0;

  color: var(--White_0, #fefefe);

  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.downloadDUckmarl4__steps {
  margin: 0 0 42px;
  padding-left: 28px;

  color: var(--White_0, #fefefe);

  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.downloadDUckmarl4__steps li:not(:last-child) {
  margin-bottom: 18px;
}

.downloadDUckmarl4__qr-list {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: auto;
}

.downloadDUckmarl4__qr {
  flex-shrink: 0;
}

.downloadDUckmarl4__qr img {
  display: block;

  width: 124px;
  height: 124px;

  object-fit: contain;
}

/* tablet */

@media (max-width: 992px) {
  .downloadDUckmarl4 {
    padding: 64px 0;
  }

  .downloadDUckmarl4__inner {
    grid-template-columns: 1fr;
    gap: 40px;

    padding: 42px 34px;
  }

  .downloadDUckmarl4__right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* mobile */

@media (max-width: 520px) {
  .downloadDUckmarl4 {
    padding: 48px 0;
  }

  .downloadDUckmarl4__inner {
    gap: 34px;

    padding: 30px 24px;

    border-radius: 16px;
  }

  .downloadDUckmarl4__label {
    margin-bottom: 28px;

    font-size: 18px;
  }

  .downloadDUckmarl4__title {
    margin-bottom: 26px;

    font-size: 24px;
    line-height: 1.35;
  }

  .downloadDUckmarl4__text {
    font-size: 16px;
  }

  .downloadDUckmarl4__steps {
    margin-bottom: 34px;
    padding-left: 24px;

    font-size: 16px;
  }

  .downloadDUckmarl4__steps li:not(:last-child) {
    margin-bottom: 16px;
  }

  .downloadDUckmarl4__qr-list {
    gap: 20px;
  }

  .downloadDUckmarl4__qr img {
    width: 124px;
    height: 124px;
  }
}

/* small mobile */

@media (max-width: 380px) {
  .downloadDUckmarl4__inner {
    padding: 24px 18px;
  }

  .downloadDUckmarl4__qr-list {
    gap: 14px;
  }

  .downloadDUckmarl4__qr img {
    width: 110px;
    height: 110px;
  }
}

.footerDUckmarl4 {
  padding: 58px 0;
  background: linear-gradient(180deg, #952b2f 0%, #641c1f 9.9%, #000 53.62%);
}

.footerDUckmarl4__container {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 330px) minmax(0, 430px);
  gap: 40px;
  align-items: flex-start;
}

.footerDUckmarl4__logo {
  display: inline-flex;
  width: 180px;
  margin-bottom: 18px;
}

.footerDUckmarl4__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.footerDUckmarl4__copy,
.footerDUckmarl4__contacts a,
.footerDUckmarl4__col a {
  color: var(--White_0, #fefefe);
  font-family: 'Inter', Arial, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: normal;
  text-decoration: none;
}

.footerDUckmarl4__copy {
  margin: 0 0 22px;
}

.footerDUckmarl4__age {
  display: block;
  color: var(--White_0, #fefefe);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.footerDUckmarl4__contacts {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0;
  font-style: normal;
}

.footerDUckmarl4__contacts a {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.footerDUckmarl4__contacts img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.footerDUckmarl4__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
}

.footerDUckmarl4__col h2 {
  margin: 0 0 18px;
  color: var(--White_0, #fefefe);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.footerDUckmarl4__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (max-width: 992px) {
  .footerDUckmarl4__container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footerDUckmarl4__nav {
    max-width: 520px;
  }
}

@media (max-width: 520px) {
  .footerDUckmarl4 {
    padding: 48px 0;
  }

  .footerDUckmarl4__logo {
    width: 190px;
  }

  .footerDUckmarl4__age {
    font-size: 34px;
  }

  .footerDUckmarl4__nav {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }
}

.storyDUckmarl4 {
  padding: 90px 0 0;
  background: #080808;
}

.storyDUckmarl4__container {
  display: grid;
  grid-template-columns: minmax(0, 554px) minmax(0, 560px);
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.storyDUckmarl4__image {
  overflow: hidden;
  border-radius: 14px;
}

.storyDUckmarl4__image img {
  display: block;
  width: 100%;
  aspect-ratio: 554 / 475;
  object-fit: cover;
}

.storyDUckmarl4__label {
  margin: 0 0 34px;
  color: var(--r, #e2454b);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.storyDUckmarl4__title {
  max-width: 560px;
  margin: 0 0 28px;
  color: var(--White_0, #fefefe);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.storyDUckmarl4__text {
  max-width: 560px;
  margin: 0;
  color: var(--White_0, #fefefe);
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: normal;
}

.storyDUckmarl4__line {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 70px;
}

@media (max-width: 992px) {
  .storyDUckmarl4 {
    padding-top: 64px;
  }

  .storyDUckmarl4__container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .storyDUckmarl4__content {
    order: 1;
  }

  .storyDUckmarl4__image {
    order: 2;
  }

  .storyDUckmarl4__label {
    margin-bottom: 24px;
  }

  .storyDUckmarl4__title {
    margin-bottom: 20px;
    font-size: 28px;
    line-height: 1.35;
  }

  .storyDUckmarl4__line {
    margin-top: 48px;
  }
}

@media (max-width: 520px) {
  .storyDUckmarl4 {
    padding-top: 48px;
  }

  .storyDUckmarl4__label {
    font-size: 20px;
  }

  .storyDUckmarl4__title {
    font-size: 24px;
    line-height: 1.45;
  }

  .storyDUckmarl4__text {
    font-size: 16px;
  }

  .storyDUckmarl4__image {
    border-radius: 8px;
  }

  .storyDUckmarl4__line {
    min-height: 56px;
    margin-top: 38px;
    object-fit: cover;
    object-position: center;
  }
}

.charactersDUckmarl4 {
  padding: 90px 0 0;
  background: #080808;
}

.charactersDUckmarl4__top {
  margin-bottom: 48px;
}

.charactersDUckmarl4__label {
  margin: 0 0 34px;
  color: #e2454b;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.charactersDUckmarl4__title {
  margin: 0 0 30px;
  color: #fefefe;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.charactersDUckmarl4__text {
  max-width: 1240px;
  margin: 0;
  color: #fefefe;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: normal;
}

.charactersDUckmarl4__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 56px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.charactersDUckmarl4__card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.charactersDUckmarl4__image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  margin-bottom: 28px;
}

.charactersDUckmarl4__image img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 320px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(226, 69, 75, 0.75))
    drop-shadow(0 0 60px rgba(226, 69, 75, 0.65))
    drop-shadow(0 0 120px rgba(226, 69, 75, 0.55));
}

.charactersDUckmarl4__name {
  margin: 0 0 18px;
  color: #e2454b;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.charactersDUckmarl4__desc {
  margin: 0;
  color: #fefefe;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: normal;
}

.charactersDUckmarl4__line {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 76px;
}

@media (max-width: 992px) {
  .charactersDUckmarl4 {
    padding-top: 64px;
  }

  .charactersDUckmarl4__list {
    gap: 36px;
  }

  .charactersDUckmarl4__image {
    min-height: 260px;
  }

  .charactersDUckmarl4__image img {
    max-height: 260px;
    filter: drop-shadow(0 0 20px rgba(226, 69, 75, 0.7))
      drop-shadow(0 0 46px rgba(226, 69, 75, 0.6))
      drop-shadow(0 0 90px rgba(226, 69, 75, 0.5));
  }

  .charactersDUckmarl4__name {
    font-size: 18px;
  }

  .charactersDUckmarl4__desc {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .charactersDUckmarl4__list {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .charactersDUckmarl4__image {
    min-height: 220px;
    margin-bottom: 22px;
  }

  .charactersDUckmarl4__image img {
    max-height: 220px;
    filter: drop-shadow(0 0 18px rgba(226, 69, 75, 0.7))
      drop-shadow(0 0 38px rgba(226, 69, 75, 0.55))
      drop-shadow(0 0 70px rgba(226, 69, 75, 0.45));
  }
}

@media (max-width: 520px) {
  .charactersDUckmarl4 {
    padding-top: 48px;
  }

  .charactersDUckmarl4__top {
    margin-bottom: 34px;
  }

  .charactersDUckmarl4__label {
    margin-bottom: 24px;
    font-size: 16px;
  }

  .charactersDUckmarl4__title {
    margin-bottom: 18px;
    font-size: 24px;
    line-height: 1.35;
  }

  .charactersDUckmarl4__text {
    font-size: 14px;
  }

  .charactersDUckmarl4__image {
    min-height: 200px;
    margin-bottom: 20px;
  }

  .charactersDUckmarl4__image img {
    max-height: 200px;
  }

  .charactersDUckmarl4__name {
    margin-bottom: 14px;
    font-size: 16px;
  }

  .charactersDUckmarl4__desc {
    font-size: 14px;
  }

  .charactersDUckmarl4__line {
    min-height: 56px;
    margin-top: 42px;
    object-fit: cover;
    object-position: center;
  }
}
.partnersDUckmarl4 {
  padding: 90px 0 0;
  background: #080808;
}

.partnersDUckmarl4__label {
  margin: 0 0 42px;
  color: #e2454b;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.partnersDUckmarl4__title {
  max-width: 1180px;
  margin: 0 0 46px;
  color: #fefefe;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.partnersDUckmarl4__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.partnerCardDUckmarl4 {
  position: relative;
  height: 100%;
  min-height: 418px;
  display: flex;
  flex-direction: column;
  padding: 38px 22px 22px;
  border: 1px solid #e2454b;
  border-radius: 16px;
  background: #080808;
  text-align: center;
}

.partnerCardDUckmarl4__tag {
  position: absolute;
  top: -1px;
  left: -1px;
  z-index: 2;
  min-width: 126px;
  padding: 8px 18px;
  border-radius: 16px 0 28px 0;
  background: #e2454b;
  color: #fff;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  text-align: left;
}

.partnerCardDUckmarl4__brand {
  display: inline-flex;
  justify-content: center;
  margin-bottom: 10px;
  color: #fefefe;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
  text-transform: uppercase;
}

.partnerCardDUckmarl4__logo {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.partnerCardDUckmarl4__logo img {
  display: block;
  max-width: 210px;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.partnerCardDUckmarl4__bonus {
  display: block;
  min-height: 58px;
  margin-bottom: 20px;
  color: #e2454b;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.15;
  text-decoration: none;
  text-transform: uppercase;
}

.partnerCardDUckmarl4__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.partnerCardDUckmarl4__rating span {
  color: #fefefe;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
}

.partnerCardDUckmarl4__stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

.partnerCardDUckmarl4__stars img {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.partnerCardDUckmarl4__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 58px;
  margin-bottom: 14px;
  border-radius: 30px;
  background: linear-gradient(146deg, #f34a50 16.84%, #8f0000 86.55%);
  color: #fefefe;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.partnerCardDUckmarl4__payments {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: auto 0 14px;
  padding: 0;
  list-style: none;
}

.partnerCardDUckmarl4__payments li {
  display: flex;
}

.partnerCardDUckmarl4__payments img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.partnerCardDUckmarl4__players {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0;
  color: #fefefe;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: normal;
}

.partnerCardDUckmarl4__players img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.partnersDUckmarl4__line {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 70px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

@media (max-width: 1200px) {
  .partnersDUckmarl4__list {
    grid-template-columns: repeat(2, minmax(0, 360px));
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .partnersDUckmarl4 {
    padding-top: 64px;
  }

  .partnersDUckmarl4__title {
    font-size: 34px;
  }

  .partnersDUckmarl4__list {
    grid-template-columns: minmax(0, 520px);
    justify-content: center;
    gap: 14px;
  }

  .partnerCardDUckmarl4 {
    position: relative;
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      'logo bonus'
      'rating button'
      'players payments';
    align-items: center;
    column-gap: 18px;
    row-gap: 12px;
    padding: 40px 14px 16px;
    text-align: left;
  }

  .partnerCardDUckmarl4::before {
    content: '';
    position: absolute;
    top: 38px;
    bottom: 28px;
    left: 50%;
    width: 1px;
    background: #e2454b;
    transform: translateX(-50%);
  }

  .partnerCardDUckmarl4__brand {
    display: none;
  }

  .partnerCardDUckmarl4__logo {
    grid-area: logo;
    height: 54px;
    justify-content: center;
    margin: 0;
    padding-right: 18px;
  }

  .partnerCardDUckmarl4__logo img {
    max-width: 145px;
    max-height: 54px;
  }

  .partnerCardDUckmarl4__bonus {
    grid-area: bonus;
    min-height: 0;
    margin: 0;
    font-size: 16px;
    text-align: center;
  }

  .partnerCardDUckmarl4__rating {
    grid-area: rating;
    justify-content: center;
    gap: 6px;
    margin: 0;
    padding-right: 18px;
  }

  .partnerCardDUckmarl4__rating span {
    font-size: 28px;
  }

  .partnerCardDUckmarl4__stars img {
    width: 14px;
    height: 14px;
  }

  .partnerCardDUckmarl4__button {
    grid-area: button;
    min-height: 46px;
    margin: 0;
    font-size: 16px;
  }

  .partnerCardDUckmarl4__payments {
    grid-area: payments;
    justify-content: center;
    margin: 0;
    gap: 6px;
  }

  .partnerCardDUckmarl4__payments img {
    width: 28px;
    height: 28px;
  }

  .partnerCardDUckmarl4__players {
    grid-area: players;
    justify-content: flex-start;
    font-size: 12px;
  }
}

@media (max-width: 520px) {
  .partnersDUckmarl4 {
    padding-top: 48px;
  }

  .partnersDUckmarl4__label {
    margin-bottom: 28px;
    font-size: 18px;
  }

  .partnersDUckmarl4__title {
    margin-bottom: 34px;
    font-size: 26px;
    line-height: 1.35;
  }

  .partnersDUckmarl4__list {
    grid-template-columns: 1fr;
  }

  .partnerCardDUckmarl4 {
    column-gap: 12px;
    row-gap: 10px;
    padding: 38px 12px 14px;
  }

  .partnerCardDUckmarl4::before {
    top: 36px;
    bottom: 24px;
  }

  .partnerCardDUckmarl4__tag {
    min-width: 112px;
    padding: 7px 13px;
    font-size: 12px;
  }

  .partnerCardDUckmarl4__logo {
    height: 44px;
    padding-right: 12px;
  }

  .partnerCardDUckmarl4__logo img {
    max-width: 112px;
    max-height: 44px;
  }

  .partnerCardDUckmarl4__bonus {
    font-size: 14px;
  }

  .partnerCardDUckmarl4__rating {
    padding-right: 12px;
  }

  .partnerCardDUckmarl4__rating span {
    font-size: 24px;
  }

  .partnerCardDUckmarl4__stars img {
    width: 11px;
    height: 11px;
  }

  .partnerCardDUckmarl4__button {
    min-height: 42px;
    font-size: 15px;
  }

  .partnerCardDUckmarl4__payments {
    gap: 4px;
  }

  .partnerCardDUckmarl4__payments img {
    width: 22px;
    height: 22px;
  }

  .partnerCardDUckmarl4__players {
    font-size: 11px;
  }

  .partnersDUckmarl4__line {
    min-height: 56px;
    margin-top: 48px;
    object-fit: cover;
    object-position: center;
  }
}

@media (max-width: 380px) {
  .partnerCardDUckmarl4__logo img {
    max-width: 100px;
  }

  .partnerCardDUckmarl4__bonus {
    font-size: 16px;
  }

  .partnerCardDUckmarl4__button {
    font-size: 20px;
  }

  .partnerCardDUckmarl4__payments img {
    width: 20px;
    height: 20px;
  }
}

.infoDUckmarl4 {
  padding: 70px 0;
  background: #080808;
}

.infoDUckmarl4__container {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.infoDUckmarl4__card {
  padding: 40px;
  border-radius: 24px;
  background: linear-gradient(146deg, #8f0000 16.84%, #f34a50 86.55%);
}

.infoDUckmarl4__card--small {
  padding: 36px 40px;
}

.infoDUckmarl4__label {
  margin: 0 0 34px;
  color: #fefefe;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.infoDUckmarl4__title {
  margin: 0 0 24px;
  color: #fefefe;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.infoDUckmarl4__text {
  margin: 0;
  color: #fefefe;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: normal;
}

.infoDUckmarl4__text p {
  margin: 0 0 18px;
}

.infoDUckmarl4__text p:last-child {
  margin-bottom: 0;
}
.helpCenterDUckmarl4 {
  padding: 28px 34px;
  border: 1px solid #e2454b;
  border-radius: 12px;
  background: #080808;
  overflow: hidden;
}

.helpCenterDUckmarl4__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;

  gap: clamp(24px, 3vw, 64px);

  margin: 0;
  padding: 0;

  list-style: none;
}

.helpCenterDUckmarl4__list li {
  display: flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 auto;
  min-width: 0;
}

.helpCenterDUckmarl4__list li:first-child {
  min-width: 60px;
}

.helpCenterDUckmarl4__list strong {
  display: block;

  color: #fefefe;
  text-align: center;

  font-family: 'Source Sans 3', sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;

  white-space: nowrap;
}

.helpCenterDUckmarl4__list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.helpCenterDUckmarl4__list img {
  display: block;

  width: auto;
  height: auto;

  max-width: 140px;
  max-height: 34px;

  object-fit: contain;
}

/* планшет */
@media (max-width: 1024px) {
  .helpCenterDUckmarl4 {
    padding: 24px 20px;
  }

  .helpCenterDUckmarl4__list {
    flex-wrap: wrap;
    justify-content: center;

    gap: 24px 40px;
  }

  .helpCenterDUckmarl4__list img {
    max-width: 130px;
    max-height: 32px;
  }
}

/* мобилка */
@media (max-width: 768px) {
  .helpCenterDUckmarl4 {
    padding: 20px 16px;
  }

  .helpCenterDUckmarl4__list {
    gap: 22px 28px;
  }

  .helpCenterDUckmarl4__list strong {
    font-size: 20px;
  }

  .helpCenterDUckmarl4__list img {
    max-width: 120px;
    max-height: 30px;
  }
}

@media (max-width: 480px) {
  .helpCenterDUckmarl4__list {
    gap: 18px 20px;
  }

  .helpCenterDUckmarl4__list img {
    max-width: 105px;
    max-height: 26px;
  }
}

.slotGameDUckmarl4 {
  padding: 90px 0;
  background: #080808;
  overflow: hidden;
}

.slotGameDUckmarl4__top {
  margin-bottom: 42px;
}

.slotGameDUckmarl4__label {
  margin: 0 0 28px;
  color: #e2454b;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.slotGameDUckmarl4__title {
  margin: 0;
  color: #fefefe;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
}

.slotGameDUckmarl4__box {
  position: relative;
  width: 100%;
  height: 662px;
  overflow: hidden;
  background: #000;
}

.slotGameDUckmarl4__preview,
.slotGameDUckmarl4__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.slotGameDUckmarl4__preview {
  z-index: 2;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.slotGameDUckmarl4__preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slotGameDUckmarl4__iframe {
  z-index: 1;
  display: block;
  border: 0;
  background: #000;
}

.slotGameDUckmarl4__box.active .slotGameDUckmarl4__preview {
  display: none;
}

@media (max-width: 1200px) {
  .slotGameDUckmarl4__box {
    height: 560px;
  }

  .slotGameDUckmarl4__title {
    font-size: 40px;
  }
}

@media (max-width: 992px) {
  .slotGameDUckmarl4 {
    padding: 72px 0;
  }

  .slotGameDUckmarl4__top {
    margin-bottom: 32px;
  }

  .slotGameDUckmarl4__title {
    font-size: 34px;
  }

  .slotGameDUckmarl4__box {
    height: 460px;
  }
}

@media (max-width: 768px) {
  .slotGameDUckmarl4 {
    padding: 56px 0;
  }

  .slotGameDUckmarl4__label {
    margin-bottom: 20px;
    font-size: 18px;
  }

  .slotGameDUckmarl4__title {
    font-size: 28px;
    line-height: 1.25;
  }

  .slotGameDUckmarl4__box {
    height: 360px;
  }
}

@media (max-width: 520px) {
  .slotGameDUckmarl4 {
    padding: 48px 0;
  }

  .slotGameDUckmarl4__label {
    font-size: 16px;
  }

  .slotGameDUckmarl4__title {
    font-size: 24px;
  }

  .slotGameDUckmarl4__box {
    height: 260px;
  }
}

.terms {
  padding: 90px 0;
  background: #080808;
}

.terms__label {
  margin: 0 0 18px;
  color: #f34a50;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.terms__title {
  margin: 0 0 32px;
  color: #fefefe;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.terms__content {
  padding: 32px;
  border-radius: 30px;
  background: linear-gradient(146deg, #8f0000 16.84%, #f34a50 86.55%);

  color: #fefefe;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.terms ul {
  list-style: disc;
}

.terms ul li {
  list-style-type: disc;
  margin-left: 15px;
}

.terms__content p {
  margin: 0 0 24px;
}

.terms__content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .terms {
    padding: 50px 0;
  }

  .terms__title {
    margin-bottom: 24px;
    font-size: 30px;
  }

  .terms__content {
    padding: 20px 16px;
    border-radius: 12px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .terms__title {
    font-size: 26px;
  }
}
