@font-face {
  font-family: "OpenSans";
  font-display: swap;
  src: url("../fonts/OpenSans-Regular.woff2") format("woff2"), url("../fonts/OpenSans-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "OpenSans";
  font-display: swap;
  src: url("../fonts/OpenSans-SemiBold.woff2") format("woff2"), url("../fonts/OpenSans-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "OpenSans";
  font-display: swap;
  src: url("../fonts/OpenSans-Bold.woff2") format("woff2"), url("../fonts/OpenSans-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

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

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

input,
button,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

::-webkit-input-placeholder {
  opacity: 1;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

::-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity .3s;
  transition: opacity .3s;
}

:-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity .3s;
  transition: opacity .3s;
}

:-ms-input-placeholder {
  opacity: 1;
  -ms-transition: opacity .3s;
  transition: opacity .3s;
}

:focus::-webkit-input-placeholder {
  opacity: 0;
}

:focus::-moz-placeholder {
  opacity: 0;
}

:focus:-moz-placeholder {
  opacity: 0;
}

:focus:-ms-input-placeholder {
  opacity: 0;
}

html {
  height: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  height: 100%;
  min-width: 320px;
  background-color: #edeff6;
  font-family: 'OpenSans', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #454863;
  word-wrap: break-word;
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100%;
  overflow: hidden;
}

.container {
  max-width: 1220px;
  width: 100%;
  margin: 0 auto;
  padding: 0 25px;
}

.page-content {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-top: 125px;
}

.page-content_home {
  padding-top: 0;
}

.page-content_profile {
  padding: 215px 0 60px;
  //background: url(../images/profile-bg.svg) center top 200px/1802px auto no-repeat;
}

.burger-btn {
  display: none;
  width: 25px;
  height: 18px;
  position: relative;
  z-index: 10;
  cursor: pointer;
  margin-left: 25px;
}

.burger-btn__line,
.burger-btn__line::before,
.burger-btn__line::after {
  width: 25px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  -o-transition: transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
}

.burger-btn__line {
  top: 8px;
}

.burger-btn__line::before {
  content: '';
  -webkit-transform: translateY(-7px);
      -ms-transform: translateY(-7px);
          transform: translateY(-7px);
}

.burger-btn__line::after {
  content: '';
  -webkit-transform: translateY(7px);
      -ms-transform: translateY(7px);
          transform: translateY(7px);
}

.burger-btn.active .burger-btn__line {
  height: 0;
}

.burger-btn.active .burger-btn__line::before {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.burger-btn.active .burger-btn__line::after {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.btn {
  display: inline-block;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  background-color: #fb6d3a;
  -webkit-box-shadow: 0 3px 16px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 16px 0 rgba(0, 0, 0, 0.16);
  padding: 14px 30px;
  font-weight: 600;
  letter-spacing: 0.28px;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  -webkit-transition: background-color .2s ease 0s;
  -o-transition: background-color .2s ease 0s;
  transition: background-color .2s ease 0s;
}

.btn:hover {
  background-color: #fa4808;
}

.btn_white {
  padding: 12px 30px;
  background-color: #fff;
  border: 1px solid #fb6d3a;
  color: #fb6d3a;
  -webkit-transition: background-color .2s ease 0s, border-color .2s ease 0s;
  -o-transition: background-color .2s ease 0s, border-color .2s ease 0s;
  transition: background-color .2s ease 0s, border-color .2s ease 0s;
}

.btn_white:hover {
  border-color: #fa4808;
  background-color: #fa4808;
  color: #fff;
}

.btn_green {
  background-color: #5eccc5;
}

.btn_green:hover {
  background-color: #3bbcb3;
}

.btn_violet {
  background-color: #5a46aa;
}

.btn_violet:hover {
  background-color: #473786;
}

.btn:focus {
  outline: none;
}

.btn:active {
  -webkit-transform: scale(0.98);
      -ms-transform: scale(0.98);
          transform: scale(0.98);
}

.section-head {
  text-align: center;
  margin-bottom: 60px;
}

.section-head_white .section-head__title,
.section-head_white .section-head__text {
  color: #fff;
}

.section-head__title {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.34;
  letter-spacing: 0.64px;
  color: #161616;
  text-transform: uppercase;
}

.section-head__text {
  font-size: 16px;
  font-weight: 600;
  color: #76818c;
  margin-top: 20px;
}

.user-block {
  padding: 35px 15px;
  border-radius: 8px;
  -webkit-box-shadow: 0 10px 30px 0 rgba(90, 70, 170, 0.24);
          box-shadow: 0 10px 30px 0 rgba(90, 70, 170, 0.24);
  background-color: #fff;
  margin-bottom: 30px;
}

.user-block__title {
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 1px;
  color: #454863;
  margin-bottom: 30px;
}

.field {
  max-width: 570px;
  width: 100%;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  padding: 12px 24px;
  border-radius: 8px;
  border: solid 1px #454863;
  background-color: #fff;
  font-size: 15px;
  letter-spacing: 0.8px;
  color: #454863;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.header {
  background: #5a46aa;
  -webkit-box-shadow: 0 4px 8px 0 rgba(90, 70, 170, 0.24);
          box-shadow: 0 4px 8px 0 rgba(90, 70, 170, 0.24);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  -webkit-transition: background-color .5s ease 0s, -webkit-box-shadow .5s ease 0s;
  transition: background-color .5s ease 0s, -webkit-box-shadow .5s ease 0s;
  -o-transition: background-color .5s ease 0s, box-shadow .5s ease 0s;
  transition: background-color .5s ease 0s, box-shadow .5s ease 0s;
  transition: background-color .5s ease 0s, box-shadow .5s ease 0s, -webkit-box-shadow .5s ease 0s;
}

.header.sticky .header__top {
  height: 65px;
}

.header.sticky .header__bottom {
  height: 45px;
}

.header_home {
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.header_home.sticky {
  background-color: #5a46aa;
  -webkit-box-shadow: 0 4px 8px 0 rgba(90, 70, 170, 0.24);
          box-shadow: 0 4px 8px 0 rgba(90, 70, 170, 0.24);
}

.header_home .header__top {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.header__top {
  height: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: height .5s ease 0s, -webkit-box-shadow .5s ease 0s;
  transition: height .5s ease 0s, -webkit-box-shadow .5s ease 0s;
  -o-transition: height .5s ease 0s, box-shadow .5s ease 0s;
  transition: height .5s ease 0s, box-shadow .5s ease 0s;
  transition: height .5s ease 0s, box-shadow .5s ease 0s, -webkit-box-shadow .5s ease 0s;
}

.header__top_profile {
  -webkit-box-shadow: 0 4px 8px 0 rgba(6, 5, 14, 0.24);
          box-shadow: 0 4px 8px 0 rgba(6, 5, 14, 0.24);
  position: relative;
}

.header__bottom {
  height: 55px;
  -webkit-transition: height .5s ease 0s;
  -o-transition: height .5s ease 0s;
  transition: height .5s ease 0s;
}

.header__bottom_profile {
  height: 70px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.logo {
  height: 50px;
  position: relative;
  z-index: 10;
}

.logo img {
  max-height: 100%;
}

.menu {
  margin-left: auto;
}

.menu__list {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.menu__list li {
  list-style: none;
  margin-left: 30px;
}

.menu__list a {
  display: block;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.7px;
  color: #fff;
  -webkit-transition: color .2s ease 0s;
  -o-transition: color .2s ease 0s;
  transition: color .2s ease 0s;
  position: relative;
}

.menu__list a::before {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #fb6d3a;
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: -webkit-transform .2s ease 0s;
  transition: -webkit-transform .2s ease 0s;
  -o-transition: transform .2s ease 0s;
  transition: transform .2s ease 0s;
  transition: transform .2s ease 0s, -webkit-transform .2s ease 0s;
}

.menu__list a:hover {
  color: #fb6d3a;
}

.menu__list a:hover::before {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.lang {
  display: inline-block;
  cursor: pointer;
  position: relative;
  z-index: 10;
  margin-left: 30px;
}

.lang__dropbtn {
  max-width: 80px;
  height: 28px;
  border-radius: 25px;
  background-color: #fb6d3a;
  padding: 0 11px;
  font-size: 10px;
  line-height: 28px;
  letter-spacing: 0.55px;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.lang__droplist {
  background-color: #fda585;
  border-radius: 2px;
  position: absolute;
  top: 14px;
  right: 0;
  width: 100%;
  padding: 20px 0 0;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: opacity .3s ease 0s, -webkit-transform .3s ease 0s;
  transition: opacity .3s ease 0s, -webkit-transform .3s ease 0s;
  -o-transition: opacity .3s ease 0s, transform .3s ease 0s;
  transition: opacity .3s ease 0s, transform .3s ease 0s;
  transition: opacity .3s ease 0s, transform .3s ease 0s, -webkit-transform .3s ease 0s;
}

.lang__droplist a {
  text-decoration: none;
  display: block;
  font-size: 10px;
  color: #fff;
  text-transform: uppercase;
  padding: 5px;
  -webkit-transition: background-color .3s ease 0s;
  -o-transition: background-color .3s ease 0s;
  transition: background-color .3s ease 0s;
}

.lang__droplist a:last-child {
  border-radius: 0 0 2px 2px;
}

.lang__droplist a:hover {
  background-color: #fb6d3a;
}

.lang:hover .lang__droplist {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.auth {
  position: relative;
  z-index: 10;
  margin-left: 30px;
}

.auth_mob {
  display: none;
}

.auth__btn {
  padding: 10px 30px;
}

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

.time_mob {
  display: none;
}

.time_profile {
  height: auto;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.time_profile .time__col {
  color: #000;
  text-align: right;
}

.time__col {
  margin: 0 25px;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 1.3px;
  color: #fff;
}

.time__col span {
  color: #fb6d3a;
}

.profile-nav {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.profile-nav_mob {
  display: none;
}

.profile-nav_mob .profile-nav__list {
  padding: 15px 0;
  display: block;
  width: 100%;
}

.profile-nav_mob .profile-nav__list li {
  width: 100%;
  margin: 0;
}

.profile-nav_mob .profile-nav__list a {
  display: block;
  width: 100%;
  padding: 15px 25px;
  font-size: 16px;
}

.profile-nav__list {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.profile-nav__list li {
  list-style: none;
  margin-right: 30px;
}

.profile-nav__list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #000;
  -webkit-transition: color .2s ease 0s;
  -o-transition: color .2s ease 0s;
  transition: color .2s ease 0s;
  white-space: nowrap;
}

.profile-nav__list a.active {
  color: #fb6d3a;
}

.profile-nav__list a.active svg {
  fill: #fb6d3a;
}

.profile-nav__list a:hover {
  color: #fb6d3a;
}

.profile-nav__list a:hover svg {
  fill: #fb6d3a;
}

.profile-nav__list a svg {
  width: 22px;
  height: 22px;
  margin-right: 15px;
  -webkit-transition: fill .2s ease 0s;
  -o-transition: fill .2s ease 0s;
  transition: fill .2s ease 0s;
}

.offer {
  min-height: 100vh;
  background: url(../images/offer-bg.svg) center center/cover no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 145px 0 150px;
  position: relative;
}

.offer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.offer__body {
  width: 55%;
  padding-right: 60px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  position: relative;
  z-index: 2;
}

.offer__title {
  font-size: 42px;
  font-weight: bold;
  line-height: 1.33;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 30px;
}

.offer__subtitle {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.31;
  letter-spacing: 0.8px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.offer__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.offer__btns .btn {
  margin-right: 30px;
}

.offer__btns .btn:last-child {
  margin: 0;
}

.offer__img {
  width: 74%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-align: center;
  margin-right: -28%;
}

.offer__img img {
  max-width: 100%;
}

.offer__anchor {
  display: block;
  position: absolute;
  bottom: 95px;
  left: calc(50% - 17px);
}

.offer__anchor img {
  display: block;
  width: 34px;
  height: 18px;
  background: url(../images/down-arrow.svg) center/contain no-repeat;
  -webkit-animation: go-to 1.2s infinite;
          animation: go-to 1.2s infinite;
}

.offer__anchor::before,
.offer__anchor::after {
  content: '';
  width: 34px;
  height: 18px;
  background: url(../images/down-arrow.svg) center/contain no-repeat;
  position: absolute;
  left: 0;
  -webkit-animation: go-to 1.2s infinite;
          animation: go-to 1.2s infinite;
}

.offer__anchor::before {
  top: -10px;
  -webkit-animation-delay: -0.1s;
          animation-delay: -0.1s;
}

.offer__anchor::after {
  top: -20px;
  -webkit-animation-delay: -0.2s;
          animation-delay: -0.2s;
}

@-webkit-keyframes go-to {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0.75;
  }

  100% {
    opacity: 0;
  }
}

@keyframes go-to {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0.75;
  }

  100% {
    opacity: 0;
  }
}

.offer-form__input {
  display: block;
  max-width: 570px;
  width: 570px;
  height: 54px;
  border-radius: 150px;
  border: solid 1px #454863;
  padding: 0 30px;
  font-size: 14px;
  letter-spacing: 0.75px;
  color: #000;
  margin-bottom: 20px;
}

.offer-form__input:focus {
  outline: none;
}

.statistics {
  padding: 100px 0;
}

.statistics__section-head {
  margin-bottom: 40px;
}

.statistics__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.statistics__col {
  max-width: 25%;
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
  padding: 10px;
}

.statistics__item {
  max-width: 270px;
  height: 100%;
  background-position: center bottom;
  background-size: 100% auto;
  background-repeat: no-repeat;
  padding: 0 30px 200px;
  text-align: center;
  margin: 0 auto;
}

.statistics__item_orange {
  background-image: url(../images/statistics-bg-1.svg);
}

.statistics__item_blue {
  background-image: url(../images/statistics-bg-2.svg);
}

.statistics__item_violet {
  background-image: url(../images/statistics-bg-3.svg);
}

.statistics__item_green {
  background-image: url(../images/statistics-bg-4.svg);
}

.statistics__img {
  height: 60px;
  text-align: center;
  margin-bottom: 28px;
}

.statistics__img img {
  max-height: 100%;
}

.statistics__count {
  display: block;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.36;
  letter-spacing: 1.1px;
  color: #5a46aa;
  margin-bottom: 15px;
}

.statistics__name {
  font-weight: 600;
  line-height: 1.36;
  letter-spacing: 0.7px;
  color: #5a46aa;
}

.affiliate {
  padding: 100px 0 70px;
  background: url(../images/affiliate-bg.svg) center/cover no-repeat;
}

.affiliate__section-head {
  margin-bottom: 30px;
}

.affiliate__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.affiliate__img {
  width: 430px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 30px;
}

.affiliate__img img {
  max-width: 100%;
}

.affiliate__block {
  max-width: calc(50% + 35px);
  -ms-flex-preferred-size: calc(50% + 35px);
      flex-basis: calc(50% + 35px);
}

.affiliate__col {
  padding: 15px 0;
  position: relative;
}

.affiliate__col::before {
  content: '';
  width: 2px;
  height: 100%;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 34px;
}

.affiliate__col:first-child::before {
  height: 50%;
}

.affiliate__col:last-child {
  margin-bottom: 0;
}

.affiliate__col:last-child::before {
  height: 50%;
  bottom: auto;
  top: 0;
}

.affiliate__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.affiliate__item:last-child {
  margin-bottom: 0;
}

.affiliate__item_orange .affiliate__num {
  background-color: #fb6d3a;
}

.affiliate__item_orange .affiliate__title {
  color: #fb6d3a;
}

.affiliate__item_blue .affiliate__num {
  background-color: #51a3ff;
}

.affiliate__item_blue .affiliate__title {
  color: #51a3ff;
}

.affiliate__item_violet .affiliate__num {
  background-color: #955eff;
}

.affiliate__item_violet .affiliate__title {
  color: #955eff;
}

.affiliate__item_green .affiliate__num {
  background-color: #5eccc5;
}

.affiliate__item_green .affiliate__title {
  color: #5eccc5;
}

.affiliate__num {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 1.2px;
  color: #fff;
  position: relative;
  z-index: 2;
  margin-right: 60px;
}

.affiliate__body {
  border-radius: 8px;
  background-color: #ffffff;
  padding: 13px 30px;
}

.affiliate__title {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.36;
  letter-spacing: 1.1px;
  margin-bottom: 6px;
}

.affiliate__text {
  font-weight: 600;
  line-height: 1.36;
  letter-spacing: 0.7px;
  color: #666e7b;
}

.operations {
  padding: 100px 0 50px;
}

.operations__section-head {
  margin-bottom: 30px;
}

.operations__nav {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -20px 40px;
  position: relative;
  z-index: 2;
}

.operations__btn {
  display: inline-block;
  list-style: none;
  padding: 14px 30px;
  background-color: #fff;
  border: 1px solid #fb6d3a;
  border-radius: 150px;
  -webkit-box-shadow: 0 3px 16px 0 rgba(94, 217, 250, 0.24);
          box-shadow: 0 3px 16px 0 rgba(94, 217, 250, 0.24);
  font-weight: 600;
  letter-spacing: 0.28px;
  color: #fb6d3a;
  text-transform: uppercase;
  text-align: center;
  margin: 0 20px;
  -webkit-transition: border-color .2s ease 0s, background-color .2s ease 0s;
  -o-transition: border-color .2s ease 0s, background-color .2s ease 0s;
  transition: border-color .2s ease 0s, background-color .2s ease 0s;
  cursor: pointer;
}

.operations__btn:hover:not(.active) {
  color: #fff;
  border-color: #fa4808;
  background-color: #fa4808;
}

.operations__btn.active {
  background-color: #fb6d3a;
  color: #fff;
}

.operations__table-box {
  overflow-x: auto;
  border-radius: 8px;
  -webkit-box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.16);
  background-color: #ffffff;
  padding: 22px 35px 14px;
}

.operations-table {
  width: 100%;
  border-collapse: collapse;
  white-space: nowrap;
}

.operations-table thead {
  border-bottom: 2px solid #955eff;
}

.operations-table tbody tr:nth-child(odd) {
  background-color: #fff;
}

.operations-table tbody tr:nth-child(even) {
  background-color: #edeff6;
}

.operations-table th {
  padding: 0 15px 12px;
  font-weight: bold;
  line-height: 1.71;
  letter-spacing: 0.7px;
  color: #454863;
  text-transform: uppercase;
  text-align: left;
}

.operations-table td {
  padding: 24px 15px;
  font-size: 16px;
  letter-spacing: 0.8px;
  text-align: left;
}

.operations-table td:first-child {
  border-radius: 4px 0 0 4px;
}

.operations-table td:last-child {
  border-radius: 0 4px 4px 0;
}

.operations-table__date {
  font-weight: 600;
  color: #000;
}

.operations-table__wallet {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #5a46aa;
}

.operations-table__img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: inline-block;
  height: 22px;
  margin-right: 14px;
}

.operations-table__img img {
  width: auto;
  max-height: 100%;
}

.operations-table__amount {
  font-size: 16px;
  font-weight: bold;
  color: #5eccc5;
}

.faq {
  padding: 50px 0 20px;
}

.faq__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -15px;
}

.faq__col {
  max-width: 50%;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  padding: 0 15px;
}

.faq-item {
  border-radius: 8px;
  -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.16);
  background-color: #fff;
  padding: 15px 0;
  margin-bottom: 30px;
}

.faq-item__question {
  padding: 0 58px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.31;
  color: #000;
  cursor: pointer;
  position: relative;
}

.faq-item__question.active::after {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.faq-item__question::before {
  content: '';
  width: 17px;
  height: 30px;
  background: url(../images/question.svg) center/contain no-repeat;
  position: absolute;
  left: 20px;
  top: calc(50% - 15px);
}

.faq-item__question::after {
  content: '';
  width: 24px;
  height: 14px;
  background: url(../images/arrow-down.svg) center/contain no-repeat;
  position: absolute;
  right: 20px;
  top: calc(50% - 7px);
  -webkit-transition: -webkit-transform .2s ease 0s;
  transition: -webkit-transform .2s ease 0s;
  -o-transition: transform .2s ease 0s;
  transition: transform .2s ease 0s;
  transition: transform .2s ease 0s, -webkit-transform .2s ease 0s;
}

.faq-item__answer {
  padding-top: 14px;
  border-top: 1px solid #5a46aa;
  font-size: 13px;
  line-height: 1.31;
  letter-spacing: 0.65px;
  color: #666e7b;
  margin: 15px 20px 0 58px;
}

.partners {
  padding: 50px 0 90px;
}

.partners__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  margin: 0 -10px;
}
/*
.partners__inner::before {
  content: '';
  width: 462px;
  height: 369px;
  background: url(../images/decor-5.svg) center/contain no-repeat;
  position: absolute;
  bottom: 0;
  left: -500px;
}


.partners__inner::after {
  content: '';
  width: 438px;
  height: 438px;
  opacity: 0.06;
  background-color: #4c68ef;
  border-radius: 50%;
  position: absolute;
  bottom: -135px;
  right: -626px;
}
*/
.partners__img-box {
  width: 150px;
  height: 60px;
  border-radius: 8px;
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 10px 20px;
}

.partners__img {
  width: 120px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.partners__img img {
  max-width: 100%;
  max-height: 100%;
}

.rules {
  padding: 70px 0 120px;
}

.rules__section-head {
  margin-bottom: 30px;
}

.rules__inner {
  border-radius: 8px;
  -webkit-box-shadow: 0 10px 30px 0 rgba(179, 200, 231, 0.5);
          box-shadow: 0 10px 30px 0 rgba(179, 200, 231, 0.5);
  background-color: #fff;
  padding: 30px 15px 10px;
}

.rules__subtitle {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.33;
  letter-spacing: 0.9px;
  color: #000;
  margin-bottom: 20px;
}

.rules-block {
  line-height: 1.36;
  letter-spacing: 0.7px;
  color: #454863;
  margin-bottom: 25px;
}

.rules-block__title {
  color: #fb6d3a;
  margin-bottom: 20px;
}

.rules-block__list {
  padding: 0;
}

.rules-block__list li {
  list-style: none;
  margin-bottom: 20px;
}

.footer {
  padding: 60px 0 20px;
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 55, 172, 0.16);
          box-shadow: 0 0 20px 0 rgba(0, 55, 172, 0.16);
  background-color: #5a46aa;
}

.contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 -15px 90px;
}

.contacts__item {
  -ms-flex-preferred-size: 33.333%;
      flex-basis: 33.333%;
  text-align: center;
  padding: 0 15px;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
}

.contacts__item:first-child {
  text-align: left;
}

.contacts__item:last-child {
  text-align: right;
}

.contacts a {
  text-decoration: none;
}

.contacts a:hover {
  color: #fb6d3a;
  text-decoration: underline;
}

.copyright {
  text-align: center;
  letter-spacing: 0.7px;
  color: #fff;
}

.user-info_referral {
  padding-top: 40px;
  border-top: 1px solid #c8d6ee;
  margin-top: 20px;
}

.user-info__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 14px;
}

.user-info__group:last-child {
  margin-bottom: 0;
}

.user-info__title {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 340px;
  -ms-flex-preferred-size: 340px;
      flex-basis: 340px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.33;
  letter-spacing: 1.05px;
  color: #5a46aa;
  margin-right: 30px;
}

.user-info__btn {
  margin-left: 30px;
}

.deposit-btn {
  width: 951px;
  text-align: right;
  margin-bottom: 30px;
}

.deposit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.deposit__qr-code {
  -ms-flex-preferred-size: 244px;
      flex-basis: 244px;
  width: 244px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 244px;
  margin-right: 30px;
}

.deposit__qr-code img {
  max-width: 100%;
  max-height: 100%;
}

.deposit__subtitle {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.31;
  letter-spacing: 0.8px;
  color: #454863;
  margin-bottom: 25px;
}

.deposit__subtitle span {
  color: #fb6d3a;
}

.deposit__addr {
  margin-bottom: 15px;
}

.deposit__addr-title {
  display: block;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.33;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.deposit__field {
  text-align: center;
  max-width: 100%;
}

.deposit__message {
  max-width: 570px;
  border-radius: 4px;
  border: solid 1px #e4e4e5;
  background-color: #5a46aa;
  padding: 15px 25px;
  font-size: 15px;
  line-height: 1.63;
  letter-spacing: 0.8px;
  color: #fff;
  margin-top: 40px;
}

.deposit__message span {
  font-weight: bold;
}

.user-stats {
  border-radius: 4px;
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  background-color: #fff;
  padding: 20px 0;
}

.user-stats__table {
  overflow-x: auto;
}

.user-table {
  width: 100%;
  border-collapse: collapse;
  white-space: nowrap;
}

.user-table thead {
  border-bottom: 2px solid #5eccc5;
}

.user-table th {
  padding: 0 25px 24px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.33;
  letter-spacing: 0.6px;
  color: #454863;
  text-transform: uppercase;
  text-align: left;
}

.user-table td {
  padding: 15px 25px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.33;
  letter-spacing: 0.6px;
  color: #454863;
  text-align: left;
}

.user-table td.cell-up {
  text-transform: uppercase;
}

.user-table td.cell-green {
  font-weight: 700;
  color: #5eccc5;
}

.user-table td .cell-rect {
  border-radius: 4px;
  background-color: #5eccc5;
  padding: 4px 10px;
  color: #fff;
  text-transform: uppercase;
}

.user-table tbody tr:nth-child(odd) {
  background-color: #fffe;
}

.user-table tbody tr:nth-child(even) {
  background-color: #edeff6;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 20px 20px 0;
}

.pagination__arrow,
.pagination__num {
  text-decoration: none;
  -ms-flex-preferred-size: 30px;
      flex-basis: 30px;
  height: 30px;
  border: solid 1px #dedede;
  background-color: #ffffff;
  text-align: center;
  font-size: 12px;
  line-height: 30px;
  letter-spacing: 0.6px;
  color: #454863;
  -webkit-transition: all .2s ease 0s;
  -o-transition: all .2s ease 0s;
  transition: all .2s ease 0s;
}

.pagination__arrow:hover,
.pagination__num:hover {
  background-color: #dedede;
  color: #fff;
}

.pagination__arrow.active,
.pagination__num.active {
  background-color: #5eccc5;
  border-color: #5eccc5;
  color: #fff;
}

.pagination__arrow {
  color: #dedede;
}

.referrals-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin: 60px 0 10px;
}

.referrals-info__item {
  max-width: 570px;
  -ms-flex-preferred-size: 570px;
      flex-basis: 570px;
  background-color: #fff;
  border-radius: 8px;
  border: solid 1px #e4e4e5;
  padding: 14px 20px 14px 90px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 30px 30px 0;
}

.referrals-info__item:last-child {
  margin-right: 0;
}

.referrals-info__item::before {
  content: '';
  width: 70px;
  height: 100%;
  border-radius: 8px 0 0 8px;
  position: absolute;
  top: 0;
  left: 0;
}

.referrals-info__item_team::before {
  background: #51a3ff url(../images/team.svg) center/40px 35px no-repeat;
}

.referrals-info__item_wallet::before {
  background: #5eccc5 url(../images/wallet.svg) center/40px 40px no-repeat;
}

.referrals-info__amount {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: block;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.33;
  letter-spacing: 0.9px;
  margin-bottom: 5px;
}

.referrals-info__amount_blue {
  color: #51a3ff;
}

.referrals-info__amount_green {
  color: #5eccc5;
}

.referrals-info__title {
  font-weight: 600;
  line-height: 1.71;
  letter-spacing: 0.7px;
  color: #454863;
}

.share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.share__title {
  display: block;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.33;
  letter-spacing: 1.05px;
  color: #fb6d3a;
  margin-right: 30px;
}

@media screen and (min-width: 992px) {
  .time_profile .time__col {
    font-size: 11px;
    margin: 0 0 0 20px;
  }
}

@media screen and (min-width: 1921px) {
  .offer {
    min-height: auto;
  }
}

@media screen and (max-width: 1600px) {
  .offer__img {
    width: 45%;
    margin-right: 0;
  }
}

@media screen and (max-width: 1250px) {
  .field {
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }

  .deposit-btn {
    width: 100%;
  }
}

@media screen and (max-width: 1199px) {
  .menu__list li {
    margin-left: 25px;
  }

  .lang {
    margin-left: 25px;
  }

  .auth {
    margin-left: 25px;
  }

  .profile-nav__list li {
    margin-right: 25px;
  }

  .profile-nav__list a svg {
    margin-right: 10px;
  }

  .offer {
    padding: 120px 0 100px;
  }

  .offer__body {
    padding-right: 30px;
  }

  .offer__anchor {
    bottom: 45px;
  }

  .statistics__inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: -50px;
  }

  .statistics__col {
    max-width: 50%;
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    margin-bottom: 50px;
  }

  .affiliate__img {
    width: 30%;
  }

  .affiliate__block {
    max-width: none;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }

  .operations__nav {
    margin-bottom: 30px;
  }

  .contacts__item {
    font-size: 18px;
  }

  .referrals-info {
    margin: 30px 0 0;
  }
}

@media screen and (max-width: 991px) {
  .page-content {
    padding-top: 65px;
  }

  .page-content_home {
    padding-top: 0;
  }

  .page-content_profile {
    padding: 105px 0 50px;
  }

  .burger-btn {
    display: block;
  }

  .section-head {
    margin-bottom: 30px;
  }

  .section-head__title {
    font-size: 26px;
  }

  .user-block {
    padding: 20px 15px;
  }

  .header::before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: #5a46aa;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
  }

  .header.sticky .header__bottom {
    height: auto;
  }

  .header_home {
    background-color: #5a46aa;
    -webkit-box-shadow: 0 4px 8px 0 rgba(90, 70, 170, 0.24);
            box-shadow: 0 4px 8px 0 rgba(90, 70, 170, 0.24);
  }

  .header__top {
    height: 65px;
  }

  .header__bottom {
    display: none;
  }

  .menu {
    position: fixed;
    top: -200%;
    left: 0;
    z-index: 5;
    padding: 65px 0 15px;
    width: 100%;
    max-height: 100%;
    overflow-y: auto;
    background-color: #5a46aa;
    -webkit-box-shadow: 0 4px 8px 0 rgba(90, 70, 170, 0.24);
            box-shadow: 0 4px 8px 0 rgba(90, 70, 170, 0.24);
    -webkit-transition: top .3s ease 0s;
    -o-transition: top .3s ease 0s;
    transition: top .3s ease 0s;
    text-align: center;
  }

  .menu.active {
    top: 0;
  }

  .menu__list {
    display: block;
    padding-top: 15px;
  }

  .menu__list li {
    margin: 0;
  }

  .menu__list a {
    padding: 15px 25px;
    font-size: 16px;
    text-align: center;
  }

  .menu__list a::before {
    display: none;
  }

  .lang {
    margin-left: auto;
  }

  .auth {
    display: none;
  }

  .auth_mob {
    display: block;
    padding: 15px 25px;
    margin-left: 0;
  }

  .time_mob {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 10px 0;
    background-color: #473786;
  }

  .time_profile {
    width: 100%;
  }

  .time__col {
    margin: 0 15px;
  }

  .profile-nav_mob {
    display: block;
    background-color: #f3f3f3;
    text-align: center;
  }

  .offer__inner {
    display: block;
  }

  .offer__body {
    width: auto;
    text-align: center;
    padding-right: 0;
  }

  .offer__title {
    font-size: 32px;
  }

  .offer__img {
    width: 55%;
    margin: 30px auto;
  }

  .offer-form__input {
    width: 100%;
    max-width: 570px;
    padding: 0 20px;
    margin: 0 auto 20px;
  }

  .statistics {
    padding: 70px 0;
  }

  .affiliate {
    padding: 70px 0;
  }

  .affiliate__img {
    display: none;
  }

  .affiliate__num {
    margin-right: 30px;
  }

  .operations {
    padding: 70px 0px 35px;
  }

  .operations__table-box {
    padding: 20px 0 20px;
    border-radius: 0;
    margin: 0 -25px;
  }

  .operations-table th {
    padding: 0 25px 12px;
  }

  .operations-table td {
    padding: 24px 25px;
  }

  .faq {
    padding: 35px 0;
  }

  .faq__inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0;
  }

  .faq__col {
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    padding: 0;
  }

  .faq-item {
    margin-bottom: 20px;
  }

  .partners {
    padding: 35px 0 70px;
  }

  .rules {
    padding: 50px 0;
  }

  .rules__subtitle {
    font-size: 16px;
  }

  .footer {
    padding: 30px 0 20px;
  }

  .contacts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 0 30px;
  }

  .contacts__item {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
    padding: 0;
  }

  .user-info__group {
    display: block;
    margin-bottom: 30px;
  }

  .user-info__title {
    margin-bottom: 10px;
  }

  .user-info__btn {
    margin: 15px 0 0;
  }

  .deposit-btn {
    text-align: left;
  }

  .user-stats {
    border-radius: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    margin: 0 -15px;
  }

  .share {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

@media screen and (max-width: 920px) {
  .deposit {
    display: block;
    text-align: center;
  }

  .deposit__qr-code {
    margin: 0 auto 30px;
  }

  .deposit__field {
    margin: 0 auto;
  }

  .deposit__message {
    margin: 30px auto 0;
  }
}

@media screen and (max-width: 767px) {
  .user-block__title {
    font-size: 26px;
  }

  .offer__btns {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .affiliate__num {
    margin-right: 20px;
  }

  .referrals-info {
    display: block;
  }

  .referrals-info__item {
    margin-right: 0;
  }
}

@media screen and (max-width: 650px) {
  .statistics__col {
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}

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

  .menu__list a {
    padding: 15px 10px;
  }

  .auth_mob {
    padding: 15px 10px;
  }

  .time_mob .time__col {
    font-size: 12px;
  }

  .profile-nav_mob .profile-nav__list a {
    padding: 15px 10px;
  }

  .offer__btns {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .offer__btns .btn {
    -ms-flex-preferred-size: 300px;
        flex-basis: 300px;
    margin: 0 0 20px;
  }

  .affiliate__col::before {
    left: 19px;
  }

  .affiliate__num {
    width: 40px;
    height: 40px;
    margin-right: 20px;
  }

  .affiliate__body {
    padding: 15px;
  }

  .affiliate__title {
    font-size: 18px;
  }

  .affiliate__text {
    font-size: 13px;
  }

  .operations__nav {
    display: block;
    margin-bottom: 20px;
  }

  .operations__btn {
    display: block;
    margin-bottom: 10px;
  }

  .operations__table-box {
    margin: 0 -10px;
  }

  .operations-table th {
    padding: 0 10px 12px;
  }

  .operations-table td {
    padding: 24px 10px;
  }

  .faq-item__question {
    padding: 0 40px;
  }

  .faq-item__question::before {
    left: 12px;
  }

  .faq-item__question::after {
    right: 10px;
  }

  .faq-item__answer {
    margin: 15px 15px 0;
  }

  .pagination {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .share {
    display: block;
  }

  .share__title {
    margin: 0 0 10px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .time_profile .time__col {
    width: 100%;
    margin: 0;
  }
}