@import url(https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@400&display=swap);
/*
    HTML5 Reset :: style.css
    ----------------------------------------------------------
    We have learned much from/been inspired by/taken code where offered from:

    Eric Meyer                    :: https://meyerweb.com
    HTML5 Doctor                :: https://html5doctor.com
    and the HTML5 Boilerplate    :: https://html5boilerplate.com

-------------------------------------------------------------------------------*/
/* Let's default this puppy out
-------------------------------------------------------------------------------*/
html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, menu, nav, section, time, mark, audio, video, details, summary {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
}

article, aside, figure, footer, header, nav, section, details, summary {
  display: block;
}

/* Handle box-sizing while better addressing child elements:
   https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

/* consider resetting the default cursor: https://gist.github.com/murtaugh/5247154 */
/* Responsive images and other embedded objects
*/
img,
object,
embed {
  max-width: 100%;
}

/*
   Note: keeping IMG here will cause problems if you're using foreground images as sprites.
     In fact, it *will* cause problems with Google Maps' controls at small size.
    If this is the case for you, try uncommenting the following:

#map img {
        max-width: none;
}
*/
/* force a vertical scrollbar to prevent a jumpy page */
html {
  overflow-y: scroll;
}

/* we use a lot of ULs that aren't bulleted.
    don't forget to restore the bullets within content. */
ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

del {
  text-decoration: line-through;
}

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

/* tables still need cellspacing="0" in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

th {
  font-weight: bold;
  vertical-align: bottom;
}

td {
  font-weight: normal;
  vertical-align: top;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

pre {
  white-space: pre;
  /* CSS2 */
  white-space: pre-wrap;
  /* CSS 2.1 */
  white-space: pre-line;
  /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word;
  /* IE */
}

input[type=radio] {
  vertical-align: text-bottom;
}

input[type=checkbox] {
  vertical-align: bottom;
}

.ie7 input[type=checkbox] {
  vertical-align: baseline;
}

.ie6 input {
  vertical-align: text-bottom;
}

select, input, textarea {
  font: 99% sans-serif;
}

table {
  font-size: inherit;
  font: 100%;
}

small {
  font-size: 85%;
}

strong {
  font-weight: bold;
}

td, td img {
  vertical-align: top;
}

/* Make sure sup and sub don't mess with your line-heights https://gist.github.com/413930 */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* standardize any monospaced elements */
pre, code, kbd, samp {
  font-family: monospace, sans-serif;
}

/* hand cursor on clickable elements */
.clickable,
label,
input[type=button],
input[type=submit],
input[type=file],
button {
  cursor: pointer;
}

/* Webkit browsers add a 2px margin outside the chrome of form elements */
button, input, select, textarea {
  margin: 0;
}

/* make buttons play nice in IE */
button,
input[type=button] {
  width: auto;
  overflow: visible;
}

/* scale images in IE7 more attractively */
.ie7 img {
  -ms-interpolation-mode: bicubic;
}

/* prevent BG image flicker upon hover
   (commented out as usage is rare, and the filter syntax messes with some pre-processors)
.ie6 html {filter: expression(document.execCommand("BackgroundImageCache", false, true));}
*/
/* let's clear some floats */
.clearfix:before, .clearfix:after {
  content: " ";
  display: block;
  height: 0;
  overflow: hidden;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  zoom: 1;
}

body {
  position: relative;
  width: 100%;
  min-width: 320px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: white;
  overflow: hidden;
  background-color: #001428;
}

.screen {
  position: relative;
  display: block;
  width: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-image: url(../images/Back.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.video-bg__container {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.video-bg__container video {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center right;
     object-position: center right;
}

@media screen and (max-width: 980px) {
  body {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right;
  }

  .video-bg__container {
    display: none;
  }
}
.loader {
  display: none;
}

body.loading.loading--fade-out .loader {
  -webkit-animation: loaderFadeOut 0.5s linear forwards;
          animation: loaderFadeOut 0.5s linear forwards;
}
body.loading .loader {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 99;
  opacity: 1;
}
body.loading .loader:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  background: linear-gradient(109.88deg, #10518f 10.14%, #072b4e 89.08%);
}
body.loading .loader__processing {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  width: 78px;
  height: 78px;
  background-image: url(../images/loader/anchor.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 1;
}
body.loading .loader__processing:after {
  content: "";
  position: absolute;
  display: block;
  width: 78px;
  height: 78px;
  background-image: url(../images/loader/circle.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-animation: loaderSpinning 1.5s linear infinite;
          animation: loaderSpinning 1.5s linear infinite;
}

@-webkit-keyframes loaderSpinning {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes loaderSpinning {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes loaderFadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes loaderFadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
main {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 1.875em auto 0;
  width: 90%;
  max-width: 1600px;
  min-height: 565px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

@media screen and (max-width: 1200px) {
  main {
    width: 95%;
  }
}
.legends__label {
  position: absolute;
  top: 0;
  right: 0;
}

.legends__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 90px;
  text-decoration: none;
  text-transform: none;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0.77;
}
.legends__link:hover {
  opacity: 1;
}
.legends__link img {
  display: block;
  width: 100%;
}

@media screen and (max-width: 1360px) {
  .legends__link {
    width: 67px;
  }
}
.content__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.logo-wrapper {
  display: block;
  width: 35%;
}
.logo-wrapper img {
  display: block;
  width: 100%;
}

.logo-separator {
  display: block;
  width: 2px;
  height: 180px;
  margin: 0 1.875em;
  background-color: #fff;
  opacity: 0.2;
}

@media screen and (max-width: 1360px) {

  .logo-separator {
    height: 140px;
  }
}

@media screen and (max-width: 960px) {
  .logo-wrapper {
    width: 70%;
  }
}

@media screen and (max-width: 640px) {
  .content__top {
    padding-top: 2em;
  }

  .logo-separator {
    margin: 0 1.625em;
  }
  .logo-wrapper {
    width: 100%;
  }
}

.content__middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.content__middle .content__container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 1000px;
  margin: 1.875em 0;
  padding: 5em 0;
}
.content__middle .content__container:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0)), color-stop(48.96%, #FFFFFF), to(rgba(255, 255, 255, 0)));
  background: -o-linear-gradient(right, rgba(255, 255, 255, 0) 0%, #FFFFFF 48.96%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 48.96%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.3;
}
.content__middle .content__container::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0)), color-stop(48.96%, #FFFFFF), to(rgba(255, 255, 255, 0)));
  background: -o-linear-gradient(right, rgba(255, 255, 255, 0) 0%, #FFFFFF 48.96%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 48.96%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.3;
}

.content__h1 {
  font-size: 3em;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.content__paragraph {
  display: block;
  margin-top: 1.25em;
  font-family: "Roboto", sans-serif;
  font-size: 1em;
  line-height: 1.375em;
  text-align: center;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 768px) {
  .content__paragraph br {
    display: none;
  }
}
@media screen and (max-width: 640px) {
  .content__h1 {
    font-size: 1.5em;
  }

  .content__paragraph {
    margin-top: 0.625em;
  }
}
.content__bottom {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.content__bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  display: block;
  width: 100vw;
  height: 100%;
  background: #001428;
  opacity: 0.5;
}

.content__bottom .content__container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 1000px;
  padding: 1.875em 0;
}

.content__user-new {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.content__h2 {
  display: block;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.333;
  text-align: center;
}

.content__subtitle {
  display: block;
  margin-top: 0.625em;
  font-family: "Roboto", sans-serif;
  font-size: 1em;
  text-align: center;
  color: #ffffff;
  opacity: 0.54;
}

.form {
  display: block;
  margin-top: 1.25em;
}

.content__user_registered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 1.25em;
  width: 100%;
}

.content__link {
  margin-top: 0.625em;
  font-family: "Roboto", sans-serif;
  font-size: 1em;
  line-height: 1.375em;
  color: #00B4B9;
  text-decoration: none;
  text-transform: none;
  opacity: 1;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.content__link:hover {
  color: #00CCCC;
}
.content__link:active {
  opacity: 0.5;
  text-decoration: underline;
}

@media screen and (max-width: 1360px) {
  .content__middle .content__container {
    padding: 0;
  }
  .content__middle .content__container::before {
    display: none;
  }
  .content__middle .content__container::after {
    display: none;
  }

  .content__h1 {
    font-size: 2.25em;
  }

  .content__h2 {
    font-size: 1.25em;
  }
}
.footer {
  display: block;
  padding: 1.3125em 0;
  width: 100%;
  background-color: #001428;
}

.footer__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
}
.footer__row:nth-child(n+2)::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin: 1.25em 0;
  background-color: #fff;
  opacity: 0.1;
}

.footer__wargaming-logo {
  display: block;
  margin-right: 3.5625em;
}

.footer__wargaming-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #ffffff;
  text-decoration: none;
  text-transform: none;
}

.footer__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: 3.5625em;
}

.footer__link-wrapper {
  display: inline-block;
  margin-right: 2.5em;
}

.footer__link {
  display: block;
  font-size: 1em;
  font-weight: 400;
  color: #ffffff;
  opacity: 0.54;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.footer__link:hover {
  opacity: 1;
}
.footer__link:active {
  text-decoration: underline;
}

.footer__language-picker {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0.54;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.footer__language-picker:hover {
  opacity: 1;
}
.footer__language-picker:active {
  opacity: 0.7;
}

.language-picker__icon {
  display: block;
  width: 41px;
  margin-right: 0.25em;
}
.language-picker__icon img {
  display: block;
  width: 100%;
}

.language-picker__language {
  display: block;
  margin-right: 0.25em;
  font-family: "Roboto", sans-serif;
  font-size: 0.75em;
}

.language-picker__realm {
  display: block;
  margin-right: 0.25em;
  font-family: "Roboto", sans-serif;
  font-size: 0.75em;
}

.language-picker__arrow {
  display: block;
  width: 16px;
  height: 16px;
}
.language-picker__arrow svg {
  display: block;
  width: 100%;
  height: 16px;
}

.footer__texts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.footer__copyright {
  font-family: "Roboto", sans-serif;
  font-size: 0.75em;
  line-height: 1.16;
  opacity: 0.54;
}

.footer__age-ratings {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}

.footer__age-rating {
  display: block;
  height: 50px;
  opacity: 0.8;
}
.footer__age-rating img {
  display: block;
  height: 100%;
}

@media screen and (max-width: 1200px) {
  .footer__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .footer__wargaming-logo {
    margin: 0;
  }

  .footer__menu {
    margin-top: 1.875em;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  .footer__links {
    margin: 1.875em 0 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .footer__link-wrapper {
    margin: 0 1.25em;
  }

  .footer__texts {
    text-align: center;
  }

  .footer__age-ratings {
    margin-top: 1.25em;
  }
}
@media screen and (max-width: 640px) {
  .footer__links {
    margin-top: 1.25em;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .footer__link-wrapper {
    margin: 1.25em 0 0;
  }
  .footer__link-wrapper:first-child {
    margin: 0;
  }
}
body #ot-sdk-btn.ot-sdk-show-settings {
  display: none;
  padding: 0;
  color: #ffffff;
  border: none;
  height: auto;
  white-space: normal;
  word-wrap: break-word;
  font-size: inherit;
  line-height: inherit;
  cursor: pointer;
}

body #ot-sdk-btn.ot-sdk-show-settings:hover {
  background-color: transparent;
  border-bottom: none;
}

.form {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 1.25em;
  width: 100%;
}
.form::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0)), color-stop(48.96%, #FFFFFF), to(rgba(255, 255, 255, 0)));
  background: -o-linear-gradient(right, rgba(255, 255, 255, 0) 0%, #FFFFFF 48.96%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 48.96%, rgba(255, 255, 255, 0) 100%);
  opacity: 0.3;
}

.form__elements {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.form__input-code {
  padding: 1.3125em 1.25em;
  margin-right: 1.25em;
  width: 270px;
  font-size: 1em;
  line-height: 1.375em;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.3);
  border: none;
  border-radius: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.form__input-code::-webkit-input-placeholder {
  font-family: "Roboto", sans-serif;
  font-size: 1em;
  line-height: 1;
  color: #ffffff;
}
.form__input-code::-moz-placeholder {
  font-family: "Roboto", sans-serif;
  font-size: 1em;
  line-height: 1;
  color: #ffffff;
}
.form__input-code:-ms-input-placeholder {
  font-family: "Roboto", sans-serif;
  font-size: 1em;
  line-height: 1;
  color: #ffffff;
}
.form__input-code::-ms-input-placeholder {
  font-family: "Roboto", sans-serif;
  font-size: 1em;
  line-height: 1;
  color: #ffffff;
}
.form__input-code::placeholder {
  font-family: "Roboto", sans-serif;
  font-size: 1em;
  line-height: 1;
  color: #ffffff;
}
.form__input-code:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
.form__input-code:focus {
  outline: none;
}
.form__input-code:focus::-webkit-input-placeholder {
  opacity: 0;
}
.form__input-code:focus::-moz-placeholder {
  opacity: 0;
}
.form__input-code:focus:-ms-input-placeholder {
  opacity: 0;
}
.form__input-code:focus::-ms-input-placeholder {
  opacity: 0;
}
.form__input-code:focus::placeholder {
  opacity: 0;
}

.form__button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.8em;
  width: 270px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.25em;
  line-height: 1.6;
  color: #ffffff;
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  background: #F56914;
  border: none;
  border-radius: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 0;
}
.form__button::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#FD6200), to(#E12E00));
  background: -o-linear-gradient(top, #FD6200 0%, #E12E00 100%);
  background: linear-gradient(180deg, #FD6200 0%, #E12E00 100%);
  opacity: 1;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  z-index: -1;
}
.form__button:hover::before {
  opacity: 0;
}
.form__button:focus {
  outline: none;
}
.form__button:focus::before {
  opacity: 0;
}
.form__button:active {
  -webkit-box-shadow: inset 0px 0px 4px rgba(0, 0, 0, 0.5);
          box-shadow: inset 0px 0px 4px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 640px) {
  .form__elements {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .form__input-code {
    margin: 0;
    padding: 0.8125em 1.25em;
  }

  .form__button {
    margin-top: 1.25em;
  }
}
.content__middle {
  margin-bottom: auto;
  margin-top: auto;
}

.content__h1--pb {
  padding-bottom: 15px;
}

.content__h2--fw {
  font-weight: 400;
  text-transform: uppercase;
  padding-bottom: 15px;
}

.content__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.content__link-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.8em;
  margin-right: 25px;
  min-width: 270px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.6;
  color: #ffffff;
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  text-decoration: none;
  background: #F56914;
  border: none;
  border-radius: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 0;
}
.content__link-btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#FD6200), to(#E12E00));
  background: -o-linear-gradient(top, #FD6200 0%, #E12E00 100%);
  background: linear-gradient(180deg, #FD6200 0%, #E12E00 100%);
  opacity: 1;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  z-index: -1;
}
.content__link-btn:hover::before {
  opacity: 0;
}
.content__link-btn:focus {
  outline: none;
}
.content__link-btn:focus::before {
  opacity: 0;
}
.content__link-btn:active {
  -webkit-box-shadow: inset 0px 0px 4px rgba(0, 0, 0, 0.5);
          box-shadow: inset 0px 0px 4px rgba(0, 0, 0, 0.5);
}
.content__link-btn:last-child {
  margin-right: 0;
}

.content__link-btn.hidden {
  display: none;
}

@media screen and (max-width: 1263px) {
  .content__link-btn,
.content__paragraph.hidden {
    display: none;
  }

  .content__link-btn.hidden {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 640px) {
  .content__links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .content__link-btn {
    margin-right: 0;
  }
}

/* FOOTER AGE RATINGS START */

.age-ratings {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
}

.age-ratings__items {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.age-rating__item {
  display: block;
  height: 55px;
  margin: 0 4px;
  opacity: 0.9;
  text-decoration: none;
}

.age-rating__item:last-child {
  margin-right: 0;
}

.age-rating__item:first-child {
  margin-left: 0;
} 

.age-rating__item img {
  display: block;
  height: 100%;
}

.age-ratings__description {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-size: 10px;
  opacity: 0.7;
}

@media screen and (max-width: 1200px) {
  .age-ratings {
    margin-top: 1.25em;
  }
}

/* FOOTER AGE RATINGS END */

/* legends label */
.legends-label {
  position: absolute;
  right: 0;
  bottom: 5vh;
  z-index: 10;
}


.legends-label_link {
  display: block;
  width: 100%;
  opacity: 0.6;
  -webkit-transition: opacity 0.25s ease-in;
  -o-transition: opacity 0.25s ease-in;
  transition: opacity 0.25s ease-in;
}

.legends-label_link:hover {
  opacity: 1;
}

.legends-label_link img {
  display: block;
  width: 250px;
}

@media screen and (max-width: 600px) {
  .legends-label_link img {
    width: 100px;
  }
}

@media only screen and (min-height: 380px) and (min-width: 600px) and (max-width: 80em) {
  .legends-label_link img {
    width: 170px;
  }
/* 
  .legends-label {
    bottom: 200px;
  } */
}

@media screen and (max-width: 48em) {
  .legends-label {
    bottom: 30px;
  }
}

@media screen and (max-width: 48em) and (max-height: 400px) {
  .legends-label {
    bottom: 0;
  }

  .legends-label_link img {
    width: 100px;
  }
}