* {
  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;
  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;
  left: -175px;
}
.wrapperMain .btnContainer .btnContent {
  width: 0;
  height: 300px;
  position: absolute;
  top: 0;
  left: 0;
  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 {
    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;
}
.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;
  margin: 0 auto;
  padding: 20px 40px;
  position: relative;
}
.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;
}
.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;
  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 .imgBg {
  width: 636px;
  height: 623px;
  background-image: url("../img/section3-1-v2.png");
}
.wrapperMain #section3 .sparkContainer {
  width: 100%;
  display: flex;
  position: absolute;
  overflow: hidden;
  bottom: -46px;
  left: 50%;
  transform: translateX(-50%);
}
.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: -366px;
  left: 50%;
  transform: translateX(-50%);
}

.wrapperMain #section3 .arrowContainer .arrow {
  color: #ff0eb2;
  animation-duration: 4s;
  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: 265px 0 0 0;
  animation-delay: 2.4s;
}

@media (min-width: 1080px) {
  .wrapperMain #section3 .arrowContainer .arrow:nth-child(4) {
    margin: 108px 0 0 0;
    animation-delay: 2.4s;
  }
}
.wrapperMain #section3 .arrowContainer .arrow:nth-child(5) {
  margin: 360px 0 0 0;
  animation-delay: 3.2s;
}

@media (min-width: 600px) and (max-width: 1079px) {
  .wrapperMain #section3 .arrowContainer {
    bottom: -823px;
  }
  .wrapperMain #section3 .arrowContainer .arrow:nth-child(4) {
    margin: 255px 0 0 0;
    animation-delay: 2.4s;
  }
}
@media (min-width: 1080px) {
  .wrapperMain #section3 .arrowContainer {
    bottom: -488px;
  }
  .wrapperMain #section3 .arrowContainer .arrow:nth-child(5) {
    margin: 170px 0 0 0;
    animation-delay: 3.2s;
  }
}
@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 {
    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 {
    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 {
    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 {
    left: -175px;
    margin: 0 auto;
  }
  .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: 75px auto 0 auto; 
  }
}
@media (max-width: 650px) {
  .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 .arrowContainer {
    bottom:-773px;
  }
  .wrapperMain #section3 .arrowContainer.desktop {
    display: none;
    visibility: hidden;
  }
  .wrapperMain #section3 .arrowContainer.mobile {
    display: flex;
    visibility: visible;
  }
}
@media (max-width: 450px) {
  .wrapperMain #section3 .column.marginRight {
    margin: 0 0 30px 0;
  }
  .wrapperMain #section3 .imgBg {
    width: 316px;
    height: 446px;
    background-image: url("../img/section3-1-v2.png");
    position: relative;
    top: 0px;
    margin: 40px auto 0 auto; 
   }
}
.wrapperMain #section4 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 35px 40px 60px 40px;
}
.wrapperMain #section4 .row {
  max-width: 1106px;
  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 {
  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 .boxElement {
  width: 100%;
  display: flex;
  background-color: #ff0eb2;
  border-radius: 77px;
  padding: 12px 11px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.wrapperMain #section4 .boxElementContainer .boxElement.boxElement1 {
  height: 146px;
}
.wrapperMain #section4 .boxElementContainer .boxElement.boxElement2 {
  height: 146px;
}
.wrapperMain #section4 .boxElementContainer .coverContainer {
  height: 146px;
  width: 130px;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
.wrapperMain #section4 .boxElementContainer .boxElementCover {
  height: 146px;
  width: 146px;
  display: flex;
  background-color: #ff0eb2;
  border-radius: 77px;
  padding: 12px 11px;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}
.wrapperMain #section4 .boxElementContainer .circle {
  display: flex;
  flex-direction: column;
  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 .circle.circle1 {
  width: 124px;
  height: 124px;
}

@media (max-width: 340px) {
  .wrapperMain #section4 .boxElementContainer .circle.circle1 {
    width: 100px;
    height: 100px;
    top: 25px;
  }
}  

.wrapperMain #section4 .boxElementContainer .circle.circle2 {
  width: 124px;
  height: 124px;
}
.wrapperMain #section4 .boxElementContainer .circle .textSmall {
  font-size: 20px;
}
.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: 24px;
  right: 18px;
}
.wrapperMain #section4 .boxElementContainer .text.text3 {
  top: 54px;
  right: 18px;
}
.wrapperMain #section4 .boxElementContainer .btnMore1 {
  z-index: 5;
  position: absolute;
  bottom: -18px;
  right: -24px;
}
.wrapperMain #section4 .boxElementContainer .btnMore2 {
  z-index: 5;
  position: absolute;
  bottom: -18px;
  right: -24px;
}
.wrapperMain #section4 .boxElementContainer.boxElementContainer1 {
  min-width: 152px;
  max-width: 152px;
}
.wrapperMain #section4 .boxElementContainer.boxElementContainer2 {
  min-width: 152px;
  max-width: 152px;
}
.wrapperMain #section4 .boxElementContainer.active1.boxElementContainer1 {
  max-width: 285px;
}
.wrapperMain #section4 .boxElementContainer.active1 .text.text1 {
  right: 28px;
}
.wrapperMain #section4 .boxElementContainer.active1 .btnMore1 {
  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.boxElementContainer1 {
  max-width: 310px;
}
.wrapperMain #section4 .boxElementContainer.active2 .text.text2 {
  right: 32px;
}
.wrapperMain #section4 .boxElementContainer.active2 .btnMore1 {
  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.boxElementContainer2 {
  max-width: 314px;
}
.wrapperMain #section4 .boxElementContainer.active3 .text.text3 {
  right: 18px;
}
.wrapperMain #section4 .boxElementContainer.active3 .btnMore2 {
  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;
  left: 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 {
  width: 100%;
  text-align: center;
  color: #ff0eb2;
  font-family: mBank;
  font-size: 20px;
  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 {
  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
  .text.margin1 {
  margin: 14px 0 32px;
}

.wrapperMain #section4 .modal .modalWrapper .modalContainer .modalContent .text.margin1.mbNone{
  margin-bottom: 0px;
}

.wrapperMain
  #section4
  .modal
  .modalWrapper
  .modalContainer
  .modalContent
  .text.ultraSmall1 {
  max-width: 317px;
}
.wrapperMain
  #section4
  .modal
  .modalWrapper
  .modalContainer
  .modalContent
  .text.ultraSmall2 {
  max-width: 317px;
}
.wrapperMain
  #section4
  .modal
  .modalWrapper
  .modalContainer
  .modalContent
  .text.small {
  max-width: 390px;
}
.wrapperMain
  #section4
  .modal
  .modalWrapper
  .modalContainer
  .modalContent
  .text:not(.small):not(.ultraSmall1):not(.ultraSmall2) {
  max-width: 570px;
}

.wrapperMain
  #section4
  .modal
  .modalWrapper
  .modalContainer
  .modalContent
  .text.wider{
    max-width: 800px !important;
  }
.wrapperMain
  #section4
  .modal
  .modalWrapper
  .modalContainer
  .modalContent
  .text.mobile {
  display: none;
  visibility: hidden;
}
.wrapperMain
  #section4
  .modal
  .modalWrapper
  .modalContainer
  .modalContent
  .nowrap {
  white-space: nowrap;
}
.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: 315px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 2px solid #000;
  border-radius: 36px;
  padding: 10px 10px 10px 30px;
  position: relative;
}
.wrapperMain
  #section4
  .modal
  .modalWrapper
  .modalContainer
  .modalContent
  .modalRow.margin1 {
  margin: 52px 0 17px 0;
}
.wrapperMain
  #section4
  .modal
  .modalWrapper
  .modalContainer
  .modalContent
  .modalRow.margin2 {
  margin: 52px 0 15px 0;
}
.wrapperMain
  #section4
  .modal
  .modalWrapper
  .modalContainer
  .modalContent
  .modalRow.margin3 {
  margin: 52px 0 0 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: 950px) {
  .wrapperMain #section4 .row {
    flex-direction: column;
    margin: 100px 0;
  }
  .wrapperMain #section4 .boxElementContainer .boxElement.boxElement2 {
    height: 105px;
  }
  .wrapperMain #section4 .boxElementContainer .text.text3 {
    font-size: 15.5px;
    top: 32px;
  }
  .wrapperMain #section4 .boxElementContainer .circle.circle2 {
    width: 85px;
    height: 85px;
    top: 10px;
    left: 10px;
  }
  .wrapperMain #section4 .boxElementContainer .circle .textSmall {
    font-size: 18px;
  }
  .wrapperMain #section4 .boxElementContainer .coverContainer {
    width: 85px;
    height: 95px;
  }
  .wrapperMain #section4 .boxElementContainer .boxElementCover {
    width: 105px;
    height: 105px;
  }
  .wrapperMain #section4 .boxElementContainer .btnMore2 {
    right: -50px;
  }
  .wrapperMain #section4 .boxElementContainer .imgStar7 {
    top: unset;
    bottom: 15px;
    left: 50px;
  }
  .wrapperMain #section4 .boxElementContainer.boxElementContainer2 {
    min-width: 110px;
    max-width: 110px;
  }
  .wrapperMain #section4 .boxElementContainer.active3.boxElementContainer2 {
    max-width: 310px;
  }
  .wrapperMain #section4 .boxElementContainer.active3 .text.text3 {
    right: 18px;
    top: 54px;
  }
  .wrapperMain #section4 .boxElementContainer.active3 .imgStar7 {
    top: unset;
    bottom: -47px;
    left: 60px;
  }
  .wrapperMain #section4 .boxElementContainer:nth-child(2) {
    margin: 80px 0;
  }
}
@media (max-width: 900px) {
  .wrapperMain
    #section4
    .modal
    .modalWrapper
    .modalContainer
    .modalContent
    .title {
    text-align: left;
  }
}
@media (max-width: 800px) {
  .wrapperMain #section4 {
    padding: 35px 20px 60px 20px;
  }
}
@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 30px;
    position: relative;
    left: -15px;
  }
  .wrapperMain
  #section4
  .modal
  .modalWrapper
  .modalContainer
  .modalContent
  .modalRow.moreOffset {

  left: -38px;
}
  
  .wrapperMain
    #section4
    .modal
    .modalWrapper
    .modalContainer
    .modalContent
    .modalRow.margin1 {
    margin: 52px 0 39px 0;
  }
  .wrapperMain
    #section4
    .modal
    .modalWrapper
    .modalContainer
    .modalContent
    .text.mobile {
    display: flex;
    visibility: visible;
  }
  .wrapperMain
    #section4
    .modal
    .modalWrapper
    .modalContainer
    .modalContent
    .text.ultraSmall1 {
    max-width: 225px;
  }
  .wrapperMain
    #section4
    .modal
    .modalWrapper
    .modalContainer
    .modalContent
    .text.ultraSmall2 {
    max-width: 350px;
  }
  .wrapperMain
    #section4
    .modal
    .modalWrapper
    .modalContainer
    .modalContent
    .subTitle
    .desktop {
    display: none;
    visibility: hidden;
  }
}
@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;
  }
  .wrapperMain
    #section4
    .modal
    .modalWrapper
    .modalContainer
    .modalContent
    .subTitle {
    text-align: left;
  }
  .wrapperMain
    #section4
    .modal
    .modalWrapper
    .modalContainer
    .modalContent
    .text.ultraSmall1 {
    max-width: unset;
  }
  .wrapperMain
    #section4
    .modal
    .modalWrapper
    .modalContainer
    .modalContent
    .text.ultraSmall2 {
    max-width: unset;
  }
}
@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 #section4 .modal .modalWrapper .modalContainer .modalContent {
    padding: 45px 20px 60px 20px;
  }
}
.wrapperMain #section5 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wrapperMain #section5 .sparkContainerTop {
  width: 100%;
  overflow: hidden;
  position: relative;
  top: 1px;
}
.wrapperMain #section5 .sparkContainerTop .imgSpark {
  width: 1440px;
  height: 27px;
  background-image: url("../img/section5-1.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.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: 80px 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;
}


.wrapperMain #section5 .container {
  width: 100%;
  max-width: 1060px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wrapperMain #section5 .row {
  display: flex;
  margin: 0 0 43px 0;
  gap: 24px;
  width: 100%;
}

@media (max-width: 800px) {
  .wrapperMain #section5 .row {
    flex-direction: column;
    margin: 0 0 35px 0;
  }
}

.wrapperMain #section5 .content {
  padding: 10px 40px 40px 40px;
}

@media (max-width: 1050px) {
  .wrapperMain #section5 .content {
    padding: 0 30px 40px 30px;
  }
}

.wrapperMain #section5 .visa-card {
  width: 100%;
  max-width: 345px;
}

.wrapperMain #section5 .img {
  text-align: center;
  margin: 10px 0 0;
}

.wrapperMain #section5 .btn {
  margin-top: 60px;
  max-width: 100%;
}

.wrapperMain #section5 .text {
  color: #fff;
  font-family: mBank;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.12px;
  margin: 0 0 20px 0;
}

@media (max-width: 1000px) {
  .wrapperMain #section5 .text {
    font-size: 20px;
    line-height: 27px;
    margin: 0 0 18px 0;
  }
}

@media (max-width: 500px) {
  .wrapperMain #section5 .text {
    font-size: 18px;
    margin: 0 0 16px 0;
  }
}

.wrapperMain #section5 .textWhite{color: #fff;}

@media (max-width: 500px) {
  .wrapperMain #section5 .title {
    font-size: 34px;
    margin-bottom: 30px;
  }
}

@media (max-width: 500px) {
  .wrapperMain #section5 .blueList {
    padding: 0 0 0 20px;
  }
}



@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: 50px 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.margin1 {
  margin: 50px 0 0 0;
}
.wrapperMain #section6 .column.margin2 {
  margin: 0 0 0 45px;
}
.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 .title::after {
  content: "";
  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;
}
.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;
  }
}
@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 .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.mobile {
  display: none;
  visibility: hidden;
}
.wrapperMain #section7 .title.margin1 {
  margin: 15px 0 0 0;
}
.wrapperMain #section7 .title:not(.margin1) {
  margin: 0;
}
.wrapperMain #section7 .rowArrow {
  max-width: 150px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 25px 0 10px 0;
}
.wrapperMain #section7 .rowArrow.mobile {
  display: none;
  visibility: hidden;
}
.wrapperMain #section7 .imgArrowPink {
  width: 29px;
  height: 61px;
  background-image: url("../img/section7-19.svg");
}
.wrapperMain #section7 .imgArrowGreen {
  width: 29px;
  height: 61px;
  background-image: url("../img/section7-20.svg");
}
.wrapperMain #section7 .cloudContainer {
  width: 100%;
  height: 86px;
  position: relative;
  margin: 40px 0 24px 0;
}
.wrapperMain #section7 .cloudContainer.desktop {
  display: flex;
}
.wrapperMain #section7 .cloudContainer.mobile {
  display: none;
  cursor: pointer;
}
.wrapperMain #section7 .cloudContainer.margin1 {
  margin: 40px 0 24px 0;
}
.wrapperMain #section7 .cloudContainer.margin2 {
  margin: 40px 0 24px 0;
}
.wrapperMain #section7 .cloudLeft {
  width: 545px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-width: 6px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-radius: 0 80px 80px 0;
  background-color: #ffffff;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  position: absolute;
  left: -40px;
  top: 0;
}
.wrapperMain #section7 .cloudLeft .cludText {
  text-align: left;
  color: #201c17;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 0 15px 0 0;
}
.wrapperMain #section7 .cloudLeft .img1 {
  width: 36px;
  height: 56px;
  background-image: url("../img/section7-3.svg");
  flex-shrink: 0;
}
.wrapperMain #section7 .cloudLeft .img2 {
  width: 59px;
  height: 55px;
  background-image: url("../img/section7-4.svg");
  flex-shrink: 0;
}
.wrapperMain #section7 .cloudLeft.pink {
  border-color: #ff0eb2;
  padding: 9px 43px 9px 20px;
}
.wrapperMain #section7 .cloudLeft.green {
  border-color: #00ff00;
  padding: 9px 31px 9px 20px;
}
.wrapperMain #section7 .cloudRight {
  width: 545px;
  display: flex;
  align-items: center;
  border-width: 6px;
  border-top-style: solid;
  border-left-style: solid;
  border-bottom-style: solid;
  border-radius: 80px 0 0 80px;
  background-color: #ffffff;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  position: absolute;
  right: 0px;
  top: 0;
}
.wrapperMain #section7 .cloudRight .cludText {
  color: #201c17;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 0 0 0 15px;
}
.wrapperMain #section7 .cloudRight .img1 {
  width: 36px;
  height: 56px;
  background-image: url("../img/section7-3.svg");
  flex-shrink: 0;
}
.wrapperMain #section7 .cloudRight .img2 {
  width: 59px;
  height: 55px;
  background-image: url("../img/section7-4.svg");
  flex-shrink: 0;
}
.wrapperMain #section7 .cloudRight.pink {
  border-color: #ff0eb2;
  padding: 9px 43px 9px 20px;
}
.wrapperMain #section7 .cloudRight.green {
  border-color: #00ff00;
  padding: 9px 20px 9px 31px;
}
.wrapperMain #section7 .infoScroll {
  width: 100%;
  max-height: 0;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  transition: 0.5s all ease-in-out;
}
.wrapperMain #section7 .infoScroll.activeDesktop {
  max-height: 1500px;
}
.wrapperMain #section7 .infoScroll.active {
  max-height: 1500px !important;
}
.wrapperMain #section7 .info {
  max-width: 1111px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 30px;
  padding: 20px 69px 20px 64px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  z-index: 1;
}
.wrapperMain #section7 .info .infoCloudText {
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0;
}
.wrapperMain #section7 .info .infoCloudArrowWhite {
  width: 23px;
  height: 11px;
  background-image: url("../img/section7-7.svg");
  transition: 0.3s all ease-in-out;
  flex-shrink: 0;
}
.wrapperMain #section7 .info .infoCloudArrowBlack {
  width: 23px;
  height: 11px;
  background-image: url("../img/section7-15.svg");
  transition: 0.3s all ease-in-out;
  flex-shrink: 0;
}
.wrapperMain #section7 .info.pink {
  background-color: #ff0eb2;
}
.wrapperMain #section7 .info.pink .infoCloudText {
  color: #fff;
}
.wrapperMain #section7 .info.green {
  background-color: #00ff00;
}
.wrapperMain #section7 .info.green .infoCloudText {
  color: #201c17;
}
.wrapperMain #section7 .info.active .infoCloudArrowWhite {
  transform: rotate(180deg);
}
.wrapperMain #section7 .info.active .infoCloudArrowBlack {
  transform: rotate(180deg);
}
.wrapperMain #section7 .infoContainer {
  max-width: 1111px;
  width: 100%;
  max-height: 0;
  height: auto;
  position: relative;
  top: -25px;
  overflow: hidden;
  transition: 0.5s all ease-in-out;
  z-index: 0;
  margin: 0 0 14px 0;
}
.wrapperMain #section7 .infoContainer .infoContent {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 0 0 30px 30px;
  padding: 62px 65px 40px 65px;
}
.wrapperMain #section7 .infoContainer .infoContent .infoText {
  color: #000;
  font-family: mBank;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}
.wrapperMain #section7 .infoContainer .infoContent .infoText strong {
  font-family: mBank;
  font-weight: 600;
}
.wrapperMain #section7 .infoContainer .infoContent .infoText.margin1 {
  margin: 37px 0 30px 0;
}
.wrapperMain #section7 .infoContainer .infoContent .infoText.margin2 {
  margin: 0px 0 26px 0;
}
.wrapperMain #section7 .infoContainer .infoContent .infoText.margin3 {
  margin: 41px 0 0 0;
}
.wrapperMain #section7 .infoContainer .infoContent .infoText.small {
  font-size: 16px;
}
.wrapperMain #section7 .infoContainer .infoContent .infoText.center {
  align-items: center;
}
.wrapperMain #section7 .infoContainer .infoContent .pink {
  color: #ff0eb2;
  font-family: mBank;
  font-size: 20px;
  font-weight: 700;
}
.wrapperMain #section7 .infoContainer .infoContent .black {
  color: #000;
  font-family: mBank;
  font-size: 20px;
  font-weight: 700;
}
.wrapperMain #section7 .infoContainer .infoContent .pinkBig {
  color: #ff0eb2;
  font-family: mBank;
  font-size: 24px;
  font-weight: 700;
}
.wrapperMain #section7 .infoContainer .infoContent .greenBig {
  color: #0f0;
  font-family: mBank;
  font-size: 24px;
  font-weight: 700;
}
.wrapperMain #section7 .infoContainer .infoContent .big {
  font-family: mBank;
  font-size: 20px;
  font-weight: 700;
}
.wrapperMain #section7 .infoContainer .infoContent .list {
  margin: 5px 0;
}
.wrapperMain #section7 .infoContainer .infoContent .list li {
  margin: 0 0 5px 0;
}
.wrapperMain #section7 .infoContainer .infoContent .column {
  display: flex;
  flex-direction: column;
}
.wrapperMain #section7 .infoContainer .infoContent .column.margin1 {
  margin: 0 15px 0 0;
}
.wrapperMain #section7 .infoContainer .infoContent .column.column1 {
  width: 55%;
}
.wrapperMain #section7 .infoContainer .infoContent .column.column2 {
  width: 45%;
}
.wrapperMain #section7 .infoContainer .infoContent .column.column3 {
  width: 51%;
}
.wrapperMain #section7 .infoContainer .infoContent .column.column4 {
  width: 46%;
}
.wrapperMain #section7 .infoContainer .infoContent .row {
  width: 100%;
  display: flex;
  align-items: center;
}
.wrapperMain #section7 .infoContainer .infoContent .row.margin1 {
  margin: 0 0 55px 0;
}
.wrapperMain #section7 .infoContainer .infoContent .row.margin2 {
  margin: 0 0 66px 0;
}
.wrapperMain #section7 .infoContainer .infoContent .row.margin3 {
  margin: 0px 0 26px 0;
}
.wrapperMain #section7 .infoContainer .infoContent .row.sb {
  justify-content: space-between;
}
.wrapperMain #section7 .infoContainer .infoContent .img1 {
  width: 78px;
  height: 79px;
  background-image: url("../img/section7-8.svg");
  margin: 0 16px 0 0;
  flex-shrink: 0;
}
.wrapperMain #section7 .infoContainer .infoContent .img2 {
  width: 78px;
  height: 79px;
  background-image: url("../img/section7-9.svg");
  margin: 0 16px 0 0;
  flex-shrink: 0;
}
.wrapperMain #section7 .infoContainer .infoContent .img3 {
  width: 78px;
  height: 79px;
  background-image: url("../img/section7-10.svg");
  margin: 0 16px 0 0;
  flex-shrink: 0;
}
.wrapperMain #section7 .infoContainer .infoContent .img4 {
  width: 78px;
  height: 79px;
  background-image: url("../img/section7-11.svg");
  margin: 0 16px 0 0;
  flex-shrink: 0;
}
.wrapperMain #section7 .infoContainer .infoContent .img5 {
  width: 162px;
  height: 53px;
  background-image: url("../img/section7-12.png");
  margin: 0 40px 0 0;
  flex-shrink: 0;
}
.wrapperMain #section7 .infoContainer .infoContent .img6 {
  width: 164px;
  height: 53px;
  background-image: url("../img/section7-13.png");
  margin: 0 40px 0 0;
  flex-shrink: 0;
}
.wrapperMain #section7 .infoContainer .infoContent .img7 {
  width: 163px;
  height: 53px;
  background-image: url("../img/section7-14.png");
  flex-shrink: 0;
}
.wrapperMain #section7 .infoContainer .infoContent .imgDownloadPink {
  width: 49px;
  height: 40px;
  background-image: url("../img/section7-17.svg");
  margin: 0 0 0 30px;
  flex-shrink: 0;
}
.wrapperMain #section7 .infoContainer .infoContent .imgDownloadPink.mobile {
  display: none;
  visibility: hidden;
}
.wrapperMain #section7 .infoContainer .infoContent .imgDownloadGreen {
  width: 49px;
  height: 40px;
  background-image: url("../img/section7-18.svg");
  margin: 0 0 0 30px;
  flex-shrink: 0;
}
.wrapperMain #section7 .infoContainer .infoContent .imgDownloadGreen.mobile {
  display: none;
  visibility: hidden;
}
.wrapperMain #section7 .infoContainer .infoContent .btnBlue {
  width: -moz-fit-content;
  width: fit-content;
  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: 12px 24px;
  transition: 0.3s all ease-in-out;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  color: #fff;
  font-size: 11.556px;
  font-weight: 600;
  background-color: #00f;
  border: 1px solid #00f;
}
.wrapperMain #section7 .infoContainer .infoContent .btnBlue:hover {
  color: #00f;
  background-color: #fff;
}
.wrapperMain #section7 .infoContainer .infoContent .btnBlue.margin1 {
  margin: 38px auto 0;
}
.wrapperMain #section7 .infoContainer .infoContent .btnBlue.margin2 {
  margin: 20px auto 0;
}
.wrapperMain #section7 .infoContainer .infoContent .slider {
  flex-direction: column;
  visibility: hidden;
  max-width: 500px;
  width: 100%;
  max-height: 200px;
  height: auto;
  overflow: hidden;
  position: relative;
  margin: 30px 0;
  transition: 0.2s all ease-in-out;
}
.wrapperMain #section7 .infoContainer .infoContent .arrows {
  width: 100%;
  display: flex;
  position: absolute;
  top: 100px;
  left: 0;
  z-index: 10;
}
.wrapperMain #section7 .infoContainer .infoContent .arrow {
  width: 32px;
  height: 32px;
  display: flex;
  transition: 0.3s all ease-in-out;
  cursor: pointer;
}
.wrapperMain #section7 .infoContainer .infoContent .arrow:disabled {
  opacity: 0;
  pointer-events: none;
}
.wrapperMain #section7 .infoContainer .infoContent .arrowLeftBlack {
  background-image: url("../img/section7-16.svg");
  transform: rotate(180deg);
  position: absolute;
  top: 0;
  left: 0;
}
.wrapperMain #section7 .infoContainer .infoContent .arrowRightBlack {
  background-image: url("../img/section7-16.svg");
  position: absolute;
  top: 0;
  right: 0;
}
.wrapperMain #section7 .infoContainer .infoContent .arrowLeftGreen {
  background-image: url("../img/section7-21.svg");
  transform: rotate(180deg);
  position: absolute;
  top: 0;
  left: 0;
}
.wrapperMain #section7 .infoContainer .infoContent .arrowRightGreen {
  background-image: url("../img/section7-21.svg");
  position: absolute;
  top: 0;
  right: 0;
}
.wrapperMain #section7 .infoContainer .infoContent .sliderItem {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 0.3s all ease-in-out;
}
.wrapperMain #section7 .infoContainer .infoContent .sliderItem .itemRow {
  display: flex;
}
.wrapperMain #section7 .infoContainer .infoContent .sliderItem .number {
  text-align: right;
  font-family: mBank;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.96px;
  margin: 0 0 0 30px;
}
.wrapperMain
  #section7
  .infoContainer
  .infoContent
  .sliderItem
  .number.numberPink {
  color: #ff0eb2;
}
.wrapperMain
  #section7
  .infoContainer
  .infoContent
  .sliderItem
  .number.numberGreen {
  color: #0f0;
}
.wrapperMain #section7 .infoContainer .infoContent .sliderItem.active {
  max-height: 300px;
}
.wrapperMain #section7 .infoContainer.active {
  max-height: 880px;
  margin: 0;
}
@media (max-width: 1200px) {
  .wrapperMain #section7 .infoContainer.active {
    max-height: 930px;
  }
}
@media (max-width: 1000px) {
  .wrapperMain #section7 .infoContainer .infoContent {
    padding: 55px 30px 40px 25px;
  }
  .wrapperMain #section7 .infoContainer .infoContent .infoText br {
    display: none;
  }
  .wrapperMain #section7 .infoContainer .infoContent .infoText.small {
    font-size: 15px;
  }
  .wrapperMain #section7 .infoContainer.active {
    max-height: 1100px;
  }
}
@media (max-width: 800px) {
  .wrapperMain #section7 .container {
    padding: 55px 0 65px 0;
  }
  .wrapperMain #section7 .rowArrow.mobile {
    display: flex;
    visibility: visible;
  }
  .wrapperMain #section7 .title {
    font-size: 38px;
    padding: 0 20px;
  }
  .wrapperMain #section7 .title.mobile {
    display: flex;
    visibility: visible;
  }
  .wrapperMain #section7 .infoScroll.activeDesktop {
    max-height: 0;
  }
  .wrapperMain #section7 .infoScroll.infoScroll1 {
    align-items: flex-start;
  }
  .wrapperMain #section7 .infoScroll.infoScroll2 {
    align-items: flex-end;
  }
  .wrapperMain #section7 .cloudContainer.desktop {
    display: none;
  }
  .wrapperMain #section7 .cloudContainer.mobile {
    display: flex;
  }
  .wrapperMain #section7 .cloudLeft {
    max-width: 545px;
    width: calc(100% - 20px);
    left: 0px;
  }
  .wrapperMain #section7 .cloudRight {
    max-width: 545px;
    width: calc(100% - 20px);
  }
  .wrapperMain #section7 .info {
    max-width: 540px;
    width: calc(100% - 20px);
  }
  .wrapperMain #section7 .info.pink {
    border-radius: 0 30px 30px 0;
    padding: 20px 8vw 20px 8vw;
  }
  .wrapperMain #section7 .info.green {
    border-radius: 30px 0 0 30px;
    flex-direction: row-reverse;
    justify-content: flex-end;
    padding: 20px 8vw 20px 8vw;
  }
  .wrapperMain #section7 .info.green .infoCloudText1 {
    margin: 0 0 0 auto;
  }
  .wrapperMain #section7 .info.green .infoCloudText2 {
    margin: 0 90px 0 auto;
  }
  .wrapperMain #section7 .infoContainer {
    max-width: 540px;
    width: calc(100% - 20px);
  }
  .wrapperMain #section7 .infoContainer .infoContent {
    padding: 55px 20px 38px 20px;
  }
  .wrapperMain #section7 .infoContainer .infoContent .infoText.small {
    font-size: 14px;
  }
  .wrapperMain #section7 .infoContainer .infoContent .desktop {
    display: none;
    visibility: hidden;
  }
  .wrapperMain #section7 .infoContainer .infoContent .slider {
    display: flex !important;
    visibility: visible !important;
  }
  .wrapperMain #section7 .infoContainer .infoContent .list {
    padding: 0 0 0 20px;
  }
  .wrapperMain #section7 .infoContainer .infoContent .imgDownloadPink.mobile {
    display: flex;
    visibility: visible;
  }
  .wrapperMain #section7 .infoContainer .infoContent .imgDownloadGreen.mobile {
    display: flex;
    visibility: visible;
  }
  .wrapperMain #section7 .infoContainer .infoContent .row1 {
    flex-wrap: wrap;
  }
  .wrapperMain #section7 .infoContainer .infoContent .img1 {
    margin: 20px 0;
  }
  .wrapperMain #section7 .infoContainer .infoContent .img2 {
    margin: 20px 0;
  }
  .wrapperMain #section7 .infoContainer .infoContent .img3 {
    margin: 20px 0;
  }
  .wrapperMain #section7 .infoContainer .infoContent .img4 {
    margin: 20px 0;
  }
  .wrapperMain #section7 .infoContainer .infoContent .img5 {
    margin: 0 20px 0 0;
  }
  .wrapperMain #section7 .infoContainer .infoContent .img6 {
    margin: 0 0 0 auto;
  }
  .wrapperMain #section7 .infoContainer .infoContent .img7 {
    margin: 20px auto 0;
  }
  .wrapperMain #section7 .infoContainer .infoContent.infoContent1 {
    border-radius: 0 0 30px 0;
  }
  .wrapperMain #section7 .infoContainer .infoContent.infoContent2 {
    border-radius: 0 0 0 30px;
  }
}
@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 .title {
    font-size: 32px;
    line-height: 46px;
  }
  .wrapperMain #section7 .rowArrow {
    max-width: 125px;
  }
}
@media (max-width: 500px) {
  .wrapperMain #section7 .infoContainer.active {
    max-height: 1100px;
  }
}
@media (max-width: 450px) {
  .wrapperMain #section7 .infoContainer .infoContent .infoText.small {
    font-size: 13px;
  }
  .wrapperMain #section7 .infoContainer .infoContent .infoText.marign3 {
    margin: 35px 0 0 0;
  }
}
@media (max-width: 425px) {
  .wrapperMain #section7 .title {
    font-size: 28px;
    line-height: 42px;
  }
  .wrapperMain #section7 .rowArrow {
    max-width: 100px;
  }
  .wrapperMain #section7 .infoContainer .infoContent .img5 {
    width: 122px;
    height: 40px;
  }
  .wrapperMain #section7 .infoContainer .infoContent .img6 {
    width: 123px;
    height: 40px;
  }
  .wrapperMain #section7 .infoContainer .infoContent .img7 {
    width: 122px;
    height: 40px;
  }
}
@media (max-width: 370px) {
  .wrapperMain #section7 .infoContainer.active {
    max-height: 1200px;
  }
  .wrapperMain #section7 .title {
    font-size: 24px;
    line-height: 36px;
  }
  .wrapperMain #section7 .title.margin1 {
    margin: 10px 0 0 0;
  }
  .wrapperMain #section7 .rowArrow {
    max-width: 80px;
    margin: 20px 0 10px 0;
  }
}
@media (max-width: 350px) {
  .wrapperMain #section7 .infoContainer .infoContent .infoText.small {
    font-size: 12px;
  }
  .wrapperMain #section7 .infoContainer .infoContent .img5 {
    margin: 0;
  }
  .wrapperMain #section7 .infoContainer.active {
    max-height: 1180px;
  }
}
.wrapperMain #section11 {
  max-width: 934px;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 56px auto 80px;
  padding: 0 40px;
}
.wrapperMain #section11 .title,
#faq-2 .title {
  font-family: "mBank", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  margin: 0 0 50px 0;
}

#faq-2 .title{
  margin: 0 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,
  #faq-2 .title {
    font-size: 23px;
    line-height: 28px;
  }
}
.wrapperMain #section12 {
  max-width: 1180px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 40px 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: 40px 20px 0px 20px;
  }
}
section#phone .ornament {
  position: absolute;
  z-index: -1;
}
section#phone .ornament.ornament-1 {
  left: 0;
  top: 0;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  width: 50px;
}
section#phone .ornament.ornament-2 {
  right: 0;
  top: 0;
  -webkit-transform: translateY(-80%);
  transform: translateY(-80%);
  width: 60px;
}
section#phone .ornament.ornament-3 {
  right: 0;
  top: 0;
  -webkit-transform: translateY(70%);
  transform: translateY(70%);
  width: 70px;
}
@media (min-width: 576px) {
  section#phone .ornament.ornament-1 {
    left: 0;
    top: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  section#phone .ornament.ornament-2 {
    right: 0;
    top: 0;
    -webkit-transform: translate(80%, -80%);
    transform: translate(80%, -80%);
  }
  section#phone .ornament.ornament-3 {
    right: 0;
    top: 0;
    -webkit-transform: translateY(70%);
    transform: translateY(70%);
  }
}
@media (min-width: 992px) {
  section#phone .ornament.ornament-1 {
    left: 0;
    top: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    width: 78px;
  }
  section#phone .ornament.ornament-2 {
    right: 0;
    top: 0;
    -webkit-transform: translate(80%, -80%);
    transform: translate(80%, -80%);
    width: 96px;
  }
  section#phone .ornament.ornament-3 {
    right: 0;
    top: 0;
    -webkit-transform: translateY(70%);
    transform: translateY(70%);
    width: 143px;
  }
}
section#phone p {
  color: #00f;
  font-family: mBank;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.075px;
  line-height: 120%;
}
section#phone p span {
  font-size: 32px;
  letter-spacing: -0.16px;
  line-height: 18px;
}
@media (min-width: 768px) {
  section#phone p {
    font-size: calc(1.2875rem + 0.45vw);
    letter-spacing: -0.13px;
    line-height: 123.077%;
  }
  section#phone p span {
    font-size: calc(1.425rem + 2.1vw);
    letter-spacing: -0.24px;
    line-height: 32px;
  }
}
@media (min-width: 768px) and (min-width: 1200px) {
  section#phone p span {
    font-size: 3rem;
  }
  section#phone p {
    font-size: 1.625rem;
  }
}
/* Spacing utilities */
#phone {
  padding: 57px 0;
}
@media (min-width: 768px) {
  #phone {
    padding: 122px 0;
  }
}
#phone img {
  width: 100%;
}
#phone .py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}
#phone .mb-5 {
  margin-bottom: 3rem !important;
}
#phone .mt-3 {
  margin-top: 1rem !important;
}
#phone.container-fluid {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}
#phone .position-relative {
  position: relative !important;
}
#phone .d-flex {
  display: flex !important;
}
#phone .flex-row {
  flex-direction: row !important;
}
#phone .justify-content-center {
  justify-content: center !important;
}
#phone .align-items-center {
  align-items: center !important;
}
#phone .row {
  display: flex;
  flex-wrap: wrap;
  margin-right: calc(var(--bs-gutter-x) * -0.5);
  margin-left: calc(var(--bs-gutter-x) * -0.5);
}
#phone .col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}
@media (min-width: 576px) {
  #phone .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  #phone .mt-sm-3 {
    margin-top: 1rem !important;
  }
  #phone .col-sm-5 {
    flex: 0 0 auto;
    width: 41.666667%;
  }
  #phone .order-sm-last {
    order: 12;
  }
  #phone .col-sm-7 {
    flex: 0 0 auto;
    width: 58.333333%;
  }
}
@media (min-width: 992px) {
  #phone .mt-lg-5 {
    margin-top: 3rem !important;
  }
}
#phone .content {
  width: 100%;
  max-width: 1060px;
}

#faq-2.py-5{
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

#faq-2 .pt-5 {
  padding-top: 3rem !important;
}
#faq-2 .py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}
#faq-2 .mb-5 {
  margin-bottom: 3rem !important;
}
#faq-2 .mt-sm-3 {
  margin-top: 1rem !important;
}
#faq-2 .mt-lg-0 {
  margin-top: 0 !important;
}
#faq-2 .py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
#faq-2 .py-sm-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}
#faq-2 .pb-3 {
  padding-bottom: 1rem !important;
}
#faq-2.container-fluid {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}
#faq-2.bg-gray {
  background-color: #f1f2f2 !important;
  /* Assuming a light gray background color */
}
#faq-2 .position-relative {
  position: relative !important;
}
#faq-2 .d-flex {
  display: flex !important;
}
#faq-2 .flex-row {
  flex-direction: row !important;
}
#faq-2 .align-items-center {
  align-items: center !important;
}
#faq-2 .justify-content-center {
  justify-content: center !important;
}
#faq-2 .justify-content-between {
  justify-content: space-between !important;
}
#faq-2 .row {
  display: flex;
  flex-wrap: wrap;
  margin-right: calc(var(--bs-gutter-x) * -0.5);
  margin-left: calc(var(--bs-gutter-x) * -0.5);
}
#faq-2 .col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}
#faq-2 .col-9 {
  flex: 0 0 auto;
  width: 75%;
}
#faq-2 .col-auto {
  flex: 0 0 auto;
  width: auto;
}
#faq-2 .h1 {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.2;
}

#faq-2 .text-pink {
  color: #ff0eb2 !important;
  /* Assuming a pink color */
}
@media (min-width: 576px) {
  #faq-2 .mt-sm-3 {
    margin-top: 1rem !important;
  }
  #faq-2 .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
}
@media (min-width: 992px) {
  #faq-2 .mt-lg-0 {
    margin-top: 0 !important;
  }
}
section#faq,
section#faq-2 {
  color: #000;
  font-size: 16px;
  font-weight: 300;
}
section#faq .heading-img,
section#faq-2 .heading-img {
  margin-bottom: 8px;
  width: 38px;
}
section#faq .h1 span:first-of-type,
section#faq h1 span:first-of-type,
section#faq-2 .h1 span:first-of-type,
section#faq-2 h1 span:first-of-type {
  color: #000;
  display: block !important;
  padding: 0.3em 0 !important;
}
section#faq .chevron-wrapper,
section#faq-2 .chevron-wrapper {
  left: 50%;
  position: absolute;
  top: 0;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
section#faq .fb,
section#faq-2 .fb {
  height: 29px;
  width: 28px;
}
section#faq strong,
section#faq-2 strong {
  font-weight: 700;
}
section#faq .single-faq,
section#faq-2 .single-faq {
  margin-bottom: 8px;
  position: relative;
}
section#faq .single-faq .chevron,
section#faq-2 .single-faq .chevron {
  height: 14px;
  width: 20px;
  margin-right: 20px;
}
@media (min-width: 440px) {
  section#faq .single-faq .chevron,
  section#faq-2 .single-faq .chevron {
    height: 20px;
    width: 40px;
  }
}
section#faq .single-faq.open,
section#faq-2 .single-faq.open {
  padding-bottom: 20px;
  padding-top: 20px;
}
section#faq a:not(.blue),
section#faq a:not(.blue):focus,
section#faq a:not(.blue):hover,
section#faq a:not(.blue):visited,
section#faq-2 a:not(.blue),
section#faq-2 a:not(.blue):focus,
section#faq-2 a:not(.blue):hover,
section#faq-2 a:not(.blue):visited {
  color: #000;
}
section#faq ul,
section#faq-2 ul {
  list-style: disc;
  padding-left: 2em;
}
section#faq ul li,
section#faq-2 ul li {
  margin-bottom: 0.5em;
  position: relative;
}
section#faq ul li:last-of-type,
section#faq-2 ul li:last-of-type {
  margin-bottom: 0;
}
section#faq .h2 span:first-of-type,
section#faq h2 span:first-of-type,
section#faq section#zero ul li span:first-of-type,
section#faq-2 .h2 span:first-of-type,
section#faq-2 h2 span:first-of-type,
section#faq-2 section#zero ul li span:first-of-type,
section#zero ul section#faq li span:first-of-type,
section#zero ul section#faq-2 li span:first-of-type {
  margin-left: 0;
}
section#faq .h2 span:nth-of-type(2),
section#faq h2 span:nth-of-type(2),
section#faq section#zero ul li span:nth-of-type(2),
section#faq-2 .h2 span:nth-of-type(2),
section#faq-2 h2 span:nth-of-type(2),
section#faq-2 section#zero ul li span:nth-of-type(2),
section#zero ul section#faq li span:nth-of-type(2),
section#zero ul section#faq-2 li span:nth-of-type(2) {
  margin-left: 2em;
}
section#faq .h2 span:nth-of-type(3),
section#faq .h2 span:nth-of-type(4),
section#faq h2 span:nth-of-type(3),
section#faq h2 span:nth-of-type(4),
section#faq section#zero ul li span:nth-of-type(3),
section#faq section#zero ul li span:nth-of-type(4),
section#faq-2 .h2 span:nth-of-type(3),
section#faq-2 .h2 span:nth-of-type(4),
section#faq-2 h2 span:nth-of-type(3),
section#faq-2 h2 span:nth-of-type(4),
section#faq-2 section#zero ul li span:nth-of-type(3),
section#faq-2 section#zero ul li span:nth-of-type(4),
section#zero ul section#faq li span:nth-of-type(3),
section#zero ul section#faq li span:nth-of-type(4),
section#zero ul section#faq-2 li span:nth-of-type(3),
section#zero ul section#faq-2 li span:nth-of-type(4) {
  margin-left: 0;
}
section#faq .h2 span:nth-of-type(5),
section#faq h2 span:nth-of-type(5),
section#faq section#zero ul li span:nth-of-type(5),
section#faq-2 .h2 span:nth-of-type(5),
section#faq-2 h2 span:nth-of-type(5),
section#faq-2 section#zero ul li span:nth-of-type(5),
section#zero ul section#faq li span:nth-of-type(5),
section#zero ul section#faq-2 li span:nth-of-type(5) {
  margin-left: 5em;
}
section#faq [data-faq-question],
section#faq-2 [data-faq-question] {
  background: #fff;
  cursor: pointer;
  font-size: 18px;
  padding-bottom: 1.1em;
  padding-top: 1.1em;
}
@media (min-width: 576px) {
  section#faq [data-faq-question] .col-9,
  section#faq-2 [data-faq-question] .col-9 {
    padding-left: 74px;
  }
}
@media (min-width: 1200px) {
  section#faq [data-faq-question],
  section#faq [data-faq-question].open,
  section#faq-2 [data-faq-question],
  section#faq-2 [data-faq-question].open {
    font-size: 20px;
  }
}
section#faq [data-faq-answer],
section#faq-2 [data-faq-answer] {
  background: #fff;
  display: none;
  line-height: 1.2;
  padding-bottom: 16px;
}
@media (min-width: 576px) {
  section#faq [data-faq-answer],
  section#faq-2 [data-faq-answer] {
    padding-left: 74px;
    padding-right: 64px;
  }
}
section#faq [data-faq-answer] img:not(.social-link),
section#faq-2 [data-faq-answer] img:not(.social-link) {
  margin-bottom: 20px;
  width: 78px;
}
@media (min-width: 576px) {
  section#faq .h2 span:first-of-type,
  section#faq h2 span:first-of-type,
  section#faq section#zero ul li span:first-of-type,
  section#faq-2 .h2 span:first-of-type,
  section#faq-2 h2 span:first-of-type,
  section#faq-2 section#zero ul li span:first-of-type,
  section#zero ul section#faq li span:first-of-type,
  section#zero ul section#faq-2 li span:first-of-type {
    padding-right: 0.2em;
  }
  section#faq .h2 span:nth-of-type(2),
  section#faq h2 span:nth-of-type(2),
  section#faq section#zero ul li span:nth-of-type(2),
  section#faq-2 .h2 span:nth-of-type(2),
  section#faq-2 h2 span:nth-of-type(2),
  section#faq-2 section#zero ul li span:nth-of-type(2),
  section#zero ul section#faq li span:nth-of-type(2),
  section#zero ul section#faq-2 li span:nth-of-type(2) {
    margin-left: -0.25em;
    padding-left: 0;
  }
  section#faq .h2 span:nth-of-type(3),
  section#faq h2 span:nth-of-type(3),
  section#faq section#zero ul li span:nth-of-type(3),
  section#faq-2 .h2 span:nth-of-type(3),
  section#faq-2 h2 span:nth-of-type(3),
  section#faq-2 section#zero ul li span:nth-of-type(3),
  section#zero ul section#faq li span:nth-of-type(3),
  section#zero ul section#faq-2 li span:nth-of-type(3) {
    margin-left: 5em;
  }
}
@media (min-width: 768px) {
  section#faq .h2 span:nth-of-type(2),
  section#faq .h2 span:nth-of-type(4),
  section#faq h2 span:nth-of-type(2),
  section#faq h2 span:nth-of-type(4),
  section#faq section#zero ul li span:nth-of-type(2),
  section#faq section#zero ul li span:nth-of-type(4),
  section#faq-2 .h2 span:nth-of-type(2),
  section#faq-2 .h2 span:nth-of-type(4),
  section#faq-2 h2 span:nth-of-type(2),
  section#faq-2 h2 span:nth-of-type(4),
  section#faq-2 section#zero ul li span:nth-of-type(2),
  section#faq-2 section#zero ul li span:nth-of-type(4),
  section#zero ul section#faq li span:nth-of-type(2),
  section#zero ul section#faq li span:nth-of-type(4),
  section#zero ul section#faq-2 li span:nth-of-type(2),
  section#zero ul section#faq-2 li span:nth-of-type(4) {
    padding-right: 0.2em;
  }
  section#faq .h2 span:nth-of-type(3),
  section#faq .h2 span:nth-of-type(5),
  section#faq h2 span:nth-of-type(3),
  section#faq h2 span:nth-of-type(5),
  section#faq section#zero ul li span:nth-of-type(3),
  section#faq section#zero ul li span:nth-of-type(5),
  section#faq-2 .h2 span:nth-of-type(3),
  section#faq-2 .h2 span:nth-of-type(5),
  section#faq-2 h2 span:nth-of-type(3),
  section#faq-2 h2 span:nth-of-type(5),
  section#faq-2 section#zero ul li span:nth-of-type(3),
  section#faq-2 section#zero ul li span:nth-of-type(5),
  section#zero ul section#faq li span:nth-of-type(3),
  section#zero ul section#faq li span:nth-of-type(5),
  section#zero ul section#faq-2 li span:nth-of-type(3),
  section#zero ul section#faq-2 li span:nth-of-type(5) {
    margin-left: -0.25em;
    padding-left: 0;
  }
  section#faq .h2 span:nth-of-type(4),
  section#faq h2 span:nth-of-type(4),
  section#faq section#zero ul li span:nth-of-type(4),
  section#faq-2 .h2 span:nth-of-type(4),
  section#faq-2 h2 span:nth-of-type(4),
  section#faq-2 section#zero ul li span:nth-of-type(4),
  section#zero ul section#faq li span:nth-of-type(4),
  section#zero ul section#faq-2 li span:nth-of-type(4) {
    margin-left: 8em;
  }
}
@media (min-width: 1200px) {
  section#faq .single-faq,
  section#faq-2 .single-faq {
    font-size: 16px;
  }
}
section#faq-2 .single-faq.open {
  position: relative;
}
section#faq-2 .single-faq.open:after {
  background: #a9a9a9;
  content: "";
  height: calc(100% - 40px);
  left: 4px;
  position: absolute;
  top: 24px;
  width: 100%;
}
section#faq-2 [data-faq-answer].open,
section#faq-2 [data-faq-question].open {
  background: #e5e5e5;
  border: 3px solid #a9a9a9;
  z-index: 1;
}
section#faq-2 [data-faq-answer].open {
  border-top-width: 0;
}
section#faq-2 [data-faq-question].open {
  border-bottom-width: 0;
}
section#faq-2 ul {
  font-weight: 400;
  list-style-position: outside;
  list-style-type: square;
}
section#faq-2 ul li::marker {
  color: #f30bb4;
}
section#faq-2 ul li:last-of-type::marker {
  color: transparent;
}
section#faq-2 ul li ul {
  list-style-type: none;
}
section#faq-2 ul li ul li {
  position: relative;
}
section#faq-2 ul li ul li::marker {
  display: none;
}
section#faq-2 ul li ul li:before {
  content: "–";
  padding-right: 5px;
}

section#faq-2 .content {
  width: 100%;
  max-width: 1111px;
}

section#faq-2 .mx-auto {
  margin-left: auto;
  margin-right: auto;
}
section#faq-2 .chevron {
  height: 30px;
  width: 60px;
}
section#faq-2 .chevron.blue {
  height: 20px;
  max-width: none;
  width: 40px;
}
section#faq-2 .chevron.blue,
section#faq-2 .chevron.blue.open {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
section#faq-2 .chevron.blue.open {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
section#faq-2 .ms-5 {
  margin-left: 20px;
}

@media (min-width: 1080px) {
  .d-lg-none {
    display: none !important;
  }
}

.text-pink {
  color: #ff0eb2 !important;
}
@media (min-width: 551px) {
  .align-self-start {
    align-self: flex-start !important;
  }
}

.text-blue{
  color: #00f!important;
}
.bg-blue {
  background-color: #00f!important;
}
.ms-auto {
  margin-left: auto!important;
}
.px-2{
  padding-left: 0.5rem!important;
  padding-right: 0.5rem!important;
}
.px-4{
  padding-left: 1.5rem!important;
  padding-right: 1.5rem!important;
}
.d-flex{
  display: flex!important;
}
.flex-wrap{
  flex-wrap: wrap!important;
}
.align-items-center{
  align-items: center!important;
}
.col-12{
  flex: 0 0 100%;
  max-width: 100%;
}
@media (min-width: 768px){
  .col-md-6{
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.d-flex.margin2{
  margin: 52px 0 0 0;
}

.mb-15{
  margin-bottom: 15px!important;
}
.mt-15{
  margin-top: 15px!important;
}
.max-w-100{
  max-width: 100%!important;
}
@media (min-width: 1080px){
.mt-lg-3{
  margin-top: 1rem!important;
}
}
