* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
img {
  /*pointer-events: none!important;*/
  -moz-user-select: none; -webkit-user-select: none; -ms-user-select: none; user-select: none;
}
/*p,h1,h2,h3,a {
  -ms-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;   
  -webkit-user-select: none;
}*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
body {
  overflow-x: hidden;
  overflow-y: scroll;
}
 ::-webkit-scrollbar {
 background: black;
 width: 6px;
}
::-webkit-scrollbar-thumb {
 background-color: #555;
 -webkit-box-shadow: inset 0 0 2px #333;
         box-shadow: inset 0 0 2px #333;
 border-radius: 3px;
}
::-webkit-scrollbar-corner {
 background: transparent;
}
/*** Color Variables ***/
/*** Centering Hack ***/
/*** Header Styles ***/
header {
  /*width:100vw*/
  width: 100%;
  height: 100vh;
  background: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/*** Navigation Styles ***/
nav {
  width: 100vw;
  height: 130px;
  /*background: #1e211f;*/
   background: black;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  position: fixed;
  /*z-index: 9999;*/
  z-index: 9995;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
nav.navShadow {
  -webkit-box-shadow: 0 4px 30px -5px #0e3e8d;
          box-shadow: 0 4px 30px -5px #0e3e8d;
  height: 100px;
     z-index: 1000!important;
}
nav.navShadow #word-mark {
  opacity: 0;
}

#brand,
#menu,
ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -webkit-box-align: center;
          -ms-flex-align: center;
      align-items: center;
}
nav .desktop_login a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
nav #menu ul .desktop_login a:hover {
  -webkit-animation: linear;
          animation: linear;
  -webkit-transform: scale(1.2);
 -ms-transform: scale(1.2);
     transform: scale(1.2);
}
.desktop_login a:after {
  display: none;
}
#brand {
  padding-left: 40px;
}

#logo {
  width: 55px;
  cursor: pointer;
}
#logo img {
  width: 60px;
}
#word-mark {
 color: white;
 font-size: 30px;
 font-weight: bold;
  margin-left: 20px;
  opacity: 1;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

/*** Menu Styles ***/
#menu {
  -webkit-box-pack: end;
          -ms-flex-pack: end;
      justify-content: flex-end;
  padding-right: 40px;
}

nav ul li {
  margin-left: 20px;
  position: relative;
  padding-bottom: 3px;}
nav ul li a:after {
    content: '';
    position: absolute;
    left: 0;
       -webkit-transition: 0.3s;
       -o-transition: 0.3s;
       transition: 0.3s;
    bottom:-4px;
    width: 100%;
    height: 4px;
 background: -o-linear-gradient(#09123c, #0e3e8d);
 background: -webkit-gradient(linear, left top, left bottom, from(#09123c), to(#0e3e8d));
 background: linear-gradient(#09123c, #0e3e8d)
   
}
nav ul li a:hover:after {

      -webkit-box-shadow: 0 1px 10px 2px #447edd;

              box-shadow: 0 1px 10px 2px #447edd;
}
nav ul li a {
  display: block;
  color:white;
  white-space: nowrap;
  text-decoration: none;
  font-size: 20px;
}

#menu-toggle {
  width: 55px;
  height: 55px;
  /*background: black;*/
 background: -o-linear-gradient(#09123c, #0e3e8d);
 background: -webkit-gradient(linear, left top, left bottom, from(#09123c), to(#0e3e8d));
 background: linear-gradient(#09123c, #0e3e8d);
  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;
  border-radius: 50%;
  cursor: pointer;
  display: none;
}
#menu-toggle:hover .bar {
  width: 25px;
}
#menu-toggle.closeMenu .bar {
  width: 25px;
}
#menu-toggle.closeMenu .bar:first-child {
  -webkit-transform: translateY(7px) rotate(45deg);
          -ms-transform: translateY(7px) rotate(45deg);
      transform: translateY(7px) rotate(45deg);
}
#menu-toggle.closeMenu .bar:nth-child(2) {
  -webkit-transform: scale(0);
          -ms-transform: scale(0);
      transform: scale(0);
}
#menu-toggle.closeMenu .bar:last-child {
  -webkit-transform: translateY(-7px) rotate(-45deg);
          -ms-transform: translateY(-7px) rotate(-45deg);
      transform: translateY(-7px) rotate(-45deg);
}

.bar {
  width: 25px;
  height: 2px;
  background: #fff;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.bar:nth-child(2) {
  width: 20px;
  margin: 5px 0;
}
.bar:last-child {
  width: 15px;
}

/*** Hero Section Styles ***/
#hero-section {
  width: 100vw;
  height: calc(100vh - 130px);
  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;
  margin-top: 130px;
  display: flex;
  color: white;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  justify-content: center;
}
#hero-section .title {
  font-size: 110px;
  margin-bottom: 20px;
}
#hero-section .normal {
  font-size: 35px;
}
/*** Section Styles ***/
section {
  width: 100vw;
  height: calc(100vh - 100px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
          -ms-flex-pack: center;
      justify-content: center;
}
section:nth-child(odd) {
  background:#0e0e0e;
  -webkit-box-shadow: 3px 0px 0px 0px;
          box-shadow: 3px 0px 0px 0px;
}
section:nth-child(even) {
  background: black;
}

#heading {
  width: 120px;
  height: 20px;
  background: #fff;
  border-radius: 90px;
  margin-top: 40px;
}
.about_section {
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}
.about_section .normal {
  line-height: 42px;
  margin-top: 15px;
  text-align: center;
}
.about_section .title {
 font-size: 30px;  
 margin:20px 0;
}
.about_sub {
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}
.about_sub .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 75%;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.about_sub .items .item img {
  width: 200px;
}
.about_sub .items .item {
  margin: 20px 0px;
}
.about_sub .items .item p {
  font-size: 20px;
  max-width: 250px;
  margin: 10px 0;
}
.about_sub .items .item .description {
      font-size: 13px;
    color: #a5a5a5;
}
.about_sub .title {
  color:white;
 font-size: 30px;   
 margin-top:100px;
 margin-bottom: 7%;
}
/*** Responsive Menu For Smaller Device ***/
@media screen and (max-width: 900px) {
    nav ul li a:after {
    display: none;
  }
  #menu-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  body:not(.profile_page) header nav ul {
    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-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100vw;
    height: 0;
    background: -o-linear-gradient(#09123c, #0e3e8d);
    background: -webkit-gradient(linear, left top, left bottom, from(#09123c), to(#0e3e8d));
    background: linear-gradient(#09123c, #0e3e8d);
    position: absolute;
    top: 135px;
    left:0;
    -webkit-transform: translate(, );
            -ms-transform: translate(, );
        transform: translate(, );
    -webkit-box-shadow: 0 5px 30px -4px rgba(0, 0, 0, 0.2);
            box-shadow: 0 5px 30px -4px rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
  ul.showMenu {
    height: 250px!important;
        padding-top: 10px!important;
        -webkit-box-shadow: rgb(14, 62, 141) 0px 4px 7px!important;
                box-shadow: rgb(14, 62, 141) 0px 4px 7px!important;
  }
  ul.showMenu .desktop_login {
    display: none;
  }
   ul.showMenu .mobile_login {
    display: block!important;
   }
  ul.showMenu li {
    margin: 10px 0;
    opacity: 1!important;
    visibility: visible!important;
  }

  body:not(.profile_page) header nav ul li {
    width: 50%;
    height: 80px;
    float: left;
    padding-left: 40px;
    opacity: 0;
    visibility: hidden;
    margin-left: 0;
    -webkit-transition: all 0.3s 0.1s;
    -o-transition: all 0.3s 0.1s;
    transition: all 0.3s 0.1s;
  }

  #head-line {
    -webkit-transform: scale(0.8);
            -ms-transform: scale(0.8);
        transform: scale(0.8);
  }
}
.btn {
    margin-top:40px;
    position: relative;
    display: inline-block;
    width: 277px;
    height: 50px;
    font-size: 1em;
    font-weight: bold;
    line-height: 60px;
    text-align: center;
    text-transform: uppercase;
    background-color: transparent;
    cursor: pointer;
    text-decoration:none;
    font-weight:900;
    font-size:17px;
    letter-spacing: 0.045em;
}

.btn svg {
    position: absolute;
    top: 0;
    left: 0;
}

.btn svg rect {
    stroke: linear-gradient(to right,  black 0%, #0e3e8d 100%);
    stroke-width: 4;
    stroke-dasharray: 353, 0;
    stroke-dashoffset: 0;
    -webkit-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
}

.btn span{
  background: white;
  color:white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn:hover svg rect {
    stroke-width: 4;
    stroke-dasharray: 196, 543;
    stroke-dashoffset: 437;
}
#youtube {
  position: fixed;
  right: 2vw;
  bottom: 2vh;
  font-size: 30px;
  color: #fff;
}
.sounds {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  color:white!important;
}
.profile_page .sounds {
      width: calc(100% - 395px);
}
.sounds h3 {
  text-align: center;
  margin-top: 30px;
  color: white;
}
.sounds .items {
  width: 80%;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.sounds .items .item {
  background-size: cover;
  position: relative;
  background-position: center center;
  border-radius: 10px;
  cursor: pointer;
  width: 200px;
  margin: 20px;
  height: 200px;
    -webkit-transition: 0.2s linear;
    -o-transition: 0.2s linear;
    transition: 0.2s linear;
}
.sounds .items .item .shadow {
  position: absolute;
  height: 200px;
  width: 200px;
  border-radius: 10px;
  background: black;
  opacity: 0.8;
}
.sounds .items .item .active {
   -webkit-transition: 0.2s linear;
   -o-transition: 0.2s linear;
   transition: 0.2s linear;
}
.sounds .items .item.active .info {
   color: black!important;
}
/*.sounds .items .item p*/
.sounds .items .item>.info {
        position: absolute;
    top: 10%;
    font-size: 29px;
    left: 6%;
    max-width: 91%;
    or: white;
    font-size: 25px;
    text-align: left;
    font-weight: bold;
    z-index: 999;
  /*position: absolute; top: 10%; left: 10%;
  color: white;
  font-size: 30px;
  z-index: 999;*/
}
.sounds .not_active .shadow{
  -webkit-transition: 0.2s linear;
  -o-transition: 0.2s linear;
  transition: 0.2s linear;
}
.sounds .items .item:hover {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-box-shadow: 0 4px 30px 1px white;
          box-shadow: 0 4px 30px 1px white;
  border-radius: 10px;
}
.sounds .items .active:hover .personal_volume_slider {
  display: block;
    transition: 0.4s;
}
.sounds .items .active>.shadow {
    -webkit-transition: 0.2s linear;
    -o-transition: 0.2s linear;
    transition: 0.2s linear;
  opacity: 0!important;
}
/*Registration form*/
.registration {
  padding: 35px 0;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
    text-align: center;
    height: auto;
}
.registration form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.registration h2:first-child {
  margin:0!important;
}
.registration .btn {
  margin-top: 70px;
}
.registration form input {
  width: 300px;
  padding: 10px;
  margin: 20px 0;
  font-size: 20px;
  border:2px solid #0e3e8d;
  -webkit-box-shadow: 0 4px 30px -5px #0e3e8d;
          box-shadow: 0 4px 30px -5px #0e3e8d;
  color: white;
  background: transparent;
  border-radius: 10px;
}
.registration .versions {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: center;
}
.registration .versions_block {
  width: 340px;
  border: 1px solid #0e3e8d;
  padding: 20px;
  margin: 20px 0;
  margin-right: 15px;
  border-radius: 22px;
}
.registration .items {
  display: -webkit-box;
  display: -ms-flexbox;
  flex-direction: column;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-top: 90px;
  width: 100%;
}
.registration .items .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  margin: 20px 0;
  text-align: left;
}
.registration .items .item .text_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.registration .items .item .text_block p {
      font-size: 13px;
}
.registration .items .item .text_block .description {
      font-size: 10px;
    color: #a5a5a5;
        margin-top: 10px;
}
.registration .items .item img {
  width: 35px;
  margin-right: 30px;
}
/*Arrow*/
.arrow-down {
    margin: 30px;
}
.arrow-down span {
       display: block;
    width: 23px;
    /* background: linear-gradient(#09123c, #0e3e8d); */
    height: 23px;
    border-bottom: 3px solid white;
    border-right: 3px solid white;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    margin: -9px;
    -webkit-animation: arrow-down 2s infinite;
            animation: arrow-down 2s infinite;
}
.arrow-down span:nth-child(2){
    -webkit-animation-delay: -0.2s;
            animation-delay: -0.2s;
}
.arrow-down span:nth-child(3){
    -webkit-animation-delay: -0.4s;
            animation-delay: -0.4s;
}
@-webkit-keyframes arrow-down {
    0%{
        opacity: 0;
        -webkit-transform: rotate(45deg) translate(-10px,-10px);
                transform: rotate(45deg) translate(-10px,-10px);
    }
    50%{
        opacity: 1;
    }
    100%{
        opacity: 0;
        -webkit-transform: rotate(45deg) translate(10px,10px);
                transform: rotate(45deg) translate(10px,10px);
    }
}
@keyframes arrow-down {
    0%{
        opacity: 0;
        -webkit-transform: rotate(45deg) translate(-10px,-10px);
                transform: rotate(45deg) translate(-10px,-10px);
    }
    50%{
        opacity: 1;
    }
    100%{
        opacity: 0;
        -webkit-transform: rotate(45deg) translate(10px,10px);
                transform: rotate(45deg) translate(10px,10px);
    }
}
video {
      width: 200px;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 10px;
    z-index: 0;
}
.about_sub .items .jump{position:relative;-webkit-animation:jump 4s ease-in-out infinite;animation:jump 4s ease-in-out infinite}.puls{-webkit-animation:puls 3s ease-in-out infinite;animation:puls 3s ease-in-out infinite}.bounce{-webkit-animation:bounce 4s ease-in-out infinite;animation:bounce 4s ease-in-out infinite}.play-rotate{-webkit-animation:play-rotate 3s infinite;animation:play-rotate 3s infinite}.bg-animation{-webkit-animation:bg-animation 25s ease-in-out infinite;animation:bg-animation 25s ease-in-out infinite}@-webkit-keyframes jump{0%{top:10px}50%{top:-10px}100%{top:10px}}@keyframes jump{0%{top:10px}50%{top:-10px}100%{top:10px}}
.about_sub .items .item .jump:nth-child(2n) {
  position:relative;
  -webkit-animation:jump 2s ease-in-out infinite;
  animation:jump 2s ease-in-out infinite;
}
/*Signup page*/
.signup_page {
  background: black;
}
.signup_page main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -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;
}
.signup_page main #brand {
  padding: 0;
  margin-bottom: 30px;
}
.signup_page main h1 {
  color: white;
  margin-top: 10px;
  font-size: 20px;
}
@media (max-width: 1024px) {
 .signup_page main h1:first-child {
  font-size: 67px!important;
} 
}
@media (max-width: 480px) {
 .signup_page main h1:first-child {
  font-size: 50px!important;
} 
}
.signup_page main form {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.signup_page main form .btn{
  pointer-events:none;
  opacity: 0.3;
  cursor: not-allowed;
}
.signup_page main form .field {
  width: 300px;
  padding: 10px;
  margin: 20px 0;
  font-size: 20px;
  border:2px solid #0e3e8d;
  -webkit-box-shadow: 0 4px 30px -5px #0e3e8d;
          box-shadow: 0 4px 30px -5px #0e3e8d;
  color: white!important;
  background: transparent;
  border-radius: 10px;
    transition: 0.4s;
}
.signup_page main form .field:focus {
  outline: none;
  -webkit-box-shadow: 0 10px 43px 12px #0e3e8d;
          box-shadow: 0 10px 43px 12px #0e3e8d;
}
.signup_page main .try_login {
  color: white!important;
  margin-top: 60px;
}
.signup_page main .try_login a {
  color: #0e3e8d!important;
}
.signup_page main .license_box {
  color: white;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 20px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 15px;
}
.signup_page main .license_box a {
    color: #0e3e8d!important;
}
.signup_page main .login_trouble_notification,.password_trouble_notification,.licence_trouble_notification {
  color: rgb(242, 78, 98);
}
.licence_trouble_notification {
    margin-top: 10px;
}
/*Password eye*/
  .pass_box {
  position: relative;
}
.password-control {
  position: absolute;
  top: 34px;
    right: 18px;
  display: inline-block;
  width: 20px;
  height: 20px;
}
  .password-control img {
    width: 24px;
    transition: 0.3s;
    opacity: 0.6;
  }
   .password-control img:hover {
    opacity: 1;
   }
/*Checkbox*/
.cbx {
  margin: auto;
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  cursor: pointer;
}
.cbx span {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.cbx span:first-child {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  vertical-align: middle;
  border: 1px solid #9098A9;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.cbx span:first-child svg {
  position: absolute;
  top: 3px;
  left: 2px;
  fill: none;
  stroke: #FFFFFF;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 16px;
  stroke-dashoffset: 16px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transition-delay: 0.1s;
       -o-transition-delay: 0.1s;
          transition-delay: 0.1s;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.cbx span:first-child:before {
  content: "";
  width: 100%;
  height: 100%;
  background:#0e3e8d;
  display: block;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  opacity: 1;
  border-radius: 50%;
}
.cbx span:last-child {
  padding-left: 8px;
}
.cbx:hover span:first-child {
  border-color: #506EEC;
}

.inp-cbx:checked + .cbx span:first-child {
  background: #0e3e8d;
  border-color: #0e3e8d;
  -webkit-animation: wave 0.4s ease;
          animation: wave 0.4s ease;
}
.inp-cbx:checked + .cbx span:first-child svg {
  stroke-dashoffset: 0;
}
.inp-cbx:checked + .cbx span:first-child:before {
  -webkit-transform: scale(3.5);
      -ms-transform: scale(3.5);
          transform: scale(3.5);
  opacity: 0;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

@-webkit-keyframes wave {
  50% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}

@keyframes wave {
  50% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}
/*Profile page*/
/*Signup page*/
.profile_page {
  background: black;
}
.profile_page main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  color:white!important;
  text-align: center;
  flex-direction: row;
          justify-content: center;
}
.profile_page main #brand {
  padding: 0;
  margin-bottom: 30px;
}
.profile_page main h1 {
  color: white;
  margin-top: 10px;
  font-size: 20px;
}
/*Advertizing*/
.profile_page .sidebar_advertisement {
  width: 160px;
  height: 600px;
  margin-top: 55px;
}
 .profile_page .mobile_advertisement {
  margin-top: 30px;
  width: 90%;
  display: none;
 }
@media(max-width: 1300px) {
  .profile_page .sidebar_advertisement {
    display: none;
  }
  .profile_page .mobile_advertisement {
    display: block;
  }
  .profile_page .sounds {
    width: 100%;
  }
  .profile_page main {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 40px;
  }
}
@media (max-width: 1024px) {
 .profile_page main h1:first-child {
  font-size: 67px!important;
} 
}
@media (max-width: 480px) {
 .profile_page main h1:first-child {
  font-size: 50px!important;
} 
}
@media screen and (max-width: 1800px) { 
    .sounds {
    height: auto;
    padding: 35px 0;
  }
  .normal {
    max-width: 95%;
  }
  .about_sub {
    height: auto;
  }
  .registration .items {
    width: 90%;
  }
}
@media screen and (max-width: 900px) { 
  .about_section {
    height: auto;
    padding: 35px 0;
  }
  .sounds {
    height: auto;
    padding: 35px 0;
  }
  #hero-section .title {
    font-size: 84px;
}
#hero-section .normal {
    font-size: 29px;
}
.about_section .normal {
    line-height: 30px;
    margin-top: 15px;
    text-align: center;
}
    .sounds .items {
      width: 96%;
    }
    .about_sub .title {
      margin-top: 35px;
    }
  .normal {
    max-width: 95%;
  }
  .about_sub {
    height: auto;
  }
  video {
    width: 150px;
  }
  .sounds .items .item {
    width: 150px;
    height: 150px;
  }
  .sounds .items .item .info {
    font-size: 19px;
  }
  .sounds .items .item .shadow {
    width: 150px;
    height: 150px;
  }
}
@media (max-width: 400px) {
  video {
    width: 100%;
  }
  .sounds .items .item {
    width:90%;
  }
  .sounds .items .item .shadow {
    width: 100%;
  }
}
@media (max-width: 850px) {
    .registration .items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 95%;
  }
  .registration .items .item {
    width: 90%;
    margin: 20px 0;
  }
  .become_pro {
    display: none!important;
  }
}
@media (max-width: 380px) {
  #hero-section .title {
    font-size: 68px;
}
#hero-section .normal {
    font-size: 25px;
}
}
@media (max-width: 450px) { 
    #word-mark {
    display: none;
  }
}