@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500;600;700;800;900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box; }

::-webkit-scrollbar {
  width: 13px; }

::-webkit-scrollbar-track {
  background: #333; }

::-webkit-scrollbar-thumb {
  background: #FF344D; }

body ::-moz-selection {
  background-color: rgba(255, 255, 255, 0.1); }
body ::selection {
  background-color: rgba(255, 255, 255, 0.1); }

.body__active {
  overflow: hidden; }

body {
  width: 100%;
  overflow-x: hidden; }

a {
  text-decoration: none; }

.wrap {
  width: 100%;
  min-height: 100vh;
  background-color: #fff;
  overflow: hidden; }
  .wrap .popup {
    width: 100%;
    height: 100vh;
    position: absolute;
    position: fixed;
    overflow: hidden;
    z-index: 9999;
    background-image: url(../img/about/bg.png);
    background-size: cover;
    display: none; }
  .wrap .popup__active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation-name: popup;
    animation-iteration-count: 1;
    animation-duration: 1s;
    padding-left: 65px;
    padding-right: 65px; }
@keyframes popup {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
    .wrap .popup__active .close {
      width: 50px;
      height: 50px;
      position: absolute;
      right: 0%;
      top: 0%;
      margin-top: 20px;
      margin-right: 20px;
      cursor: pointer;
      transition: 1s; }
      .wrap .popup__active .close:hover .closeFiill {
        fill: #FF344D;
        transition: 1s; }
    .wrap .popup__active .left__element {
      width: 300px;
      position: absolute;
      left: -5%;
      top: -5%;
      z-index: 1; }
    .wrap .popup__active .right__element {
      width: 200px;
      position: absolute;
      right: -5%;
      bottom: -5%;
      z-index: 1; }
    .wrap .popup__active .popup__main {
      width: 100%;
      height: 75vh;
      display: flex; }
      .wrap .popup__active .popup__main .popup__arrow {
        width: 120px;
        position: absolute;
        left: 50%; }
      .wrap .popup__active .popup__main .main__left {
        width: 50%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end; }
        .wrap .popup__active .popup__main .main__left .popu__titel {
          font-family: 'Comfortaa';
          font-style: normal;
          font-weight: 600;
          font-size: 48px;
          line-height: 55px;
          color: #FFFFFF;
          display: flex;
          z-index: 999;
          align-items: center; }
          .wrap .popup__active .popup__main .main__left .popu__titel::after {
            content: "";
            width: 180px;
            height: 180px;
            background-image: url(../img/about/element.svg);
            background-size: cover;
            position: absolute;
            margin-left: 90px;
            opacity: 0.4; }
        .wrap .popup__active .popup__main .main__left .popup__description {
          font-family: 'Comfortaa';
          font-style: normal;
          font-weight: 400;
          font-size: 22px;
          line-height: 25px;
          color: #FFFFFF;
          margin-top: 15px;
          z-index: 999; }
          .wrap .popup__active .popup__main .main__left .popup__description span {
            font-weight: 700; }
      .wrap .popup__active .popup__main .main__rigth {
        width: 50%;
        height: 100%;
        display: flex;
        align-items: flex-end;
        justify-content: flex-end; }
        .wrap .popup__active .popup__main .main__rigth .qu__code {
          width: 450px;
          position: relative;
          top: 40px;
          z-index: 999; }
    .wrap .popup__active .popup__buttons {
      width: 100%;
      height: 25vh;
      display: flex; }
      .wrap .popup__active .popup__buttons .buttons__cibord-box {
        width: 300px;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        bottom: 25px;
        right: 50px;
        margin-left: 50px; }
        .wrap .popup__active .popup__buttons .buttons__cibord-box .button__popup {
          width: 250px;
          height: 73px;
          position: absolute;
          margin-bottom: 20px;
          z-index: 999;
          background-image: url(../img/about/cliboard.svg);
          background-size: cover;
          display: flex;
          align-items: center;
          justify-content: center;
          padding-bottom: 15px;
          font-family: 'Comfortaa';
          font-style: normal;
          font-weight: 600;
          font-size: 16px;
          line-height: 22px;
          text-align: center;
          color: #FFFFFF;
          display: none; }
        .wrap .popup__active .popup__buttons .buttons__cibord-box .popup__privatCopy__active {
          display: flex;
          overflow: hidden; }
          .wrap .popup__active .popup__buttons .buttons__cibord-box .popup__privatCopy__active p {
            animation-name: popup__privatCopy__active;
            animation-iteration-count: 1;
            animation-duration: 0.5s; }
@keyframes popup__privatCopy__active {
  0% {
    opacity: 0;
    position: relative;
    top: 30px; }
  20% {
    opacity: 0; }
  100% {
    opacity: 1;
    position: relative;
    top: 0px; } }
        .wrap .popup__active .popup__buttons .buttons__cibord-box .popup__button {
          width: 300px;
          height: 80px;
          background-color: transparent;
          border: 2px solid #FFFFFF;
          border-radius: 10px;
          margin-top: 60px;
          cursor: pointer;
          display: flex;
          justify-content: center;
          align-items: center;
          position: relative;
          top: 25px; }
          .wrap .popup__active .popup__buttons .buttons__cibord-box .popup__button .buttons__img {
            width: 40px; }
          .wrap .popup__active .popup__buttons .buttons__cibord-box .popup__button .buttons__text {
            font-family: 'Comfortaa';
            font-style: normal;
            font-weight: 600;
            font-size: 20px;
            line-height: 27px;
            color: #FFFFFF;
            margin-left: 20px; }
  .wrap .homePage {
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover; }
    .wrap .homePage .swiper {
      width: 100%;
      height: 100vh;
      position: absolute;
      z-index: 0; }
    .wrap .homePage .swiper__bg1 {
      background-image: url(../img/home/bg1.png);
      background-size: cover; }
    .wrap .homePage .swiper__bg2 {
      background-image: url(../img/home/bg2.png);
      background-size: cover; }
    .wrap .homePage .swiper__bg3 {
      background-image: url(../img/home/bg3.png);
      background-size: cover; }
    .wrap .homePage .swiper__bg4 {
      background-image: url(../img/home/bg4.png);
      background-size: cover; }
    .wrap .homePage .swiper__bg5 {
      background-image: url(../img/home/bg5.png);
      background-size: cover; }
    .wrap .homePage .swiper__bg6 {
      background-image: url(../img/home/bg6.png);
      background-size: cover; }
    .wrap .homePage .swiper__bg7 {
      background-image: url(../img/home/bg7.png);
      background-size: cover; }
    .wrap .homePage .swiper__bg8 {
      background-image: url(../img/home/bg8.png);
      background-size: cover; }
    .wrap .homePage .autoplay-progress {
      position: absolute;
      right: 16px;
      bottom: 16px;
      z-index: 10;
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      color: var(--swiper-theme-color); }
    .wrap .homePage .autoplay-progress svg {
      --progress: 0;
      position: absolute;
      left: 0;
      top: 0px;
      z-index: 10;
      width: 100%;
      height: 100%;
      stroke-width: 4px;
      stroke: var(--swiper-theme-color);
      fill: none;
      stroke-dashoffset: calc(125.6 * (1 - var(--progress)));
      stroke-dasharray: 125.6;
      transform: rotate(-90deg); }
    .wrap .homePage .header {
      width: 100%;
      height: 25vh;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-left: 110px;
      padding-right: 110px; }
      .wrap .homePage .header .logo {
        width: auto;
        height: auto;
        transition: all 1000ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
        transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
        cursor: pointer;
        z-index: 99; }
        .wrap .homePage .header .logo:hover .logo__headphones {
          fill: #CC0100;
          transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
          transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275); }
      .wrap .homePage .header .navigation {
        width: auto;
        height: auto;
        display: flex;
        align-items: center; }
        .wrap .homePage .header .navigation__box {
          width: auto;
          height: 35px;
          display: flex;
          align-items: center;
          cursor: pointer; }
          .wrap .homePage .header .navigation__box .navigation__text {
            font-family: 'Montserrat';
            font-style: normal;
            font-weight: 500;
            font-size: 20px;
            line-height: 24px;
            display: flex;
            align-items: center;
            text-align: center;
            text-transform: uppercase;
            color: #FFFFFF;
            position: relative;
            left: 35px;
            margin-right: 35px;
            z-index: 99; }
            .wrap .homePage .header .navigation__box .navigation__text::before {
              content: '';
              width: 0px;
              height: 0px;
              background: rgba(255, 52, 77, 0.5);
              border-radius: 50%;
              bottom: 17px;
              left: 0px;
              position: absolute;
              transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
              transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275); }
          .wrap .homePage .header .navigation__box .navigation__text__active::before {
            content: '';
            width: 22px;
            height: 22px;
            background: rgba(255, 52, 77, 0.5);
            bottom: 7px;
            left: -7px;
            transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275); }
          .wrap .homePage .header .navigation__box .navigation__kolo {
            width: 12px;
            height: 12px;
            background: #FFFFFF;
            border-radius: 50%;
            margin-left: 20px;
            transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275); }
          .wrap .homePage .header .navigation__box .navigation__kolo__active {
            background-color: #FF344D;
            transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275); }
      .wrap .homePage .header .bueger__box {
        display: none; }
    .wrap .homePage .main {
      width: 100%;
      height: 85vh;
      padding-left: 110px;
      padding-right: 110px;
      padding-top: 100px; }
      .wrap .homePage .main .sound__container {
        width: 100%;
        height: auto;
        display: flex;
        align-items: flex-start;
        z-index: 20; }
        .wrap .homePage .main .sound__container .sound__box {
          width: 230px;
          height: 230px;
          border-radius: 50%;
          cursor: pointer;
          display: flex;
          align-items: center;
          justify-content: center;
          z-index: 20; }
          .wrap .homePage .main .sound__container .sound__box .sound__bg {
            width: 170px;
            height: 170px;
            background: rgba(255, 255, 255, 0.24);
            border: 1px solid rgba(255, 255, 255, 0.8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 20; }
            .wrap .homePage .main .sound__container .sound__box .sound__bg .sound__main {
              width: 120px;
              height: 120px;
              background-color: #FF344D;
              display: flex;
              align-items: center;
              justify-content: center;
              border-radius: 50%; }
              .wrap .homePage .main .sound__container .sound__box .sound__bg .sound__main .play {
                width: 45px;
                height: 45px;
                position: relative;
                left: 3px;
                transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
                transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275); }
              .wrap .homePage .main .sound__container .sound__box .sound__bg .sound__main .pause {
                width: 1px;
                height: 1px;
                position: absolute;
                transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
                transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275); }
              .wrap .homePage .main .sound__container .sound__box .sound__bg .sound__main .play__active {
                width: 0px;
                height: 0px;
                transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
                transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275); }
              .wrap .homePage .main .sound__container .sound__box .sound__bg .sound__main .pause__active {
                width: 45px;
                height: 45px;
                transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
                transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275); }
          .wrap .homePage .main .sound__container .sound__box::before {
            content: "";
            width: 230px;
            height: 230px;
            background: rgba(217, 217, 217, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.8);
            border-radius: 50%;
            position: absolute;
            transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275); }
        .wrap .homePage .main .sound__container .sound__box__active::before {
          width: 0px;
          height: 0px;
          animation-name: sound__box__active;
          animation-delay: 1s;
          animation-iteration-count: 1;
          opacity: 0; }
        .wrap .homePage .main .sound__container .visualaiser__container {
          margin-left: 80px; }
      .wrap .homePage .main .arrow__container {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: flex-end;
        align-items: flex-end; }
        .wrap .homePage .main .arrow__container .arrow__box {
          width: auto;
          height: auto;
          display: flex;
          align-items: center;
          position: relative;
          left: 10px;
          margin-top: 60px; }
          .wrap .homePage .main .arrow__container .arrow__box .left__arrow {
            width: 55px;
            height: 40px;
            cursor: pointer;
            margin-right: 2px; }
          .wrap .homePage .main .arrow__container .arrow__box .right__arrow {
            width: 55px;
            height: 40px;
            cursor: pointer;
            margin-left: 2px; }
      .wrap .homePage .main .visualaiser__container .sound__boxx {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        z-index: 20; }
        .wrap .homePage .main .visualaiser__container .sound__boxx .sound__name {
          font-family: 'Montserrat';
          font-style: normal;
          font-weight: 800;
          font-size: 48px;
          line-height: 65px;
          letter-spacing: 0.075em;
          color: #FFFFFF;
          z-index: 20; }
        .wrap .homePage .main .visualaiser__container .sound__boxx .sound__musican {
          font-family: 'Montserrat';
          font-style: normal;
          font-weight: 400;
          font-size: 36px;
          line-height: 49px;
          letter-spacing: 0.075em;
          color: #FFFFFF;
          margin-left: 10px;
          z-index: 20; }
      .wrap .homePage .main .visualaiser__container .sound-wave {
        width: 700px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 30px;
        z-index: 20; }
      .wrap .homePage .main .visualaiser__container .wisualText {
        font-family: 'Montserrat';
        font-style: normal;
        font-weight: 600;
        font-size: 32px;
        line-height: 39px;
        letter-spacing: 0.075em;
        color: #FFFFFF;
        margin-left: 5px;
        margin-right: 5px;
        z-index: 20; }
      .wrap .homePage .main .visualaiser__container .bar {
        animation-name: wave-lg;
        animation-iteration-count: infinite;
        animation-timing-function: ease-in-out;
        animation-direction: alternate;
        background: #fff;
        margin: 0 1.5px;
        height: 40px;
        width: 25px;
        z-index: 20; }
        .wrap .homePage .main .visualaiser__container .bar:nth-child(-n + 7), .wrap .homePage .main .visualaiser__container .bar:nth-last-child(-n + 7) {
          animation-name: wave-md; }
        .wrap .homePage .main .visualaiser__container .bar:nth-child(-n + 3), .wrap .homePage .main .visualaiser__container .bar:nth-last-child(-n + 3) {
          animation-name: wave-sm; }
@keyframes wave-sm {
  0% {
    opacity: 0.35;
    height: 10px; }
  100% {
    opacity: 1;
    height: 25px; } }
@keyframes wave-md {
  0% {
    opacity: 0.35;
    height: 15px; }
  100% {
    opacity: 1;
    height: 50px; } }
@keyframes wave-lg {
  0% {
    opacity: 0.35;
    height: 15px; }
  100% {
    opacity: 1;
    height: 70px; } }
  .wrap .LivePage {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; }
    .wrap .LivePage .live__left {
      width: 30%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      justify-content: center; }
      .wrap .LivePage .live__left .live__card {
        width: 250px;
        height: 250px;
        background: #FFFFFF;
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        border-radius: 10px;
        z-index: 10;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 30px;
        margin-top: 25px;
        margin-bottom: 25px;
        margin-right: 50px;
        padding-left: 4px;
        padding-right: 4px; }
        .wrap .LivePage .live__left .live__card .card__img {
          width: 100px;
          height: 100px; }
        .wrap .LivePage .live__left .live__card .card__titel {
          font-family: 'Montserrat';
          font-style: normal;
          font-weight: 600;
          font-size: 20px;
          line-height: 24px;
          color: #000000;
          margin-top: 10px;
          text-align: center; }
        .wrap .LivePage .live__left .live__card .card__box {
          width: 100%;
          height: auto;
          display: flex;
          align-items: center;
          justify-content: center;
          margin-top: 10px; }
          .wrap .LivePage .live__left .live__card .card__box .card__info-text {
            font-family: 'Montserrat';
            font-style: normal;
            font-weight: 500;
            font-size: 18px;
            line-height: 22px;
            color: #333333;
            margin-left: 8px;
            margin-right: 8px; }
    .wrap .LivePage .life__center {
      width: 40%;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center; }
      .wrap .LivePage .life__center .center__titel {
        font-family: 'Montserrat';
        font-style: normal;
        font-weight: 700;
        font-size: 44px;
        line-height: 59px;
        color: #333333;
        z-index: 10; }
        .wrap .LivePage .life__center .center__titel span {
          font-family: 'Comfortaa';
          font-weight: 700;
          color: #CC0100; }
      .wrap .LivePage .life__center .center__box {
        display: flex;
        flex-direction: column;
        align-items: center; }
        .wrap .LivePage .life__center .center__box .center__titel-des {
          font-family: 'Montserrat';
          font-style: normal;
          font-weight: 600;
          font-size: 30px;
          line-height: 39px;
          color: #333333;
          margin-top: 55px;
          z-index: 10; }
        .wrap .LivePage .life__center .center__box .center__description {
          font-family: 'Comfortaa';
          font-style: normal;
          font-weight: 400;
          font-size: 22px;
          line-height: 34px;
          color: #000000;
          text-align: center;
          margin-top: 15px;
          z-index: 10; }
      .wrap .LivePage .life__center .life__button {
        width: 250px;
        height: 80px;
        background-image: url(../img/live/button1.png);
        background-size: cover;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        margin-top: 70px;
        z-index: 10;
        font-family: 'Montserrat';
        font-style: normal;
        font-weight: 600;
        font-size: 20px;
        line-height: 29px;
        color: #FFFFFF;
        cursor: pointer;
        transition: 0.6s; }
      .wrap .LivePage .life__center .life__button:hover {
        background-image: url(../img/live/button2.png);
        transition: 0.6s; }
    .wrap .LivePage .live__right {
      width: 30%;
      height: 100%;
      margin-left: 0px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center; }
      .wrap .LivePage .live__right .live__card {
        width: 250px;
        height: 250px;
        background: #FFFFFF;
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        border-radius: 10px;
        z-index: 10;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 30px;
        margin-top: 25px;
        margin-bottom: 25px;
        margin-right: 50px;
        padding-left: 4px;
        padding-right: 4px; }
        .wrap .LivePage .live__right .live__card .card__img {
          width: 100px;
          height: 100px; }
        .wrap .LivePage .live__right .live__card .card__titel {
          font-family: 'Montserrat';
          font-style: normal;
          font-weight: 600;
          font-size: 20px;
          line-height: 24px;
          color: #000000;
          margin-top: 10px; }
        .wrap .LivePage .live__right .live__card .card__box {
          width: 100%;
          height: auto;
          display: flex;
          align-items: center;
          justify-content: center;
          margin-top: 10px; }
          .wrap .LivePage .live__right .live__card .card__box .card__info-text {
            font-family: 'Montserrat';
            font-style: normal;
            font-weight: 500;
            font-size: 18px;
            line-height: 22px;
            color: #333333;
            margin-left: 8px;
            margin-right: 8px;
            text-align: center; }
    .wrap .LivePage::after {
      content: '';
      width: 100%;
      height: 73%;
      background-image: url(../img/live/bg__line.svg);
      position: absolute;
      background-size: cover;
      z-index: 0; }
  .wrap .about__page {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-left: 110px;
    padding-right: 110px;
    padding-bottom: 40px; }
    .wrap .about__page .about__titel {
      font-family: 'Montserrat';
      font-style: normal;
      font-weight: 700;
      font-size: 44px;
      line-height: 59px;
      color: #333333;
      z-index: 10; }
      .wrap .about__page .about__titel span {
        font-family: 'Comfortaa';
        font-weight: 700;
        color: #CC0100; }
    .wrap .about__page .about__main {
      width: 100%;
      height: auto;
      display: flex;
      align-items: center;
      margin-top: 60px; }
      .wrap .about__page .about__main .about__left {
        width: 50%;
        height: auto; }
        .wrap .about__page .about__main .about__left .about__description {
          font-family: 'Comfortaa';
          font-style: normal;
          font-weight: 400;
          font-size: 22px;
          line-height: 29px;
          color: #000000; }
          .wrap .about__page .about__main .about__left .about__description span {
            font-weight: 700;
            font-family: 'Montserrat'; }
      .wrap .about__page .about__main .about__right {
        width: 50%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-left: 80px; }
        .wrap .about__page .about__main .about__right .about__img {
          width: 500px;
          height: 320px; }
        .wrap .about__page .about__main .about__right .about__button {
          width: 300px;
          height: 100px;
          border: none;
          border-radius: 5px 0px;
          border: 1px solid #FF344D;
          background-color: transparent;
          margin-top: 50px;
          cursor: pointer;
          font-family: 'Montserrat';
          font-style: normal;
          font-weight: 400;
          font-size: 22px;
          line-height: 29px;
          color: #FF344D;
          display: flex;
          align-items: center;
          justify-content: center;
          overflow: hidden;
          background-image: url(../img/about/buttons.svg);
          background-size: cover;
          background-size: 0px;
          background-repeat: no-repeat;
          background-position: -300px;
          transition: all 700ms cubic-bezier(1, -0.4, 0.025, 1.42);
          transition-timing-function: cubic-bezier(1, -0.4, 0.025, 1.42); }
          .wrap .about__page .about__main .about__right .about__button:hover {
            background-color: #CC0100;
            background-position: -50px;
            transition: all 700ms cubic-bezier(1, -0.4, 0.025, 1.42);
            transition-timing-function: cubic-bezier(1, -0.4, 0.025, 1.42);
            background-size: 200px;
            color: #fff; }
  .wrap .team__page {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 60px; }
    .wrap .team__page .team__titel {
      font-family: 'Montserrat';
      font-style: normal;
      font-weight: 700;
      font-size: 44px;
      line-height: 59px;
      color: #333333;
      z-index: 10; }
      .wrap .team__page .team__titel span {
        font-family: 'Comfortaa';
        font-weight: 700;
        color: #CC0100; }
    .wrap .team__page .team__container {
      width: 70%;
      height: auto;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 10px;
      padding-bottom: 60px; }
      .wrap .team__page .team__container .team__card {
        width: 350px;
        height: 500px;
        background: #FFFFFF;
        box-shadow: 0px 0px 9px 1px rgba(163, 163, 163, 0.42);
        border-radius: 5px 5px 0px 0px;
        margin-left: 30px;
        margin-right: 30px;
        margin-top: 50px;
        z-index: 10; }
        .wrap .team__page .team__container .team__card .card__top {
          width: 100%;
          height: 65%;
          background-color: #333;
          overflow: hidden;
          cursor: pointer; }
          .wrap .team__page .team__container .team__card .card__top .card__img {
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: flex-end;
            background-size: cover;
            overflow: hidden; }
            .wrap .team__page .team__container .team__card .card__top .card__img::before {
              color: #fff;
              text-align: center;
              font-family: 'Montserrat';
              font-style: normal;
              font-weight: 400;
              font-size: 16px;
              line-height: 20px;
              margin-bottom: 50px;
              opacity: 0;
              z-index: 10;
              position: absolute;
              width: 330px;
              transition: all 1000ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
              transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275); }
            .wrap .team__page .team__container .team__card .card__top .card__img::after {
              content: "";
              position: absolute;
              width: 45px;
              height: 30px;
              background-image: url(../img/team/trick.svg);
              background-size: cover;
              margin-bottom: -0px;
              transition: 0.8s; }
            .wrap .team__page .team__container .team__card .card__top .card__img .card__kolo {
              width: 40px;
              height: 40px;
              border-radius: 50%;
              background: rgba(255, 52, 77, 0.9);
              backdrop-filter: blur(10px);
              margin-bottom: 150px;
              z-index: 0;
              transition: 0.5s;
              transform: scale(0.001); }
          .wrap .team__page .team__container .team__card .card__top .card__img1 {
            background-image: url(../img/team/person1.png); }
            .wrap .team__page .team__container .team__card .card__top .card__img1::before {
              content: "I've been spinning vinyl for over 15 years and it helped me become a professional music editor at YoursRadio.org! As the head of the radio station, I love the radio so much that I even dream about it at night. I can forget to have dinner, but I don't forget which word the hosts put the wrong emphasis on during their speech) Radio is like a child to me, and the team is my family!"; }
          .wrap .team__page .team__container .team__card .card__top .card__img2 {
            background-image: url(../img/team/person2.png); }
            .wrap .team__page .team__container .team__card .card__top .card__img2::before {
              content: "I like not only to talk, but also to listen, probably because I am a historian by profession and collecting interesting and funny stories seems to be in my blood. A meticulous, energetic, athletic and erudite presenter, well, a little shorter than the boss, I can listen to Vika's jokes for more than 4 hours a day.";
              margin-bottom: 70px; }
          .wrap .team__page .team__container .team__card .card__top .card__img3 {
            background-image: url(../img/team/person3png.png); }
            .wrap .team__page .team__container .team__card .card__top .card__img3::before {
              content: "A young, ambitious, cheerful girl from a picturesque town! I fell in love with the radio YoursRadio.org so much that when my peers skip school and try to make sure that no one finds out about it - I do it for the whole district on Rock Radio! I love to joke on the air and cheer up Dzikovsky and the listeners!";
              margin-bottom: 60px; }
          .wrap .team__page .team__container .team__card .card__top .card__img4 {
            background-image: url(../img/team/person4.png); }
            .wrap .team__page .team__container .team__card .card__top .card__img4::before {
              content: "Russophobic at the DNA level. And that is purely intuition. I know what is trendy today, and I can prove my professionalism in more than a dozen different areas of life during one conversation. I know what and when to say, which is why my colleagues say that I am an «Interviewer from God.»"; }
          .wrap .team__page .team__container .team__card .card__top .card__img5 {
            background-image: url(../img/team/person5.png); }
            .wrap .team__page .team__container .team__card .card__top .card__img5::before {
              content: "Young, energetic, multifaceted personality, I always set ambitious goals for myself and achieve them with pleasure. Music lover, I love listening to music that gives me strength and inspiration. Professional interviewer, I can support any topic in a conversation with an interesting interlocutor.";
              margin-bottom: 80px; }
          .wrap .team__page .team__container .team__card .card__top .card__img6 {
            background-image: url(../img/team/person6.png); }
            .wrap .team__page .team__container .team__card .card__top .card__img6::before {
              content: "Radio host, father, teacher, logistician, volunteer, stand-up comedian, anime fan, gamer, and public speaking expert, how it all fits together in my head is still a question that the best British and NATO heads are still pondering. My worst character trait is that I'm never late for airtime!"; }
          .wrap .team__page .team__container .team__card .card__top .card__img7 {
            background-image: url(../img/team/person7.png); }
            .wrap .team__page .team__container .team__card .card__top .card__img7::before {
              content: "Energetic, adventurous, I adore mountains and sports, especially extreme ones. I love spontaneous meetings and trips. I am fond of poetry, I recite and write poems (when I have inspiration). Sometimes stubborn, if I have set my mind to something, I will make it happen. I have reread many psychological books, now my colleagues have become objects for experiments. I am interested in everything that is happening (I want to know all the gossip in the media world), so I find the most interesting and relevant news.";
              margin-bottom: 30px; }
          .wrap .team__page .team__container .team__card .card__top:hover .card__img::before {
            padding-left: 15px;
            padding-right: 15px;
            opacity: 1;
            transition: all 1000ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275); }
          .wrap .team__page .team__container .team__card .card__top:hover .card__img::after {
            content: "";
            position: absolute;
            width: 45px;
            height: 30px;
            background-image: url(../img/team/trick.svg);
            background-size: cover;
            margin-bottom: -30px;
            transition: all 1000ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
            opacity: 0; }
          .wrap .team__page .team__container .team__card .card__top:hover .card__img .card__kolo {
            margin-bottom: 150px;
            transform: scale(15);
            opacity: 1;
            transition: all 1000ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275); }
        .wrap .team__page .team__container .team__card .card__bottom {
          width: 100%;
          height: 35%;
          display: flex;
          flex-direction: column;
          align-items: center;
          padding-top: 25px; }
          .wrap .team__page .team__container .team__card .card__bottom .card__titel {
            font-family: 'Montserrat';
            font-style: normal;
            font-weight: 400;
            font-size: 20px;
            line-height: 24px;
            color: #ACACAC; }
          .wrap .team__page .team__container .team__card .card__bottom .card__name {
            font-family: 'Montserrat';
            font-style: normal;
            font-weight: 500;
            font-size: 24px;
            line-height: 29px;
            color: #333333;
            margin-top: 10px; }
          .wrap .team__page .team__container .team__card .card__bottom .card__sociable {
            font-family: 'Montserrat';
            font-style: normal;
            font-weight: 400;
            font-size: 20px;
            line-height: 24px;
            color: #3B569E;
            margin-top: 30px;
            transition: 0.2s; }
            .wrap .team__page .team__container .team__card .card__bottom .card__sociable:hover {
              color: #FF344D;
              transition: 0.2s; }
      .wrap .team__page .team__container::after {
        content: "";
        width: 100%;
        height: 20%;
        position: absolute;
        z-index: 0;
        background-image: url(../img/team/bgLine1.svg);
        background-size: cover;
        margin-top: 300px; }
      .wrap .team__page .team__container::before {
        content: "";
        width: 100%;
        height: 30%;
        position: absolute;
        z-index: 0;
        background-image: url(../img/team/bgLine2.svg);
        background-size: cover;
        margin-top: 800px; }
  .wrap .friends__page {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 60px; }
    .wrap .friends__page .friends__titel {
      font-family: 'Montserrat';
      font-style: normal;
      font-weight: 700;
      font-size: 44px;
      line-height: 59px;
      z-index: 10; }
      .wrap .friends__page .friends__titel span {
        font-family: 'Comfortaa';
        font-weight: 700;
        color: #CC0100; }
    .wrap .friends__page .friend__carusel {
      width: 100%;
      height: 500px;
      display: flex;
      align-items: center;
      justify-content: center; }
      .wrap .friends__page .friend__carusel .slider {
        overflow: hidden; }
      .wrap .friends__page .friend__carusel .swiper-slide {
        width: auto;
        height: 400px;
        margin-right: 20px;
        display: flex;
        align-items: center; }
      .wrap .friends__page .friend__carusel .slider__item {
        padding: 12px 32px; }
      .wrap .friends__page .friend__carusel .swiper-wrapper {
        transition-timing-function: linear; }
  .wrap .footer {
    width: 100%;
    height: 65vh;
    background: #230123;
    margin-top: 100px;
    display: flex;
    padding-top: 60px;
    justify-content: space-between;
    padding-left: 110px;
    padding-right: 110px; }
    .wrap .footer .left__footer {
      width: 340px; }
      .wrap .footer .left__footer .footer__logo {
        width: 330px; }
      .wrap .footer .left__footer .footer__description {
        font-family: 'Montserrat';
        font-style: normal;
        font-weight: 400;
        font-size: 20px;
        line-height: 24px;
        color: #FFFFFF;
        margin-top: 5px; }
    .wrap .footer .center__footer {
      padding-top: 30px;
      margin-top: 30px; }
      .wrap .footer .center__footer .center__titel {
        font-family: 'Montserrat';
        font-style: normal;
        font-weight: 500;
        font-size: 32px;
        line-height: 39px;
        color: #FFFFFF;
        padding-bottom: 10px; }
      .wrap .footer .center__footer .center__nav {
        font-family: 'Montserrat';
        font-style: normal;
        font-weight: 400;
        font-size: 24px;
        line-height: 29px;
        color: #FFFFFF;
        margin-top: 20px;
        cursor: pointer;
        transition: 0.2s; }
        .wrap .footer .center__footer .center__nav:hover {
          color: #FF344D;
          transition: 0.2s; }
    .wrap .footer .right__footer .center__titel {
      font-family: 'Montserrat';
      font-style: normal;
      font-weight: 500;
      font-size: 32px;
      line-height: 39px;
      color: #FFFFFF;
      padding-bottom: 10px; }
    .wrap .footer .right__footer .footer__box {
      display: flex;
      align-items: center;
      cursor: pointer;
      margin-top: 20px; }
      .wrap .footer .right__footer .footer__box .footer__icon {
        width: 30px;
        height: 30px; }
      .wrap .footer .right__footer .footer__box .footer__email {
        transition: 0.4s; }
      .wrap .footer .right__footer .footer__box .footer__text {
        font-family: 'Montserrat';
        font-style: normal;
        font-weight: 500;
        font-size: 24px;
        line-height: 29px;
        color: #FFFFFF;
        margin-left: 15px;
        transition: 0.4s; }
    .wrap .footer .right__footer .footer__email:hover .footer__email {
      fill: #FF344D;
      transition: 0.4s; }
    .wrap .footer .right__footer .footer__email:hover .footer__text {
      color: #FF344D;
      transition: 0.4s; }
    .wrap .footer .right__footer .footer__phone:hover .footer__phone {
      fill: #FF344D;
      transition: 0.4s; }
    .wrap .footer .right__footer .footer__phone:hover .footer__text {
      color: #FF344D;
      transition: 0.4s; }
    .wrap .footer .right__footer .socibale__box {
      display: flex;
      align-items: center;
      margin-top: 50px;
      position: relative;
      right: 20px; }
      .wrap .footer .right__footer .socibale__box .socibale__icon {
        width: 42px;
        height: 42px;
        cursor: pointer;
        margin-left: 20px; }
        .wrap .footer .right__footer .socibale__box .socibale__icon .sociable__icon-fill {
          transition: 0.4s; }
        .wrap .footer .right__footer .socibale__box .socibale__icon:hover .sociable__icon-fill {
          fill: #FF344D;
          transition: 0.4s; }

@media screen and (max-width: 1250px) {
  .wrap .homePage .header .navigation__box .navigation__text {
    font-size: 18px;
    line-height: 20px;
    left: 35px;
    margin-right: 10px;
    z-index: 99; }

  .wrap .popup {
    width: 100%;
    height: 100vh; }
  .wrap .popup__active {
    padding-left: 50px;
    padding-right: 50px; }
    .wrap .popup__active .close {
      width: 45px;
      height: 45px;
      margin-top: 20px;
      margin-right: 20px; }
    .wrap .popup__active .left__element {
      width: 250px;
      position: absolute;
      left: -5%;
      top: -15%;
      z-index: 1; }
    .wrap .popup__active .right__element {
      width: 150px;
      position: absolute;
      right: -5%;
      bottom: -5%;
      z-index: 1; }
    .wrap .popup__active .popup__main .popup__arrow {
      width: 100px;
      position: absolute;
      left: 50%; }
    .wrap .popup__active .popup__main .main__left {
      width: 60%;
      padding-right: 20px; }
      .wrap .popup__active .popup__main .main__left .popu__titel {
        font-size: 42px;
        line-height: 50px; }
        .wrap .popup__active .popup__main .main__left .popu__titel::after {
          width: 180px;
          height: 180px; }
      .wrap .popup__active .popup__main .main__left .popup__description {
        font-size: 20px;
        line-height: 20px;
        margin-top: 15px; }
    .wrap .popup__active .popup__main .main__rigth {
      width: 40%; }
      .wrap .popup__active .popup__main .main__rigth .qu__code {
        width: 390px;
        position: relative;
        top: 40px; }
    .wrap .popup__active .popup__buttons .buttons__cibord-box {
      width: 270px;
      position: relative;
      bottom: 25px;
      right: 50px;
      margin-left: 50px; }
      .wrap .popup__active .popup__buttons .buttons__cibord-box .button__popup {
        width: 230px;
        height: 70px;
        margin-bottom: 20px;
        padding-bottom: 15px;
        font-size: 16px;
        line-height: 22px; }
      .wrap .popup__active .popup__buttons .buttons__cibord-box .popup__button {
        width: 280px;
        height: 80px;
        border: 2px solid #FFFFFF;
        border-radius: 10px;
        margin-top: 60px;
        top: 25px; }
        .wrap .popup__active .popup__buttons .buttons__cibord-box .popup__button .buttons__img {
          width: 35px; }
        .wrap .popup__active .popup__buttons .buttons__cibord-box .popup__button .buttons__text {
          font-size: 20px;
          line-height: 27px;
          margin-left: 20px; }
  .wrap .homePage {
    overflow: hidden; }
    .wrap .homePage .swiper__bg1 {
      background-size: cover; }
    .wrap .homePage .swiper__bg2 {
      background-size: cover; }
    .wrap .homePage .swiper__bg3 {
      background-size: cover; }
    .wrap .homePage .swiper__bg4 {
      background-size: cover; }
    .wrap .homePage .swiper__bg5 {
      background-size: cover; }
    .wrap .homePage .swiper__bg6 {
      background-size: cover; }
    .wrap .homePage .swiper__bg7 {
      background-size: cover; }
    .wrap .homePage .swiper__bg8 {
      background-size: cover; }
    .wrap .homePage .header {
      width: 100%;
      height: 23vh;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-left: 80px;
      padding-right: 80px; }
      .wrap .homePage .header .logo {
        z-index: 120; }
        .wrap .homePage .header .logo svg {
          width: 280px; }
    .wrap .homePage .main {
      width: 100%;
      height: 87vh;
      padding-left: 80px;
      padding-right: 80px;
      padding-top: 100px; }
      .wrap .homePage .main .sound__container .sound__box {
        width: 230px;
        height: 230px; }
        .wrap .homePage .main .sound__container .sound__box .sound__bg {
          width: 170px;
          height: 170px; }
          .wrap .homePage .main .sound__container .sound__box .sound__bg .sound__main {
            width: 120px;
            height: 120px; }
        .wrap .homePage .main .sound__container .sound__box::before {
          content: "";
          width: 230px;
          height: 230px; }
      .wrap .homePage .main .sound__container .visualaiser__container {
        margin-left: 80px; }
      .wrap .homePage .main .arrow__container .arrow__box {
        position: relative;
        left: 10px;
        margin-top: 60px; }
        .wrap .homePage .main .arrow__container .arrow__box .left__arrow {
          width: 55px;
          height: 40px;
          margin-right: 2px; }
        .wrap .homePage .main .arrow__container .arrow__box .right__arrow {
          width: 55px;
          height: 40px;
          margin-left: 2px; }
      .wrap .homePage .main .visualaiser__container .sound__boxx .sound__name {
        font-size: 42px;
        line-height: 65px;
        letter-spacing: 0.075em; }
      .wrap .homePage .main .visualaiser__container .sound__boxx .sound__musican {
        font-size: 32px;
        line-height: 49px;
        letter-spacing: 0.075em;
        margin-left: 10px; }
      .wrap .homePage .main .visualaiser__container .sound-wave {
        width: 560px;
        height: 60px;
        margin-top: 30px; }
      .wrap .homePage .main .visualaiser__container .wisualText {
        font-size: 28px;
        line-height: 30px;
        letter-spacing: 0.075em;
        margin-left: 5px;
        margin-right: 5px; }
      .wrap .homePage .main .visualaiser__container .bar {
        height: 40px;
        width: 25px; }
  .wrap .LivePage .live__left .live__card {
    width: 220px;
    height: 220px;
    padding-top: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-right: 40px;
    padding-left: 4px;
    padding-right: 4px; }
    .wrap .LivePage .live__left .live__card .card__img {
      width: 80px;
      height: 80px; }
    .wrap .LivePage .live__left .live__card .card__titel {
      font-size: 18px;
      line-height: 20px;
      margin-top: 8px;
      text-align: center; }
    .wrap .LivePage .live__left .live__card .card__box {
      margin-top: 8px; }
      .wrap .LivePage .live__left .live__card .card__box .card__info-text {
        font-size: 18px;
        line-height: 20px;
        margin-left: 5px;
        margin-right: 5px; }
  .wrap .LivePage .life__center .center__titel {
    font-size: 40px;
    line-height: 50px; }
  .wrap .LivePage .life__center .center__box .center__titel-des {
    font-size: 28px;
    line-height: 30px;
    margin-top: 40px; }
  .wrap .LivePage .life__center .center__box .center__description {
    font-size: 20px;
    line-height: 30px;
    margin-top: 15px; }
  .wrap .LivePage .life__center .life__button {
    width: 230px;
    height: 70px;
    margin-top: 50px;
    font-size: 18px;
    line-height: 20px; }
  .wrap .LivePage .live__right .live__card {
    width: 220px;
    height: 220px;
    padding-top: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-right: 40px;
    padding-left: 4px;
    padding-right: 4px; }
    .wrap .LivePage .live__right .live__card .card__img {
      width: 80px;
      height: 80px; }
    .wrap .LivePage .live__right .live__card .card__titel {
      font-size: 18px;
      line-height: 20px;
      margin-top: 8px;
      text-align: center; }
    .wrap .LivePage .live__right .live__card .card__box {
      margin-top: 8px; }
      .wrap .LivePage .live__right .live__card .card__box .card__info-text {
        font-size: 18px;
        line-height: 20px;
        margin-left: 5px;
        margin-right: 5px; }
  .wrap .LivePage::after {
    height: 67%; }
  .wrap .about__page {
    padding-left: 80px;
    padding-right: 80px;
    padding-bottom: 30px; }
    .wrap .about__page .about__titel {
      font-size: 40px;
      line-height: 20px; }
    .wrap .about__page .about__main {
      margin-top: 50px; }
      .wrap .about__page .about__main .about__left {
        width: 55%;
        height: auto;
        padding-right: 10px; }
        .wrap .about__page .about__main .about__left .about__description {
          font-size: 20px;
          line-height: 24px; }
      .wrap .about__page .about__main .about__right {
        width: 45%;
        padding-left: 70px; }
        .wrap .about__page .about__main .about__right .about__img {
          width: 400px;
          height: 260px; }
        .wrap .about__page .about__main .about__right .about__button {
          width: 270px;
          height: 85px;
          margin-top: 45px;
          font-size: 20px;
          line-height: 20px; }
  .wrap .team__page {
    padding-top: 50px; }
    .wrap .team__page .team__titel {
      font-size: 40px;
      line-height: 50px; }
    .wrap .team__page .team__container {
      margin-top: 10px;
      padding-bottom: 70px; }
      .wrap .team__page .team__container .team__card {
        width: 330px;
        height: 450px;
        margin-left: 25px;
        margin-right: 25px;
        margin-top: 45px; }
        .wrap .team__page .team__container .team__card .card__top .card__img::before {
          width: 320px;
          font-size: 15px;
          line-height: 19px;
          margin-bottom: 35px; }
        .wrap .team__page .team__container .team__card .card__top .card__img::after {
          width: 40px;
          height: 25px; }
        .wrap .team__page .team__container .team__card .card__top .card__img .card__kolo {
          width: 40px;
          height: 40px;
          margin-bottom: 150px; }
        .wrap .team__page .team__container .team__card .card__bottom {
          width: 100%;
          height: 35%;
          display: flex;
          flex-direction: column;
          align-items: center;
          padding-top: 25px; }
          .wrap .team__page .team__container .team__card .card__bottom .card__titel {
            font-size: 20px;
            line-height: 24px; }
          .wrap .team__page .team__container .team__card .card__bottom .card__name {
            font-size: 24px;
            line-height: 29px;
            margin-top: 8px; }
          .wrap .team__page .team__container .team__card .card__bottom .card__sociable {
            font-size: 20px;
            line-height: 24px;
            margin-top: 25px; }
      .wrap .team__page .team__container::after {
        height: 20%;
        margin-top: 300px; }
      .wrap .team__page .team__container::before {
        height: 30%;
        margin-top: 1000px; }
  .wrap .friends__page {
    padding-top: 60px; }
    .wrap .friends__page .friends__titel {
      font-size: 40px;
      line-height: 50px; }
    .wrap .friends__page .friend__carusel {
      width: 100%;
      height: 400px; }
      .wrap .friends__page .friend__carusel .swiper-slide {
        width: auto;
        height: 350px;
        margin-right: 0px;
        display: flex;
        align-items: center; }
      .wrap .friends__page .friend__carusel .slider__item .fr1 {
        width: 200px; }
      .wrap .friends__page .friend__carusel .slider__item .fr2 {
        width: 300px; }
      .wrap .friends__page .friend__carusel .slider__item .fr3 {
        width: 350px; }
  .wrap .footer {
    height: 65vh;
    margin-top: 80px;
    padding-top: 40px;
    padding-left: 80px;
    padding-right: 80px; }
    .wrap .footer .left__footer {
      width: 340px; }
      .wrap .footer .left__footer .footer__logo {
        width: 300px; }
      .wrap .footer .left__footer .footer__description {
        font-size: 18px;
        line-height: 22px;
        margin-top: 5px; }
    .wrap .footer .center__footer {
      padding-top: 30px;
      margin-top: 30px; }
      .wrap .footer .center__footer .center__titel {
        font-size: 28px;
        line-height: 20px;
        padding-bottom: 10px; }
      .wrap .footer .center__footer .center__nav {
        font-size: 20px;
        line-height: 29px;
        margin-top: 15px; }
    .wrap .footer .right__footer .center__titel {
      font-size: 28px;
      line-height: 20px;
      padding-bottom: 10px; }
    .wrap .footer .right__footer .footer__box {
      margin-top: 20px; }
      .wrap .footer .right__footer .footer__box .footer__icon {
        width: 30px;
        height: 30px; }
      .wrap .footer .right__footer .footer__box .footer__text {
        font-size: 20px;
        line-height: 20px;
        margin-left: 10px; }
    .wrap .footer .right__footer .socibale__box {
      margin-top: 40px;
      right: 20px; }
      .wrap .footer .right__footer .socibale__box .socibale__icon {
        width: 40px;
        height: 40px;
        margin-left: 20px; } }
@media screen and (max-width: 1050px) {
  .wrap .popup {
    width: 100%;
    height: 100vh; }
  .wrap .popup__active {
    padding-left: 50px;
    padding-right: 50px; }
    .wrap .popup__active .close {
      width: 40px;
      height: 40px;
      margin-top: 20px;
      margin-right: 20px; }
    .wrap .popup__active .left__element {
      width: 200px;
      position: absolute;
      left: -5%;
      top: -15%;
      z-index: 1; }
    .wrap .popup__active .right__element {
      width: 150px;
      position: absolute;
      right: -5%;
      bottom: -5%;
      z-index: 1; }
    .wrap .popup__active .popup__main .popup__arrow {
      display: none; }
    .wrap .popup__active .popup__main .main__left {
      width: 100%;
      padding-right: 0px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding-top: 100px; }
      .wrap .popup__active .popup__main .main__left .popu__titel {
        font-size: 36px;
        line-height: 40px;
        text-align: center; }
        .wrap .popup__active .popup__main .main__left .popu__titel::after {
          display: none; }
      .wrap .popup__active .popup__main .main__left .popup__description {
        font-size: 20px;
        line-height: 20px;
        margin-top: 15px;
        text-align: center; }
    .wrap .popup__active .popup__main .main__rigth {
      display: none; }
    .wrap .popup__active .popup__buttons {
      display: flex;
      justify-content: center;
      padding-bottom: 20px; }
      .wrap .popup__active .popup__buttons .buttons__cibord-box {
        width: 270px;
        position: relative;
        bottom: 25px;
        right: 0px;
        left: 0px;
        margin-left: 20px;
        margin-right: 20px; }
        .wrap .popup__active .popup__buttons .buttons__cibord-box .button__popup {
          width: 240px;
          height: 70px;
          margin-bottom: 20px;
          padding-bottom: 15px;
          font-size: 16px;
          line-height: 22px; }
        .wrap .popup__active .popup__buttons .buttons__cibord-box .popup__button {
          width: 280px;
          height: 80px;
          border: 2px solid #FFFFFF;
          border-radius: 10px;
          margin-top: 60px;
          top: 25px; }
          .wrap .popup__active .popup__buttons .buttons__cibord-box .popup__button .buttons__img {
            width: 35px; }
          .wrap .popup__active .popup__buttons .buttons__cibord-box .popup__button .buttons__text {
            font-size: 20px;
            line-height: 27px;
            margin-left: 20px; }
  .wrap .homePage .swiper__bg1 {
    background-size: cover; }
  .wrap .homePage .swiper__bg2 {
    background-size: cover; }
  .wrap .homePage .swiper__bg3 {
    background-size: cover; }
  .wrap .homePage .swiper__bg4 {
    background-size: cover; }
  .wrap .homePage .swiper__bg5 {
    background-size: cover; }
  .wrap .homePage .swiper__bg6 {
    background-size: cover; }
  .wrap .homePage .swiper__bg7 {
    background-size: cover; }
  .wrap .homePage .swiper__bg8 {
    background-size: cover; }
  .wrap .homePage .header {
    width: 100%;
    height: 23vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 50px;
    padding-right: 50px; }
    .wrap .homePage .header .logo svg {
      width: 250px; }
    .wrap .homePage .header .navigation {
      display: none; }
    .wrap .homePage .header .bueger__box {
      z-index: 10;
      display: flex;
      flex-direction: column;
      z-index: 100; }
      .wrap .homePage .header .bueger__box .burger__kolo {
        width: 1px;
        height: 1px;
        background: #35495c;
        border-radius: 50%;
        transform: scale(0);
        transition: 0.5s;
        z-index: 100; }
      .wrap .homePage .header .bueger__box .burger__kolo__active {
        transform: scale(6000);
        transition: all 2200ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
        transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275); }
      .wrap .homePage .header .bueger__box .burger__menu {
        width: 100%;
        height: 100vh;
        position: absolute;
        left: 0%;
        top: 0%;
        display: none;
        z-index: 100; }
      .wrap .homePage .header .bueger__box .burger__menu__active {
        display: flex;
        flex-direction: column;
        z-index: 100;
        animation-name: burger__menu__active;
        animation-duration: 1.5s;
        animation-iteration-count: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-top: 100px; }
        .wrap .homePage .header .bueger__box .burger__menu__active .burger__text {
          font-family: 'Montserrat';
          font-style: normal;
          font-weight: 500;
          font-size: 32px;
          line-height: 49px;
          text-align: center;
          color: #F9F9F9;
          margin-top: 20px;
          margin-bottom: 20px;
          transition: 0.2s; }
          .wrap .homePage .header .bueger__box .burger__menu__active .burger__text:hover {
            color: #FF344D;
            transition: 0.2s; }
        .wrap .homePage .header .bueger__box .burger__menu__active .burger__text__active {
          animation-name: burger__text;
          animation-duration: 1s;
          animation-iteration-count: 1; }
  @keyframes burger__text {
    0% {
      -webkit-transform: translate3d(0px, -100px, 0);
      -ms-transform: translate3d(0px, -100px, 0);
      transform: translate3d(0px, -100px, 0);
      transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
      transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275); }
    100% {
      -webkit-transform: translate3d(0px, 0px, 0);
      -ms-transform: translate3d(0px, 0px, 0);
      transform: translate3d(0px, 0px, 0); } }
  @keyframes burger__menu__active {
    0% {
      opacity: 0; }
    99% {
      opacity: 0; }
    100% {
      opacity: 1; } }
      .wrap .homePage .header .bueger__box .burger {
        width: 30px;
        height: 30px;
        z-index: 120; }
        .wrap .homePage .header .bueger__box .burger #burger-menu {
          cursor: pointer;
          height: 27px;
          width: 27px;
          overflow: visible;
          position: relative;
          z-index: 2; }
          .wrap .homePage .header .bueger__box .burger #burger-menu span,
          .wrap .homePage .header .bueger__box .burger #burger-menu span:before,
          .wrap .homePage .header .bueger__box .burger #burger-menu span:after {
            background: #fff;
            display: block;
            height: 2px;
            opacity: 1;
            position: absolute;
            transition: 0.3s ease-in-out; }
          .wrap .homePage .header .bueger__box .burger #burger-menu span:before,
          .wrap .homePage .header .bueger__box .burger #burger-menu span:after {
            content: ''; }
          .wrap .homePage .header .bueger__box .burger #burger-menu span:before {
            left: 0px;
            top: -10px;
            width: 27px; }
          .wrap .homePage .header .bueger__box .burger #burger-menu span {
            right: 0px;
            top: 13px;
            width: 27px; }
          .wrap .homePage .header .bueger__box .burger #burger-menu span:after {
            left: 0px;
            top: 10px;
            width: 27px; }
          .wrap .homePage .header .bueger__box .burger #burger-menu.close span:before {
            top: 0px;
            transform: rotate(90deg);
            width: 27px; }
          .wrap .homePage .header .bueger__box .burger #burger-menu.close span {
            transform: rotate(-45deg);
            top: 13px;
            width: 27px; }
          .wrap .homePage .header .bueger__box .burger #burger-menu.close span:after {
            top: 0px;
            left: 0;
            transform: rotate(90deg);
            opacity: 0;
            width: 0; }
  .wrap .homePage .main {
    width: 100%;
    height: 87vh;
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 20px; }
    .wrap .homePage .main .sound__container {
      display: flex;
      flex-direction: column;
      align-items: center; }
      .wrap .homePage .main .sound__container .sound__box {
        width: 200px;
        height: 200px; }
        .wrap .homePage .main .sound__container .sound__box .sound__bg {
          width: 150px;
          height: 150px; }
          .wrap .homePage .main .sound__container .sound__box .sound__bg .sound__main {
            width: 100px;
            height: 100px; }
        .wrap .homePage .main .sound__container .sound__box::before {
          content: "";
          width: 200px;
          height: 200px; }
      .wrap .homePage .main .sound__container .visualaiser__container {
        margin-left: 0px; }
    .wrap .homePage .main .arrow__container {
      display: none; }
    .wrap .homePage .main .visualaiser__container {
      display: flex;
      flex-direction: column;
      align-items: center; }
      .wrap .homePage .main .visualaiser__container .sound__boxx {
        width: 700px;
        display: flex;
        justify-content: center; }
        .wrap .homePage .main .visualaiser__container .sound__boxx .sound__name {
          font-size: 36px;
          line-height: 45px;
          letter-spacing: 0.075em;
          text-align: center;
          margin-right: 10px;
          margin-top: 10px; }
        .wrap .homePage .main .visualaiser__container .sound__boxx .sound__musican {
          font-size: 30px;
          line-height: 40px;
          letter-spacing: 0.075em;
          margin-left: 10px;
          margin-top: 10px; }
      .wrap .homePage .main .visualaiser__container .sound-wave {
        width: 560px;
        height: 60px;
        margin-top: 30px;
        display: flex;
        justify-content: center; }
      .wrap .homePage .main .visualaiser__container .wisualText {
        display: none; }
      .wrap .homePage .main .visualaiser__container .bar {
        height: 40px;
        width: 25px; }
  .wrap .LivePage {
    height: 200vh; }
    .wrap .LivePage .live__left {
      width: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-top: 35px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      margin-right: 0px;
      margin-left: 0px;
      padding-right: 0px;
      padding-left: 0px; }
      .wrap .LivePage .live__left .live__card {
        width: 220px;
        height: 220px;
        padding-top: 20px;
        margin-top: 20px;
        margin-bottom: 20px;
        margin-right: 0px;
        padding-left: 4px;
        padding-right: 4px; }
        .wrap .LivePage .live__left .live__card .card__img {
          width: 80px;
          height: 80px; }
        .wrap .LivePage .live__left .live__card .card__titel {
          font-size: 18px;
          line-height: 20px;
          margin-top: 8px;
          text-align: center; }
        .wrap .LivePage .live__left .live__card .card__box {
          margin-top: 8px; }
          .wrap .LivePage .live__left .live__card .card__box .card__info-text {
            font-size: 18px;
            line-height: 20px;
            margin-left: 5px;
            margin-right: 5px; }
    .wrap .LivePage .life__center {
      width: 100%;
      position: absolute;
      margin-top: 350px;
      z-index: 99;
      padding-left: 50px;
      padding-right: 50px; }
      .wrap .LivePage .life__center .center__titel {
        font-size: 40px;
        line-height: 50px; }
      .wrap .LivePage .life__center .center__box .center__titel-des {
        font-size: 28px;
        line-height: 30px;
        margin-top: 40px; }
      .wrap .LivePage .life__center .center__box .center__description {
        font-size: 20px;
        line-height: 30px;
        margin-top: 15px; }
      .wrap .LivePage .life__center .life__button {
        width: 230px;
        height: 70px;
        margin-top: 50px;
        font-size: 18px;
        line-height: 20px; }
    .wrap .LivePage .live__right {
      width: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-top: 35px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      margin-right: 0px;
      margin-left: 0px;
      padding-right: 0px;
      padding-left: 0px; }
      .wrap .LivePage .live__right .live__card {
        width: 220px;
        height: 220px;
        padding-top: 20px;
        margin-top: 20px;
        margin-bottom: 20px;
        margin-right: 0px;
        padding-left: 4px;
        padding-right: 4px; }
        .wrap .LivePage .live__right .live__card .card__img {
          width: 80px;
          height: 80px; }
        .wrap .LivePage .live__right .live__card .card__titel {
          font-size: 18px;
          line-height: 20px;
          margin-top: 8px;
          text-align: center; }
        .wrap .LivePage .live__right .live__card .card__box {
          margin-top: 8px; }
          .wrap .LivePage .live__right .live__card .card__box .card__info-text {
            font-size: 18px;
            line-height: 20px;
            margin-left: 5px;
            margin-right: 5px; }
    .wrap .LivePage::after {
      display: none; }
  .wrap .about__page {
    height: 120vh;
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: 30px; }
    .wrap .about__page .about__titel {
      font-size: 40px;
      line-height: 20px;
      text-align: center; }
    .wrap .about__page .about__main {
      margin-top: 50px;
      display: flex;
      flex-direction: column-reverse; }
      .wrap .about__page .about__main .about__left {
        width: 100%;
        height: auto;
        padding-right: 0px;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-bottom: 80px; }
        .wrap .about__page .about__main .about__left .about__button {
          width: 280px;
          height: 90px;
          border: none;
          border-radius: 5px 0px;
          border: 1px solid #FF344D;
          background-color: transparent;
          margin-top: 50px;
          cursor: pointer;
          font-family: 'Montserrat';
          font-style: normal;
          font-weight: 400;
          font-size: 20px;
          line-height: 29px;
          color: #FF344D;
          display: flex;
          align-items: center;
          justify-content: center;
          overflow: hidden;
          background-image: url(../img/about/buttons.svg);
          background-size: cover;
          background-size: 0px;
          background-repeat: no-repeat;
          background-position: -300px;
          transition: all 700ms cubic-bezier(1, -0.4, 0.025, 1.42);
          transition-timing-function: cubic-bezier(1, -0.4, 0.025, 1.42); }
          .wrap .about__page .about__main .about__left .about__button:hover {
            background-color: #CC0100;
            background-position: -50px;
            transition: all 700ms cubic-bezier(1, -0.4, 0.025, 1.42);
            transition-timing-function: cubic-bezier(1, -0.4, 0.025, 1.42);
            background-size: 200px;
            color: #fff; }
        .wrap .about__page .about__main .about__left .about__description {
          font-size: 20px;
          line-height: 24px;
          text-align: center;
          margin-top: 30px; }
      .wrap .about__page .about__main .about__right {
        width: 100%;
        padding-left: 0px; }
        .wrap .about__page .about__main .about__right .about__img {
          width: 400px;
          height: 260px; }
        .wrap .about__page .about__main .about__right .about__button {
          width: 270px;
          height: 85px;
          margin-top: 45px;
          font-size: 20px;
          line-height: 20px; }
  .wrap .team__page {
    padding-top: 50px; }
    .wrap .team__page .team__titel {
      font-size: 40px;
      line-height: 50px; }
    .wrap .team__page .team__container {
      margin-top: 10px;
      padding-bottom: 70px; }
      .wrap .team__page .team__container .team__card {
        width: 330px;
        height: 450px;
        margin-left: 25px;
        margin-right: 25px;
        margin-top: 45px; }
        .wrap .team__page .team__container .team__card .card__top .card__img::before {
          width: 320px;
          font-size: 15px;
          line-height: 19px;
          margin-bottom: 35px; }
        .wrap .team__page .team__container .team__card .card__top .card__img::after {
          width: 40px;
          height: 25px; }
        .wrap .team__page .team__container .team__card .card__top .card__img .card__kolo {
          width: 40px;
          height: 40px;
          margin-bottom: 150px; }
        .wrap .team__page .team__container .team__card .card__bottom {
          width: 100%;
          height: 35%;
          display: flex;
          flex-direction: column;
          align-items: center;
          padding-top: 25px; }
          .wrap .team__page .team__container .team__card .card__bottom .card__titel {
            font-size: 20px;
            line-height: 24px; }
          .wrap .team__page .team__container .team__card .card__bottom .card__name {
            font-size: 24px;
            line-height: 29px;
            margin-top: 8px; }
          .wrap .team__page .team__container .team__card .card__bottom .card__sociable {
            font-size: 20px;
            line-height: 24px;
            margin-top: 25px; }
      .wrap .team__page .team__container::after {
        height: 20%;
        margin-top: 300px; }
      .wrap .team__page .team__container::before {
        height: 30%;
        margin-top: 1000px; }
  .wrap .friends__page {
    padding-top: 60px; }
    .wrap .friends__page .friends__titel {
      font-size: 40px;
      line-height: 50px; }
    .wrap .friends__page .friend__carusel {
      width: 100%;
      height: 400px; }
      .wrap .friends__page .friend__carusel .swiper-slide {
        width: auto;
        height: 350px;
        margin-right: 0px;
        display: flex;
        align-items: center;
        margin-left: 60px;
        margin-right: 60px; }
      .wrap .friends__page .friend__carusel .slider__item .fr1 {
        width: 150px; }
      .wrap .friends__page .friend__carusel .slider__item .fr2 {
        width: 250px; }
      .wrap .friends__page .friend__carusel .slider__item .fr3 {
        width: 300px; }
  .wrap .footer {
    height: 100vh;
    margin-top: 80px;
    padding-top: 40px;
    padding-left: 50px;
    padding-right: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 50px; }
    .wrap .footer .left__footer {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center; }
      .wrap .footer .left__footer .footer__logo {
        width: 300px; }
      .wrap .footer .left__footer .footer__description {
        font-size: 18px;
        line-height: 22px;
        margin-top: 5px;
        text-align: center; }
    .wrap .footer .center__footer .center__media {
      display: none; }
    .wrap .footer .center__footer .center__nav {
      display: none; }
    .wrap .footer .right__footer {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-top: 0px;
      margin-top: 0px;
      padding-bottom: 200px; }
      .wrap .footer .right__footer .center__titel {
        font-size: 28px;
        line-height: 20px;
        padding-bottom: 10px;
        text-align: center; }
      .wrap .footer .right__footer .footer__box {
        display: flex;
        justify-content: center;
        margin-top: 20px; }
        .wrap .footer .right__footer .footer__box .footer__icon {
          width: 30px;
          height: 30px; }
        .wrap .footer .right__footer .footer__box .footer__text {
          font-size: 20px;
          line-height: 20px;
          margin-left: 0px;
          text-align: center; }
      .wrap .footer .right__footer .socibale__box {
        display: flex;
        justify-content: center;
        margin-top: 40px;
        right: 0px; }
        .wrap .footer .right__footer .socibale__box .socibale__icon {
          width: 40px;
          height: 40px;
          margin-left: 10px;
          margin-right: 10px; } }
@media screen and (max-width: 710px) {
  .wrap .popup {
    width: 100%;
    height: 100vh; }
  .wrap .popup__active {
    padding-left: 35px;
    padding-right: 35px; }
    .wrap .popup__active .close {
      width: 40px;
      height: 40px;
      margin-top: 20px;
      margin-right: 30px; }
    .wrap .popup__active .left__element {
      width: 180px;
      position: absolute;
      left: -5%;
      top: -5%;
      z-index: 1; }
    .wrap .popup__active .right__element {
      width: 150px;
      position: absolute;
      right: -5%;
      bottom: -5%;
      z-index: 1; }
    .wrap .popup__active .popup__main .popup__arrow {
      display: none; }
    .wrap .popup__active .popup__main .main__left {
      width: 100%;
      padding-right: 0px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding-top: 40px; }
      .wrap .popup__active .popup__main .main__left .popu__titel {
        font-size: 32px;
        line-height: 35px;
        text-align: center; }
        .wrap .popup__active .popup__main .main__left .popu__titel::after {
          display: none; }
      .wrap .popup__active .popup__main .main__left .popup__description {
        font-size: 18px;
        line-height: 18px;
        margin-top: 15px;
        text-align: center; }
    .wrap .popup__active .popup__main .main__rigth {
      display: none; }
    .wrap .popup__active .popup__buttons {
      height: auto;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      padding-bottom: 15px; }
      .wrap .popup__active .popup__buttons .buttons__cibord-box {
        width: 270px;
        position: relative;
        bottom: 25px;
        right: 0px;
        left: 0px;
        margin-left: 20px;
        margin-right: 20px; }
        .wrap .popup__active .popup__buttons .buttons__cibord-box .button__popup {
          width: 240px;
          height: 70px;
          margin-bottom: 0px;
          padding-bottom: 15px;
          font-size: 16px;
          line-height: 22px; }
        .wrap .popup__active .popup__buttons .buttons__cibord-box .popup__button {
          width: 250px;
          height: 70px;
          border: 2px solid #FFFFFF;
          border-radius: 10px;
          margin-top: 0px;
          margin-bottom: 15px;
          margin-top: 5px;
          top: 35px; }
          .wrap .popup__active .popup__buttons .buttons__cibord-box .popup__button .buttons__img {
            width: 30px; }
          .wrap .popup__active .popup__buttons .buttons__cibord-box .popup__button .buttons__text {
            font-size: 18px;
            line-height: 27px;
            margin-left: 15px; }
  .wrap .homePage .swiper__bg1 {
    background-size: cover; }
  .wrap .homePage .swiper__bg2 {
    background-size: cover; }
  .wrap .homePage .swiper__bg3 {
    background-size: cover; }
  .wrap .homePage .swiper__bg4 {
    background-size: cover; }
  .wrap .homePage .swiper__bg5 {
    background-size: cover; }
  .wrap .homePage .swiper__bg6 {
    background-size: cover; }
  .wrap .homePage .swiper__bg7 {
    background-size: cover; }
  .wrap .homePage .swiper__bg8 {
    background-size: cover; }
  .wrap .homePage .header {
    width: 100%;
    height: 23vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 35px;
    padding-right: 35px; }
    .wrap .homePage .header .logo svg {
      width: 250px; }
    .wrap .homePage .header .navigation {
      display: none; }
    .wrap .homePage .header .bueger__box {
      z-index: 10;
      display: flex;
      flex-direction: column;
      z-index: 100; }
      .wrap .homePage .header .bueger__box .burger__menu__active {
        padding-top: 100px; }
        .wrap .homePage .header .bueger__box .burger__menu__active .burger__text {
          font-size: 26px;
          line-height: 49px;
          margin-top: 15px;
          margin-bottom: 15px; }
  .wrap .homePage .main {
    width: 100%;
    height: 87vh;
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 5px; }
    .wrap .homePage .main .sound__container {
      display: flex;
      flex-direction: column;
      align-items: center; }
      .wrap .homePage .main .sound__container .sound__box {
        width: 180px;
        height: 180px; }
        .wrap .homePage .main .sound__container .sound__box .sound__bg {
          width: 130px;
          height: 130px; }
          .wrap .homePage .main .sound__container .sound__box .sound__bg .sound__main {
            width: 80px;
            height: 80px; }
            .wrap .homePage .main .sound__container .sound__box .sound__bg .sound__main .play {
              width: 35px;
              height: 35px;
              position: relative;
              left: 3px;
              transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
              transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275); }
            .wrap .homePage .main .sound__container .sound__box .sound__bg .sound__main .pause {
              width: 1px;
              height: 1px;
              position: absolute;
              transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
              transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275); }
            .wrap .homePage .main .sound__container .sound__box .sound__bg .sound__main .play__active {
              width: 0px;
              height: 0px;
              transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
              transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275); }
            .wrap .homePage .main .sound__container .sound__box .sound__bg .sound__main .pause__active {
              width: 35px;
              height: 35px;
              transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
              transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275); }
        .wrap .homePage .main .sound__container .sound__box::before {
          content: "";
          width: 180px;
          height: 180px; }
      .wrap .homePage .main .sound__container .visualaiser__container {
        margin-left: 0px; }
    .wrap .homePage .main .arrow__container {
      display: none; }
    .wrap .homePage .main .visualaiser__container {
      display: flex;
      flex-direction: column;
      align-items: center; }
      .wrap .homePage .main .visualaiser__container .sound__boxx {
        width: 500px;
        display: flex;
        justify-content: center; }
        .wrap .homePage .main .visualaiser__container .sound__boxx .sound__name {
          font-size: 32px;
          line-height: 40px;
          letter-spacing: 0.075em;
          text-align: center;
          margin-right: 10px;
          margin-top: 10px; }
        .wrap .homePage .main .visualaiser__container .sound__boxx .sound__musican {
          font-size: 26px;
          line-height: 35px;
          letter-spacing: 0.075em;
          margin-left: 5px;
          margin-top: 15px; }
      .wrap .homePage .main .visualaiser__container .sound-wave {
        width: 440px;
        height: 80px;
        margin-top: 30px;
        display: flex;
        justify-content: center; }
      .wrap .homePage .main .visualaiser__container .wisualText {
        display: none; }
      .wrap .homePage .main .visualaiser__container .bar {
        height: 40px;
        width: 25px; }
  .wrap .LivePage {
    height: 200vh; }
    .wrap .LivePage .live__left {
      width: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-top: 35px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      margin-right: 0px;
      margin-left: 0px;
      padding-right: 0px;
      padding-left: 0px; }
      .wrap .LivePage .live__left .live__card {
        width: 220px;
        height: 220px;
        padding-top: 20px;
        margin-top: 20px;
        margin-bottom: 20px;
        margin-right: 0px;
        padding-left: 4px;
        padding-right: 4px; }
        .wrap .LivePage .live__left .live__card .card__img {
          width: 80px;
          height: 80px; }
        .wrap .LivePage .live__left .live__card .card__titel {
          font-size: 18px;
          line-height: 20px;
          margin-top: 8px;
          text-align: center; }
        .wrap .LivePage .live__left .live__card .card__box {
          margin-top: 8px; }
          .wrap .LivePage .live__left .live__card .card__box .card__info-text {
            font-size: 18px;
            line-height: 20px;
            margin-left: 5px;
            margin-right: 5px; }
    .wrap .LivePage .life__center {
      width: 100%;
      position: absolute;
      margin-top: 350px;
      z-index: 99;
      padding-left: 35px;
      padding-right: 35px; }
      .wrap .LivePage .life__center .center__titel {
        font-size: 36px;
        line-height: 40px; }
      .wrap .LivePage .life__center .center__box .center__titel-des {
        font-size: 26px;
        line-height: 28px;
        margin-top: 35px; }
      .wrap .LivePage .life__center .center__box .center__description {
        font-size: 18px;
        line-height: 25px;
        margin-top: 10px; }
      .wrap .LivePage .life__center .life__button {
        width: 200px;
        height: 65px;
        margin-top: 40px;
        font-size: 16px;
        line-height: 20px; }
    .wrap .LivePage .live__right {
      width: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-top: 35px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      margin-right: 0px;
      margin-left: 0px;
      padding-right: 0px;
      padding-left: 0px; }
      .wrap .LivePage .live__right .live__card {
        width: 220px;
        height: 220px;
        padding-top: 20px;
        margin-top: 20px;
        margin-bottom: 20px;
        margin-right: 0px;
        padding-left: 4px;
        padding-right: 4px; }
        .wrap .LivePage .live__right .live__card .card__img {
          width: 80px;
          height: 80px; }
        .wrap .LivePage .live__right .live__card .card__titel {
          font-size: 18px;
          line-height: 20px;
          margin-top: 8px;
          text-align: center; }
        .wrap .LivePage .live__right .live__card .card__box {
          margin-top: 8px; }
          .wrap .LivePage .live__right .live__card .card__box .card__info-text {
            font-size: 18px;
            line-height: 20px;
            margin-left: 5px;
            margin-right: 5px; }
    .wrap .LivePage::after {
      display: none; }
  .wrap .about__page {
    height: 120vh;
    padding-left: 35px;
    padding-right: 35px;
    padding-bottom: 30px;
    padding-top: 100px; }
    .wrap .about__page .about__titel {
      font-size: 36px;
      line-height: 20px;
      text-align: center; }
    .wrap .about__page .about__main {
      margin-top: 50px;
      display: flex;
      flex-direction: column-reverse; }
      .wrap .about__page .about__main .about__left {
        width: 100%;
        height: auto;
        padding-right: 0px;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-bottom: 80px; }
        .wrap .about__page .about__main .about__left .about__button {
          width: 280px;
          height: 90px;
          margin-top: 50px;
          font-size: 20px;
          line-height: 25px; }
        .wrap .about__page .about__main .about__left .about__description {
          font-size: 18px;
          line-height: 20px;
          text-align: center;
          margin-top: 30px; }
      .wrap .about__page .about__main .about__right {
        width: 100%;
        padding-left: 0px; }
        .wrap .about__page .about__main .about__right .about__img {
          width: 400px;
          height: 260px; }
        .wrap .about__page .about__main .about__right .about__button {
          width: 270px;
          height: 85px;
          margin-top: 45px;
          font-size: 20px;
          line-height: 20px; }
  .wrap .team__page {
    padding-top: 100px; }
    .wrap .team__page .team__titel {
      font-size: 36px;
      line-height: 40px; }
    .wrap .team__page .team__container {
      margin-top: 10px;
      padding-bottom: 70px; }
      .wrap .team__page .team__container .team__card {
        width: 300px;
        height: 420px;
        margin-left: 20px;
        margin-right: 20px;
        margin-top: 40px; }
        .wrap .team__page .team__container .team__card .card__top .card__img::before {
          width: 285px;
          font-size: 14px;
          line-height: 18px;
          margin-bottom: 35px; }
        .wrap .team__page .team__container .team__card .card__top .card__img::after {
          width: 40px;
          height: 25px; }
        .wrap .team__page .team__container .team__card .card__top .card__img .card__kolo {
          width: 40px;
          height: 40px;
          margin-bottom: 150px; }
        .wrap .team__page .team__container .team__card .card__top .card__img7::before {
          margin-bottom: 5px; }
        .wrap .team__page .team__container .team__card .card__top .card__img5::before {
          margin-bottom: 60px; }
        .wrap .team__page .team__container .team__card .card__bottom {
          width: 100%;
          height: 35%;
          display: flex;
          flex-direction: column;
          align-items: center;
          padding-top: 25px; }
          .wrap .team__page .team__container .team__card .card__bottom .card__titel {
            font-size: 18px;
            line-height: 20px; }
          .wrap .team__page .team__container .team__card .card__bottom .card__name {
            font-size: 22px;
            line-height: 25px;
            margin-top: 8px; }
          .wrap .team__page .team__container .team__card .card__bottom .card__sociable {
            font-size: 18px;
            line-height: 20px;
            margin-top: 20px; }
      .wrap .team__page .team__container::after {
        height: 20%;
        margin-top: 300px; }
      .wrap .team__page .team__container::before {
        height: 30%;
        margin-top: 2000px; }
  .wrap .friends__page {
    padding-top: 60px; }
    .wrap .friends__page .friends__titel {
      font-size: 36px;
      line-height: 40px; }
    .wrap .friends__page .friend__carusel {
      width: 100%;
      height: 400px; }
      .wrap .friends__page .friend__carusel .swiper-slide {
        width: auto;
        height: 350px;
        margin-right: 0px;
        display: flex;
        align-items: center;
        margin-left: 80px;
        margin-right: 80px; }
      .wrap .friends__page .friend__carusel .slider__item .fr1 {
        width: 150px; }
      .wrap .friends__page .friend__carusel .slider__item .fr2 {
        width: 250px; }
      .wrap .friends__page .friend__carusel .slider__item .fr3 {
        width: 300px; }
  .wrap .footer {
    height: 100vh;
    margin-top: 80px;
    padding-top: 40px;
    padding-left: 35px;
    padding-right: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 80px; }
    .wrap .footer .left__footer {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center; }
      .wrap .footer .left__footer .footer__logo {
        width: 280px; }
      .wrap .footer .left__footer .footer__description {
        font-size: 18px;
        line-height: 22px;
        margin-top: 5px;
        text-align: center; }
    .wrap .footer .center__footer .center__media {
      display: none; }
    .wrap .footer .center__footer .center__nav {
      display: none; }
    .wrap .footer .right__footer {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-top: 0px;
      margin-top: 0px;
      padding-bottom: 200px;
      position: relative;
      bottom: 40px; }
      .wrap .footer .right__footer .center__titel {
        font-size: 24px;
        line-height: 18px;
        padding-bottom: 10px;
        text-align: center; }
      .wrap .footer .right__footer .footer__box {
        display: flex;
        justify-content: center;
        margin-top: 20px; }
        .wrap .footer .right__footer .footer__box .footer__icon {
          width: 30px;
          height: 30px; }
        .wrap .footer .right__footer .footer__box .footer__text {
          font-size: 18px;
          line-height: 20px;
          margin-left: 5px;
          text-align: center; }
      .wrap .footer .right__footer .socibale__box {
        display: flex;
        justify-content: center;
        margin-top: 40px;
        right: 0px; }
        .wrap .footer .right__footer .socibale__box .socibale__icon {
          width: 40px;
          height: 40px;
          margin-left: 10px;
          margin-right: 10px; } }
@media screen and (max-width: 505px) {
  .wrap .popup {
    width: 100%;
    height: 100vh; }
  .wrap .popup__active {
    padding-left: 30px;
    padding-right: 30px; }
    .wrap .popup__active .close {
      width: 35px;
      height: 35px;
      margin-top: 20px;
      margin-right: 20px; }
    .wrap .popup__active .left__element {
      width: 160px;
      position: absolute;
      left: -5%;
      top: -5%;
      z-index: 1; }
    .wrap .popup__active .right__element {
      width: 140px;
      position: absolute;
      right: -5%;
      bottom: -5%;
      z-index: 1; }
    .wrap .popup__active .popup__main .popup__arrow {
      display: none; }
    .wrap .popup__active .popup__main .main__left {
      width: 100%;
      padding-right: 0px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding-top: 40px; }
      .wrap .popup__active .popup__main .main__left .popu__titel {
        font-size: 28px;
        line-height: 30px;
        text-align: center; }
        .wrap .popup__active .popup__main .main__left .popu__titel::after {
          display: none; }
      .wrap .popup__active .popup__main .main__left .popup__description {
        font-size: 16px;
        line-height: 15px;
        margin-top: 10px;
        text-align: center; }
    .wrap .popup__active .popup__main .main__rigth {
      display: none; }
    .wrap .popup__active .popup__buttons {
      height: auto;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      padding-bottom: 15px; }
      .wrap .popup__active .popup__buttons .buttons__cibord-box {
        width: 270px;
        position: relative;
        bottom: 25px;
        right: 0px;
        left: 0px;
        margin-left: 20px;
        margin-right: 20px; }
        .wrap .popup__active .popup__buttons .buttons__cibord-box .button__popup {
          width: 220px;
          height: 60px;
          margin-bottom: 0px;
          padding-bottom: 15px;
          font-size: 16px;
          line-height: 22px; }
          .wrap .popup__active .popup__buttons .buttons__cibord-box .button__popup p {
            font-size: 14px;
            line-height: 22px;
            position: relative;
            top: 5px; }
  @keyframes popup__privatCopy__active {
    0% {
      opacity: 0;
      position: relative;
      top: 30px; }
    20% {
      opacity: 0; }
    100% {
      opacity: 1;
      position: relative;
      top: 5px; } }
        .wrap .popup__active .popup__buttons .buttons__cibord-box .popup__button {
          width: 230px;
          height: 60px;
          border: 2px solid #FFFFFF;
          border-radius: 10px;
          margin-top: 0px;
          margin-bottom: 15px;
          margin-top: 5px;
          top: 35px; }
          .wrap .popup__active .popup__buttons .buttons__cibord-box .popup__button .buttons__img {
            width: 30px; }
          .wrap .popup__active .popup__buttons .buttons__cibord-box .popup__button .buttons__text {
            font-size: 16px;
            line-height: 27px;
            margin-left: 15px; }
  .wrap .homePage .swiper__bg1 {
    background-size: cover; }
  .wrap .homePage .swiper__bg2 {
    background-size: cover; }
  .wrap .homePage .swiper__bg3 {
    background-size: cover; }
  .wrap .homePage .swiper__bg4 {
    background-size: cover; }
  .wrap .homePage .swiper__bg5 {
    background-size: cover; }
  .wrap .homePage .swiper__bg6 {
    background-size: cover; }
  .wrap .homePage .swiper__bg7 {
    background-size: cover; }
  .wrap .homePage .swiper__bg8 {
    background-size: cover; }
  .wrap .homePage .header {
    width: 100%;
    height: 23vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 30px;
    padding-right: 30px; }
    .wrap .homePage .header .logo svg {
      width: 200px; }
    .wrap .homePage .header .navigation {
      display: none; }
    .wrap .homePage .header .bueger__box {
      z-index: 10;
      display: flex;
      flex-direction: column;
      z-index: 100;
      padding-top: 5px; }
      .wrap .homePage .header .bueger__box .burger__menu__active {
        padding-top: 100px; }
        .wrap .homePage .header .bueger__box .burger__menu__active .burger__text {
          font-size: 24px;
          line-height: 49px;
          margin-top: 15px;
          margin-bottom: 15px; }
  .wrap .homePage .main {
    width: 100%;
    height: 87vh;
    padding-left: 30px;
    padding-right: 35px;
    padding-top: 5px; }
    .wrap .homePage .main .sound__container {
      display: flex;
      flex-direction: column;
      align-items: center; }
      .wrap .homePage .main .sound__container .sound__box {
        width: 160px;
        height: 160px; }
        .wrap .homePage .main .sound__container .sound__box .sound__bg {
          width: 110px;
          height: 110px; }
          .wrap .homePage .main .sound__container .sound__box .sound__bg .sound__main {
            width: 65px;
            height: 65px; }
            .wrap .homePage .main .sound__container .sound__box .sound__bg .sound__main .play {
              width: 30px;
              height: 30px;
              position: relative;
              left: 3px;
              transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
              transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275); }
            .wrap .homePage .main .sound__container .sound__box .sound__bg .sound__main .pause {
              width: 1px;
              height: 1px;
              position: absolute;
              transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
              transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275); }
            .wrap .homePage .main .sound__container .sound__box .sound__bg .sound__main .play__active {
              width: 0px;
              height: 0px;
              transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
              transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275); }
            .wrap .homePage .main .sound__container .sound__box .sound__bg .sound__main .pause__active {
              width: 30px;
              height: 30px;
              transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
              transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275); }
        .wrap .homePage .main .sound__container .sound__box::before {
          content: "";
          width: 160px;
          height: 160px; }
      .wrap .homePage .main .sound__container .visualaiser__container {
        margin-left: 0px; }
    .wrap .homePage .main .arrow__container {
      display: none; }
    .wrap .homePage .main .visualaiser__container {
      display: flex;
      flex-direction: column;
      align-items: center; }
      .wrap .homePage .main .visualaiser__container .sound__boxx {
        width: 350px;
        display: flex;
        justify-content: center; }
        .wrap .homePage .main .visualaiser__container .sound__boxx .sound__name {
          font-size: 26px;
          line-height: 30px;
          letter-spacing: 0.075em;
          text-align: center;
          margin-right: 10px;
          margin-top: 10px; }
        .wrap .homePage .main .visualaiser__container .sound__boxx .sound__musican {
          font-size: 22px;
          line-height: 30px;
          letter-spacing: 0.075em;
          margin-left: 5px;
          margin-top: 5px; }
      .wrap .homePage .main .visualaiser__container .sound-wave {
        width: 340px;
        height: 80px;
        margin-top: 30px;
        display: flex;
        justify-content: center; }
      .wrap .homePage .main .visualaiser__container .wisualText {
        display: none; }
      .wrap .homePage .main .visualaiser__container .bar {
        height: 40px;
        width: 25px; }
      .wrap .homePage .main .visualaiser__container .bar__none {
        display: none; }
  .wrap .LivePage {
    height: 285vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start; }
    .wrap .LivePage .live__left {
      width: 100%;
      height: auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-top: 35px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      margin-right: 0px;
      margin-left: 0px;
      padding-right: 0px;
      padding-left: 0px; }
      .wrap .LivePage .live__left .live__card {
        width: 220px;
        height: 220px;
        padding-top: 20px;
        margin-top: 20px;
        margin-bottom: 20px;
        margin-right: 0px;
        padding-left: 4px;
        padding-right: 4px; }
        .wrap .LivePage .live__left .live__card .card__img {
          width: 80px;
          height: 80px; }
        .wrap .LivePage .live__left .live__card .card__titel {
          font-size: 18px;
          line-height: 20px;
          margin-top: 8px;
          text-align: center; }
        .wrap .LivePage .live__left .live__card .card__box {
          margin-top: 8px; }
          .wrap .LivePage .live__left .live__card .card__box .card__info-text {
            font-size: 18px;
            line-height: 20px;
            margin-left: 5px;
            margin-right: 5px; }
    .wrap .LivePage .life__center {
      width: 100%;
      position: absolute;
      margin-top: 1040px;
      z-index: 99;
      padding-left: 30px;
      padding-right: 30px; }
      .wrap .LivePage .life__center .center__titel {
        font-size: 32px;
        line-height: 30px; }
      .wrap .LivePage .life__center .center__box .center__titel-des {
        font-size: 24px;
        line-height: 25px;
        margin-top: 30px; }
      .wrap .LivePage .life__center .center__box .center__description {
        font-size: 18px;
        line-height: 20px;
        margin-top: 10px; }
      .wrap .LivePage .life__center .life__button {
        width: 200px;
        height: 65px;
        margin-top: 40px;
        font-size: 16px;
        line-height: 20px; }
    .wrap .LivePage .live__right {
      width: 100%;
      height: auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-top: 0px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      margin-right: 0px;
      margin-left: 0px;
      padding-right: 0px;
      padding-left: 0px; }
      .wrap .LivePage .live__right .live__card {
        width: 220px;
        height: 220px;
        padding-top: 20px;
        margin-top: 20px;
        margin-bottom: 20px;
        margin-right: 0px;
        padding-left: 4px;
        padding-right: 4px; }
        .wrap .LivePage .live__right .live__card .card__img {
          width: 80px;
          height: 80px; }
        .wrap .LivePage .live__right .live__card .card__titel {
          font-size: 18px;
          line-height: 20px;
          margin-top: 8px;
          text-align: center; }
        .wrap .LivePage .live__right .live__card .card__box {
          margin-top: 8px; }
          .wrap .LivePage .live__right .live__card .card__box .card__info-text {
            font-size: 18px;
            line-height: 20px;
            margin-left: 5px;
            margin-right: 5px; }
    .wrap .LivePage::after {
      display: none; }
  .wrap .about__page {
    height: 120vh;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
    padding-top: 150px; }
    .wrap .about__page .about__titel {
      font-size: 32px;
      line-height: 20px;
      text-align: center; }
    .wrap .about__page .about__main {
      margin-top: 50px;
      display: flex;
      flex-direction: column-reverse; }
      .wrap .about__page .about__main .about__left {
        width: 100%;
        height: auto;
        padding-right: 0px;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-bottom: 80px; }
        .wrap .about__page .about__main .about__left .about__button {
          width: 260px;
          height: 80px;
          margin-top: 50px;
          font-size: 20px;
          line-height: 25px; }
        .wrap .about__page .about__main .about__left .about__description {
          font-size: 18px;
          line-height: 20px;
          text-align: center;
          margin-top: 30px; }
      .wrap .about__page .about__main .about__right {
        width: 100%;
        padding-left: 0px; }
        .wrap .about__page .about__main .about__right .about__img {
          width: 330px;
          height: 210px; }
        .wrap .about__page .about__main .about__right .about__button {
          width: 250px;
          height: 75px;
          margin-top: 45px;
          font-size: 20px;
          line-height: 20px; }
  .wrap .team__page {
    padding-top: 200px; }
    .wrap .team__page .team__titel {
      font-size: 32px;
      line-height: 30px;
      text-align: center; }
    .wrap .team__page .team__container {
      width: 100%;
      margin-top: 10px;
      padding-bottom: 70px;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-left: 0px;
      padding-right: 0px; }
      .wrap .team__page .team__container .team__card {
        width: 300px;
        height: 420px;
        margin-left: 20px;
        margin-right: 20px;
        margin-top: 40px; }
        .wrap .team__page .team__container .team__card .card__top .card__img::before {
          width: 285px;
          font-size: 14px;
          line-height: 18px;
          margin-bottom: 35px; }
        .wrap .team__page .team__container .team__card .card__top .card__img::after {
          width: 40px;
          height: 25px; }
        .wrap .team__page .team__container .team__card .card__top .card__img .card__kolo {
          width: 40px;
          height: 40px;
          margin-bottom: 150px; }
        .wrap .team__page .team__container .team__card .card__top .card__img7::before {
          margin-bottom: 5px; }
        .wrap .team__page .team__container .team__card .card__top .card__img5::before {
          margin-bottom: 60px; }
        .wrap .team__page .team__container .team__card .card__bottom {
          width: 100%;
          height: 35%;
          display: flex;
          flex-direction: column;
          align-items: center;
          padding-top: 25px; }
          .wrap .team__page .team__container .team__card .card__bottom .card__titel {
            font-size: 18px;
            line-height: 20px; }
          .wrap .team__page .team__container .team__card .card__bottom .card__name {
            font-size: 22px;
            line-height: 25px;
            margin-top: 8px; }
          .wrap .team__page .team__container .team__card .card__bottom .card__sociable {
            font-size: 18px;
            line-height: 20px;
            margin-top: 20px; }
      .wrap .team__page .team__container::after {
        height: 20%;
        margin-top: 300px; }
      .wrap .team__page .team__container::before {
        height: 30%;
        margin-top: 2000px; }
  .wrap .friends__page {
    padding-top: 60px; }
    .wrap .friends__page .friends__titel {
      font-size: 32px;
      line-height: 30px; }
    .wrap .friends__page .friend__carusel {
      width: 80%;
      height: 400px; }
      .wrap .friends__page .friend__carusel .swiper-slide {
        width: auto;
        height: 350px;
        margin-right: 0px;
        display: flex;
        align-items: center;
        margin-left: 100px;
        margin-right: 100px; }
      .wrap .friends__page .friend__carusel .slider__item .fr1 {
        width: 150px; }
      .wrap .friends__page .friend__carusel .slider__item .fr2 {
        width: 250px; }
      .wrap .friends__page .friend__carusel .slider__item .fr3 {
        width: 300px; }
  .wrap .footer {
    height: 100vh;
    margin-top: 80px;
    padding-top: 40px;
    padding-left: 30px;
    padding-right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 80px; }
    .wrap .footer .left__footer {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center; }
      .wrap .footer .left__footer .footer__logo {
        width: 240px; }
      .wrap .footer .left__footer .footer__description {
        font-size: 18px;
        line-height: 22px;
        margin-top: 5px;
        text-align: center; }
    .wrap .footer .center__footer .center__media {
      display: none; }
    .wrap .footer .center__footer .center__nav {
      display: none; }
    .wrap .footer .right__footer {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-top: 0px;
      margin-top: 0px;
      padding-bottom: 200px;
      position: relative;
      bottom: 60px; }
      .wrap .footer .right__footer .center__titel {
        font-size: 22px;
        line-height: 18px;
        padding-bottom: 10px;
        text-align: center; }
      .wrap .footer .right__footer .footer__box {
        display: flex;
        justify-content: center;
        margin-top: 20px; }
        .wrap .footer .right__footer .footer__box .footer__icon {
          width: 30px;
          height: 30px; }
        .wrap .footer .right__footer .footer__box .footer__text {
          font-size: 18px;
          line-height: 20px;
          margin-left: 5px;
          text-align: center; }
      .wrap .footer .right__footer .socibale__box {
        display: flex;
        justify-content: center;
        margin-top: 40px;
        right: 0px; }
        .wrap .footer .right__footer .socibale__box .socibale__icon {
          width: 40px;
          height: 40px;
          margin-left: 10px;
          margin-right: 10px; } }

/*# sourceMappingURL=style.css.map */
