* {
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  line-height: 120%;
}

html,
body {
  font-size: 16px;
  width: 100%;
  color: #000000;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  padding-right: 0 !important;
  margin: 0 !important;
}

button,
a {
  background: transparent;
  outline: none;
  border: none;
  margin: 0;
  padding: 0;
  text-decoration: none;
}
button:hover, button:visited, button:focus,
a:hover,
a:visited,
a:focus {
  text-decoration: none;
}

span {
  font-family: inherit;
  font-weight: inherit;
}

p {
  font-family: inherit;
  font-weight: inherit;
}

.wrapperMain {
  display: flex;
  flex-flow: column;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.wrapperMain .overflow {
  overflow: hidden;
}
.wrapperMain .img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.wrapperMain .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: mBank;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border-radius: 36px;
  padding: 8px 24px;
  transition: 0.3s all ease-in-out;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.wrapperMain .btnSmall {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: mBank;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border-radius: 36px;
  padding: 6px 24px;
  transition: 0.3s all ease-in-out;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.wrapperMain .btnPink {
  border: 1px solid #FF0EB2;
  color: #FFF;
  font-size: 20px;
  background-color: #FF0EB2;
  padding: 8px;
}
.wrapperMain .btnPink:hover {
  color: #FF0EB2;
  background-color: #fff;
}
.wrapperMain .btnGreen {
  width: 350px;
  height: 54px;
  color: #00f;
  font-size: 16px;
  background-color: #00FF00;
}
.wrapperMain .btnGreen:hover {
  color: #00FF00;
  background-color: #00f;
}
.wrapperMain .btnContainer {
  width: 0;
  height: 60px;
  position: relative;
}
.wrapperMain .btnContainer .btnContent {
  width: 0;
  height: 300px;
  position: absolute;
  top: 0;
  left: -175px;
  z-index: 100;
}
.wrapperMain .btnSticky {
  width: 350px;
  height: 54px;
  border: 4px solid #FFF;
  color: #00f;
  font-size: 16px;
  background-color: #00FF00;
  z-index: 100;
  transition: 0.3s all ease-in-out;
  top: -50px;
}
.wrapperMain .btnSticky:hover {
  color: #00FF00;
  background-color: #00f;
}
.wrapperMain .btnSticky.fixed {
  top: 30px;
  left: calc(50% - 175px);
  position: fixed;
  animation-duration: 0.5s;
  animation-name: shakeBtn;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
}
.wrapperMain .btnSticky.sticky {
  top: -50px;
  left: calc(50% - 175px);
  position: sticky;
}
.wrapperMain .btnSticky.swipe {
  animation-duration: 9s;
  animation-name: swipeBtn;
  animation-iteration-count: infinite;
  animation-delay: 3s;
}
.wrapperMain .btnSticky.shake {
  animation-duration: 0.5s;
  animation-name: shakeBtn;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
}
.wrapperMain .btnSticky.goUp {
  top: -70px;
}
@keyframes shakeBtn {
  0% {
    transform: rotate(0deg);
  }
  15% {
    transform: rotate(3deg);
  }
  25% {
    transform: rotate(-5deg);
  }
  35% {
    transform: rotate(7deg);
  }
  45% {
    transform: rotate(-8deg);
  }
  65% {
    transform: rotate(10deg);
  }
  75% {
    transform: rotate(-5deg);
  }
  85% {
    transform: rotate(3deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes swipeBtn {
  0% {
    transform: translateX(0px);
  }
  10% {
    transform: translateX(8px);
  }
  20% {
    transform: translateX(-10px);
  }
  30% {
    transform: translateX(6px);
  }
  40% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(0px);
  }
}
.wrapperMain .btnBlack {
  border: 1px solid #000;
  color: #FFF;
  font-size: 20px;
  background-color: #000;
}
.wrapperMain .btnBlack:hover {
  color: #000;
  background-color: #fff;
}
.wrapperMain .modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 150vh;
  background-color: rgba(0, 0, 0, 0.4431372549);
  transition: opacity 0.2s linear, visibility 0.3s linear 0.3ms;
  z-index: 1000000;
  visibility: visible;
}
.wrapperMain .modal .modalWrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001000;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
  transition: opacity 0.2s linear, visibility 0.3s linear 0.3ms;
  visibility: visible;
  opacity: 1;
  display: flex;
}
.wrapperMain .modal .modalWrapper .modalContainer {
  width: 100%;
  display: flex;
  transition: transform 0.3s ease-out;
  margin: auto;
  transform: translate(40px, 0);
  z-index: 1002000;
}
.wrapperMain .modal .modalWrapper .modalContainer .modalContent {
  width: calc(100% - 80px);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  opacity: 1;
  padding: 45px 20px 60px 30px;
  position: relative;
  border-radius: 10px;
  z-index: 1003000;
}
.wrapperMain .modal .modalWrapper .modalContainer .modalContent .close {
  background-image: url("../img/close.png");
  width: 30px;
  height: 30px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  padding: 5px;
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
  transition: 0.3s all;
}
.wrapperMain .modal.hidden {
  opacity: 0;
  visibility: hidden;
}
.wrapperMain .modal.hidden .modalContainer {
  transform: translate(40px, -20%);
}
@media (max-width: 800px) {
  .wrapperMain #modal .modalWrapper .modalContainer {
    padding: 20px;
  }
  .wrapperMain #modal .modalWrapper .modalContainer .modal {
    padding: 60px;
  }
}
@media (max-width: 600px) {
  .wrapperMain #modal .modalWrapper .modalContainer .modal {
    padding: 40px;
  }
  .wrapperMain #modal .modalWrapper .modalContainer .modal .text {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (max-width: 450px) {
  .wrapperMain #modal .modalWrapper .modalContainer .modal {
    padding: 40px 20px;
  }
  .wrapperMain #modal .modalWrapper .modalContainer .modal .text {
    font-size: 18px;
    line-height: 22px;
  }
  .wrapperMain .btnGreen {
    width: 320px;
  }
}
@media (max-width: 400px) {
  .wrapperMain .btnGreen {
    width: 280px;
  }
}
@media (max-width: 360px) {
  .wrapperMain .btnContainer .btnContent {
    left: -140px !important;
  }
  .wrapperMain .btnSticky {
    width: 280px;
  }
  .wrapperMain .btnSticky.fixed {
    left: calc(50% - 140px);
  }
  .wrapperMain .btnSticky.sticky {
    left: calc(50% - 140px);
  }
}
.wrapperMain #header {
  max-width: 1440px;
  width: 100%;
  display: flex;
  align-items: center;
  flex-flow: column;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  z-index: 1000;
}
.wrapperMain #header .headerMenuContainer {
  width: 100%;
  max-height: 0;
  height: auto;
  display: none;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: 0.3s all ease-in-out;
  padding: 0 20px;
  position: relative;
  background-color: #fff;
  left: -1px;
}
.wrapperMain #header .headerMenuContainer.active {
  max-height: 80px;
}
.wrapperMain #header .headerMenuContainer .headerMenuContent {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 35px 0 0 0;
}
.wrapperMain #header .headerWrapper {
  max-width: 1440px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  margin: 0 auto;
  padding: 20px 40px;
  position: relative;
  left: -1px;
}
.wrapperMain #header .headerWrapper .headerBtnContainer {
  max-width: 840px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}
.wrapperMain #header .headerWrapper .headerBtnContainer .btn {
  width: 190px;
}
.wrapperMain #header .headerWrapper .headerBtnContainer .btn:nth-child(3) {
  margin: 0 20px;
}
.wrapperMain #header .headerWrapper .logo {
  width: 151px;
  height: 56px;
  background-image: url("../../assets/img/mbank-logo.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
}
.wrapperMain #header .headerWrapper .btnMenuDesktop {
  max-width: 160px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin: 0 20px 0 30px;
}
.wrapperMain #header .headerWrapper .btnMenuDesktop .menuText {
  color: #00F;
  font-family: mBank;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.wrapperMain #header .headerWrapper .btnMenuDesktop .imgArrow {
  width: 50px;
  height: 12px;
  background-image: url("../img/header1.svg");
}
.wrapperMain #header .headerWrapper .btnMenuMobile {
  max-width: 180px;
  width: 100%;
  display: none;
  visibility: hidden;
  justify-content: space-between;
  align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}
.wrapperMain #header .headerWrapper .btnMenuMobile .menuText {
  color: transparent;
  background-image: linear-gradient(90deg, #FF0EB2 50%, #00F 50%);
  background-position: 100%;
  background-size: 200% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  transition: background-position 0.5s ease-in-out;
  font-family: mBank;
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.wrapperMain #header .headerWrapper .btnMenuMobile .menuArrow {
  color: #00F;
  width: 24px;
  height: 48px;
  transition: 0.5s color ease-in-out 0.1s, 0.3s transform ease-in-out;
}
.wrapperMain #header .headerWrapper .btnMenuMobile:hover .menuText {
  background-position: 0;
}
.wrapperMain #header .headerWrapper .btnMenuMobile:hover .menuArrow {
  color: #FF0EB2;
}
.wrapperMain #header .headerWrapper .btnMenuMobile.active .menuText {
  background-position: 0;
}
.wrapperMain #header .headerWrapper .btnMenuMobile.active .menuArrow {
  transform: rotateX(180deg);
  color: #FF0EB2;
}
.wrapperMain #header .headerWrapper .banerPink {
  width: -moz-fit-content;
  width: fit-content;
  background-color: #FF0EB2;
  color: #FFF;
  font-family: mBank;
  font-size: 60px;
  font-style: normal;
  font-weight: 600;
  line-height: 60px;
  letter-spacing: -0.6px;
  padding: 5px 60px 15px 165px;
  margin: 0;
  position: absolute;
  bottom: -210px;
  left: 0;
}
@media (max-width: 1440px) {
  .wrapperMain #header .headerWrapper .banerPink {
    padding: 5px 60px 15px 8vw;
  }
}
@media (max-width: 1250px) {
  .wrapperMain #header .headerWrapper .banerPink {
    font-size: 54px;
    bottom: -170px;
    padding: 5px 60px 14px 7vw;
  }
}
@media (max-width: 1050px) {
  .wrapperMain #header .headerWrapper .banerPink {
    font-size: 48px;
    line-height: 55px;
    bottom: -135px;
    padding: 5px 50px 12px 5vw;
  }
  .wrapperMain #header .headerWrapper .headerBtnContainer .btn {
    width: 160px;
    font-size: 16px;
  }
}
@media (max-width: 1000px) {
  .wrapperMain #header .headerWrapper {
    padding: 20px 30px;
  }
}
@media (max-width: 850px) {
  .wrapperMain #header .headerWrapper .banerPink {
    font-size: 54px;
    bottom: -125px;
    padding: 5px 60px 13px 7vw;
  }
}
@media (max-width: 900px) {
  .wrapperMain #header .headerWrapper .headerBtnContainer {
    display: none;
    visibility: hidden;
  }
  .wrapperMain #header .headerWrapper .btnMenuMobile {
    display: flex;
    visibility: visible;
  }
  .wrapperMain #header .headerMenuContainer {
    display: flex;
  }
}
@media (max-width: 650px) {
  .wrapperMain #header .headerWrapper .banerPink {
    font-size: 48px;
    padding: 2px 35px 10px 6vw;
    bottom: -110px;
  }
}
@media (max-width: 500px) {
  .wrapperMain #header .headerWrapper .btnMenuMobile {
    max-width: 150px;
  }
  .wrapperMain #header .headerWrapper .btnMenuMobile .menuText {
    font-size: 24px;
  }
  .wrapperMain #header .headerWrapper .btnMenuMobile .menuArrow {
    width: 19px;
    height: 38px;
  }
  .wrapperMain #header .headerWrapper .banerPink {
    font-size: 32px;
    line-height: 48px;
    padding: 2px 35px 3px 6vw;
    bottom: -100px;
  }
  .wrapperMain #header .headerMenuContainer .headerMenuContent {
    padding: 25px 0 0 0;
  }
  .wrapperMain #header .headerMenuContainer .headerMenuContent .btnPink {
    font-size: 17px;
    font-weight: 600;
  }
  .wrapperMain #header .headerMenuContainer .headerMenuContent .btn:nth-child(2) {
    margin: 0 5px 0 5px;
  }
}
@media (max-width: 450px) {
  .wrapperMain #header .headerMenuContainer .headerMenuContent {
    flex-wrap: wrap;
  }
  .wrapperMain #header .headerMenuContainer .headerMenuContent .btnPink {
    font-size: 17px;
    font-weight: 600;
  }
  .wrapperMain #header .headerMenuContainer .headerMenuContent .btn:nth-child(2) {
    margin: 0 0 0 25px;
  }
  .wrapperMain #header .headerMenuContainer .headerMenuContent .btn:nth-child(3) {
    margin: 7px auto 0;
  }
  .wrapperMain #header .headerMenuContainer.active {
    max-height: 130px;
  }
  .wrapperMain #header .headerWrapper .banerPink {
    font-size: 28px;
    line-height: 45px;
    padding: 0 30px 1px 25px;
    bottom: -90px;
  }
}
@media (max-width: 400px) {
  .wrapperMain #header .headerWrapper .logo {
    width: 121px;
    height: 45px;
  }
  .wrapperMain #header .headerWrapper .btnMenuMobile {
    max-width: 140px;
  }
  .wrapperMain #header .headerWrapper .btnMenuMobile .menuText {
    font-size: 22px;
  }
  .wrapperMain #header .headerWrapper .banerPink {
    font-size: 24px;
    line-height: 36px;
    padding: 0 20px 1px 20px;
    bottom: -70px;
  }
}
@media (max-width: 350px) {
  .wrapperMain #header .headerWrapper .btnMenuMobile {
    max-width: 110px;
  }
  .wrapperMain #header .headerWrapper .btnMenuMobile .menuText {
    font-size: 18px;
  }
  .wrapperMain #header .headerWrapper .btnMenuMobile .menuArrow {
    width: 14px;
    height: 29px;
  }
  .wrapperMain #header .headerMenuContainer .headerMenuContent {
    padding: 20px 0 0 0;
  }
  .wrapperMain #header .headerMenuContainer .headerMenuContent .btnPink {
    font-size: 16px;
  }
  .wrapperMain #header .headerMenuContainer .headerMenuContent .btn:nth-child(2) {
    margin: 0 0 0 5px;
  }
}
.wrapperMain #section3 {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  padding: 80px 0 100px 0;
}
.wrapperMain #section3 .bg {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #00F;
  position: relative;
}
.wrapperMain #section3 .bg .btnContainer {
  margin: 0 0 100px 0;
}
.wrapperMain #section3 .row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 0 0 100px 0;
}
.wrapperMain #section3 .row .btnContainer {
  margin: auto 0 0 0;
}
.wrapperMain #section3 .row .btnContainer .btnContent {
  left: -123px;
}
.wrapperMain #section3 .column {
  display: flex;
  flex-direction: column;
}
.wrapperMain #section3 .column .content {
  display: flex;
  flex-direction: column;
  margin: 0 0 0 165px;
}
.wrapperMain #section3 .column.topMargin {
  margin: 265px 0 80px 0;
}
.wrapperMain #section3 .column.marginRight {
  margin: 0 80px 80px 0;
}
.wrapperMain #section3 .textWhite {
  color: #FFF;
  font-family: mBank;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.12px;
  margin: 0;
}
.wrapperMain #section3 .textWhiteSmall {
  color: var(--white, #FFF);
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
  margin: 35px 0 0 0;
}
.wrapperMain #section3 .textGreen {
  color: #0F0;
  font-family: mBank;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: -0.4px;
  margin: 35px 0 0 0;
}
.wrapperMain #section3 .textGreen span {
  font-size: 24px;
}
.wrapperMain #section3 .textGreenSmall {
  color: #0F0;
  font-family: mBank;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.12px;
  margin: 35px 0 5px 0;
}
.wrapperMain #section3 .banerPink {
  width: -moz-fit-content;
  width: fit-content;
  background-color: #FF0EB2;
  color: #FFF;
  font-family: mBank;
  font-size: 60px;
  font-style: normal;
  font-weight: 600;
  line-height: 60px;
  letter-spacing: -0.6px;
  padding: 5px 60px 15px 165px;
  margin: 0;
  position: absolute;
  top: 130px;
  left: 0;
}
.wrapperMain #section3 .imgBg {
  width: 636px;
  height: 623px;
  background-image: url("../img/section3-1.png");
}
.wrapperMain #section3 .sparkContainer {
  width: 100%;
  display: flex;
  position: absolute;
  overflow: hidden;
  bottom: -46px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.wrapperMain #section3 .imgSpark {
  width: 1440px;
  height: 47px;
  background-image: url("../img/section3-2.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.wrapperMain #section3 .arrowContainer {
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: -251px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.wrapperMain #section3 .arrowContainer .arrow {
  color: #FF0EB2;
  animation-duration: 3.2s;
  animation-name: arrowColorChanger;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  scale: 1.02;
}
.wrapperMain #section3 .arrowContainer .arrow:nth-child(1) {
  animation-delay: 0s;
}
.wrapperMain #section3 .arrowContainer .arrow:nth-child(2) {
  margin: 35px 0 0 0;
  animation-delay: 0.8s;
}
.wrapperMain #section3 .arrowContainer .arrow:nth-child(3) {
  margin: 30px 0 0 0;
  animation-delay: 1.6s;
}
.wrapperMain #section3 .arrowContainer .arrow:nth-child(4) {
  margin: 85px 0 0 0;
  animation-delay: 2.4s;
}
@keyframes arrowColorChanger {
  0% {
    color: #FF0EB2;
  }
  1% {
    color: #00FF00;
  }
  25% {
    color: #00FF00;
  }
  26% {
    color: #FF0EB2;
  }
  100% {
    color: #FF0EB2;
  }
}
.wrapperMain #section3 .arrowContainer.mobile {
  display: none;
  visibility: hidden;
}
@media (max-width: 1440px) {
  .wrapperMain #section3 .row .btnContainer .btnContent {
    left: -106px;
  }
  .wrapperMain #section3 .column .content {
    margin: 0 0 0 8vw;
  }
  .wrapperMain #section3 .column.marginRight {
    margin: 0 4vw 80px 0;
  }
}
@media (max-width: 1250px) {
  .wrapperMain #section3 .column .content {
    margin: 0 0 0 7vw;
  }
  .wrapperMain #section3 .column.topMargin {
    margin: 210px 0 80px 0;
  }
  .wrapperMain #section3 .column.marginRight {
    margin: 10px 3vw 80px 0;
  }
  .wrapperMain #section3 .row {
    margin: 0 0 80px 0;
  }
  .wrapperMain #section3 .row .btnContainer .btnContent {
    left: -147px;
  }
  .wrapperMain #section3 .textWhite {
    font-size: 22px;
    line-height: 30px;
  }
  .wrapperMain #section3 .textWhiteSmall {
    margin: 30px 0 0 0;
  }
  .wrapperMain #section3 .textGreen {
    font-size: 36px;
    line-height: 44px;
    margin: 30px 0 0 0;
  }
  .wrapperMain #section3 .textGreen span {
    font-size: 22px;
  }
  .wrapperMain #section3 .imgBg {
    width: 509px;
    height: 499px;
  }
}
@media (max-width: 1050px) {
  .wrapperMain #section3 .column .content {
    margin: 0 0 0 5vw;
  }
  .wrapperMain #section3 .column.topMargin {
    margin: 170px 0 80px 0;
  }
  .wrapperMain #section3 .column.marginRight {
    margin: 20px 3vw 80px 0;
  }
  .wrapperMain #section3 .row .btnContainer .btnContent {
    left: -184px;
  }
  .wrapperMain #section3 .textWhite {
    font-size: 21px;
    line-height: 28px;
  }
  .wrapperMain #section3 .textWhiteSmall {
    margin: 25px 0 0 0;
  }
  .wrapperMain #section3 .textGreen {
    font-size: 34px;
    line-height: 40px;
    margin: 25px 0 0 0;
  }
  .wrapperMain #section3 .textGreen span {
    font-size: 21px;
  }
  .wrapperMain #section3 .imgBg {
    width: 382px;
    height: 374px;
  }
}
@media (max-width: 850px) {
  .wrapperMain #section3 .row {
    flex-direction: column-reverse;
  }
  .wrapperMain #section3 .row .btnContainer {
    margin: 0 auto;
  }
  .wrapperMain #section3 .row .btnContainer .btnContent {
    left: -175px;
  }
  .wrapperMain #section3 .column .content {
    margin: 0;
    padding: 0 20px;
  }
  .wrapperMain #section3 .column.topMargin {
    margin: 60px 0 40px 0;
  }
  .wrapperMain #section3 .column.marginRight {
    margin: 25px 0 60px 0;
  }
  .wrapperMain #section3 .textWhite {
    font-size: 26px;
    line-height: 30px;
  }
  .wrapperMain #section3 .textWhite br {
    display: none;
  }
  .wrapperMain #section3 .textWhiteSmall br {
    display: none;
  }
  .wrapperMain #section3 .textGreen {
    font-size: 36px;
    line-height: 44px;
    margin: 25px 0 0 0;
  }
  .wrapperMain #section3 .textGreen span {
    font-size: 36px;
  }
  .wrapperMain #section3 .textGreen br {
    display: none;
  }
  .wrapperMain #section3 .imgBg {
    width: 509px;
    height: 499px;
    margin: 0 0 0 auto;
  }
}
@media (max-width: 650px) {
  .wrapperMain #section3 .banerPink {
    font-size: 36px;
    line-height: 55px;
    padding: 2px 35px 3px 6vw;
    top: 80px;
  }
  .wrapperMain #section3 .imgBg {
    width: 382px;
    height: 374px;
  }
}
@media (max-width: 600px) {
  .wrapperMain #section3 .sparkContainer {
    bottom: -27px;
  }
  .wrapperMain #section3 .imgSpark {
    width: 602px;
    height: 28px;
    background-image: url("../img/section3-3.png");
  }
  .wrapperMain #section3 .textGreen {
    font-size: 34px;
    line-height: 42px;
  }
  .wrapperMain #section3 .textGreen span {
    font-size: 34px;
  }
  .wrapperMain #section3 .arrowContainer {
    bottom: -205px;
  }
  .wrapperMain #section3 .arrowContainer.desktop {
    display: none;
    visibility: hidden;
  }
  .wrapperMain #section3 .arrowContainer.mobile {
    display: flex;
    visibility: visible;
  }
}
@media (max-width: 500px) {
  .wrapperMain #section3 .textGreen {
    font-size: 28px;
    line-height: 36px;
  }
  .wrapperMain #section3 .textGreen span {
    font-size: 28px;
  }
}
@media (max-width: 450px) {
  .wrapperMain #section3 .column.marginRight {
    margin: 0 0 30px 0;
  }
  .wrapperMain #section3 .imgBg {
    width: 317px;
    height: 443px;
    background-image: url("../img/section3-4.svg");
    position: relative;
    top: -45px;
    margin: 0 0 0 auto;
  }
  .wrapperMain #section3 .textGreen {
    font-size: 26px;
    line-height: 34px;
  }
  .wrapperMain #section3 .textGreen span {
    font-size: 26px;
  }
}
@media (max-width: 360px) {
  .wrapperMain #section3 .textWhite {
    font-size: 24px;
    line-height: 28px;
  }
  .wrapperMain #section3 .textGreen {
    font-size: 24px;
    line-height: 30px;
  }
  .wrapperMain #section3 .textGreen span {
    font-size: 24px;
  }
}
.wrapperMain #section4 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 35px 40px 60px 40px;
}
.wrapperMain #section4 .row {
  max-width: 720px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 100px 0 100px 0;
}
.wrapperMain #section4 .title {
  color: #201C17;
  text-align: center;
  font-family: mBank;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: -0.4px;
  margin: 0;
}
.wrapperMain #section4 .boxElementContainer {
  min-width: 152px;
  max-width: 152px;
  width: 100%;
  border: 3px solid #FFF;
  border-radius: 77px;
  position: relative;
  transition: 0.3s all ease-in-out;
  margin: 20px 0 0 0;
}
.wrapperMain #section4 .boxElementContainer .blueBox {
  width: 392px;
  background: #00F;
  border-radius: 20px;
  padding: 130px 131px 26px 26px;
  z-index: -1;
  position: absolute;
  top: calc(50% - 15px);
  left: 50%;
  transform: translateX(-50%);
}
.wrapperMain #section4 .boxElementContainer .blueBox .blueBoxText {
  color: #FFF;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
  margin: 0;
}
.wrapperMain #section4 .boxElementContainer .blueBox .imgBlueBox {
  width: 173px;
  height: 127px;
  background-image: url("../img/section4-4.svg");
  position: absolute;
  bottom: 2px;
  right: -50px;
}
.wrapperMain #section4 .boxElementContainer .boxElement {
  height: 146px;
  width: 100%;
  display: flex;
  background-color: #FF0EB2;
  border-radius: 77px;
  padding: 12px 11px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.wrapperMain #section4 .boxElementContainer .circle {
  width: 124px;
  height: 124px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 50%;
  color: #00F;
  text-align: center;
  font-family: mBank;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  z-index: 10;
  position: absolute;
  top: 12px;
  left: 11px;
}
.wrapperMain #section4 .boxElementContainer .text {
  color: #FFF;
  font-family: mBank;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.08px;
  position: absolute;
  white-space: nowrap;
  transition: 0.3s all ease-in-out;
}
.wrapperMain #section4 .boxElementContainer .text.text1 {
  top: 24px;
  right: 13px;
}
.wrapperMain #section4 .boxElementContainer .text.text2 {
  top: 54px;
  right: 13px;
}
.wrapperMain #section4 .boxElementContainer .text.text3 {
  top: 43px;
  right: 18px;
}
.wrapperMain #section4 .boxElementContainer .btnMore {
  z-index: 5;
  position: absolute;
  bottom: -18px;
  right: -24px;
}
.wrapperMain #section4 .boxElementContainer.active1 {
  max-width: 274px;
}
.wrapperMain #section4 .boxElementContainer.active1 .text.text1 {
  right: 23px;
}
.wrapperMain #section4 .boxElementContainer.active1 .btnMore {
  right: 25px;
}
.wrapperMain #section4 .boxElementContainer.active1 .imgStar1 {
  bottom: -20px;
  left: 8px;
}
.wrapperMain #section4 .boxElementContainer.active1 .imgStar2 {
  top: -30px;
  left: 145px;
}
.wrapperMain #section4 .boxElementContainer.active1 .imgStar3 {
  top: -30px;
  right: 10px;
}
.wrapperMain #section4 .boxElementContainer.active2 {
  max-width: 274px;
}
.wrapperMain #section4 .boxElementContainer.active2 .text.text2 {
  right: 10px;
}
.wrapperMain #section4 .boxElementContainer.active2 .btnMore {
  right: 25px;
}
.wrapperMain #section4 .boxElementContainer.active2 .imgStar4 {
  bottom: -25px;
  left: 27px;
}
.wrapperMain #section4 .boxElementContainer.active2 .imgStar5 {
  top: -43px;
  left: 100px;
}
.wrapperMain #section4 .boxElementContainer.active2 .imgStar6 {
  bottom: -41px;
  right: 3px;
}
.wrapperMain #section4 .boxElementContainer.active3 {
  max-width: 274px;
}
.wrapperMain #section4 .boxElementContainer.active3 .text.text3 {
  right: 18px;
}
.wrapperMain #section4 .boxElementContainer.active3 .btnMore {
  right: 25px;
}
.wrapperMain #section4 .boxElementContainer.active3 .imgStar7 {
  top: -35px;
  left: 16px;
}
.wrapperMain #section4 .boxElementContainer.active3 .imgStar8 {
  top: -45px;
  left: 111px;
}
.wrapperMain #section4 .boxElementContainer.active3 .imgStar9 {
  bottom: -50px;
  right: 12px;
}
.wrapperMain #section4 .boxElementContainer .imgStar {
  transition: 0.3s all ease-in-out;
  position: absolute;
  z-index: -1;
}
.wrapperMain #section4 .boxElementContainer .imgStar1 {
  width: 23px;
  height: 21px;
  background-image: url("../img/section4-1.svg");
  bottom: 17px;
  left: 22px;
}
.wrapperMain #section4 .boxElementContainer .imgStar2 {
  width: 23px;
  height: 21px;
  background-image: url("../img/section4-2.svg");
  top: 1px;
  left: 80px;
}
.wrapperMain #section4 .boxElementContainer .imgStar3 {
  width: 33px;
  height: 30px;
  background-image: url("../img/section4-3.svg");
  top: 15px;
  right: 15px;
}
.wrapperMain #section4 .boxElementContainer .imgStar4 {
  width: 24px;
  height: 23px;
  background-image: url("../img/section4-5.svg");
  bottom: 18px;
  left: 20px;
  z-index: 1;
}
.wrapperMain #section4 .boxElementContainer .imgStar5 {
  width: 35px;
  height: 32px;
  background-image: url("../img/section4-6.svg");
  top: 15px;
  left: 15px;
  z-index: 1;
}
.wrapperMain #section4 .boxElementContainer .imgStar6 {
  width: 24px;
  height: 23px;
  background-image: url("../img/section4-7.svg");
  bottom: 15px;
  right: 15px;
  z-index: 1;
}
.wrapperMain #section4 .boxElementContainer .imgStar7 {
  width: 35px;
  height: 33px;
  background-image: url("../img/section4-8.svg");
  top: 15px;
  right: 15px;
}
.wrapperMain #section4 .boxElementContainer .imgStar8 {
  width: 25px;
  height: 23px;
  background-image: url("../img/section4-9.svg");
  top: 15px;
  right: 15px;
}
.wrapperMain #section4 .boxElementContainer .imgStar9 {
  width: 24px;
  height: 23px;
  background-image: url("../img/section4-10.svg");
  bottom: 15px;
  right: 15px;
}
.wrapperMain #section4 .modal .modalWrapper .modalContainer {
  max-width: 960px;
}
.wrapperMain #section4 .modal .modalWrapper .modalContainer .modalContent .title {
  color: #201C17;
  font-family: mBank;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.4px;
  margin: 0;
  padding: 0 15px 0 0;
}
.wrapperMain #section4 .modal .modalWrapper .modalContainer .modalContent .subTitle {
  color: #FF0EB2;
  font-family: mBank;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.075px;
  margin: 0 10px 0 0;
}
.wrapperMain #section4 .modal .modalWrapper .modalContainer .modalContent .text {
  max-width: 570px;
  width: 100%;
  color: #000;
  font-family: mBank;
  font-size: 16px;
  font-style: normal;
  line-height: 24px;
  font-weight: 600;
  letter-spacing: -0.08px;
  margin: 0;
}
.wrapperMain #section4 .modal .modalWrapper .modalContainer .modalContent .text strong {
  font-family: mBank;
  font-weight: 700;
}
.wrapperMain #section4 .modal .modalWrapper .modalContainer .modalContent .blue {
  color: #00F;
  font-weight: 700;
  font-family: mBank;
}
.wrapperMain #section4 .modal .modalWrapper .modalContainer .modalContent .list {
  max-width: 570px;
  width: 100%;
  list-style-type: square;
  padding: 0 0 0 15px;
  margin: 0;
}
.wrapperMain #section4 .modal .modalWrapper .modalContainer .modalContent .list.margin li {
  margin: 0 0 15px 0;
}
.wrapperMain #section4 .modal .modalWrapper .modalContainer .modalContent .pink {
  color: #FF0EB2;
  font-family: mBank;
  font-weight: 700;
  text-decoration: underline;
  transition: 0.3s all ease-in-out;
}
.wrapperMain #section4 .modal .modalWrapper .modalContainer .modalContent .pink:hover {
  color: #00f;
}
.wrapperMain #section4 .modal .modalWrapper .modalContainer .modalContent .cloud {
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FF0EB2;
  border-radius: 36px;
  color: #FFF;
  text-align: center;
  font-family: mBank;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: -0.11px;
  margin: 0;
  flex-shrink: 0;
}
.wrapperMain #section4 .modal .modalWrapper .modalContainer .modalContent .cloud.big {
  width: 130px;
}
.wrapperMain #section4 .modal .modalWrapper .modalContainer .modalContent .cloud.small {
  width: 110px;
}
.wrapperMain #section4 .modal .modalWrapper .modalContainer .modalContent .modalRow {
  width: 433px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 2px solid #000;
  border-radius: 36px;
  padding: 10px 10px 10px 30px;
  position: relative;
  margin: 52px 0 44px 0;
}
.wrapperMain #section4 .modal .modalWrapper .modalContainer .modalContent .btn {
  margin: 50px 0 0 0;
}
@media (max-width: 1050px) {
  .wrapperMain #section4 {
    padding: 35px 30px 60px 30px;
  }
  .wrapperMain #section4 .modal .modalWrapper .modalContainer .modalContent .title {
    font-size: 32px;
  }
}
@media (max-width: 900px) {
  .wrapperMain #section4 .modal .modalWrapper .modalContainer .modalContent .title {
    text-align: left;
  }
  .wrapperMain #section4 .modal .modalWrapper .modalContainer .modalContent .title br {
    display: none;
  }
}
@media (max-width: 800px) {
  .wrapperMain #section4 {
    padding: 35px 20px 60px 20px;
  }
  .wrapperMain #section4 .row {
    flex-direction: column;
    margin: 100px 0;
  }
  .wrapperMain #section4 .boxElementContainer:nth-child(2) {
    margin: 80px 0 0;
  }
}
@media (max-width: 700px) {
  .wrapperMain #section4 .modal .modalWrapper .modalContainer {
    transform: translate(20px, 0);
  }
  .wrapperMain #section4 .modal .modalWrapper .modalContainer .modalContent {
    width: calc(100% - 40px);
  }
  .wrapperMain #section4 .modal .modalWrapper .modalContainer .modalContent .title {
    font-size: 28px;
  }
  .wrapperMain #section4 .modal .modalWrapper .modalContainer .modalContent .text br {
    display: none;
  }
}
@media (max-width: 600px) {
  .wrapperMain #section4 {
    padding: 10px 20px 60px 20px;
  }
  .wrapperMain #section4 .title {
    font-size: 36px;
  }
}
@media (max-width: 550px) {
  .wrapperMain #section4 .modal .modalWrapper .modalContainer .modalContent .modalRow {
    width: calc(100% + 30px);
    display: flex;
    align-items: center;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    border-left: unset;
    border-radius: 0 36px 36px 0;
    padding: 10px 10px 10px 40px;
    position: relative;
    left: -15px;
  }
}
@media (max-width: 500px) {
  .wrapperMain #section4 .boxElementContainer .blueBox {
    padding: 115px 26px 72px 40px;
    top: 50%;
  }
  .wrapperMain #section4 .boxElementContainer .blueBox .imgBlueBox {
    bottom: -72px;
    right: 20px;
  }
  .wrapperMain #section4 .title {
    font-size: 34px;
  }
  .wrapperMain #section4 .modal .modalWrapper .modalContainer .modalContent .title {
    font-size: 24px;
  }
}
@media (max-width: 450px) {
  .wrapperMain #section4 .boxElementContainer .blueBox {
    width: 350px;
    padding: 105px 26px 72px 26px;
    top: calc(50% + 10px);
  }
}
@media (max-width: 400px) {
  .wrapperMain #section4 .title {
    font-size: 28px;
  }
  .wrapperMain #section4 .boxElementContainer .blueBox {
    width: 280px;
    padding: 75px 26px 72px 26px;
    top: calc(50% + 40px);
  }
}
@media (max-width: 385px) {
  .wrapperMain #section4 .modal .modalWrapper .modalContainer {
    transform: translate(5px, 0);
  }
  .wrapperMain #section4 .modal .modalWrapper .modalContainer .modalContent {
    width: calc(100% - 10px);
  }
  .wrapperMain #section4 .modal .modalWrapper .modalContainer .modalContent .text {
    font-size: 14px;
  }
}
@media (max-width: 350px) {
  .wrapperMain #section4 .title {
    font-size: 24px;
  }
}
.wrapperMain #section5 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wrapperMain #section5 .sparkContainerBottom {
  width: 100%;
  overflow: hidden;
  position: relative;
  bottom: 1px;
}
.wrapperMain #section5 .sparkContainerBottom .imgSpark {
  width: 1440px;
  height: 22px;
  background-image: url("../img/section5-2.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.wrapperMain #section5 .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #FF0EB2;
  padding: 0 0 70px 0;
}
.wrapperMain #section5 .cloudContainer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #FF0EB2;
  overflow: hidden;
}
.wrapperMain #section5 .cloudContainer .cloudContent {
  max-width: 1150px;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 140px 80px 0 90px;
}
.wrapperMain #section5 .title {
  color: #FFF;
  text-align: center;
  font-family: mBank;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: -0.4px;
  margin: 62px 0 54px 0;
}
.wrapperMain #section5 .cloudElement {
  width: 100%;
  border-radius: 40px;
  font-family: mBank;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  z-index: 10;
}
.wrapperMain #section5 .relative {
  position: relative;
}
.wrapperMain #section5 .cloudWhite {
  text-align: right;
  background-color: #fff;
  color: #00f;
  padding: 15px 30px 15px 15px;
  margin: 0 0 25px auto;
}
.wrapperMain #section5 .cloudWhite .br1 {
  display: none;
}
.wrapperMain #section5 .cloudWhite .br2 {
  display: none;
}
.wrapperMain #section5 .cloudWhite1 {
  max-width: 380px;
}
.wrapperMain #section5 .cloudWhite2 {
  max-width: 475px;
}
.wrapperMain #section5 .cloudWhite3 {
  max-width: 220px;
}
.wrapperMain #section5 .cloudWhite4 {
  max-width: 220px;
}
.wrapperMain #section5 .cloudWhite5 {
  max-width: 442px;
}
.wrapperMain #section5 .cloudBlue {
  background-color: #00f;
  color: #fff;
  padding: 15px 25px 15px 30px;
  margin: 0 0 25px 0;
}
.wrapperMain #section5 .cloudBlue span {
  color: red;
}
.wrapperMain #section5 .cloudBlue .br1 {
  display: none;
}
.wrapperMain #section5 .cloudBlue1 {
  max-width: 635px;
}
.wrapperMain #section5 .cloudBlue2 {
  max-width: 348px;
}
.wrapperMain #section5 .cloudBlue3 {
  max-width: 635px;
}
.wrapperMain #section5 .cloudBlue4 {
  max-width: 635px;
}
.wrapperMain #section5 .cloudBlue5 {
  max-width: 348px;
}
.wrapperMain #section5 .arrowContainer {
  display: flex;
  position: absolute;
  top: calc(50% - 12.5px);
  right: 570px;
  transform: translateY(-50%);
  animation-duration: 3s;
  animation-name: leftRightMoveArrow;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  z-index: 1;
}
.wrapperMain #section5 .imgArrow {
  width: 29px;
  height: 52px;
  background-image: url("../img/section5-4.svg");
  margin: 0 10px 0 0;
}
.wrapperMain #section5 .imgStar1 {
  width: 120px;
  height: 114px;
  background-image: url("../img/section5-3.svg");
  position: absolute;
  top: -68px;
  left: -59px;
  animation-duration: 9s;
  animation-name: rotateStar;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.wrapperMain #section5 .imgStar2 {
  width: 241px;
  height: 239px;
  background-image: url("../img/section5-5.svg");
  position: absolute;
  top: -143px;
  right: -70px;
  z-index: -1;
}
.wrapperMain #section5 .imgStar3 {
  width: 116px;
  height: 90px;
  background-image: url("../img/section5-6.svg");
  position: absolute;
  top: -74px;
  left: -74px;
}
.wrapperMain #section5 .imgStar4 {
  width: 137px;
  height: 135px;
  background-image: url("../img/section5-7.svg");
  position: absolute;
  top: -108px;
  right: -215px;
}
.wrapperMain #section5 .imgStar5 {
  width: 342px;
  height: 335px;
  background-image: url("../img/section5-8.svg");
  position: absolute;
  bottom: -241px;
  left: -52px;
  z-index: -1;
}
.wrapperMain #section5 .imgStar6 {
  width: 121px;
  height: 119px;
  background-image: url("../img/section5-9.svg");
  position: absolute;
  top: -60px;
  right: 383px;
  z-index: -1;
}
.wrapperMain #section5 .imgStar7 {
  display: none;
  width: 97px;
  height: 75px;
  background-image: url("../img/section5-10.svg");
  position: absolute;
  top: -5px;
  right: -85px;
}
.wrapperMain #section5 .imgStar8 {
  display: none;
  width: 110px;
  height: 215px;
  background-image: url("../img/section5-11.svg");
  position: absolute;
  top: 600px;
  right: 0px;
}
.wrapperMain #section5 .imgStar9 {
  display: none;
  width: 104px;
  height: 103px;
  background-image: url("../img/section5-12.svg");
  position: absolute;
  bottom: -44px;
  left: -11px;
  z-index: -1;
}
@keyframes rotateStar {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes leftRightMoveArrow {
  0% {
    transform: translate(0px, -50%);
  }
  100% {
    transform: translate(117px, -50%);
  }
}
@media (max-width: 1050px) {
  .wrapperMain #section5 .arrowContainer {
    right: 400px;
  }
  .wrapperMain #section5 .cloudWhite1 {
    max-width: 360px;
  }
  .wrapperMain #section5 .cloudWhite2 {
    max-width: 415px;
  }
  .wrapperMain #section5 .cloudWhite5 {
    max-width: 310px;
  }
  .wrapperMain #section5 .cloudBlue1 {
    max-width: 490px;
  }
  .wrapperMain #section5 .cloudBlue2 {
    max-width: 320px;
  }
  .wrapperMain #section5 .cloudBlue3 {
    max-width: 490px;
  }
  .wrapperMain #section5 .cloudBlue4 {
    max-width: 490px;
  }
  .wrapperMain #section5 .cloudBlue5 {
    max-width: 320px;
  }
  .wrapperMain #section5 .imgStar5 {
    width: 274px;
    height: 268px;
    bottom: -170px;
    left: -60px;
  }
  .wrapperMain #section5 .imgStar6 {
    right: 250px;
  }
}
@media (max-width: 850px) {
  .wrapperMain #section5 .arrowContainer {
    right: unset;
    left: 230px;
  }
  .wrapperMain #section5 .cloudContainer .cloudContent {
    max-width: 720px;
    padding: 80px 20px 0 20px;
  }
  .wrapperMain #section5 .cloudWhite .br2 {
    display: flex;
  }
  .wrapperMain #section5 .cloudWhite1 {
    max-width: 290px;
  }
  .wrapperMain #section5 .cloudWhite2 {
    max-width: 360px;
  }
  .wrapperMain #section5 .cloudBlue1 {
    max-width: 390px;
  }
  .wrapperMain #section5 .cloudBlue3 {
    max-width: 390px;
  }
  .wrapperMain #section5 .cloudBlue4 {
    max-width: 390px;
  }
  .wrapperMain #section5 .imgStar1 {
    top: -60px;
    left: -45px;
  }
  .wrapperMain #section5 .imgStar2 {
    display: none;
  }
  .wrapperMain #section5 .imgStar3 {
    display: none;
  }
  .wrapperMain #section5 .imgStar4 {
    display: none;
  }
  .wrapperMain #section5 .imgStar5 {
    display: none;
  }
  .wrapperMain #section5 .imgStar6 {
    top: unset;
    bottom: -28px;
    right: 247px;
  }
  .wrapperMain #section5 .imgStar7 {
    display: flex;
  }
  .wrapperMain #section5 .imgStar8 {
    display: flex;
  }
  .wrapperMain #section5 .imgStar9 {
    display: flex;
  }
}
@media (max-width: 600px) {
  .wrapperMain #section5 .sparkContainerTop .imgSpark {
    width: 687px;
    height: 13px;
    background-image: url("../img/section5-11.png");
  }
  .wrapperMain #section5 .sparkContainerBottom .imgSpark {
    width: 621px;
    height: 18px;
    background-image: url("../img/section5-12.png");
  }
  .wrapperMain #section5 .arrowContainer {
    left: 130px;
  }
  .wrapperMain #section5 .cloudElement {
    font-size: 18px;
  }
  .wrapperMain #section5 .cloudWhite {
    margin: 0 0 20px auto;
  }
  .wrapperMain #section5 .cloudWhite1 {
    max-width: 240px;
  }
  .wrapperMain #section5 .cloudWhite2 {
    max-width: 290px;
  }
  .wrapperMain #section5 .cloudWhite3 {
    max-width: 200px;
  }
  .wrapperMain #section5 .cloudWhite4 {
    max-width: 200px;
  }
  .wrapperMain #section5 .cloudWhite5 {
    max-width: 270px;
  }
  .wrapperMain #section5 .cloudBlue {
    margin: 0 0 20px 0;
  }
  .wrapperMain #section5 .cloudBlue1 {
    max-width: 245px;
  }
  .wrapperMain #section5 .cloudBlue2 {
    max-width: 270px;
  }
  .wrapperMain #section5 .cloudBlue3 {
    max-width: 270px;
  }
  .wrapperMain #section5 .cloudBlue4 {
    max-width: 282px;
  }
  .wrapperMain #section5 .cloudBlue5 {
    max-width: 282px;
  }
  .wrapperMain #section5 .imgStar1 {
    width: 96px;
    height: 91px;
    top: -40px;
  }
  .wrapperMain #section5 .imgStar6 {
    right: 217px;
  }
}
@media (max-width: 450px) {
  .wrapperMain #section5 .arrowContainer {
    left: 50px;
  }
  .wrapperMain #section5 .cloudElement {
    font-size: 16px;
  }
  .wrapperMain #section5 .cloudWhite {
    margin: 0 0 15px auto;
    padding: 15px 20px 15px 15px;
  }
  .wrapperMain #section5 .cloudWhite1 {
    max-width: 190px;
  }
  .wrapperMain #section5 .cloudWhite2 {
    max-width: 230px;
  }
  .wrapperMain #section5 .cloudWhite3 {
    max-width: 175px;
  }
  .wrapperMain #section5 .cloudWhite4 {
    max-width: 170px;
  }
  .wrapperMain #section5 .cloudWhite5 {
    max-width: 225px;
  }
  .wrapperMain #section5 .cloudBlue {
    margin: 0 0 15px 0;
    padding: 15px 15px 15px 20px;
  }
  .wrapperMain #section5 .cloudBlue1 {
    max-width: 200px;
  }
  .wrapperMain #section5 .cloudBlue2 {
    max-width: 230px;
  }
  .wrapperMain #section5 .cloudBlue3 {
    max-width: 230px;
  }
  .wrapperMain #section5 .cloudBlue4 {
    max-width: 240px;
  }
  .wrapperMain #section5 .cloudBlue5 {
    max-width: 240px;
  }
  .wrapperMain #section5 .imgStar6 {
    width: 97px;
    height: 95px;
    right: 187px;
  }
}
@media (max-width: 350px) {
  .wrapperMain #section5 .cloudElement {
    font-size: 15px;
  }
  .wrapperMain #section5 .cloudWhite1 {
    max-width: 182px;
  }
  .wrapperMain #section5 .cloudWhite2 {
    max-width: 200px;
  }
  .wrapperMain #section5 .cloudWhite3 {
    max-width: 160px;
  }
  .wrapperMain #section5 .cloudWhite4 {
    max-width: 157px;
  }
  .wrapperMain #section5 .cloudWhite5 {
    max-width: 210px;
  }
  .wrapperMain #section5 .cloudBlue1 {
    max-width: 178px;
  }
  .wrapperMain #section5 .cloudBlue2 {
    max-width: 208px;
  }
  .wrapperMain #section5 .cloudBlue3 {
    max-width: 208px;
  }
  .wrapperMain #section5 .cloudBlue4 {
    max-width: 221px;
  }
  .wrapperMain #section5 .cloudBlue5 {
    max-width: 221px;
  }
  .wrapperMain #section5 .imgStar1 {
    left: -50px;
  }
  .wrapperMain #section5 .imgStar6 {
    right: 172px;
  }
}
.wrapperMain #section6 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 40px 57px 40px;
}
.wrapperMain #section6 .content {
  width: 100%;
  max-width: 1060px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wrapperMain #section6 .row {
  display: flex;
  margin: 0 0 43px 0;
}
.wrapperMain #section6 .column {
  display: flex;
  flex-direction: column;
}
.wrapperMain #section6 .column.margin {
  margin: 0 0 0 50px;
}
.wrapperMain #section6 .titleContainer {
  display: flex;
  align-items: center;
  position: relative;
}
.wrapperMain #section6 .title {
  height: 64px;
  display: flex;
  align-items: center;
  color: #FF0EB2;
  font-family: mBank;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: -0.4px;
  margin: 0 0 5px 0;
}
.wrapperMain #section6 .titleStar1 {
  width: 131px;
  height: 129px;
  background-image: url("../img/section6-1.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 0 50px 15px;
  position: relative;
}
.wrapperMain #section6 .titleStar2 {
  width: 46px;
  height: 44px;
  background-image: url("../img/section9-5.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -30px;
  right: -40px;
}
.wrapperMain #section6 .nowrap {
  white-space: nowrap;
}
.wrapperMain #section6 .text {
  color: #00F;
  font-family: mBank;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.12px;
  margin: 0 0 20px 0;
}
.wrapperMain #section6 .text strong {
  font-family: mBank;
  font-weight: 700;
}
.wrapperMain #section6 .blueList li::marker {
  color: #00F;
}
.wrapperMain #section6 .imgStar2 {
  width: 35px;
  height: 32px;
  background-image: url("../img/section6-4.svg");
  position: absolute;
  top: 46px;
  left: 8px;
}
.wrapperMain #section6 .imgStar3 {
  width: 50px;
  height: 48px;
  background-image: url("../img/section6-5.svg");
  position: absolute;
  bottom: 93px;
  right: -71px;
}
.wrapperMain #section6 .imgTitle {
  width: 517px;
  height: 92px;
  background-image: url("../img/section6-2.svg");
  margin: 0 0 0 59px;
}
.wrapperMain #section6 .imgCards {
  width: 416px;
  height: 350px;
  background-image: url("../img/section6-3.png");
  margin: 23px 0 0 73px;
  position: relative;
}
.wrapperMain #section6 .imgCardsMobile {
  display: none;
  visibility: hidden;
}
@media (max-width: 1150px) {
  .wrapperMain #section6 .text br {
    display: none;
  }
}
@media (max-width: 1100px) {
  .wrapperMain #section6 .title {
    font-size: 36px;
  }
  .wrapperMain #section6 .title::after {
    width: 105px;
    height: 103px;
  }
  .wrapperMain #section6 .text {
    font-size: 22px;
    line-height: 28px;
  }
  .wrapperMain #section6 .imgTitle {
    width: 414px;
    height: 74px;
  }
  .wrapperMain #section6 .imgCards {
    width: 333px;
    height: 280px;
  }
}
@media (max-width: 1000px) {
  .wrapperMain #section6 {
    padding: 80px 30px 57px 30px;
  }
  .wrapperMain #section6 .column.margin {
    margin: 0 0 0 30px;
  }
  .wrapperMain #section6 .title {
    font-size: 34px;
  }
  .wrapperMain #section6 .title::after {
    width: 105px;
    height: 103px;
  }
  .wrapperMain #section6 .text {
    font-size: 20px;
    line-height: 27px;
    margin: 0 0 18px 0;
  }
  .wrapperMain #section6 .imgTitle {
    width: 310px;
    height: 55px;
    margin: 0 0 0 50px;
  }
  .wrapperMain #section6 .imgCards {
    width: 250px;
    height: 210px;
    margin: 40px 0 0 70px;
  }
}
@media (max-width: 800px) {
  .wrapperMain #section6 {
    padding: 50px 20px 50px 20px;
  }
  .wrapperMain #section6 .row {
    flex-direction: column;
    margin: 0 0 35px 0;
  }
  .wrapperMain #section6 .column.margin {
    margin: 30px 0 0 0;
  }
  .wrapperMain #section6 .imgCardsMobile {
    display: flex;
    visibility: visible;
  }
  .wrapperMain #section6 .imgCardsDesktop {
    display: none;
    visibility: hidden;
  }
  .wrapperMain #section6 .imgCards {
    width: 416px;
    height: 350px;
    margin: 0 auto 30px;
  }
  .wrapperMain #section6 .titleStar2 {
    display: none;
  }
}
@media (max-width: 500px) {
  .wrapperMain #section6 {
    padding: 40px 20px 50px 20px;
  }
  .wrapperMain #section6 .column.margin {
    margin: 25px 0 0 0;
  }
  .wrapperMain #section6 .text {
    font-size: 18px;
    margin: 0 0 16px 0;
  }
  .wrapperMain #section6 .imgTitle {
    margin: 0 0 0 35px;
  }
  .wrapperMain #section6 .imgCards {
    width: 333px;
    height: 280px;
  }
  .wrapperMain #section6 .blueList {
    padding: 0 0 0 20px;
  }
}
@media (max-width: 380px) {
  .wrapperMain #section6 {
    padding: 30px 20px 60px 20px;
  }
  .wrapperMain #section6 .row {
    margin: 0 0 10px 0;
  }
  .wrapperMain #section6 .column.margin {
    margin: 20px 0 0 0;
  }
  .wrapperMain #section6 .title {
    height: 55px;
  }
  .wrapperMain #section6 .text {
    font-size: 16px;
  }
  .wrapperMain #section6 .imgTitle {
    width: 259px;
    height: 55px;
  }
  .wrapperMain #section6 .imgCards {
    width: 250px;
    height: 210px;
    margin: 0 auto 40px;
  }
}
.wrapperMain #section7 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wrapperMain #section7 .sparkContainerTop {
  width: 100%;
  overflow: hidden;
  position: relative;
  top: 1px;
}
.wrapperMain #section7 .sparkContainerTop .imgSpark {
  width: 1440px;
  height: 47px;
  background-image: url("../img/section7-1.svg");
  transform: rotate(180deg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.wrapperMain #section7 .sparkContainerBottom {
  width: 100%;
  overflow: hidden;
  position: relative;
  bottom: 1px;
}
.wrapperMain #section7 .sparkContainerBottom .imgSpark {
  width: 1440px;
  height: 21px;
  background-image: url("../img/section7-2.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.wrapperMain #section7 .container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #00f;
  padding: 60px 40px 70px 40px;
}
.wrapperMain #section7 .content {
  max-width: 800px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wrapperMain #section7 .row {
  max-width: 650px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.wrapperMain #section7 .column {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wrapperMain #section7 .title {
  color: #FFF;
  text-align: center;
  font-family: mBank;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: -0.4px;
}
.wrapperMain #section7 .title.margin1 {
  margin: 0 0 60px 0;
}
.wrapperMain #section7 .title.margin2 {
  margin: 35px 0 60px 0;
}
.wrapperMain #section7 .textSmall {
  color: #FFF;
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
}
.wrapperMain #section7 .imgFromYou {
  width: 211px;
  height: 236px;
  background-image: url("../img/section7-3.png");
  margin: 0 30px 0 0;
}
.wrapperMain #section7 .imgParent {
  width: 231px;
  height: 211px;
  background-image: url("../img/section7-4.png");
  margin: 27px 0 0 50px;
}
@media (max-width: 800px) {
  .wrapperMain #section7 .container {
    padding: 60px 20px 70px 20px;
  }
}
@media (max-width: 600px) {
  .wrapperMain #section7 .sparkContainerTop .imgSpark {
    width: 619px;
    height: 29px;
    background-image: url("../img/section7-5.png");
    transform: rotate(0deg);
  }
  .wrapperMain #section7 .sparkContainerBottom .imgSpark {
    width: 600px;
    height: 20px;
    background-image: url("../img/section7-6.png");
  }
  .wrapperMain #section7 .row {
    flex-direction: column;
  }
  .wrapperMain #section7 .title {
    font-size: 36px;
    line-height: 42px;
  }
}
@media (max-width: 450px) {
  .wrapperMain #section7 .title {
    font-size: 27px;
    line-height: 36px;
  }
  .wrapperMain #section7 .title.margin1 {
    margin: 0 0 40px 0;
  }
}
@media (max-width: 350px) {
  .wrapperMain #section7 .title {
    font-size: 24px;
    line-height: 32px;
  }
}
.wrapperMain #section9 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 40px 0 40px;
}
.wrapperMain #section9 .content {
  max-width: 1060px;
  width: 100%;
  display: flex;
  align-items: center;
}
.wrapperMain #section9 .column {
  display: flex;
  flex-direction: column;
  margin: 0 50px 0 0;
}
.wrapperMain #section9 .textContainer {
  width: 100%;
  display: flex;
  position: relative;
}
.wrapperMain #section9 .text {
  color: #00F;
  font-family: mBank;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: -0.13px;
  margin: 0;
  position: relative;
}
.wrapperMain #section9 .text strong {
  font-size: 48px;
}
.wrapperMain #section9 .text.margin {
  margin: 16px 0;
}
.wrapperMain #section9 .img1 {
  width: 356px;
  height: 525px;
  background-image: url("../img/section9-1.png");
  flex-shrink: 0;
}
.wrapperMain #section9 .imgStar1 {
  width: 50px;
  height: 50px;
  background-image: url("../img/section9-2.svg");
  position: absolute;
  top: -60px;
  left: 8px;
  z-index: -1;
}
.wrapperMain #section9 .imgStar2 {
  width: 35px;
  height: 32px;
  background-image: url("../img/section9-3.svg");
  position: absolute;
  top: -90px;
  left: 50px;
  z-index: -1;
}
.wrapperMain #section9 .imgStar3 {
  width: 92px;
  height: 84px;
  background-image: url("../img/section9-4.svg");
  position: absolute;
  bottom: -50px;
  right: -25px;
  z-index: -1;
}
.wrapperMain #section9 .imgStar4 {
  display: none;
  width: 69px;
  height: 63px;
  background-image: url("../img/section9-4.svg");
  position: absolute;
  bottom: -30px;
  right: 50px;
  z-index: -1;
}
.wrapperMain #section9 .imgStar5 {
  width: 79px;
  height: 74px;
  background-image: url("../img/section9-6.svg");
  position: absolute;
  bottom: -45px;
  left: 360px;
  z-index: -1;
}
.wrapperMain #section9 .imgStar6 {
  width: 35px;
  height: 32px;
  background-image: url("../img/section9-7.svg");
  position: absolute;
  bottom: 0px;
  left: 469px;
  z-index: -1;
}
@media (max-width: 1100px) {
  .wrapperMain #section9 .column {
    margin: 50px 20px 0 0;
  }
  .wrapperMain #section9 .text {
    font-size: 24px;
  }
  .wrapperMain #section9 .text strong {
    font-size: 42px;
  }
  .wrapperMain #section9 .text br {
    margin: 0;
  }
  .wrapperMain #section9 .img1 {
    width: 285px;
    height: 420px;
  }
  .wrapperMain #section9 .imgStar3 {
    width: 74px;
    height: 67px;
    bottom: -35px;
    right: -15px;
  }
}
@media (max-width: 1000px) {
  .wrapperMain #section9 .text {
    font-size: 22px;
    line-height: 30px;
  }
  .wrapperMain #section9 .text strong {
    font-size: 40px;
  }
  .wrapperMain #section9 .text .br1 {
    display: none;
  }
  .wrapperMain #section9 .text.margin {
    margin: 8px 0;
  }
  .wrapperMain #section9 .column {
    margin: 35px 20px 0 0;
  }
  .wrapperMain #section9 .img1 {
    width: 259px;
    height: 368px;
  }
}
@media (max-width: 900px) {
  .wrapperMain #section9 .text {
    font-size: 20px;
  }
  .wrapperMain #section9 .text strong {
    font-size: 38px;
  }
  .wrapperMain #section9 .imgStar3 {
    width: 55px;
    height: 50px;
    bottom: -25px;
  }
}
@media (max-width: 850px) {
  .wrapperMain #section9 .imgStar5 {
    left: 300px;
  }
  .wrapperMain #section9 .imgStar6 {
    left: 400px;
  }
}
@media (max-width: 800px) {
  .wrapperMain #section9 {
    padding: 50px 20px 0 20px;
  }
  .wrapperMain #section9 .content {
    flex-direction: column-reverse;
  }
  .wrapperMain #section9 .column {
    margin: 50px 0 0 0;
  }
  .wrapperMain #section9 .imgStar1 {
    display: none;
  }
  .wrapperMain #section9 .imgStar2 {
    display: none;
  }
  .wrapperMain #section9 .imgStar4 {
    display: flex;
  }
}
@media (max-width: 600px) {
  .wrapperMain #section9 .text.margin {
    margin: 15px 0 20px 0;
  }
  .wrapperMain #section9 .imgStar3 {
    width: 46px;
    height: 42px;
    bottom: -30px;
  }
  .wrapperMain #section9 .imgStar4 {
    width: 55px;
    height: 50px;
    bottom: -25px;
  }
  .wrapperMain #section9 .imgStar5 {
    left: unset;
    right: 50px;
  }
  .wrapperMain #section9 .imgStar6 {
    left: unset;
    right: 0px;
  }
}
@media (max-width: 500px) {
  .wrapperMain #section9 .text {
    font-size: 18px;
  }
  .wrapperMain #section9 .text strong {
    font-size: 36px;
  }
  .wrapperMain #section9 .text.margin {
    margin: 20px 0 25px 0;
  }
  .wrapperMain #section9 .imgStar3 {
    bottom: -35px;
  }
  .wrapperMain #section9 .imgStar4 {
    bottom: -20px;
  }
}
@media (max-width: 450px) {
  .wrapperMain #section9 .text {
    font-size: 17px;
  }
  .wrapperMain #section9 .text strong {
    font-size: 35px;
  }
  .wrapperMain #section9 .text br {
    display: none;
  }
}
@media (max-width: 370px) {
  .wrapperMain #section9 .text {
    font-size: 15px;
  }
  .wrapperMain #section9 .text strong {
    font-size: 34px;
  }
}
@media (max-width: 385px) {
  .wrapperMain #section9 .column {
    margin: 50px 0;
  }
  .wrapperMain #section9 .imgStar5 {
    bottom: -75px;
  }
  .wrapperMain #section9 .imgStar6 {
    bottom: -25px;
  }
}
@media (max-width: 350px) {
  .wrapperMain #section9 {
    padding: 50px 20px 0 20px;
  }
  .wrapperMain #section9 .text {
    font-size: 14px;
  }
  .wrapperMain #section9 .text strong {
    font-size: 32px;
  }
}
.wrapperMain #section11 {
  max-width: 934px;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 56px auto 80px;
  padding: 0 40px;
}
.wrapperMain #section11 .title {
  font-family: "mBank", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  margin: 0 0 50px 0;
}
.wrapperMain #section11 .mainWrapper {
  display: flex;
}
.wrapperMain #section11 .mainWrapper .docWrapper {
  display: flex;
  flex-direction: column;
  width: 46%;
}
.wrapperMain #section11 .mainWrapper .docWrapper .element {
  display: flex;
  margin: 0 0 17px 0;
}
.wrapperMain #section11 .mainWrapper .docWrapper .element .img {
  width: 17px;
  height: 21px;
  margin: 2px 20px 0 0;
  flex-shrink: 0;
}
.wrapperMain #section11 .mainWrapper .docWrapper .element .text {
  color: #000000;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  font-family: "Montserrat", sans-serif;
}
.wrapperMain #section11 .mainWrapper .docWrapper.margin {
  margin: 0 50px 0 0;
}
@media (max-width: 1000px) {
  .wrapperMain #section11 .mainWrapper .docWrapper {
    width: 49%;
    margin-right: 20px;
  }
}
@media (max-width: 800px) {
  .wrapperMain #section11 {
    padding: 0 20px;
  }
}
@media (max-width: 750px) {
  .wrapperMain #section11 {
    margin: 50px 0 40px 0;
  }
  .wrapperMain #section11 .mainWrapper {
    flex-direction: column;
  }
  .wrapperMain #section11 .mainWrapper .docWrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .wrapperMain #section11 .mainWrapper .docWrapper.margin {
    margin: 0;
  }
}
@media (max-width: 580px) {
  .wrapperMain #section11 {
    width: 100%;
  }
  .wrapperMain #section11 .mainWrapper .docWrapper .element {
    margin: 0 0 12px 0;
  }
}
@media (max-width: 400px) {
  .wrapperMain #section11 {
    margin: 50px 0 20px 0;
  }
  .wrapperMain #section11 .title {
    font-size: 23px;
    line-height: 28px;
  }
}
.wrapperMain #section12 {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
  margin: 0 auto 100px auto;
}
.wrapperMain #section12 .text {
  color: var(--czarny, #201C17);
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
}
.wrapperMain #section12 a {
  color: #201C17;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
  text-decoration: underline;
  transition: 0.3s all ease-in-out;
}
.wrapperMain #section12 a:hover {
  color: #0000ee;
}
@media (max-width: 800px) {
  .wrapperMain #section12 {
    padding: 0 20px;
  }
}/*# sourceMappingURL=main.css.map */