@charset "UTF-8";

:root {
    --size-1: 8px;
    --size-2: 16px;
    --size-3: 24px;
    --size-4: 48px;
    --header-h: 82px;
    --container-header-w: 1390px;
    --container-w: 1250px;
    --rounded-sm: 8px;
    --rounded-md: 12px;
    --rounded-lg: 24px;
    --rounded-xxl: 48px;
    --shadow-1: 0px 4px 8px 0px rgb(254, 44, 44, .3);
    --shadow-2: 0px 4px 8px 0px rgb(254, 44, 44, .3);
    --shadow-active-1: 0px 4px 24px 0px rgba(254, 44, 161, .5);
    --shadow-active-2: 0px 4px 24px 0px rgba(254, 44, 161, .5);
    --color-ui-1: #d1021b;
    --color-ui-2: #d1021b;
    --color-ui-1-d: linear-gradient(180deg, #42ad50, #1b7225);
    --color-ui-2-d: linear-gradient(180deg, #d6cf48, #e49b1e);
    --active-el: #ff2301;
    --light: #fff;
    --light-100: #f6f7f8;
    --light-200: #dadadd;
    --light-300: #878c9a;
    --light-400: #f3f4f4;
    --light-100-h: #eceef0;
    --light-200-h: #c9c9cc;
    --light-400-h: #eaebeb;
    --dark: #000;
    --dark-100: #2c2e33;
    --dark-200: #3a3a3a;
    --dark-300: #303238;
    --dark-400: #666b7a;
    --danger: #f34d58;
    --danger-h: #c7323c
}

@keyframes fadeFromTop {
    0% {
        opacity: 0;
        transform: translateY(-20%)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeFromTopFull {
    0% {
        opacity: 0;
        transform: translateY(-100%)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes maxHeight {
    0% {
        max-height: 0
    }

    to {
        max-height: 2000px
    }
}

@keyframes maxHeightInverse {
    0% {
        max-height: 2000px
    }

    to {
        max-height: 0
    }
}

@keyframes search {
    0% {
        opacity: 0;
        transform: scaleX(.6) translateY(200%)
    }

    to {
        opacity: 1;
        transform: scaleX(1) translateY(0)
    }
}

@keyframes langs {
    0% {
        opacity: 0;
        transform: translateY(200%)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes langsClose {
    0% {
        opacity: 1;
        transform: translateY(0)
    }

    to {
        opacity: 0;
        transform: translateY(200%)
    }
}

@keyframes header {
    0% {
        opacity: 0;
        transform: translateY(-40%)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes buble {
    0% {
        transform: scaleX(1)
    }

    30% {
        transform: scale3d(1.25, .75, 1)
    }

    40% {
        transform: scale3d(.75, 1.25, 1)
    }

    50% {
        transform: scale3d(1.15, .85, 1)
    }

    65% {
        transform: scale3d(.95, 1.05, 1)
    }

    75% {
        transform: scale3d(1.05, .95, 1)
    }

    to {
        transform: scaleX(1)
    }
}

@keyframes bigEntrance {
    0% {
        opacity: .2;
        transform: scale(.3) rotate(6deg) translateX(-30%) translateY(30%)
    }

    30% {
        opacity: 1;
        transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%)
    }

    45% {
        opacity: 1;
        transform: scale(.98) rotate(1deg) translateX(0) translateY(0)
    }

    60% {
        opacity: 1;
        transform: scale(1.01) rotate(-1deg) translateX(0) translateY(0)
    }

    75% {
        opacity: 1;
        transform: scale(.99) rotate(1deg) translateX(0) translateY(0)
    }

    90% {
        opacity: 1;
        transform: scale(1.01) rotate(0deg) translateX(0) translateY(0)
    }

    to {
        opacity: 1;
        transform: scale(1) rotate(0deg) translateX(0) translateY(0)
    }
}

@keyframes rubberBand {
    0% {
        transform: scaleX(1)
    }

    30% {
        transform: scale3d(1.25, .75, 1)
    }

    40% {
        transform: scale3d(.75, 1.25, 1)
    }

    50% {
        transform: scale3d(1.15, .85, 1)
    }

    65% {
        transform: scale3d(.95, 1.05, 1)
    }

    75% {
        transform: scale3d(1.05, .95, 1)
    }

    to {
        transform: scaleX(1)
    }
}

@keyframes fullWidth {
    0% {
        width: 0
    }

    to {
        width: 100%
    }
}

body {
    background: #00100E;
    box-sizing: border-box;
    color: var(--dark);
    font-family: Montserrat, sans-serif
}

h1 {
    font-size: 36px;
    font-weight: 800;
    margin: 0;
    padding: 0;
}

h2 {
    color: var(--dark);
    font-size: 32px;
    font-weight: 700
}

h2,
h3,
h4,
h5,
p {
    margin: 30px 0;
    padding: 0
}

ul {
    margin: 20px 0 20px 20px;
}

ul li {
    margin: 2.5px 0;
}

p {
    color: var(--dark)
}

.core_content table {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 30px 0;
    border-collapse: collapse;
    border-spacing: 0;
  }
  
  .core_content table tr {
    display: grid;
    grid-template: auto/repeat(2, 1fr);
    align-items: center;
    border-top: 1px solid #9e9e9e;
  }
  .core_content table tr:last-child {
    border-bottom: 1px solid #9e9e9e;
  }
  @media (max-width: 590px) {
    .core_content table tr {
      grid-template: auto/repeat(2, 1fr);
    }
  }
  .core_content table td {
    font-weight: 400;
    line-height: 25px;
    padding: 10px 0;
    text-align: center;
  }
  @media (max-width: 590px) {
    .core_content table td {
      font-size: 16px;
    }
  }
  @media (max-width: 390px) {
    .core_content table td {
      font-size: 14px;
    }
  }
  
  .core_content table th {
      line-height: 25px;
      padding: 10px 0;
      text-align: center;
  }
  .core_content table td:first-child {
    text-align: left;
    padding-left: 20px;
  }
  @media (max-width: 590px) {
    .core_content table td:first-child {
      padding-left: 0;
    }
  }
  .core_content table td:last-child {
    text-align: right;
    padding-right: 20px;
  }
  @media (max-width: 590px) {
    .core_content table td:last-child {
      padding-right: 0;
    }
  }


.table__responsive {
    border: 1px solid #f1f3f5;
    border-radius: var(--rounded-md);
    margin-top: var(--size-2);
    overflow-x: auto;
    width: 100%
}

.table__responsive::-moz-scrollbar,
.table__responsive::-ms-scrollbar,
.table__responsive::-webkit-scrollbar {
    background: transparent;
    height: 5px
}

.table__responsive::-moz-scrollbar-thumb,
.table__responsive::-ms-scrollbar-thumb,
.table__responsive::-webkit-scrollbar-thumb {
    background: #c9c9c9;
    border-radius: 4px
}

.table__responsive table {
    border-collapse: collapse;
    min-width: 980px;
    width: 100%
}

.table__responsive table td,
.table__responsive table th {
    padding: 16px 10px;
    text-align: left
}

.table__responsive table th {
    color: var(--dark);
    font-weight: 600
}

.table__responsive table td {
    font-weight: 400
}

.table__responsive table tr:not(:last-child) {
    border-bottom: 1px solid #f1f3f5
}

.table__responsive table thead {
    background: var(--light-100)
}

.table__responsive table tbody>tr>th:first-child {
    font-weight: 600;
    padding-left: var(--size-3)
}

.table__responsive table tbody>tr>td:last-child {
    padding-right: var(--size-3)
}

.table__responsive table thead>tr>th:first-child {
    padding-left: var(--size-3)
}

.table__responsive table thead>tr>th:last-child {
    padding-right: var(--size-3)
}

.row {
    display: flex;
    margin-top: 1.875rem
}

.core_content h3 {
    font-size: 30px;
    font-weight: 600;
    line-height: 150%;
    margin-top: 36px
}

.core_content h4 {
    font-size: 26px;
    font-weight: 400;
    line-height: 150%;
    margin-top: 36px
}

.specific h3 {
    margin-top: 0
}

.specific_row {
    -moz-column-gap: 1.875rem;
    column-gap: 1.875rem
}

.desc_nav {
    align-items: center;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    margin-bottom: 2.25rem;
    margin-top: 2.25rem
}

.desc_nav p {
    font-size: 13px;
    font-style: italic;
    line-height: normal;
    text-align: center
}

.desc_nav p a {
    color: var(--danger);
    text-decoration: underline;
    transition: .3s
}

.desc_nav p a:hover {
    color: var(--danger-h)
}

.desc_nav .desc_nav__wrap {
    align-items: center;
    -moz-column-gap: var(--size-2);
    column-gap: var(--size-2);
    display: flex
}

.desc_nav .btn {
    box-sizing: border-box;
    width: 230px
}

.list {
    margin-top: var(--size-2)
}

.list li:not(:last-child) {
    margin-bottom: .75rem
}

.list li {
    align-items: center;
    display: flex
}

.list li:before {
    background: var(--dark);
    border-radius: 100%;
    content: "";
    display: inline-block;
    margin-right: 10px;
    min-height: 8px;
    min-width: 8px;
    transform: translateY(-30%)
}

button {
    background: none;
    border: none
}

button path {
    transition: .3s
}

a {
    text-decoration: none
}

.zoom_img {
    cursor: zoom-in
}


.core_content img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    border-radius: 14px;
    margin: 30px auto;
  }
  

  

.screenbox {
    align-items: center;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    margin-left: 0;
    margin-top: var(--size-3);
    padding: 0;
    width: 100%
}

.screenbox picture {
    cursor: zoom-in;
    display: flex;
    justify-content: center;
    text-align: center;
    width: 100%
}

.screenbox figcaption {
    font-style: 14px;
    font-style: italic;
    font-weight: 500;
    margin-top: 10px
}

.screenbox img {
    max-width: 60%
}

.full_modal,
.full_modal__content {
    align-items: center;
    display: flex;
    justify-content: center
}

.full_modal__content {
    aspect-ratio: 16/9;
    height: 100%;
    max-width: 90%;
    overflow: hidden;
    width: 100%
}

.full_modal__content img {
    cursor: zoom-in;
    transition: .3s;
    width: 100%
}

.full_modal__content.zoom {
    background: #353535;
    border-radius: var(--rounded-md);
    height: 100%;
    max-height: 60vh;
    max-width: 60vw;
    width: 100%
}

.full_modal__content.zoom img {
    width: 100%
}

.full_modal__box {
    align-items: center;
    aspect-ratio: 16/9;
    border-radius: var(--rounded-md);
    display: flex;
    justify-content: center;
    max-height: 80vh;
    overflow: hidden;
    transition: .3s
}

.full_modal__box img {
    border-radius: var(--rounded-md);
    width: 100%
}

.full_modal.active .full_modal__content {
    animation: fadeFromTop .3s cubic-bezier(.25, .46, .45, .94) forwards
}

.txt {
    font-family: Montserrat, sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 24px
}

.txt b {
    font-weight: 700
}

header {
    animation: header .6s cubic-bezier(.25, .46, .45, .94) forwards;
    background: #00100E;

    height: var(--header-h);
    left: 0;
    position: sticky;
    top: 0;
    z-index: 100
}

header:after {
    position: absolute;
    content: "";
    margin: 70px 0 0 0;
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(230, 200, 115, 0) 0%, rgba(230, 200, 115, .35) 27.6%, rgba(230, 200, 115, .7) 52.62%, rgba(230, 200, 115, .35) 74.48%, rgba(230, 200, 115, 0) 100%);
}

header,
header .container {
    align-items: center;
    display: flex
}

header .container {
    margin: 0 auto;
    max-width: var(--container-header-w)
}

section:not(:last-child) {
    margin-bottom: var(--size-3)
}

ol:not(.section_nav__list) {
    counter-reset: step-counter
}

ol:not(.section_nav__list) li:before {
    content: "1."counter(step-counter) ".";
    counter-increment: step-counter;
    display: inline-block;
    margin-right: 3px;
    min-width: 25px
}

.content_wrap p {
    margin-top: var(--size-2)
}

.title_section {
    font-size: 32px;
    font-weight: 700;
    line-height: 150%;
    opacity: 0;
    transform: translateY(-100%);
    transition: .6s ease
}

.title_section.visible {
    opacity: 1;
    transform: translateY(0)
}

.core_content .title_section {
    margin-top: var(--size-2)
}

.core_content p {
    font-weight: 400;
    line-height: 24px
}

.quotes_block {
    -moz-column-gap: var(--size-2);
    column-gap: var(--size-2);
    display: flex;
    margin-top: var(--size-3)
}

.quotes_block p {
    background: var(--light-100);
    border-radius: var(--rounded-md);
    letter-spacing: -.16px;
    line-height: 26px;
    margin-top: 0;
    padding: var(--size-2) var(--size-3)
}

.quotes_block:after,
.quotes_block:before {
    align-self: flex-start;
    background: url(../img/icons/quotes.svg) 50%/100% no-repeat;
    content: "";
    min-height: 33px;
    min-width: 33px
}

.quotes_block:after {
    align-self: flex-end;
    transform: scaleX(-1)
}

.section_nav__list a,
.section_nav__list li {
    color: var(--danger);
    transition: .3s
}

.section_nav__list a {
    cursor: pointer
}

.section_nav__list li:hover>a {
    text-decoration: underline
}

.section_nav__list ol>li:first-child {
    margin-top: var(--size-2)
}

.section_nav__list li:not(:last-child) {
    margin-bottom: var(--size-2)
}

.section_nav__list ol {
    list-style: none
}

.gallery {
    display: grid;
    gap: 1rem;
    grid-auto-flow: row;
    grid-template-columns: repeat(4, 1fr);
    margin-top: var(--size-2)
}

.gallery__item {
    overflow: hidden
}

.gallery__item img,
.section_nav__header {
    border-radius: var(--rounded-md)
}

.section_nav__header {
    align-items: center;
    background: var(--light-400);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    padding: 12px 20px;
    transition: .4s;
    width: 100%
}

.section_nav__header:hover {
    background: var(--light-400-h)
}

.section_nav__header_wrap {
    align-items: center;
    -moz-column-gap: var(--size-1);
    column-gap: var(--size-1);
    display: flex
}

.section_nav__handler {
    transform: rotate(-90deg);
    transition: .3s
}

.section_nav {
    height: 100%;
    max-height: 50px;
    overflow-y: hidden;
    position: relative;
    transition: .3s
}

.section_nav__list {
    animation: maxHeightInverse .3s ease-in-out forwards;
    max-height: 0;
    overflow: hidden;
    pointer-events: none
}

.section_nav.active {
    max-height: 2000px;
    overflow-y: visible
}

.section_nav.active .section_nav__list {
    animation: maxHeight .5s ease-in-out forwards;
    pointer-events: auto
}

.section_nav.active .section_nav__handler {
    transform: rotate(0deg)
}

.container {
    margin: 0 auto;
    max-width: var(--container-w);
    width: 100%
}

.content_wrap {
    padding: var(--size-3)
}

.block .container {
    background: var(--light);
    border-radius: var(--rounded-lg);
    box-shadow: 0 5px 0 0 #dadadd;
    box-sizing: border-box;
    overflow: hidden
}

.rating_stars {
    align-items: center;
    -moz-column-gap: 4px;
    column-gap: 4px;
    display: flex
}

.rating_star {
    height: 20px;
    transform: translateY(-2px);
    width: 20px
}

.rating_star.half {
    background: url(../img/icons/star_half.svg) 50%/100% no-repeat
}

.rating_star.empty {
    background: url(../img/icons/star_empty.svg) 50%/100% no-repeat
}

.btn {
    align-items: center;
    border: none;
    border-radius: var(--rounded-xxl);
    cursor: pointer;
    display: flex;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    justify-content: center;
    min-width: 80px;
    padding: 13px 25px
}

.btn,
.btn span {
    transition: .3s
}

.btn:hover span {
    transform: scale(.95)
}

.btn_1 {
    background: var(--color-ui-1);
    box-shadow: var(--shadow-1);
    color: var(--light)
}

.btn_1:hover {
    box-shadow: var(--shadow-active-2)
}

.btn_2 {
    background: var(--color-ui-2);
    box-shadow: var(--shadow-2);
    color: var(--light)
}

.btn_2:hover {
    box-shadow: var(--shadow-active-2)
}

.cookies {
    background: var(--dark-100);
    bottom: 0;
    color: #fff;
    left: 0;
    pointer-events: none;
    position: fixed;
    transform: translateY(100%);
    transition: .4s cubic-bezier(.68, -.55, .27, 1.55);
    width: 100%;
    z-index: 98
}

.cookies .container {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 20px 0
}

.cookies p {
    color: var(--light);
    font-size: 12px;
    font-weight: 400;
    margin-top: var(--size-1);
    max-width: 860px
}

.cookies p a {
    color: var(--light);
    text-decoration: underline
}

.cookies .cookies__title {
    font-size: 14px;
    font-weight: 700
}

.cookies.active {
    pointer-events: auto;
    transform: translateY(0)
}

.cookies__close_btn span {
    font-size: 14px
}

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

.cookies__wrap {
    margin-left: 2.8125rem
}

.langs__modal.active {
    align-items: center;
    display: flex;
    justify-content: center;
    opacity: 1;
    pointer-events: auto
}

.langs__modal.active .langs__content {
    animation: langs .6s cubic-bezier(.68, -.55, .27, 1.55) forwards
}

.langs__modal.close {
    opacity: 0;
    transition: opacity .4s .4s
}

.langs__modal.close .langs__content {
    animation: langsClose .6s cubic-bezier(.68, -.55, .27, 1.55) forwards
}

.langs__close_btn {
    cursor: pointer;
    position: absolute;
    right: 30px;
    top: 20px
}

.langs__close_btn,
.langs__close_btn svg {
    height: 14px;
    width: 14px
}

.langs__close_btn path {
    stroke: #a1a6b7;
    transition: .3s
}

.langs__close_btn:hover path {
    stroke: var(--danger)
}

.langs__content {
    background: var(--light);
    border-radius: var(--rounded-md);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    max-width: 375px;
    padding: 20px 32px 23px;
    position: relative;
    width: 100%
}

.langs__content h3 {
    text-align: center
}

.langs__content ul {
    list-style: none;
    margin: 0;
    margin-top: var(--size-3);
    padding: 0
}

.langs__content li {
    background: var(--light-100);
    border-radius: var(--rounded-sm);
    box-sizing: border-box;
    padding: 10px 16px;
    position: relative;
    transition: .3s;
    width: 100%
}

.langs__content li:hover {
    background: #ededed
}

.langs__content li.selected {
    pointer-events: none
}

.langs__content li.selected:after {
    background: url(../img/icons/ui/check_fill.svg) 50%/100% no-repeat;
    content: "";
    display: inline-block;
    height: 20px;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px
}

.langs__content li:not(:last-child) {
    margin-bottom: 4px
}

.langs__content a {
    align-items: center;
    color: var(--dark-300);
    -moz-column-gap: var(--size-1);
    column-gap: var(--size-1);
    display: flex;
    font-weight: 500;
    text-decoration: none
}

.langs__content a img {
    box-shadow: 0 0 3px hsla(224, 9%, 57%, .5)
}

.langs__trigger_flag {
    align-items: center;
    border-radius: 100%;
    box-shadow: 0 0 2px hsla(224, 9%, 57%, .8);
    display: flex;
    height: 20px;
    justify-content: center;
    overflow: hidden;
    width: 20px
}

.langs__trigger_flag img {
    display: inline-block;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

.langs__trigger {
    align-items: center;
    -moz-column-gap: 6px;
    column-gap: 6px;
    cursor: pointer;
    display: flex
}

.langs__trigger .langs__trigger_fullname {
    display: none
}

.langs__trigger span {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    transition: .3s
}

.langs__trigger:hover span {
    color: var(--active-el)
}

.langs__trigger_handler {
    transition: .3s
}

.langs__trigger.active .langs__trigger_handler {
    transform: rotate(180deg)
}

.navigation__controls {
    -moz-column-gap: var(--size-3);
    column-gap: var(--size-3);
    display: flex
}

.full_modal,
.langs__modal,
.search__modal {
    background: rgba(0, 0, 0, .4);
    inset: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    transition: .2s ease-out;
    z-index: 100
}

.langs__modal {
    background: rgba(0, 0, 0, .2)
}

.full_modal.active,
.search__modal.active {
    opacity: 1;
    pointer-events: auto
}

.full_modal.active .search,
.search__modal.active .search {
    animation: search .5s cubic-bezier(.68, -.55, .27, 1.55) forwards
}

.search__content {
    display: flex;
    justify-content: center;
    margin-top: 7.5rem;
    width: 100%
}

.full__close_btn,
.search__close_btn {
    cursor: pointer;
    position: absolute;
    right: 5rem;
    top: 50px
}

.full__close_btn:hover path,
.search__close_btn:hover path {
    stroke: var(--danger)
}

.search {
    align-items: center;
    background: var(--light);
    border-radius: var(--rounded-sm);
    display: flex;
    height: 50px;
    max-width: 540px;
    opacity: 0;
    overflow: hidden;
    padding-right: 16px;
    width: 100%
}

.search input {
    border: none;
    display: inline-block;
    height: 100%;
    padding-left: 16px;
    width: 100%
}

.search input:focus {
    outline: none
}

.search button {
    background: none;
    border: none;
    cursor: pointer;
    outline: none
}

.search button:hover {
    animation: buble .6s forwards
}

.search__trigger {
    align-items: center;
    cursor: pointer;
    display: flex
}

.search__trigger:hover img {
    animation: buble .8s forwards
}

.navigation__menu {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-left: 4.5rem;
    width: 100%
}

.navigation .navigation__wrap {
    align-items: center;
    -moz-column-gap: 32px;
    column-gap: 32px;
    display: flex;
    list-style: none
}

.navigation a {
    color: #D2EEED;
    text-decoration: none;
    transition: .3s
}

.navigation .navigation__wrap>li:hover a {
    color: #ff2301;
}

.header__burger {
    cursor: pointer;
    display: none;
    height: 24px;
    position: relative;
    width: 36px;
    z-index: 3
}

.header__burger span {
    top: 11px
}

.header__burger span,
.header__burger:after,
.header__burger:before {
    background-color: #fff;
    height: 2px;
    left: 0;
    position: absolute;
    transition: all .3s ease 0s;
    width: 100%
}

.header__burger:after,
.header__burger:before {
    content: ""
}

.header__burger:before {
    top: 0
}

.header__burger:after {
    bottom: 0
}

.header__burger.active span {
    transform: scale(0)
}

.header__burger.active:before {
    top: 11px;
    transform: rotate(45deg)
}

.header__burger.active:after {
    bottom: 11px;
    transform: rotate(-45deg)
}

.logo:focus {
    border: none;
    outline: none
}

.logo:focus img {
    filter: drop-shadow(0 0 2px rgb(0, 202, 0))
}

.logo img {
    max-width: 190px;
    width: 100%
}

.dropdown {
    position: relative
}

.dropdown__header {
    align-items: center;
    -moz-column-gap: 6px;
    column-gap: 6px;
    cursor: pointer;
    display: flex
}

.dropdown__header:hover .dropdown__title {
    color: var(--dark)
}

.dropdown__header:hover .dropdown__handler {
    opacity: 1
}

.dropdown__title {
    color: var(--light-300);
    transition: .3s
}

.dropdown__handler {
    opacity: .6;
    transition: .3s
}

.dropdown__content {
    background: var(--light);
    border-radius: var(--rounded-md);
    bottom: 0;
    box-shadow: 0 4px 70px 0 rgba(0, 0, 0, .07);
    left: 0;
    list-style: none;
    opacity: 0;
    padding: 20px;
    pointer-events: none;
    position: absolute;
    transform: scaleY(0) translateY(100%);
    transition: .4s cubic-bezier(.18, .89, .32, 1.28);
    width: 200px
}

.dropdown__content li a {
    color: var(--datk);
    text-decoration: none
}

.dropdown__content li {
    align-items: center;
    border-radius: var(--rounded-sm);
    display: flex;
    padding: 10px 16px;
    transition: .3s
}

.dropdown__content li:hover {
    background: var(--light-100)
}

.dropdown.active .dropdown__content {
    opacity: 1;
    pointer-events: auto;
    transform: scaleY(1) translateY(110%)
}

.dropdown.active .dropdown__header .dropdown__title {
    color: var(--dark)
}

.dropdown.active .dropdown__header .dropdown__handler {
    opacity: 1;
    transform: rotate(180deg)
}

.video__poster {
    border-radius: 12px;
    cursor: pointer;
    display: inline-flex;
    overflow: hidden;
    position: relative
}

.video__poster img {
    border-radius: var(--rounded-md)
}

.video__poster .video__poster_play {
    background: none;
    border: none;
    cursor: pointer;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2
}

.video__poster .video__poster_play:active,
.video__poster .video__poster_play:focus {
    border: none;
    outline: none
}

.video__poster .video__poster_play:active path,
.video__poster .video__poster_play:focus path {
    stroke-width: 3px;
    stroke: #85db03
}

.video__poster .video__poster_play path {
    transition: .3s
}

@media (hover) {
    .video__poster .video__poster_play:hover path {
        fill: #8bf18b
    }
}

.video__poster:after {
    background: rgba(0, 0, 0, .4);
    content: "";
    inset: 0;
    position: absolute;
    z-index: 1
}

.video__poster[data-size=sm] img {
    max-width: 320px;
    width: 100%
}

.video__poster[data-size=md] img {
    max-width: 520px;
    width: 100%
}

.video__poster[data-size=lg] img {
    max-width: 720px;
    width: 100%
}

#video_player {
    align-items: center;
    background: rgba(0, 0, 0, .4);
    display: flex;
    inset: 0;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    transition: .4s;
    z-index: 100
}

#video_player iframe {
    aspect-ratio: 16/9;
    max-height: 70%;
    max-width: 60%
}

#video_player:after {
    color: #ff2424;
    content: "╳";
    cursor: pointer;
    font-size: 24px;
    position: absolute;
    right: 5%;
    top: 8%
}

#video_player.active {
    opacity: 1;
    pointer-events: auto
}

#video_player.active:first-child {
    animation: fadeFromTop .4s forwards
}

.lightbox {
    max-width: 590px
}

.lightbox .lightbox__full {
    border-radius: 14px;
    cursor: pointer;
    max-height: 350px;
    -o-object-fit: contain;
    object-fit: contain;
    overflow: hidden
}

.lightbox .lightbox__full img {
    border-radius: 14px;
    width: 100%
}

.lightbox .lightbox__thumbnails {
    -moz-column-gap: 10px;
    column-gap: 10px;
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    max-width: 100%
}

.lightbox .lightbox__thumb {
    cursor: pointer;
    max-height: 120px;
    min-height: 50px;
    -o-object-fit: contain;
    object-fit: contain;
    overflow: hidden;
    position: relative;
    width: 100%
}

.lightbox .lightbox__thumb img {
    border-radius: 8px;
    height: 100%;
    width: 100%
}

.lightbox .lightbox__thumb:before {
    background: rgba(0, 0, 0, .3);
    content: "";
    display: inline-block;
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: .3s;
    width: 100%
}

@media (hover) {
    .lightbox .lightbox__thumb:after {
        background: url(../img/icons/ui/search.svg) 0 0/100% no-repeat;
        content: "";
        display: inline-block;
        display: none;
        filter: invert(100%);
        height: 34px;
        left: 50%;
        position: absolute;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 34px
    }
}

.lightbox .lightbox__thumb:hover:before {
    opacity: 1
}

.lightbox .lightbox__thumb:hover:after {
    display: inline-block
}

.lightbox .lightbox__zoom {
    align-items: center;
    background: rgba(0, 0, 0, .5);
    display: flex;
    height: 100vh;
    justify-content: center;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100
}

.lightbox .lightbox__zoom[active] {
    opacity: 1;
    pointer-events: auto
}

.lightbox .lightbox__zoom[active] .lightbox__zoom_content {
    animation: fadeFromTop .4s forwards
}

.lightbox .lightbox__zoom_content {
    align-items: center;
    display: flex;
    justify-content: center;
    opacity: 0;
    pointer-events: none
}

.lightbox .lightbox__zoom_content .lightbox__zoom_img img {
    border-radius: 14px;
    height: 100%;
    max-height: 80vh;
    max-width: 80vw;
    width: 100%
}

.lightbox .lightbox__zoom_close {
    background: none;
    border: none;
    cursor: pointer;
    height: 40px;
    position: absolute;
    right: 50px;
    top: 50px;
    width: 40px
}

.lightbox .lightbox__zoom_close:hover:after,
.lightbox .lightbox__zoom_close:hover:before {
    background: #ff2020
}

.lightbox .lightbox__zoom_close:after,
.lightbox .lightbox__zoom_close:before {
    background: #ff6767;
    content: "";
    display: inline-block;
    height: 2px;
    left: 0;
    position: absolute;
    top: 50%;
    transition: .3s;
    width: 100%
}

.lightbox .lightbox__zoom_close:after {
    transform: rotate(45deg)
}

.lightbox .lightbox__zoom_close:before {
    transform: rotate(-45deg)
}

input[type=text]::-ms-clear,
input[type=text]::-ms-reveal {
    display: none;
    height: 0;
    width: 0
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
    display: none
}

.faq__item {
    border-radius: 8px;
    border-radius: var(--rounded-md);
    box-shadow: 0 3px 0 0 var(--light-200);
    overflow: hidden;
    position: relative
}

.faq__item:not(:last-child) {
    margin-bottom: .75rem
}

.faq__item_header {
    align-items: center;
    background: var(--light-100);
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    padding: 15px 25px;
    position: relative;
    transition: .3s;
    width: 100%
}

.faq__item_title {
    color: var(--dark-100);
    font-weight: 600;
    letter-spacing: -.08px;
    text-align: left
}

.faq__item_handler {
    background: var(--light-200);
    border-radius: 100%;
    min-height: 32px;
    min-width: 32px;
    position: relative;
    transition: .3s
}

.faq__item_handler:hover {
    background: var(--light-200-h)
}

.faq__item_handler:after,
.faq__item_handler:before {
    background: var(--dark);
    content: "";
    display: inline-block;
    height: 4px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: .3s;
    width: 40%
}

.faq__item_handler:before {
    margin-left: 0;
    transform: translate(-53%, -50%) rotate(90deg)
}

.faq__item_content {
    background: var(--light-100);
    border-bottom-left-radius: var(--rounded-md);
    border-bottom-right-radius: var(--rounded-md);
    display: none;
    font-weight: 400;
    line-height: 24px;
    overflow: hidden;
    padding: 0 20px 20px
}

.faq__item[active] .faq__item_content {
    display: block
}

.faq__item[active] .faq__item_handler:before {
    transform: translate(-50%, -50%) rotate(0deg)
}

.plus_minus {
    -moz-column-gap: var(--size-2);
    column-gap: var(--size-2);
    display: flex;
    margin-top: var(--size-2)
}

.plus_minus__block {
    background: var(--light-100);
    border-radius: 16px;
    padding: var(--size-2)
}

.plus_minus__title {
    align-items: center;
    -moz-column-gap: var(--size-1);
    column-gap: var(--size-1);
    display: flex
}

.plus_minus__title span {
    font-size: 18px;
    font-weight: 600
}

.plus_minus__list {
    list-style: none;
    margin-top: var(--size-2)
}

.plus_minus__item {
    align-items: flex-start;
    display: flex;
    line-height: 150%;
    position: relative
}

.plus_minus__item:not(:first-child) {
    margin-top: .75rem
}

.plus_minus__item:before {
    background: url(/img/icons/plus_stroke.svg) 50%/100% no-repeat;
    content: "";
    display: inline-block;
    margin-left: 6px;
    margin-right: 14px;
    min-height: 16px;
    min-width: 16px;
    transform: translateY(20%)
}

.minus .plus_minus__item:before {
    background: url(/img/icons/minus_stroke.svg) 50%/100% no-repeat
}

#footer {
    background: #00100E;
    color: var(--light);
    margin-top: 70px;
    padding: 2.5rem 0
}

#footer:before {
    position: absolute;
    content: "";
    margin: -50px 0 0 0;
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(230, 200, 115, 0) 0%, rgba(230, 200, 115, .35) 27.6%, rgba(230, 200, 115, .7) 52.62%, rgba(230, 200, 115, .35) 74.48%, rgba(230, 200, 115, 0) 100%);
}

.footer__row {
    display: flex;
    justify-content: space-between;
    max-width: 60%;
    width: 100%
}

.footer__controls_col_wrap {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    row-gap: 1.875rem
}

.footer__wrap {
    display: flex;
    justify-content: space-between
}

.footer__nav ul {
    -moz-column-gap: 5.625rem;
    column-gap: 5.625rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    list-style: none;
    margin-top: var(--size-3)
}

.footer__nav li:not(:last-child) {
    margin-bottom: var(--size-2)
}

.footer__nav li a:hover {
    text-decoration: underline
}

.footer__nav a {
    color: var(--light)
}

.footer__col_title {
    font-size: 18px;
    font-weight: 700
}

.footer__col {
    display: flex;
    flex-direction: column
}

.footer__desc {
    margin-top: 3.125rem;
    text-align: center
}

.footer__desc a {
    color: #c0c0c2;
    text-decoration: underline
}

.footer__partners {
    -moz-column-gap: 4.375rem;
    column-gap: 4.375rem;
    display: flex;
    justify-content: center;
    margin-top: var(--size-4)
}

.footer__txt {
    color: #c0c0c2;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px
}

.footer__controls_col {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    max-width: 20rem;
    row-gap: 1.875rem
}

.footer__controls_col img {
    max-width: 100px;
    min-width: 100px;
}

.langs__trigger_full {
    background: #3d3f43;
    border-radius: 6px;
    color: #fff;
    display: inline-flex;
    padding: var(--size-2)
}

.langs__trigger_full .langs__trigger_flag {
    border-radius: 0;
    height: 18px;
    width: 24px
}

.langs__trigger_full span {
    margin-left: 5px;
    margin-right: 3px;
    text-transform: capitalize
}

.langs__trigger_full .langs__trigger_handler {
    filter: invert(100%)
}

.footer__email {
    display: flex;
    flex-direction: column;
    margin-top: var(--size-3)
}

.footer__email a {
    color: var(--light);
    margin-top: var(--size-1)
}

.footer__email a:hover {
    text-decoration: underline
}

.footer__socials {
    -moz-column-gap: 10px;
    column-gap: 10px;
    display: flex;
    margin-top: var(--size-3)
}

.footer__socials svg path {
    transition: .3s
}

.footer__socials svg:hover path {
    fill: var(--active-el);
    fill-opacity: 1
}

.to_top_btn {
    background: rgba(0, 0, 0, .2);
    border-radius: 100%;
    bottom: 50px;
    cursor: pointer;
    height: 45px;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    right: 60px;
    transform: translateY(-100%);
    transition: .3s;
    width: 45px;
    z-index: 5
}

.to_top_btn:hover {
    background: rgba(0, 0, 0, .4)
}

.to_top_btn img {
    filter: invert(100%);
    transform: rotate(180deg);
    width: 50%
}

.to_top_btn.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0)
}

.breadcrumbs {
    margin-bottom: 2rem;
    margin-top: 2rem
}

.breadcrumbs a {
    color: var(--dark);
    font-weight: 500
}

.breadcrumbs a:hover {
    text-decoration: underline
}

.breadcrumbs a:after {
    content: "/";
    display: inline-block;
    margin-left: 8px;
    margin-right: 5px
}

.breadcrumbs a:after,
.breadcrumbs span {
    color: #878c9a;
    font-weight: 500;
    pointer-events: none
}

a.btn {
    box-sizing: border-box;
    text-align: center
}

.info_wrap {
    align-items: center;
    display: inline-flex;
    flex-direction: column;
    row-gap: var(--size-3)
}

.info_wrap .btn {
    box-sizing: border-box;
    min-width: 185px;
    width: 100%
}

.info_platforms {
    -moz-column-gap: var(--size-2);
    column-gap: var(--size-2)
}

.info_platforms,
.rating_full {
    align-items: center;
    display: flex
}

.rating_full {
    -moz-column-gap: 10px;
    column-gap: 10px;
    margin-top: var(--size-2)
}

.brand_preview {
    background: var(--dark-100);
    height: 100%;
    justify-content: center;
    position: relative;
    width: 100%
}

.brand_license,
.brand_preview {
    align-items: center;
    display: flex
}

.brand_license {
    column-gap-max-width: 24px;
    column-gap-width: 100%;
    bottom: var(--size-1);
    -moz-column-gap: img;
    column-gap: img;
    position: absolute
}

.brand_license span {
    color: var(--light);
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap
}

.payments_col__icons_item span {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase
}

.sr_only {
    clip: rect(0, 0, 0, 0);
    border-width: 0;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px
}

.rating_area {
    -moz-column-gap: 3px;
    column-gap: 3px;
    display: inline-flex;
    flex-direction: row-reverse;
    overflow: hidden
}

.rating_area:not(:checked)>input {
    display: none
}

.rating_area:not(:checked)>label {
    background: url(../img/icons/star_empty.svg) 50%/100% no-repeat;
    cursor: pointer;
    height: 24px;
    width: 24px
}

.rating_area:not(:checked)>label:hover,
.rating_area:not(:checked)>label:hover~label,
.rating_area>input:checked+label:hover,
.rating_area>input:checked+label:hover~label,
.rating_area>input:checked~label,
.rating_area>input:checked~label:hover,
.rating_area>input:checked~label:hover~label,
.rating_area>label:hover~input:checked~label {
    background: url(../img/icons/star_full.svg) 50%/100% no-repeat
}

.rate-area>label:active {
    position: relative
}

.user_avatar {
    align-items: center;
    border-radius: 100%;
    display: flex;
    height: 50px;
    justify-content: center;
    overflow: hidden;
    width: 50px
}

.form__header,
.form__mark {
    align-items: center;
    -moz-column-gap: .75rem;
    column-gap: .75rem;
    display: flex
}

.form {
    max-width: 680px;
    width: 100%
}

.form__row {
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
    display: flex
}

.form__field {
    background: var(--light-100);
    border: none;
    border-radius: var(--rounded-sm);
    box-sizing: border-box;
    padding: 12px 16px;
    width: 100%
}

.form__field:focus {
    outline: 1px solid var(--active-el)
}

.form__content,
.form__fieldset {
    display: flex;
    flex-direction: column;
    row-gap: var(--size-2)
}

.form__fieldset {
    margin-top: var(--size-2)
}

.form__controls {
    align-items: center;
    -moz-column-gap: 1.875rem;
    column-gap: 1.875rem;
    display: flex;
    margin-top: var(--size-3)
}

.form__textarea {
    max-height: 220px;
    min-height: 60px;
    resize: vertical
}

.form input[type=checkbox],
.form label {
    cursor: pointer
}

.form .form__policy_label {
    color: #9ea6b7;
    font-size: 14px;
    padding-left: 6px
}

.form .form__policy_label a {
    color: var(--danger);
    text-decoration: underline
}

.form.disabled button[type=submit] {
    background: var(--color-ui-1-d);
    pointer-events: none
}

.form__error {
    color: var(--danger);
    display: none;
    font-size: 14px;
    margin-top: var(--size-2)
}

.form__error.active {
    display: block
}

.checkbox input {
    display: none
}

.checkbox input+label {
    align-items: center;
    -moz-column-gap: 8px;
    column-gap: 8px;
    display: flex
}

.checkbox input+label:before {
    background: url(../img/icons/ui/checkbox_false.svg) 50%/100% no-repeat;
    content: "";
    display: inline-block;
    height: 20px;
    width: 20px
}

.checkbox input:checked+label:before {
    background: url(../img/icons/ui/checkbox_true.svg) 50%/100% no-repeat
}

.header__play_btn {
    box-sizing: border-box;
    display: inline-flex;
    margin-left: var(--size-3);
    max-width: 220px;
    white-space: nowrap;
    width: 100%
}

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

.search__trigger_mob {
    display: none
}

#search_results .content_wrap,
#sitemap .content_wrap {
    min-height: 32vh
}

.plus_minus__block {
    box-sizing: border-box;
    width: 50%
}

ol:not(.section_nav__list) li:before {
    display: none
}

ol:not(.section_nav__list) ol {
    margin-top: 10px
}

ol:not(.section_nav__list) li:not(:last-child) {
    margin-bottom: 10px
}

ol:not(.section_nav__list) a:hover {
    text-decoration: underline
}

.table__responsive table tbody th,
.table__responsive table thead th:first-child {
    width: 20%
}

.table__responsive table tbody td,
.table__responsive table thead th:last-child {
    width: 100%
}

#promo {
    margin-top: 34px
}

.promo__offer_img {
    animation: bigEntrance 1.2s ease-out forwards;
    display: inline-block
}

.promo__offer_img img {
    border-radius: 40px;
    padding: 15px;
    max-width: 160px;
}

#promo .content_wrap {
    margin-top: -100px
}

.promo__offer_wrap {
    color: var(--light);
    -moz-column-gap: 2.625rem;
    column-gap: 2.625rem;
    display: flex
}

.promo__offer_content {
    margin-top: 5.75rem;
    color: #000;
}

.promo__offer_content h1 {
    animation: fadeFromTopFull .4s forwards;
    font-size: 36px;
    font-weight: 800
}

.promo__info {
    display: flex;
    margin-top: var(--size-2)
}

.promo__info_totals {
    -moz-column-gap: 3.125rem;
    column-gap: 3.125rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-left: 2rem;
    row-gap: var(--size-3)
}

.totals__item_title {
    color: var(--dark-400);
    font-size: 14px;
    font-weight: 500
}

.totals__item_value {
    font-family: Arial, sans-serif;
    font-weight: 300;
    margin-top: 4px;
    font-size: 14px;
}

#promo .txt {
    margin-top: 1.75rem
}

.brands__item {
    background: var(--light);
    border-radius: var(--rounded-md);
    box-shadow: 0 5px 0 0 #dadadd;
    display: flex;
    margin-top: var(--size-2);
    overflow: hidden
}

.brands__item_preview_img {
    display: inline-block;
    max-width: 172px;
    width: 100%
}

.preview_col {
    max-width: 265px;
    width: 100%
}

.brands__item_wrap_1 {
    display: flex;
    width: 60%
}

.brands__item_wrap_2 {
    display: flex;
    width: 40%
}

.brands__item_col {
    box-sizing: border-box;
    width: 100%
}

.payments_col__icons {
    align-items: center;
    -moz-column-gap: 4px;
    column-gap: 4px;
    display: flex;
    margin-top: 6px
}

.payments_col__providers {
    margin-top: var(--size-3)
}

.payments_col__icons_item {
    align-items: center;
    background: var(--light-100);
    border-radius: 4px;
    display: flex;
    height: 2rem;
    justify-content: center;
    width: 2rem
}

.payments_col__icons_item img {
    max-height: 1.25rem;
    width: 1.625rem
}

.payments_col__other {
    font-size: 14px;
    font-weight: 600;
    margin-left: 10px
}

.brands__item_wrap_2,
.info_col {
    padding: 1.25rem
}

#brands .title_section {
    margin-top: var(--size-4)
}

.info_col__subtitle {
    color: #a0aec0;
    font-weight: 600
}

.info_col__title {
    font-size: 20px;
    font-weight: 700;
    margin-top: 5px
}

.info_col__benefit {
    display: inline-block;
    flex-wrap: nowrap;
    font-size: 14px;
    font-weight: 400
}

.info_col__benefit:before {
    background: url(../img/icons/ui/check_stroke.svg) 50%/100% no-repeat;
    content: "";
    display: inline-block;
    height: 14px;
    margin-right: 6px;
    transform: translateY(2px);
    width: 14px
}

.info_col__benefit.minus:before {
    background: url(../img/icons/ui/close_red.svg) 50%/80% no-repeat
}

.info_col__benefit:not(:last-child) {
    margin-bottom: var(--size-1)
}

.info_col {
    width: 100%
}

.info_col__benefits {
    margin-top: var(--size-3)
}

.controls_col__title {
    font-weight: 700;
    text-align: center
}

.controls_col {
    align-items: center;
    display: flex;
    flex-direction: column
}

.controls_col__rating {
    align-items: center;
    -moz-column-gap: var(--size-1);
    column-gap: var(--size-1);
    display: flex;
    margin-top: var(--size-1)
}

.controls_col__buttons {
    margin-top: var(--size-2)
}

.controls_col__buttons a:not(.btn) {
    display: inline-block;
    width: 100%
}

.controls_col__buttons a:last-child {
    margin-top: var(--size-1)
}

.controls_col__buttons .btn {
    display: inline-flex;
    width: 100%
}

#totals {
    margin-top: var(--size-3)
}

.faq__items {
    margin-top: 1.5rem
}

.promo__banner {
    height: 300px;
    overflow: hidden;
    position: relative
}

.promo__banner img {
    -o-object-fit: contain;
    object-fit: contain;
    height: 300px
}

.promo__banner:after {
    background: linear-gradient(180deg, hsla(0, 0%, 100%, 0), hsla(0, 0%, 4%, .67) 77.43%);
    bottom: 0;
    content: "";
    display: inline-block;
    height: 35%;
    left: 0;
    position: absolute;
    width: 100%
}

table {
    border-collapse: collapse;
    margin: 20px 0
}

td.d {
    border: 1px solid #818181;
    padding: 6px 10px
}

.view__wrap {
    -moz-column-gap: 2.5rem;
    column-gap: 2.5rem;
    display: flex
}

.view__wrap .brand_preview {
    animation: bigEntrance .8s ease-out forwards;
    border-radius: var(--rounded-md);
    height: 14.375rem;
    width: 14.375rem
}

.view__col_controls a,
.view__col_controls button {
    width: 100%
}

.view__col_controls .info_wrap {
    margin-top: var(--size-2);
    width: 100%
}

.view__title {
    animation: fadeFromTopFull .4s forwards;
    font-size: 28px;
    font-weight: 700;
    line-height: normal
}

.view__subtitle {
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    margin-top: var(--size-2)
}

.view__totals_item_title {
    color: #666b7a;
    font-size: 14px;
    font-weight: 500
}

.view__totals_item_content {
    font-family: Arial, sans-serif;
    font-weight: 600;
    margin-top: var(--size-1)
}

.view__totals {
    display: grid;
    gap: 1.875rem;
    grid-template-columns: repeat(4, 1fr);
    margin-top: var(--size-3)
}

#view .content_wrap {
    padding-bottom: var(--size-4)
}

.summary__preview img {
    max-width: 120px
}

.summary__preview .rating_full {
    flex-direction: column;
    margin-top: 10px;
    row-gap: 10px
}

.summary__preview .rating_full span {
    font-weight: 600
}

.summary__mark {
    align-items: center;
    display: flex;
    flex-direction: column
}

.summary__mark_count {
    align-items: center;
    background: var(--color-ui-2);
    border-radius: 100%;
    display: flex;
    font-size: 18px;
    font-weight: 600;
    height: 54px;
    justify-content: center;
    width: 54px
}

.summary__mark_text {
    font-size: 14px;
    font-weight: 600;
    margin-top: var(--size-1)
}

.progress_block {
    align-items: center;
    -moz-column-gap: .75rem;
    column-gap: .75rem;
    display: flex
}

.progress_block__count,
.progress_block__title {
    font-size: 14px;
    font-weight: 600
}

.progress_block__title {
    max-width: 150px;
    text-align: right;
    width: 100%
}

.progress_block__item {
    background: #e6e6e6;
    border-radius: var(--rounded-sm);
    height: 10px;
    overflow: hidden;
    position: relative;
    width: 100px
}

.progress_block__item span {
    animation: fullWidth .4s ease-in forwards;
    background: var(--danger);
    display: inline-block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    width: 0
}

.progress_block__summary {
    align-items: center;
    -moz-column-gap: 10px;
    column-gap: 10px;
    display: flex
}

.summary__wrap {
    align-items: center;
    -moz-column-gap: var(--size-4);
    column-gap: var(--size-4);
    display: flex;
    justify-content: space-between;
    width: 25%
}

.summary__items {
    -moz-column-gap: 5.625rem;
    column-gap: 5.625rem;
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: repeat(2, 1fr);
    row-gap: .75rem
}

#summary .container {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding-left: 60px;
    padding-right: 60px
}

.experts__item_info {
    align-items: center;
    -moz-column-gap: var(--size-2);
    column-gap: var(--size-2);
    display: flex
}

.experts__item_name {
    font-weight: 600
}

.experts__item_responsibility {
    color: var(--light-300);
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    margin-top: 5px
}

.experts__item_role {
    color: var(--light-300);
    font-size: 14px;
    text-transform: uppercase
}

.experts__item_avatar {
    align-items: center;
    border-radius: 100%;
    display: flex;
    height: 80px;
    justify-content: center;
    overflow: hidden;
    width: 80px
}

.experts__item_info {
    margin-top: var(--size-2)
}

.experts__item_desc {
    font-size: 14px
}

.content_wrap p.experts__item_desc {
    margin-top: var(--size-1)
}

.experts__item:not(:first-child) {
    border-top: 1px solid var(--light-100);
    margin-top: var(--size-3);
    padding-top: var(--size-3)
}

.reviews__item {
    border-bottom: 1px solid #f1f3f5;
    display: flex;
    flex-direction: column;
    padding-bottom: 1.25rem;
    padding-top: 1.25rem;
    row-gap: 10px
}

.reviews__item .reviews__item_body {
    margin-top: 0
}

.reviews__item_wrap {
    align-items: center;
    -moz-column-gap: .75rem;
    column-gap: .75rem;
    display: flex
}

.reviews__item_name {
    color: var(--dark-100);
    font-size: 18px;
    font-weight: 600
}

.reviews__item_date {
    color: var(--light-300);
    font-size: 14px;
    font-weight: 500;
    margin-top: 3px
}

.reviews__item_body {
    color: var(--dark-100);
    line-height: 1.5rem
}

.reviews__item_mark {
    align-items: center;
    -moz-column-gap: var(--size-2);
    column-gap: var(--size-2);
    display: flex;
    margin-top: .3125rem
}

.reviews__item_mark .rating_full {
    margin-top: 0
}

.reviews__item_mark_title {
    font-weight: 600;
    letter-spacing: .025rem
}

.reviews__submit {
    margin-top: var(--size-4)
}

#reviews .content_wrap {
    padding-bottom: var(--size-4)
}

.sitemap__nav {
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: repeat(3, 1fr);
    margin-top: var(--size-3);
    row-gap: 2rem;
    width: 100%
}

.sitemap__nav_title {
    color: #a1a7b7;
    font-weight: 600;
    text-transform: uppercase
}

.sitemap__nav_list {
    list-style: none;
    margin-top: var(--size-2)
}

.sitemap__nav_list li:not(:last-child) {
    margin-bottom: var(--size-1)
}

.sitemap__nav_list a {
    color: var(--danger);
    text-decoration: underline;
    transition: .3s
}

.sitemap__nav_list a:hover {
    color: var(--danger-h)
}

#not_found {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 65vh;
    text-align: center
}

#not_found h1 {
    animation: rubberBand 1.2s forwards;
    font-size: 7rem;
    font-weight: 600
}

.not_found__content {
    align-items: center;
    animation: fadeFromTop .4s forwards;
    display: flex;
    flex-direction: column;
    opacity: 0;
    row-gap: var(--size-3)
}

.not_found__subtitle {
    font-size: 21px;
    font-weight: 500;
    letter-spacing: .0197rem
}

.not_found__desc {
    font-weight: 500;
    letter-spacing: .015rem
}

.search__item {
    border-bottom: 1px solid #f1f3f5;
    padding-bottom: var(--size-3);
    padding-top: var(--size-3)
}

.search__item_title {
    font-size: 21px;
    font-weight: 600;
    letter-spacing: .0197rem
}

.search__item_body {
    line-height: 1.5rem
}

.search__item_link {
    color: var(--danger);
    display: inline-block;
    margin-top: var(--size-1);
    text-decoration: underline
}

@media (max-width:1450px) {
    :root {
        --container-header-w: 95%
    }

    #video_player iframe {
        height: 100%;
        max-width: 90%
    }
}

@media (max-width:1400px) {
    .lightbox .lightbox__zoom_content .lightbox__zoom_img {
        max-width: 90%
    }
}

@media (max-width:1330px) {
    :root {
        --container-w: 95%
    }

    .gallery .gallery__item {
        border-radius: var(--rounded-md);
        overflow: hidden;
        width: 100%
    }

    .gallery .gallery__item .video__poster,
    .gallery .gallery__item img {
        aspect-ratio: 16/9;
        -o-object-fit: cover;
        object-fit: cover;
        width: 100%
    }
}

@media (max-width:1250px) {
    .full_modal__content.zoom {
        max-height: 70vh;
        max-width: 80vw
    }

    .header__burger {
        display: block
    }

    header {
        box-sizing: border-box
    }

    header:after {}

    .navigation__menu {
        background: var(--light);
        box-shadow: 3px 10px 10px rgba(0, 0, 0, .2);
        box-sizing: border-box;
        flex-direction: column;
        height: calc(100vh - var(--header-h));
        justify-content: flex-start;
        left: 0;
        margin: 0;
        max-width: 300px;
        overflow-y: scroll;
        padding-top: 50px;
        pointer-events: none;
        position: fixed;
        row-gap: 1.25rem;
        top: var(--header-h);
        transform: translateX(-100%);
        transition: .4s ease;
        z-index: 99
    }

    .navigation__menu.active {
        pointer-events: auto;
        transform: translateX(0)
    }

    .navigation .navigation__wrap {
        flex-direction: column
    }

    .navigation {
        order: 2
    }

    .navigation .dropdown__content {
        padding: 15px 10px
    }

    .navigation .dropdown__content li a {
        font-size: 14px
    }

    .navigation__controls {
        box-sizing: border-box;
        flex-direction: column;
        order: 1;
        padding: 0 1.5rem;
        row-gap: 1.25rem;
        width: 100%
    }

    .navigation__controls .search__trigger {
        display: none
    }

    .navigation__controls .langs__trigger {
        align-self: flex-start;
        background: var(--light-100);
        border-radius: 6px;
        box-sizing: border-box;
        display: inline-flex;
        padding: var(--size-2);
        width: auto
    }

    .navigation__controls .langs__trigger .langs__trigger_flag {
        border-radius: 0;
        height: 18px;
        width: 24px
    }

    .navigation__controls .langs__trigger span {
        margin-left: 5px;
        margin-right: 3px;
        text-transform: capitalize
    }

    .navigation__controls .langs__trigger .langs__trigger_shortname {
        display: none
    }

    .navigation__controls .langs__trigger .langs__trigger_fullname {
        display: inline-block
    }

    .navigation__controls .search__trigger_mob {
        align-items: center;
        box-sizing: border-box;
        display: flex;
        position: relative
    }

    .navigation__controls .search__trigger_mob input {
        background: var(--light);
        border: 1px solid #e0e2e8;
        border-radius: var(--rounded-sm);
        box-sizing: border-box;
        height: 40px;
        overflow: hidden;
        padding: 0 40px 0 1rem;
        width: 100%
    }

    .navigation__controls .search__trigger_mob input:focus {
        outline: 1px solid var(--active-el)
    }

    .navigation__controls .search__trigger_mob button {
        position: absolute;
        right: 8px;
        top: 50%;
        transform: translateY(-50%)
    }

    .navigation__controls .search__trigger_mob button img {
        opacity: .5
    }

    header .container {
        justify-content: space-between
    }

    .header__wrap {
        -moz-column-gap: var(--size-3);
        column-gap: var(--size-3);
        height: 100%
    }

    .logo img {
        max-width: 90px;
        min-width: auto;
    }

    .navigation {
        width: 100%
    }

    .navigation .navigation__item,
    .navigation ul {
        box-sizing: border-box;
        width: 100%
    }

    .navigation .navigation__item {
        border-bottom: 1px solid var(--light-100);
        padding: .9375rem 1.5rem
    }

    .navigation .dropdown__content {
        z-index: 102
    }

    .navigation .dropdown__header {
        padding: 0
    }
}

@media (max-width:1225px) {
    .cookies p {
        max-width: 80%
    }

    .cookies__close_btn span {
        white-space: nowrap
    }
}

@media (max-width:1215px) {
    .promo__banner {
        height: 380px
    }

    .promo__offer_content h1 {
        text-shadow: 1px 2px 5px rgba(0, 0, 0, .5)
    }
}

@media (max-width:1125px) {
    .view__wrap {
        flex-direction: column
    }

    .view__col_controls {
        -moz-column-gap: 24px;
        column-gap: 24px;
        display: flex
    }

    .view__wrap .brand_preview {
        min-width: 400px
    }

    .view__col_controls .info_wrap {
        align-items: flex-start;
        margin-top: 3%;
        max-width: 30%
    }

    .view__col:last-child {
        margin-top: 24px
    }

    .summary__items {
        -moz-column-gap: 10px;
        column-gap: 10px
    }
}

@media (max-width:1100px) {
    #promo {
        margin-top: var(--size-3)
    }

    .promo__banner {
        height: 330px;
        overflow: hidden
    }

    .specific_row {
        flex-direction: column;
        row-gap: var(--size-2)
    }

    .specific_row .lightbox {
        align-self: center
    }
}

@media (max-width:1050px) {
    .brands__items {
        display: flex;
        flex-wrap: wrap;
        gap: 15px
    }

    .brands__item {
        display: inline-flex;
        flex-direction: column
    }

    .brands__item_wrap_1,
    .brands__item_wrap_2 {
        box-sizing: border-box;
        width: 100%
    }

    .info_col__benefits {
        -moz-column-gap: 6px;
        column-gap: 6px;
        display: grid;
        grid-template-columns: repeat(2, 1fr)
    }

    .controls_col {
        align-items: flex-start;
        box-sizing: border-box;
        -moz-column-gap: 25px;
        column-gap: 25px;
        flex-direction: row;
        justify-content: space-between
    }

    .brands__item_preview {
        border-bottom-right-radius: var(--rounded-md)
    }

    .controls_col__rating_total {
        margin-top: 10px
    }

    .brands__item_col.payments_col {
        -moz-column-gap: 36px;
        column-gap: 36px;
        display: flex;
        width: 100%
    }

    .payments_col__providers {
        margin-top: 0
    }

    .controls_col__rating {
        display: flex;
        flex-direction: column
    }

    .progress_block {
        align-items: flex-start;
        flex-direction: column;
        row-gap: 6px
    }

    .progress_block__title {
        text-align: left
    }

    .summary__items {
        -moz-column-gap: 24px;
        column-gap: 24px;
        grid-template-columns: repeat(3, 1fr)
    }
}

@media (max-width:990px) {
    .cookies p {
        max-width: 90%
    }

    .cookies__close_btn {
        min-width: 180px
    }
}

@media (max-width:980px) {
    .footer__nav ul {
        -moz-column-gap: 23px;
        column-gap: 23px
    }
}

@media (max-width:925px) {
    #summary .container {
        align-items: flex-start;
        flex-direction: column
    }

    .summary__items {
        -moz-column-gap: 50px;
        column-gap: 50px;
        grid-template-columns: repeat(2, 1fr);
        margin-top: 36px
    }

    .summary__preview {
        align-items: center;
        -moz-column-gap: var(--size-3);
        column-gap: var(--size-3);
        display: flex
    }

    .summary__mark {
        -moz-column-gap: 16px;
        column-gap: 16px;
        flex-direction: row
    }

    .summary__preview .rating_full {
        align-items: center;
        flex-direction: row;
        margin-top: 0
    }

    .summary__mark_text {
        margin-top: 0
    }

    .progress_block__title {
        text-align: right
    }

    .progress_block {
        flex-direction: row
    }
}

@media (max-width:920px) {
    .full_modal__content.zoom {
        max-height: 70vh;
        max-width: 90vw
    }

    .promo__banner {
        height: 280px
    }

    .promo__offer_content h1 {
        font-size: 32px
    }

    .promo__info_totals {
        margin-left: 0
    }

    .promo__info {
        flex-direction: column;
        row-gap: var(--size-3)
    }

    .promo__info .promo__info_wrap {
        -moz-column-gap: var(--size-3);
        column-gap: var(--size-3);
        flex-direction: row
    }

    .promo__info .btn {
        max-width: 280px
    }
}

@media (max-width:890px) {
    #video_player iframe {
        max-height: 60%
    }

    .footer__wrap {
        flex-direction: column
    }

    .footer__row {
        -moz-column-gap: 15%;
        column-gap: 15%;
        justify-content: center;
        margin-top: var(--size-4);
        max-width: 100%
    }

    .footer__controls_col {
        -moz-column-gap: var(--size-3);
        column-gap: var(--size-3);
        display: flex;
        flex-direction: row;
        justify-content: center;
        max-width: none;
        width: 100%
    }

    .footer__partners {
        -moz-column-gap: normal;
        column-gap: normal;
        justify-content: space-around
    }

    .footer__controls_col_wrap {
        align-items: center;
        -moz-column-gap: 24px;
        column-gap: 24px;
        flex-direction: row
    }
}

@media (max-width:800px) {
    .promo__banner {
        height: 230px
    }

    .screenbox img {
        max-width: 90%
    }
}

@media (max-width:768px) {
    .sitemap__nav {
        grid-template-columns: repeat(2, 1fr)
    }

    .summary__col,
    .summary__items,
    .summary__wrap {
        width: 100%
    }

    .progress_block__title {
        text-align: left
    }

    #video_player iframe {
        max-height: 50%
    }

    .full_modal__content.zoom {
        max-height: 70vh;
        max-width: 95vw
    }

    .full__close_btn,
    .search__close_btn {
        right: 25px
    }

    .lightbox .lightbox__zoom_content .lightbox__zoom_img {
        max-width: 95%
    }

    .brands__item_wrap_1,
    .brands__item_wrap_2 {
        flex-direction: column
    }

    .brands__item_col.preview_col {
        max-width: 100%;
        width: 100%
    }

    .brands__item_preview {
        height: 200px
    }

    .controls_col {
        flex-direction: column;
        margin-top: var(--size-3)
    }

    .controls_col__header {
        align-items: center;
        -moz-column-gap: 8px;
        column-gap: 8px;
        display: flex;
        flex-direction: row
    }

    .controls_col__buttons {
        align-items: center;
        -moz-column-gap: var(--size-3);
        column-gap: var(--size-3);
        display: flex;
        margin-top: 36px;
        width: 100%
    }

    .controls_col__rating {
        align-items: center;
        flex-direction: row;
        margin-top: 0
    }

    .controls_col__rating_total {
        margin-top: 0
    }

    .brands__item_col.info_col {
        padding-bottom: 5px
    }

    .payments_col .payments_col__wrap {
        align-items: center;
        -moz-column-gap: 14px;
        column-gap: 14px;
        display: flex
    }

    .controls_col__buttons a:last-child,
    .payments_col .payments_col__wrap .payments_col__icons {
        margin-top: 0
    }

    .plus_minus {
        flex-direction: column;
        row-gap: var(--size-2)
    }

    .plus_minus__block {
        width: 100%
    }

    .brands__item_preview {
        border-radius: 0
    }

    .gallery {
        grid-template-columns: repeat(3, 1fr)
    }

    :root {
        --container-w: 92%;
        --container-header-w: 92%
    }
}

@media (max-width:750px) {
    .view__col_controls {
        flex-direction: column
    }

    .view__wrap .brand_preview {
        max-width: 100%;
        min-width: auto
    }

    #view .view__wrap .brand_preview {
        width: 100%
    }

    .view__col_controls .info_wrap {
        align-items: center;
        -moz-column-gap: var(--size-3);
        column-gap: var(--size-3);
        flex-direction: row
    }

    #view .info_wrap .btn {
        min-width: 220px
    }

    .view__totals {
        gap: var(--size-2);
        grid-template-columns: repeat(3, 1fr)
    }

    #summary .container {
        box-sizing: border-box;
        padding: 0;
        width: var(--container-w)
    }

    #summary .content_wrap {
        padding: var(--size-3)
    }

    .progress_block {
        flex-direction: column
    }

    .summary__items {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media (max-width:680px) {
    .promo__banner img {
        width: 125%
    }
}

@media (max-width:670px) {
    .form__controls {
        align-items: flex-start;
        flex-direction: column-reverse;
        margin-top: var(--size-2)
    }

    .form__controls .checkbox input+label {
        display: inline;
        line-height: 24px
    }

    .form__controls .checkbox input+label:before {
        margin-right: 6px;
        transform: translateY(22%)
    }

    .form__controls .btn[type=submit] {
        margin-top: 16px
    }
}

@media (max-width:660px) {
    .cookies .container {
        align-items: flex-start;
        flex-direction: column;
        padding: 15px 0
    }

    .cookies__close_btn {
        align-self: center;
        margin-top: 24px
    }

    .cookies__wrap {
        margin-left: 0
    }

    .cookies__row img {
        display: none
    }

    .cookies.active {
        transform: translateY(0)
    }

    .cookies .cookies__title,
    .cookies p {
        text-align: center
    }

    .cookies p {
        max-width: 100%
    }

    .lightbox .lightbox__zoom[active] .lightbox__zoom_content {
        justify-content: center;
        width: 100%
    }

    .lightbox .lightbox__zoom_content .lightbox__zoom_img {
        width: 100%
    }

    .lightbox .lightbox__zoom_content .lightbox__zoom_img img {
        max-width: 90vh
    }

    .promo__offer_wrap {
        -moz-column-gap: 24px;
        column-gap: 24px
    }

    #brands .title_section {
        margin-top: 32px
    }

    .footer__controls_col {
        flex-direction: column
    }

    .title_section {
        font-size: 26px
    }

    .payments_col .payments_col__wrap {
        align-items: flex-start;
        flex-direction: column
    }

    .payments_col .payments_col__wrap .payments_col__icons {
        margin-top: 6px
    }

    .controls_col__buttons {
        margin-top: 32px
    }

    .footer__partners {
        flex-wrap: wrap;
        gap: var(--size-3);
        justify-content: center
    }
}

@media (max-width:620px) {
    .summary__items {
        -moz-column-gap: 24px;
        column-gap: 24px
    }
}

@media (max-width:590px) {
    .promo__offer_content h1 {
        text-shadow: none
    }

    .view__col_controls .info_wrap {
        max-width: 100%;
        width: 100%
    }

    .summary__preview {
        align-items: flex-start;
        flex-direction: column;
        row-gap: 15px
    }

    .full_modal__content.zoom {
        max-height: 60vh
    }

    .promo__banner {
        height: 190px
    }

    .rating_full {
        margin-top: 6px
    }

    .promo__info_totals {
        grid-template-columns: repeat(3, 1fr)
    }

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

    .promo__offer_content {
        color: #242424;
        margin-top: 6px
    }

    .promo__info .promo__info_wrap {
        -moz-column-gap: normal;
        column-gap: normal;
        justify-content: space-between
    }

    #promo .content_wrap {
        margin-top: -175px
    }

    .promo__offer_content h1 {
        font-size: 28px
    }

    .desc_nav .desc_nav__wrap {
        flex-direction: column;
        row-gap: 16px
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:580px) {
    .form__row {
        flex-direction: column;
        row-gap: var(--size-2)
    }

    #not_found h1 {
        font-size: 5rem
    }

    .not_found__content {
        max-width: 90%
    }
}

@media (max-width:550px) {
    #video_player iframe {
        max-height: 35%
    }

    .footer__row {
        flex-direction: column
    }

    .footer__row .footer__col:last-child {
        margin-top: 24px
    }

    .footer__contacts {
        align-items: center;
        display: flex;
        justify-content: space-between
    }

    .faq__item_content {
        text-align: justify
    }

    .promo__info .promo__info_wrap {
        align-items: flex-start;
        flex-direction: column
    }

    .view__col_controls .info_wrap {
        flex-direction: column
    }

    .summary__items {
        grid-template-columns: repeat(2, 1fr)
    }

    .progress_block__item {
        width: 150px
    }
}

@media (max-width:525px) {
    .view__totals {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:490px) {
    .progress_block__item {
        width: 120px
    }

    .info_col__benefits {
        display: flex;
        flex-direction: column
    }

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

    .quotes_block {
        position: relative
    }

    .quotes_block p {
        font-size: 14px
    }

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

    .footer__socials {
        align-self: center;
        -moz-column-gap: 20px;
        column-gap: 20px;
        margin-top: 36px
    }

    .footer__desc {
        margin-top: 24px
    }

    .quotes_block:before {
        left: 0;
        position: absolute;
        top: 0;
        transform: translate(-25%, -20%) rotate(-10deg)
    }

    .quotes_block:after {
        bottom: 0;
        position: absolute;
        right: 0;
        transform: scaleX(-1) translateX(-20%) rotate(-10deg)
    }

    .lightbox .lightbox__zoom_close {
        right: 20px;
        top: 22%
    }

    .lightbox .lightbox__zoom_close:after,
    .lightbox .lightbox__zoom_close:after:hover,
    .lightbox .lightbox__zoom_close:before,
    .lightbox .lightbox__zoom_close:before:hover {
        background: red
    }

    .content_wrap {
        padding: var(--size-2)
    }

    .header__play_btn {
        margin-left: 0;
        max-width: 180px
    }

    .header__play_btn span {
        font-size: 14px
    }

    .screenbox img {
        max-width: 100%
    }
}

@media (max-width:460px) {
    .sitemap__nav {
        display: flex;
        flex-direction: column
    }

    #sitemap .content_wrap {
        padding-bottom: 36px
    }

    #not_found {
        min-height: 50vh
    }

    .breadcrumbs {
        margin-bottom: 1.5rem;
        margin-top: 1.5rem
    }

    .navigation .navigation__item,
    .navigation__controls {
        padding-left: 1.3rem;
        padding-right: 1.3rem
    }

    .navigation__controls .search__trigger_mob input {
        height: 48px
    }

    .promo__banner {
        height: 150px
    }

    #promo .content_wrap {
        margin-top: -125px
    }

    .promo__offer_content h1 {
        font-size: 24px
    }

    .promo__offer_content {
        margin-top: 40px
    }

    ol {
        padding-left: 20px
    }

    ol ol {
        padding-left: 10px
    }

    .promo__info_totals {
        grid-template-columns: repeat(2, 1fr)
    }

    .promo__info .btn {
        max-width: 100%
    }

    .promo__offer_img {
        height: 120px;
        width: 120px
    }

    .promo__offer_img img {
        width: 100%
    }

    .info_col__benefits {
        margin-top: var(--size-2);
        padding-top: 0
    }

    .controls_col__buttons {
        -moz-column-gap: var(--size-1);
        column-gap: var(--size-1)
    }

    .navigation__menu {
        max-width: 100%
    }

    .logo img {
        min-width: 90px
    }

    .header__wrap {
        -moz-column-gap: 8px;
        column-gap: 8px
    }

    .dropdown__title,
    .navigation a {
        color: var(--dark);
        font-size: 18px
    }
}

@media (max-width:450px) {
    .container {
        max-width: 100%
    }

    .block .container {
        border-radius: 0;
        max-width: 100%
    }

    .block .container .promo__banner img {
        -o-object-fit: cover;
        object-fit: cover;
        width: 120%
    }

    .brands__item {
        border-radius: 0;
        width: 100%
    }

    #footer .container {
        max-width: var(--container-w)
    }

    #brands .title_section,
    .breadcrumbs {
        margin-left: auto;
        margin-right: auto;
        max-width: var(--container-w)
    }

    #summary .content_wrap {
        max-width: 100%;
        padding-left: 5%;
        padding-right: 5%;
        width: 100%
    }
}

@media (max-width:440px) {
    .full_modal__content.zoom {
        max-height: 50vh
    }

    .navigation__menu {
        row-gap: .9rem
    }

    .desc_nav .btn {
        max-width: 100%;
        width: 100%
    }

    .desc_nav .desc_nav__wrap {
        width: 100%
    }

    .controls_col__buttons {
        flex-direction: column;
        margin-top: 24px;
        row-gap: 10px
    }

    .brands__item_wrap_2,
    .info_col {
        padding: 1rem
    }

    .brands__item_preview {
        height: 240px
    }

    .gallery {
        gap: .5rem
    }

    .promo__offer_content h1,
    .title_section {
        font-size: 22px
    }

    .summary__preview {
        align-items: center;
        flex-direction: row
    }

    .summary__wrap {
        flex-direction: column;
        row-gap: 16px
    }

    .summary__items {
        margin-top: 24px
    }

    .summary__mark {
        margin-top: 5px
    }
}

@media (max-width:420px) {
    .search__item_link {
        margin-top: var(--size-2)
    }

    .view__col_controls .info_wrap {
        margin-top: 24px
    }

    .form__mark {
        align-items: flex-start;
        flex-direction: column;
        row-gap: 3px
    }

    .form__header {
        -moz-column-gap: var(--size-2);
        column-gap: var(--size-2)
    }

    #video_player iframe {
        max-height: 26%
    }

    .to_top_btn {
        bottom: 30px;
        right: 50px
    }

    p {
        text-align: justify
    }

    .full__close_btn,
    .search__close_btn {
        top: 90px
    }

    .langs__content {
        max-width: 90%;
        padding: 20px 20px 23px
    }

    .summary__items {
        display: flex;
        flex-direction: column
    }

    .progress_block__item,
    .progress_block__summary {
        width: 100%
    }
}

@media (max-width:400px) {
    .plus_minus__item:before {
        margin-left: 0
    }

    .brands__item_col.payments_col {
        flex-direction: column
    }

    .payments_col__providers {
        margin-top: 8px
    }
}

@media (max-width:390px) {
    .view__totals {
        display: flex;
        flex-direction: column
    }

    .summary__preview {
        flex-direction: column;
        width: 100%
    }

    .form__controls .btn[type=submit],
    .summary__wrap {
        width: 100%
    }
}

@media (max-width:370px) {
    .reviews__item_mark {
        align-items: flex-start;
        flex-direction: column
    }

    .reviews__item_mark .rating_full {
        margin-top: 10px
    }
}

@media (max-width:360px) {
    .header__play_btn {
        padding: 5px 25px;
        white-space: normal
    }

    .logo img {
        max-width: 80%;
        min-width: 80px
    }

    .plus_minus__item {
        font-size: 14px
    }
}

@media (max-width:350px) {
    .to_top_btn {
        right: 30px
    }
}

@media (max-width:340px) {
    .block .container .promo__banner img {
        width: 130%
    }

    .navigation .navigation__item,
    .navigation__controls {
        padding-left: 1rem;
        padding-right: 1rem
    }
}