*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

.container {
  max-width: 1260px;
  padding: 0 10px;
  margin: 0 auto;
}

@media screen and (min-width: 1919px) {
  .container {
    max-width: 1440px;
  }
}

@media screen and (max-width: 992px) {
  .container {
    padding: 0 20px;
  }
}

@media screen and (max-width: 768px) {
  .container {
    text-align: center;
  }
}

@media screen and (max-width: 300px) {
  .container {
    padding: 0 10px;
  }
}

@font-face {
  font-family: "Gang";
  src: url("../fonts/Gang.ttf") format("truetype");
}

@font-face {
  font-family: "go3v2";
  src: url("../fonts/go3v2.ttf") format("truetype");
}

html {
  background-color: #000;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}

body {
  overflow-x: hidden;
  /* Demonstrate a "mostly customized" scrollbar
   * (won't be visible otherwise if width/height is specified) */
  /* Add a thumb */
}

body .visible-scrollbar, body .invisible-scrollbar, body .mostly-customized-scrollbar {
  display: block;
  width: 10em;
  overflow: auto;
  height: 2em;
}

body::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: #000;
}

body::-webkit-scrollbar-thumb {
  background: #d3ff07;
}

.bg-image {
  position: absolute;
  bottom: 140px;
  right: 2vw;
  z-index: -5;
  width: 800px;
}

@media screen and (max-width: 768px) {
  .bg-image {
    display: none;
  }
}

.bg-image-mobile {
  position: absolute;
  top: 70px;
  right: -1rem;
  z-index: -5;
  width: 100%;
  display: none;
}

@media screen and (max-width: 768px) {
  .bg-image-mobile {
    display: block;
  }
}

.header {
  padding-top: 90px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .header {
    padding-top: 25px;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
  }
}

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

.header__logo {
  width: 150px;
}

@media screen and (max-width: 768px) {
  .header__logo {
    width: 125px;
  }
}

.header__text {
  text-transform: uppercase;
  color: #fff;
  margin-top: 70px;
}

@media screen and (max-width: 768px) {
  .header__text {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    margin-top: 57vw;
  }
}

.header__text_title {
  font-family: go3v2, sans-serif;
  color: #FD4567;
  margin: 20px 0 0 0;
  font-size: 48px;
  max-width: 550px;
}

@media screen and (max-width: 768px) {
  .header__text_title {
    font-size: 35px;
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 325px) {
  .header__text_title {
    font-size: 21px;
  }
}

.header__text_title span {
  font-family: RussoOne, sans-serif;
}

.header__text_subtitle {
  letter-spacing: 4px;
}

@media screen and (max-width: 768px) {
  .header__text_subtitle {
    font-size: 9px;
  }
}

.header__text_desc {
  text-transform: initial;
  margin-bottom: 30px;
  font-weight: 600;
}

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

.line-top,
.line-bottom {
  height: 1px;
  background-color: #ffffff;
  border: none;
}

.line-top {
  width: 30px;
  margin-right: 10px;
}

.line-bottom {
  width: 210px;
  margin-left: 10px;
}

@media screen and (max-width: 768px) {
  .line-top, .line-bottom {
    width: 50px;
  }
}

.line-text {
  margin: 0;
  font-size: 2rem;
  font-family: go3v2, sans-serif;
  color: #d3ff07;
}

.header__text h1:nth-child(5){
  margin-top: 0;
}

.header__text p:nth-child(6){
  margin-bottom: 50px;
}

.header__text_link {
  font-family: Montsserat, sans-serif;
  font-size: 0.8rem;
  border-radius: 46px;
  padding: 13px 25px;
  background-color: #d3ff07;
  color: #000;
  transition: .1s;
  outline: none;
  text-transform: uppercase;
  font-weight: 900;
}

.header__text_link:hover {
  cursor: pointer;
  background: #fff;
}

.mobile-cta {
  display: none;
}

@media screen and (max-width: 768px) {
  .mobile-cta {
    display: inline-block;
  }
}

.header__providers {
  display: flex;
  margin-top: 40px;
}

.header__providers li{
  margin-right: 20px;
}

.header__providers li img {
  height: 20px;
}

.header__list-icons {
  margin-top: 200px;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .header__list-icons {
    flex-flow: column;
    margin-top: 40px;
  }
}

.header__list-icon {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .header__list-icon {
    margin-bottom: 45px;
  }
}

.header__list-icon_img {
  width: 100px;
}

@media screen and (max-width: 768px) {
  .header__list-icon_img {
    width: 85px;
  }
}

.header__list-icon_wrap {
  margin-top: 10px;
  display: flex;
  text-align: center;
}

.header__list-icon_num {
  width: 46px;
  height: 46px;
  line-height: 46px;
  border-radius: 50%;
  color: #FE4668;
  font-weight: bold;
  background: radial-gradient(#241C19, #3D2422);
}

@media screen and (max-width: 768px) {
  .header__list-icon_num {
    width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 12px;
  }
}

@media screen and (max-width: 500px) {
  .header__list-icon_num {
    width: 28px;
    height: 28px;
    line-height: 28px;
    font-size: 10px;
  }
}

.header__list-icon_text {
  line-height: 46px;
  margin-left: 15px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 21px;
}

@media screen and (max-width: 768px) {
  .header__list-icon_text {
    line-height: 32px;
    font-size: 15px;
  }
}

@media screen and (max-width: 500px) {
  .header__list-icon_text {
    line-height: 28px;
    font-size: 12px;
  }
}

.header-shadow-bottom {
  position: absolute;
  left: -150px;
  bottom: 0;
  height: 219px;
  width: 200%;
  background: linear-gradient(0deg, #000 35%, transparent);
  z-index: -1;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.8);
}

@media screen and (max-width: 768px) {
  .header-shadow-bottom {
    bottom: 42rem;
  }
}

@media screen and (max-width: 402px) {
  .header-shadow-bottom {
    bottom: 38rem;
  }
}


/*section terms*/
.terms {
  margin: 70px 20px 60px
}

@media (max-width: 767px) {
  .terms {
    margin:20px
  }
}

.terms .accordion {
  margin: 0 auto;
  border-radius: 4px
}

.terms .accordion__header {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: #323232;
  border-radius: 4px;
  cursor: pointer
}

.terms .accordion__header-label {

}

@media (max-width: 767px) {
  .terms .accordion__header {
    color:#fff
  }
}

.terms .accordion__header-icon:before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: url(../img/arrow.svg) no-repeat;
  background-size: contain;
  background-position: center;
  transition: linear 0.2s
}

.terms .accordion__header.open {
  border-radius: 4px 4px 0 0
}

.terms .accordion__header.open .accordion__header-icon:before {
  content: "";
  transform: scaleY(-1)
}

.terms .accordion__header-label,.terms .accordion__header-icon {
  color: #fff
}

.terms .accordion__content {
  max-height: 0;
  overflow: hidden;
  border-radius: 4px;
}

.terms .accordion__content.open {
  max-height: initial;
  border-radius: 0 0 4px 4px
}

.terms .accordion__content-container {
  padding: 20px 35px;
  line-height: 1.8;
}

.terms .accordion__content-container ul {
  list-style: disc;
  padding-left: 17px;
}

@media (max-width: 767px) {
  .terms .accordion__content-container {
    padding:20px 15px;
    text-align: left;
  }
}
/*section terms END*/


.footer {
  padding: 90px 0 40px 0;
}

.footer__list {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #fff;
  text-transform: uppercase;
}

@media screen and (max-width: 768px) {
  .footer__list {
    line-height: 3;
    flex-direction: column;
    align-items: center;
  }
  .footer {
    padding: 20px 0 40px 0;
  }
}

.footer__list li a {
  color: #fff;
  font-weight: bold;
  transition: .1s;
}

.footer__list li a:hover {
  color: #d3ff07;
}

.footer__providers {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  margin-top: 70px;
}

.footer__providers_row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.footer__providers_row > li {
  margin: 0 25px 30px 0;
  display: flex;
  align-items: center;
}

.footer__providers_row > li img {
  transition: .1s;
  height: 20px;
}

.footer__providers_row > li img.provider-big {
  height: 44px;
}

.footer__providers_row1 {
  justify-content: center;
  width: 90%;
}

.footer__copyright {
  font-size: .8125rem;
  color: #586474;
  line-height: 25px;
  margin-bottom: 30px;
}

.footer__copyright a {
  color: #fff;
  text-decoration: underline;
}
