html {
  font-size: 1.21vw;
  width: 100vw;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 921px) {
  html {
    font-size: 0.521vw;
  }
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  font-size: 2.4rem;
  position: relative;
  line-height: 1.2;
  -webkit-font-smoothing: antialised;
  background: #0f0f0f;
  width: 100%;
  color: white;
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

img {
  vertical-align: top;
  max-width: 100%;
}

p {
  margin: 0;
}

.wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.main {
  width: 100%;
  overflow-x: hidden;
}
.main__section {
  padding: 10rem 0;
}

.container {
  width: 100%;
  max-width: 80vw;
  margin: 0 auto;
}

.no-br {
  white-space: nowrap;
}

.text--color {
  color: #ffdb60;
}
.text--selected {
  background: #ffdb60;
}
.text--center {
  text-align: center;
}
.text--big {
  font-size: 3.6rem;
}

.btn {
  display: inline-flex;
  gap: 1rem;
  outline: none;
  border: 0;
  justify-content: center;
  column-gap: 1rem;
  align-items: center;
  padding: 3rem 7rem;
  height: 9.5rem;
  font-size: 2.4rem;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  line-height: 1;
  color: #0f0f0f;
  background: #ffdb60;
  border-radius: 2rem;
  position: relative;
  cursor: pointer;
  text-decoration: none;
}
.btn img {
  width: 4rem;
}
.btn svg {
  width: 3.6rem;
}
.btn:hover {
  background: #ffe793;
}
.btn-red {
  background: #fd5e09;
}
.btn-red:hover {
  background: #fd7f3c;
}

.box {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 2rem;
}

.heading {
  font-size: 4rem;
  margin-bottom: 6rem;
  font-family: "Bebas Neue Pro", sans-serif;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
}

.list {
  padding: 0;
  list-style-type: none;
  margin: 0;
}
.list__item {
  position: relative;
  padding-left: 3.5rem;
  margin-bottom: 6rem;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.2;
}
.list__item:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: #ffdb60;
  box-shadow: 0 0 5px #ffdb60;
  transform: translateY(-50%);
}
.list__item:last-child {
  margin-bottom: 0;
}
.list-num {
  padding: 0;
  list-style-type: none;
  margin: 0;
  counter-reset: item;
}
.list-num__item {
  margin-bottom: 2rem;
  height: 9rem;
  padding: 1.5rem 5rem 1.5rem 12.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border-radius: 2rem;
  display: flex;
  align-items: center;
  counter-increment: item;
  position: relative;
  font-family: "Montserrat", sans-serif;
}
.list-num__item:last-child {
  margin-bottom: 0;
}
.list-num__item:before {
  content: counter(item);
  box-sizing: border-box;
  font-size: 4.8rem;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 7rem;
  width: 7rem;
  background: #ffdb60;
  border-radius: 100%;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
}

.modal {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-out;
}
.modal.open {
  opacity: 1;
  pointer-events: auto;
  display: flex !important;
}
.modal__content {
  padding: 6rem 4rem 4rem;
  background: #1a1a1a;
  position: relative;
  width: 46rem;
  max-height: 100vh;
  overflow-y: auto;
  border-radius: 2rem;
}
@media screen and (max-width: 920px) {
  .modal__content {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 25vh;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    height: 100%;
    overflow-y: auto;
    backdrop-filter: none;
    background: #000;
    border-radius: 0;
  }
}
.modal__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
}
@media screen and (max-width: 920px) {
  .modal__close {
    width: 4rem;
    height: 4rem;
  }
}

.form {
  text-align: center;
}
.form-control {
  position: relative;
}
.form .error {
  color: #fd5e09;
  font-size: 12px;
  position: absolute;
  display: none;
  top: 0.5rem;
  right: 1rem;
}
.form-input {
  background: #eee;
  border: none;
  padding: 1.5rem 2rem;
  height: 6rem;
  border-radius: 0;
  font-size: 2.4rem;
  font-weight: normal;
  line-height: 1;
  color: #3f3f44;
  margin-bottom: 1rem;
  width: 100%;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}
.form-input.err {
  color: #fd5e09;
}
.form-input.err:-webkit-autofill {
  -webkit-text-fill-color: #fd5e09;
}
.form-input:focus {
  border: none;
  outline: none;
}
.form-btn {
  width: 100%;
  margin-top: 1rem;
  padding: 2rem;
}

.language {
  position: fixed;
  z-index: 100;
  top: 4rem;
  right: 10vw;
  width: 6rem;
  height: 3.4rem;
  border-radius: 5px;
  background: #353535;
  overflow: hidden;
  padding: 0.5rem;
}
@media screen and (max-width: 767px) {
  .language {
    top: 2rem;
    right: 2rem;
    padding: 1rem;
    width: 8.8rem;
    height: 5rem;
    cursor: pointer;
  }
}
.language:hover {
  height: auto;
}
.language:hover .language__arrow {
  transform: rotate(0deg);
}
.language__item {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 0.5rem;
  font-size: 2rem;
  line-height: 1.2;
  text-decoration: none;
  color: white;
  cursor: pointer;
}
.language__item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .language__item {
    column-gap: 1rem;
    font-size: 2.6rem;
    margin-bottom: 1rem;
  }
}
.language__arrow {
  width: 1.7rem;
  transition: all 0.3s ease-out;
  transform: rotate(-180deg);
}
@media screen and (max-width: 767px) {
  .language__arrow {
    width: 2rem;
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes tape {
  0% {
    margin-left: 0;
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes pulse {
  0% {
    width: 100%;
    height: 100%;
    opacity: 1;
  }
  100% {
    width: 300%;
    height: 300%;
    opacity: 0;
  }
}
@keyframes show {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-5deg);
  }
  75% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes dashed {
  0% {
    stroke-dashoffset: -160;
  }
  100% {
    stroke-dashoffset: -320;
  }
}
@keyframes dashed-reverse {
  0% {
    stroke-dashoffset: -320;
  }
  100% {
    stroke-dashoffset: -160;
  }
}
@media screen and (min-width: 1366px) {
  .js-animate {
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    opacity: 0;
  }
  .js-animate.animate--delay-1 {
    transition: all 0.6s ease-out 0.2s, transform 0.6s ease-out;
  }
  .js-animate.animate--delay-2 {
    transition: all 0.6s ease-out 0.4s, transform 0.6s ease-out;
  }
  .js-animate.animate--delay-3 {
    transition: all 0.6s ease-out 0.6s, transform 0.6s ease-out;
  }
  .js-animate.animate--delay-4 {
    transition: all 0.6s ease-out 0.8s, transform 0.6s ease-out;
  }
  .js-animate.animate--delay-5 {
    transition: all 0.6s ease-out 1s, transform 0.6s ease-out;
  }
  .js-animate.animate--delay-6 {
    transition: all 0.6s ease-out 1.2s, transform 0.6s ease-out;
  }
  .js-animate.animate--delay-7 {
    transition: all 0.6s ease-out 1.4s, transform 0.6s ease-out;
  }
  .js-animate.animate--delay-8 {
    transition: all 0.6s ease-out 1.6s, transform 0.6s ease-out;
  }
  .js-animate.animate--delay-9 {
    transition: all 0.6s ease-out 1.8s, transform 0.6s ease-out;
  }
  .js-animate.animate--delay-10 {
    transition: all 0.6s ease-out 2s, transform 0.6s ease-out;
  }
  .js-animate.animate--delay-11 {
    transition: all 0.6s ease-out 2.2s, transform 0.6s ease-out;
  }
  .js-animate.animate--delay-12 {
    transition: all 0.6s ease-out 2.4s, transform 0.6s ease-out;
  }
  .js-animate.from-left {
    transform: translateX(-100%);
  }
  .js-animate.from-right {
    transform: translateX(100%);
  }
  .js-animate.show-width-left {
    width: 0;
    left: 0;
    right: auto;
  }
  .js-animate.show-width-right {
    width: 0;
    right: 0;
    left: auto;
  }
  .js-animate.visible {
    opacity: 1;
  }
  .js-animate.visible.from-bottom,
  .js-animate.visible.from-top,
  .js-animate.visible.from-left,
  .js-animate.visible.from-right,
  .js-animate.visible.zoom-out,
  .js-animate.visible.zoom-in {
    transform: translateY(0) translateX(0) scale(1);
  }
  .js-animate.visible.show-width-right,
  .js-animate.visible.show-width-left {
    width: 100%;
  }
}
.header {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  max-height: 60vw;
  padding-bottom: 20rem;
  background: url("../images/bg1.webp") center bottom no-repeat;
  background-size: cover;
}
.header .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  position: relative;
}
.header__top {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 6rem;
}
.header__logo {
  width: 5.3rem;
  flex-shrink: 0;
}
.header__new {
  padding: 1rem 3rem;
  border-radius: 10rem;
  border: 1px solid #fff;
  font-size: 1.6rem;
  text-transform: uppercase;
}
.header__subtitle {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 4rem;
}
.header__heading {
  font-size: 7.8rem;
  text-transform: uppercase;
  font-family: "Bebas Neue Pro", sans-serif;
  margin-top: 0;
  margin-bottom: 2rem;
}
.header__text {
  font-family: "Bebas Neue Pro", sans-serif;
  font-size: 3.2rem;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 8rem;
  color: #ffdb60;
  line-height: 1.3;
}

.tape-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index: 2;
  height: 5.7rem;
  display: flex;
  align-items: center;
  border-top: 2px solid rgba(255, 255, 255, 0.5);
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
}
.tape-wrap .tape-text {
  display: inline-block;
  width: auto;
  font-size: 2.4rem;
  font-weight: 500;
  text-transform: uppercase;
  font-family: "Bebas Neue Pro", sans-serif;
  white-space: nowrap;
  animation: tape 36s linear infinite;
}
.tape-wrap .tape-text span {
  position: relative;
  display: inline-block;
  margin-right: 5rem;
}
.tape-wrap .tape-text span:after {
  content: "";
  position: absolute;
  right: -3rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #ffdb60;
  top: 50%;
  transform: translateY(-50%);
}

.subject__block {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6rem;
}
.subject__item {
  width: 24rem;
  text-align: center;
}
.subject__img {
  width: 19.3rem;
  margin-bottom: 3rem;
}

.develop__arrow {
  position: absolute;
  top: 16rem;
  left: 26rem;
  width: 25.6rem;
}
.develop__list {
  padding: 0;
  padding-top: 8.4rem;
  padding-bottom: 8.4rem;
  margin-bottom: 6rem;
  counter-reset: num;
  list-style-type: none;
  display: flex;
  column-gap: 3rem;
}
.develop__list li {
  counter-increment: num;
  flex-basis: 25%;
  border-radius: 12rem;
  padding: 1.7rem 4rem;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
  column-gap: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
}
.develop__list li:before {
  content: counter(num);
  font-size: 6.4rem;
  font-family: "Bebas Neue Pro", sans-serif;
  font-weight: bold;
  color: #ffdb60;
  line-height: 1;
}
.develop__list li:nth-child(2n) .develop__arrow {
  top: -8.4rem;
}
.develop__text {
  font-weight: 500;
  line-height: 1.4;
}
.develop__text p {
  padding-bottom: 3.6rem;
}
.develop__text p:last-child {
  padding-bottom: 0;
}

.about {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  max-height: 60vw;
  padding-bottom: 24rem;
  padding-top: 24rem;
  background: url("../images/bg2.webp") center bottom no-repeat;
  background-size: cover;
}
.about .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  position: relative;
}
.about__heading {
  text-align: left;
  margin-bottom: 7rem;
}
.about__list {
  padding: 0;
  margin: 0 0 7rem;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  align-items: start;
  row-gap: 3.5rem;
}
.about__list li {
  display: flex;
  column-gap: 2rem;
  font-weight: 500;
}
.about__list li svg {
  width: 4rem;
}

@media screen and (min-width: 921px) {
  .for-mobile {
    display: none !important;
  }
}
@media screen and (max-width: 920px) {
  .for-desktop {
    display: none !important;
  }
  body {
    font-size: 2.8rem;
  }
  .container,
  .container {
    max-width: 100%;
    width: 100%;
    padding: 0 2rem;
  }
  .heading {
    font-size: 6.4rem;
    margin-bottom: 8rem;
  }
  .text--big {
    font-size: 4.4rem;
  }
  .btn {
    min-width: inherit;
    width: 100%;
    height: 13rem;
    font-size: 4rem;
    padding: 4rem 6rem;
    column-gap: 2rem;
  }
  .list__item {
    padding-left: 4rem;
    font-size: 2.4rem;
    margin-bottom: 4rem;
  }
  .list__item:before {
    width: 2rem;
    height: 2rem;
  }
  .list-num__item {
    height: 9rem;
    padding: 1rem 1rem 1rem 10rem;
    font-size: 2.1rem;
    line-height: 1.2;
    backdrop-filter: none;
  }
  .list-num__item:before {
    font-size: 6rem;
    line-height: 7.5rem;
    height: 7rem;
    width: 7rem;
    top: 1rem;
    left: 1rem;
  }
  .form-input {
    height: 10rem;
    padding: 3rem;
    font-size: 3.2rem;
    margin-bottom: 2rem;
  }
  .form-btn {
    margin-top: 2rem;
  }
  .box {
    padding: 2rem 4rem;
  }
  .header {
    min-height: inherit;
    max-height: inherit;
    padding: 10rem 0;
    background: url("../images/bg1-mob.webp") center top no-repeat;
    background-size: 100% auto;
  }
  .header .container {
    justify-content: start;
  }
  .header__top {
    gap: 8rem;
    margin-bottom: 8rem;
  }
  .header__logo {
    width: 10.6rem;
  }
  .header__new {
    padding: 2rem 6rem;
    font-size: 2.8rem;
  }
  .header__subtitle {
    font-size: 3.6rem;
    margin-bottom: 3rem;
  }
  .header__heading {
    font-size: 7.2rem;
    margin-bottom: 4rem;
  }
  .header__text {
    font-size: 4.8rem;
    max-width: 50rem;
    margin-bottom: 49rem;
  }
  .tape-wrap .tape-text {
    font-size: 2.8rem;
  }
  .subject__block {
    margin-bottom: 8rem;
    row-gap: 10rem;
    flex-wrap: wrap;
  }
  .subject__item {
    width: 36rem;
  }
  .subject__img {
    width: 20rem;
    margin-bottom: 5rem;
  }
  .subject__text {
    font-size: 3.2rem;
  }
  .develop__arrow {
    position: absolute;
    top: 9rem;
    left: auto;
    right: -7rem;
    width: 3.2rem;
  }
  .develop__list {
    padding: 0;
    padding-right: 14rem;
    margin-bottom: 8rem;
    row-gap: 4rem;
    flex-direction: column;
  }
  .develop__list li {
    flex-basis: 100%;
    padding: 2rem 4rem;
    min-height: 16rem;
    font-size: 3.2rem;
    column-gap: 7rem;
  }
  .develop__list li:before {
    font-size: 9.6rem;
  }
  .develop__list li:nth-child(2n) .develop__arrow {
    top: 9rem;
  }
  .develop__text {
    font-size: 2.8rem;
    line-height: 1.2;
  }
  .develop__text p {
    padding-bottom: 1.2em;
  }
  .develop__text p:last-child {
    padding-bottom: 0;
  }
  .about {
    padding: 10rem 0;
    min-height: inherit;
    max-height: inherit;
    background: url("../images/bg2-mob.webp") center top no-repeat;
    background-size: 100% auto;
  }
  .about__heading {
    text-align: center;
    margin-bottom: 5rem;
    width: 100%;
  }
  .about__list {
    row-gap: 7rem;
    margin-bottom: 82rem;
  }
  .about__list li {
    column-gap: 3rem;
    font-size: 2.8rem;
  }
  .about__list li svg {
    width: 6.4rem;
  }
}
/*footer*/
.footer {
  font-size: 2rem;
  font-family: "Montserrat", sans-serif;
  line-height: 1.1;
  background: #0f0f0f;
  color: #fff;
  border-top: 1px solid #454545;
  padding: 4.3rem 0 5.5rem;
}
.footer__dogovor {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
  align-items: end;
}
.footer__documents {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-end;
}
@media screen and (max-width: 920px) {
  .footer__documents {
    align-items: center;
    gap: 4rem;
  }
}
.footer a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease-out, border 0.3s ease-out;
}
.footer a:hover {
  color: #ffdb60;
  border-color: #ffdb60;
}
.footer a svg {
  width: 2rem;
  fill: currentColor;
}
@media screen and (max-width: 920px) {
  .footer a svg {
    width: 4rem;
  }
}
@media screen and (max-width: 920px) {
  .footer {
    padding: 6rem 0;
    font-size: 2.4rem;
  }
  .footer__support {
    font-size: 2.8rem;
  }
}
.footer .container {
  padding: 0;
}
@media screen and (max-width: 920px) {
  .footer .container {
    padding: 0 2rem;
  }
}
.footer__row {
  min-height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 6rem;
  margin-bottom: 2rem;
}
.footer__row:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 920px) {
  .footer__row {
    min-height: 5rem;
    column-gap: 3rem;
    margin-bottom: 3rem;
  }
  .footer__row:last-child {
    margin-bottom: 0;
  }
}
.footer__phone {
  display: flex;
  column-gap: 6rem;
  min-width: 19rem;
}
.footer__phone > div {
  min-width: 19rem;
}
.footer__phone span {
  display: block;
  font-size: 1.4rem;
  color: #a3a3a3;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 920px) {
  .footer__phone span {
    font-size: 2.4rem;
    margin-bottom: 1.2rem;
  }
}
.footer__phone a {
  font-weight: 500;
}
@media screen and (max-width: 920px) {
  .footer__phone a {
    font-size: 3rem;
  }
}
.footer__contacts {
  display: flex;
  column-gap: 6rem;
  align-items: center;
}
.footer__social a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 19rem;
  flex-shrink: 0;
  border: 1px solid white;
  border-radius: 5px;
  column-gap: 2rem;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 1rem;
}
@media screen and (max-width: 920px) {
  .footer__social a {
    padding: 2rem;
    width: 33rem;
    font-size: 2rem;
  }
}
.footer__mail a {
  display: inline-flex;
  align-items: center;
  column-gap: 1.2rem;
}
@media screen and (max-width: 920px) {
  .footer__mail a {
    column-gap: 2rem;
    font-size: 2.4rem;
  }
}
.footer__copyright {
  text-transform: uppercase;
  text-align: right;
}
@media screen and (max-width: 920px) {
  .footer__copyright {
    text-align: center;
  }
}
@media screen and (max-width: 920px) {
  .footer__info {
    display: flex;
    flex-direction: column;
    row-gap: 4rem;
    align-items: center;
    margin: 0 auto;
  }
}
/* new block*/
.bonus__content {
  display: flex;
  flex-direction: column;
  gap: 3.6rem;
}
.heading.bonus__heading {
  margin-bottom: 0;
}
.heading__box {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.bonus__title {
  font-family: "Bebas Neue Pro", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  color: #ffdb60;
  font-size: 6.4rem;
  line-height: 6.4rem;
  text-align: center;
}
.get__box {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.get__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.2rem;
  margin: 0 auto;
}
.get__cart {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.bonus__text {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 3.3rem;
}
.get__cart img {
  width: 4rem;
  height: 4rem;
}
.get__title {
  text-align: center;
  font-size: 3.2rem;
  line-height: 4.48rem;
  font-weight: 500;
}
.bonus__inner {
  display: flex;
  gap: 4rem;
  margin-top: 3rem;
}
.bonus__speaker {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 64.3rem;
  width: 100%;
  padding: 3.1rem 2.4rem;
  background: url("./../images/bg-speaker.png"), #ffffff1a;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 2rem;
  border: 1px solid #ffffff80;
}
.bonus__speaker img {
  border-radius: 2rem;
}
.bonus__speaker-speaker {
  opacity: 0.7;
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 4.5rem;
  margin-bottom: 1.2rem;
}
.bonus__speaker-name {
  font-family: "Bebas Neue Pro", sans-serif;
  font-size: 6.4rem;
  font-weight: 600;
  line-height: 6.4rem;
  text-transform: uppercase;
}
.bonus__speaker-text {
  font-size: 3rem;
  font-weight: 500;
  line-height: 4rem;
}
.bonus__info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.bonus__info-topic {
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 4.4rem;
}
.bonus__info-box {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  border: 1px solid #ffffff80;
  background: #ffffff1a;
  padding: 2rem;
  border-radius: 1rem;
}
.bonus__info-number {
  font-family: "Bebas Neue Pro", sans-serif;
  font-size: 3.6rem;
  font-weight: 400;
  line-height: 3.6rem;
  flex-shrink: 0;
  font-weight: 700;
}
.bonus__info-text {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 3rem;
}
.js-modal.btn.center {
  max-width: 62rem;
  width: 100%;
  margin: 0 auto;
  color: #000;
  margin-top: 3rem;
}
@media screen and (max-width: 920px) {
  .bonus__title {
    font-size: 8rem;
    line-height: 8rem;
    letter-spacing: 0.02em;
  }
  .bonus__content {
    gap: 8rem;
  }
  .get__inner {
    display: flex;
    flex-direction: column;
    align-items: start;
    margin: 0;
  }
  .get__cart img {
    width: 8rem;
    height: 8rem;
  }
  .bonus__text {
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 3.8rem;
  }
  .bonus__inner {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .bonus__speaker {
    padding: 4rem;
    max-width: none;
  }
  .bonus__speaker-text {
    font-size: 3.7rem;
    font-weight: 500;
    line-height: 4.3rem;
  }
  .bonus__info {
    background: #ffffff1a;
    border: 1px solid #ffffff80;
    border-radius: 2.3rem;
    padding: 2.3rem;
  }
  .bonus__info-box {
    border: none;
    background-color: transparent;
    gap: 2.3rem;
  }
  .bonus__info-number {
    font-size: 4.5rem;
    line-height: 4.3rem;
  }
  .bonus__info-text {
    font-size: 2.7rem;
    line-height: 3.6rem;
  }
  .show-more {
    display: flex;
    align-items: center;
    text-align: center;
    gap: 1.3rem;
    justify-content: center;
    font-size: 3.3rem;
    font-weight: 500;
    line-height: 4rem;
  }
  .show-more img {
    width: 6rem;
    height: 6rem;
  }
  .bonus__info-box.hidden {
    display: none;
  }
  .bonus__info.show-all .bonus__info-box.hidden {
    display: flex;
  }
  .arrow-down-active {
    rotate: 180deg;
  }
}
/*ENDfooter*/

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