@import url(../fonts/stylesheet.css);

/* RESET CSS */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
u,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
   margin: 0;
   padding: 0;
   border: 0;
   font-size: 100%;
   vertical-align: baseline;
   background: transparent;
}
a {
   text-decoration: none;
   color: inherit;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
   display: block;
}

textarea:focus {
   outline: none;
}
textarea {
   resize: none;
}
/* HTML5 hidden-attribute fix for newer browsers */
*[hidden] {
   display: none;
}

/* Reset box-model */
html {
   box-sizing: border-box;
}
*,
*:before,
*:after {
   box-sizing: inherit;
}

body {
   line-height: normal;
}
body.no-scroll {
   overflow: hidden;
}
ol,
ul {
   list-style: none;
   list-style-type: none;
}

blockquote,
q {
   quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
   content: "";
   content: none;
}

abbr[title],
dfn[title] {
   border-bottom: 1px dotted;
}

table {
   border-collapse: collapse;
   border-spacing: 0;
}

img,
video {
   max-width: 100%;
   /* width: 100%; */
}

img {
   border-style: none;
}

button,
input,
optgroup,
select,
textarea {
   margin: 0;
   padding: 0;
   border: 0;
   vertical-align: middle;
   color: inherit;
   font: inherit;
   background: transparent;
   text-align: inherit;
   text-transform: inherit;
}
button:disabled {
   opacity: 0.5;
   pointer-events: none;
}
button {
   cursor: pointer;
}
input:focus {
   outline: none;
}
:root {
   --primary-color: #7e57c2;
   --bg-color: #efefef;
   --transition: all 0.35s ease;
   --main-text-color: #020202;
   --default-radius: 15px;
}
body {
   font-family: "Stem";
   background-color: var(--bg-color);
   color: --main-text-color;
}
.container {
   max-width: 1400px;
   margin: 0 auto;
}

.accordion {
   background-color: #ffffff;
   border-radius: var(--default-radius);
}

.accordion .accordion__header {
   display: flex;
   align-items: center;
   justify-content: space-between;
   user-select: none;
   gap: 10px;
   height: max-content;
   padding: 18px 16px;
   cursor: pointer;
}

.accordion .accordion__header .accordion__header-icon {
   transition: var(--transition);
}

.accordion.open .accordion__header .accordion__header-icon {
   transform: rotate(-180deg);
}
.accordion .accordion__description-wrapper {
   display: grid;
   grid-template-rows: 0fr;
   overflow: hidden;
   transition: var(--transition);
}

.accordion.open .accordion__description-wrapper {
   grid-template-rows: 1fr;
}
.accordion__header-icon {
   transition: var(--transition);
}
.accordion.open .accordion__header-icon {
   transform: rotate(-180deg);
   transition: var(--transition);
}
.accordion .accordion__description-wrapper .accordion__description {
   min-height: 0;
}

.accordion__content {
   padding: 0 16px 18px;
   line-height: 1.5;
   color: #858585;
}
.accordion__content p:not(:last-child),
.accordion__content table{
margin-bottom: 20px;
}
.accordion__content table td {
   border: 1px solid #858585;
   padding: 5px;
}
.accordion__content h3 {
   margin: 10px 0 20px;
   font-weight: 500;
}
.hero {
   color: #fff;
   background: #020202;
}
.hero .container {
   position: relative;
}
.hero__inner {
   padding: 40px 0 70px;
}
.hero__header {
   /* display: flex; */
   margin-bottom: 36px;
}
.hero__logo {
   display: flex;
   align-items: center;
   position: relative;
   z-index: 3;
   gap: 36px;
}
.hero__logo-img {
   width: 70px;
   display: flex;
   height: 70px;
}
.hero__logo-text {
   font-size: 58px;
}
.hero__main {
   width: 50%;
   position: relative;
   z-index: 3;
}
.hero__descr {
   font-size: 16px;

   margin-bottom: 10px;
}
.hero__descr p {
   margin-bottom: 35px;
}

.hero__benefits {
   display: flex;
   gap: 40px;
   margin-bottom: 50px;
   align-items: center;
}
.hero__benefits-item {
   display: flex;
   text-transform: uppercase;
   gap: 5px;
   align-items: center;
}
.hero__benefits-item-icon {
   width: 36px;
   height: 36px;
   display: flex;
   min-width: 36px;
}
.hero__benefits-item-text {
   font-size: 14px;
}

.regular-button {
   border: 2px solid #000;
   padding: 25px 30px;
   display: block;
   width: max-content;
   height: max-content;
   transition: var(--transition);
   font-weight: 500;
   border-radius: var(--default-radius);
}

.hero__button {
   background: var(--primary-color);
   border-color: var(--primary-color);
}
.regular-button:hover {
   background-color: transparent;
}
.hero__video-wrapper {
   position: relative;
   height: 100%;
}
.hero__video {
   height: 100%;
   position: absolute;
   right: 0;
   top: 0;
   width: 675px;
}

.hero__video-wrapper::before,
.hero__video-wrapper::after {
   content: "";
   position: absolute;
   top: 0;
   width: 120px;
   height: 100%;
   z-index: 2;
   pointer-events: none;
}

.hero__video-wrapper::before {
   left: 0;
   background: linear-gradient(to right, var(--main-text-color) 0%, transparent 100%);
}

.hero__video-wrapper::after {
   right: 0;
   background: linear-gradient(to left, var(--main-text-color) 0%, transparent 100%);
}
.hero__video.hero__video--other video {
   width: 100%;
   height: 100%;
   object-fit: cover;
}
.hero__video:not(.hero__video--other) {
   background: url(../img/gif.webp) center no-repeat;
   background-size: cover;
}
.instruction {
   padding: 55px 0;
}
.instruction__inner {
}
.sc-title {
   font-size: 58px;
   font-weight: 400;
   margin-bottom: 35px;
}
.sc-title--default {
   color: var(--primary-color);
}
.instruction__text {
   display: flex;
   gap: 35px;
   margin-bottom: 50px;
}

.instruction__images {
   display: flex;
   justify-content: space-between;
   align-items: start;
   gap: 40px;
}
.instruction__images-item {
   height: 640px;
}
.news {
   padding: 55px 0 70px;
   background: var(--primary-color);
}
.news__inner {
}
.sc-title--white {
   color: #fff;
}
.news__row {
   display: flex;
   gap: 100px;
}
.news__container {
}
.news__items {
   display: flex;
   flex-direction: column;
   row-gap: 15px;
   margin-bottom: 30px;
}
.accordion {
   height: max-content;
}
.accordion--none-content .accordion__header {
   cursor: default;
}
.accordion__header {
}
.accordion__trigger {
}
.accordion__header-content {
   /* font-weight: 500; */
   display: flex;
   align-items: center;
   column-gap: 14px;
}
.accordion__header-date {
}
.accordion__header-time {
   color: #858585;
}
.accordion__header-title {
}
.accordion__header-icon {
   width: 22px;
   height: 20px;
}

.news__all-btn {
   color: #eeeeee;
   padding-bottom: 3px;
   display: inline-block;
   border-bottom: 1px dashed #fff;
   font-size: 18px;
   transition: var(--transition);
}
.news__all-btn:hover {
   opacity: 0.8;
}
.news__external-btn {
   background-color: #000;
   color: #fff;
}
.explication {
   padding: 65px 0 95px;
}
.explication__inner {
}
.sc-title--black {
}
.explication__accrodions {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 20px;
}
.footer {
   background: #858585;
   color: #fff;
   padding: 45px 0;
}
.footer__inner {
}
.footer__row {
   display: flex;
   gap: 50px;
}
.footer__copyright {
   white-space: nowrap;
}
.footer__disclaimer {
}
.hero__benefits-item-icon svg,
.hero__benefits-item-icon svg > image {
   width: 100%;
   height: 100%;
}

video::-webkit-media-controls {
   display: none !important;
}

@media (max-width: 1440px) {
   .container {
      max-width: 1320px;
      padding: 0 20px;
   }
}
@media (max-width: 1200px) {
   .hero__main {
      width: 70%;
   }
}

@media (max-width: 1090px) {
   .news__row {
      gap: 30px;
      flex-direction: column;
   }
}
@media (max-width: 992px) {
   .sc-title {
      font-size: 48px;
      margin-bottom: 30px;
   }
   .hero__logo-text {
      font-size: 48px;
   }
   .hero__logo {
      gap: 26px;
   }
   .hero__logo-img {
      width: 60px;
      height: 60px;
   }
   .hero__descr p {
      margin-bottom: 25px;
   }
}

@media (max-width: 899px) {
   .hero__video {
      position: relative;
      width: 100%;
      height: 500px;
   }

   .hero {
      overflow: hidden;
   }
   .hero__inner {
      padding: 40px 0;
   }
   .hero__video-wrapper::before,
   .hero__video-wrapper::after {
      content: "";
      position: absolute;
      width: 100%;
      height: 120px;
      z-index: 2;
      pointer-events: none;
   }
   .hero__video-wrapper::before {
      left: 0;
      background: linear-gradient(to bottom, var(--main-text-color) 0%, transparent 100%);
      top: 0px;
   }

   .hero__video-wrapper::after {
      right: 0;
      top: calc(100% - 120px);
      background: linear-gradient(to top, var(--main-text-color) 0%, transparent 100%);
   }
   .explication__accrodions {
      grid-template-columns: 1fr;
   }
   .footer__row {
      flex-direction: column;
      align-items: center;
      row-gap: 20px;
      text-align: center;
   }
   .instruction__images-item {
      height: auto;
   }
   .instruction__images {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
   }

   section:not(.hero) {
      padding: 50px 0;
   }
   .hero__main {
      width: 100%;
   }
}

@media (max-width: 767px) {
   body,
   .hero__descr,
   .news__all-btn {
      font-size: 14px !important;
   }
   .hero__benefits-item-text {
      font-size: 12px;
   }
   .sc-title,
   .hero__logo-text {
      font-size: 38px;
   }
   section:not(.hero) {
      padding: 40px 0;
   }
   .hero__logo {
      gap: 16px;
   }
   .hero__logo-img {
      width: 50px;
      height: 50px;
   }
   .hero__benefits-item-icon {
      width: 28px;
      height: 28px;
      min-width: 28px;
   }
}

@media (max-width: 550px) {
   .hero__benefits {
      gap: 25px;
      justify-content: space-between;
      flex-wrap: wrap;
   }
   .hero__video {
      height: 300px;
   }
   .regular-button {
      width: 100%;
      text-align: center;
      padding: 22px 20px;
   }
   .instruction__text {
      flex-direction: column;
      gap: 25px;
      margin-bottom: 30px;
   }
   .hero__benefits-item {
      flex-basis: calc(50% - 25px);
   }
   .hero__descr {
      margin-bottom: 30px;
   }
   .instruction__images {
      gap: 20px;
   }
   .hero__video-wrapper::before,
   .hero__video-wrapper::after {
      height: 30px;
   }
   .hero__video-wrapper::after {
      top: calc(100% - 30px);
   }
   .container {
      padding: 0 10px;
   }
   .sc-title,
   .hero__logo-text {
      font-size: 30px;
   }
   .hero__logo-img {
      width: 45px;
      height: 45px;
   }
   .hero__header {
      margin-bottom: 30px;
   }
}

@media (max-width: 399px) {
   .instruction__text {
      gap: 15px;
   }
   .footer {
      padding: 40px 0;
   }
}