@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&display=swap");
.btn {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  cursor: pointer;
  text-align: center;
}

.btn:focus, .btn:active {
  outline: none;
}

.btn-play {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  -webkit-box-shadow: 0px 24px 44px rgba(0, 0, 0, 0.1), 0px 1px 2px rgba(219, 79, 0, 0.3), 0px 4px 0px #FF8A01;
          box-shadow: 0px 24px 44px rgba(0, 0, 0, 0.1), 0px 1px 2px rgba(219, 79, 0, 0.3), 0px 4px 0px #FF8A01;
  background: radial-gradient(65.4% 88.89% at 27.33% 0%, #FFF501 0%, rgba(255, 199, 1, 0) 100%), -webkit-gradient(linear, left top, left bottom, from(#FF9901), color-stop(30.39%, #FF8C39), color-stop(97.24%, #FFC701), to(#FFE925)), #C4C4C4;
  background: radial-gradient(65.4% 88.89% at 27.33% 0%, #FFF501 0%, rgba(255, 199, 1, 0) 100%), linear-gradient(180deg, #FF9901 0%, #FF8C39 30.39%, #FFC701 97.24%, #FFE925 100%), #C4C4C4;
  -webkit-transition: -webkit-box-shadow 0.25s ease-in-out;
  transition: -webkit-box-shadow 0.25s ease-in-out;
  transition: box-shadow 0.25s ease-in-out;
  transition: box-shadow 0.25s ease-in-out, -webkit-box-shadow 0.25s ease-in-out;
}

.btn-play svg {
  position: absolute;
  top: 50%;
  left: calc(50% + 2.5px);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.btn-play:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-yellow {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Montserrat", sans-serif;
  height: 60px;
  font-size: 18px;
  font-weight: bold;
  color: #281812;
  line-height: calc(22/18);
  padding: 10px 16px;
  border-radius: 12px;
  -webkit-box-shadow: 0px 24px 44px rgba(234, 28, 0, 0.4), 0px 5px 4px rgba(212, 63, 0, 0.63), 0px 1px 2px rgba(219, 79, 0, 0.3), 0px 4px 0px #FF7B01;
          box-shadow: 0px 24px 44px rgba(234, 28, 0, 0.4), 0px 5px 4px rgba(212, 63, 0, 0.63), 0px 1px 2px rgba(219, 79, 0, 0.3), 0px 4px 0px #FF7B01;
  background-image: radial-gradient(65.4% 88.89% at 27.33% 0%, #FFF501 0%, rgba(255, 199, 1, 0) 100%), -webkit-gradient(linear, left top, left bottom, from(#FF9901), color-stop(30.39%, #FF8C39), color-stop(97.24%, #FFC701), to(#FFE925));
  background-image: radial-gradient(65.4% 88.89% at 27.33% 0%, #FFF501 0%, rgba(255, 199, 1, 0) 100%), linear-gradient(180deg, #FF9901 0%, #FF8C39 30.39%, #FFC701 97.24%, #FFE925 100%);
}

.earnings {
  font-family: "Montserrat", sans-serif;
  color: #000;
  padding: 84px 0 126px;
}

@media only screen and (max-width: 767px) {
  .earnings {
    padding: 40px 0 60px;
  }
}

.earnings__wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 0;
  max-width: 1140px;
  margin: 0 auto;
  padding: 56px 45px;
  background-image: url("img/lion.png"), url("img/earnings-bg.svg");
  background-repeat: no-repeat;
  background-size: auto, 100% 100%;
  background-position: 50% 5px, 50%;
}

@media only screen and (max-width: 991px) {
  .earnings__wrap {
    max-width: 600px;
    -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;
    background-image: url("img/lion.png"), url("img/earnings-bg-lg.svg");
    background-size: contain, 100% 100%;
  }
}

@media only screen and (max-width: 575px) {
  .earnings__wrap {
    padding: 45px 15px;
  }
}

.earnings__wrap-img1, .earnings__wrap-img2 {
  position: absolute;
  z-index: -1;
}

.earnings__wrap-img1 {
  top: 0;
  left: 0;
  -webkit-transform: translate(-10%, -20%);
          transform: translate(-10%, -20%);
}

@media only screen and (max-width: 575px) {
  .earnings__wrap-img1 {
    width: 130px;
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
  }
}

.earnings__wrap-img2 {
  right: 0;
  bottom: 0;
  -webkit-transform: translate(10%, 20%);
          transform: translate(10%, 20%);
}

@media only screen and (max-width: 575px) {
  .earnings__wrap-img2 {
    width: 130px;
    -webkit-transform: translate(4%, 40%);
            transform: translate(4%, 40%);
  }
}

.earnings__left {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 380px;
  margin-right: 40px;
}

@media only screen and (max-width: 991px) {
  .earnings__left {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
}

.earnings__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 24px;
}

@media only screen and (max-width: 575px) {
  .earnings__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}

.earnings__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 19px;
}

@media only screen and (max-width: 575px) {
  .earnings__logo {
    margin-right: 0;
    margin-bottom: 19px;
  }
}

.earnings__logo img {
  width: 103px;
  height: auto;
}

.earnings__left-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: bold;
  line-height: 1.28;
}

.earnings__left-title span:nth-child(1) {
  font-size: 20px;
}

.earnings__left-title span:nth-child(2) {
  font-size: 24px;
}

.earnings__video {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding-bottom: 73.7%;
  border-radius: 8px;
  -webkit-box-shadow: 0px 24px 44px rgba(234, 28, 0, 0.25);
          box-shadow: 0px 24px 44px rgba(234, 28, 0, 0.25);
}

.earnings__video-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 8px;
}

.earnings__video .btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

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

@media only screen and (max-width: 575px) {
  .earnings__right {
    text-align: center;
  }
}

.earnings__right-title {
  max-width: 516px;
  font-weight: 800;
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 19px;
}

@media only screen and (max-width: 575px) {
  .earnings__right-title {
    font-size: 20px;
  }
}

.earnings__text {
  font-weight: normal;
  line-height: 1.45;
  font-size: 16px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 575px) {
  .earnings__text {
    font-size: 14px;
  }
}

.earnings__text-big {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 20px;
}

@media only screen and (max-width: 575px) {
  .earnings__text-big {
    font-size: 16px;
  }
}

.text-nowrap {
  white-space: nowrap;
}
/*# sourceMappingURL=main.css.map */