* {
  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;
  background-color: #000;
}
.wrapperMain .img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.wrapperMain .imgCover {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.wrapperMain #header {
  max-width: 1440px;
  width: 100%;
  display: flex;
  align-items: center;
  flex-flow: column;
}
.wrapperMain #header .bg {
  width: 100%;
  height: 10px;
  background-image: url("../img/section0.svg");
}
.wrapperMain #header .headerWrapper {
  max-width: 1220px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0 auto;
  padding: 34px 40px 0 40px;
}
.wrapperMain #header .headerWrapper .text {
  font-family: mBank;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.032px;
  margin: 0;
  color: transparent;
  background-image: linear-gradient(90deg, #FF8600 50%, #fff 50%);
  background-position: 100%;
  background-size: 200% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  user-select: none;
}
.wrapperMain #header .headerWrapper .text:hover {
  background-position: 0;
}
.wrapperMain #header .headerWrapper .text.marginLeft {
  margin: 0 0 0 60px;
}
.wrapperMain #header .headerWrapper .text.marginTop {
  margin: 10px 0 0 0;
}
.wrapperMain #header .headerWrapper .btn {
  width: 37px;
  cursor: pointer;
  z-index: 1200;
}
.wrapperMain #header .headerWrapper span {
  display: block;
  width: 100%;
  height: 3px;
  background: #ffffff;
  transition: all 0.3s;
  position: relative;
}
.wrapperMain #header .headerWrapper span + span {
  margin-top: 9px;
  animation: ease 0.5s top forwards;
}
.wrapperMain #header .headerWrapper .active span:nth-child(1) {
  animation: ease 0.5s top forwards;
}
.wrapperMain #header .headerWrapper .not-active span:nth-child(1) {
  animation: ease 0.5s top-2 forwards;
}
.wrapperMain #header .headerWrapper .active span:nth-child(2) {
  animation: ease 0.5s scaled forwards;
}
.wrapperMain #header .headerWrapper .not-active span:nth-child(2) {
  animation: ease 0.5s scaled-2 forwards;
}
.wrapperMain #header .headerWrapper .active span:nth-child(3) {
  animation: ease 0.5s bottom forwards;
}
.wrapperMain #header .headerWrapper .not-active span:nth-child(3) {
  animation: ease 0.5s bottom-2 forwards;
}
@keyframes top {
  0% {
    top: 0;
    transform: rotate(0);
  }
  50% {
    top: 12px;
    transform: rotate(0);
  }
  100% {
    top: 12px;
    transform: rotate(45deg);
  }
}
@keyframes top-2 {
  0% {
    top: 12px;
    transform: rotate(45deg);
  }
  50% {
    top: 12px;
    transform: rotate(0deg);
  }
  100% {
    top: 0;
    transform: rotate(0deg);
  }
}
@keyframes bottom {
  0% {
    bottom: 0;
    transform: rotate(0);
  }
  50% {
    bottom: 12px;
    transform: rotate(0);
  }
  100% {
    bottom: 12px;
    transform: rotate(135deg);
  }
}
@keyframes bottom-2 {
  0% {
    bottom: 12px;
    transform: rotate(135deg);
  }
  50% {
    bottom: 12px;
    transform: rotate(0);
  }
  100% {
    bottom: 0;
    transform: rotate(0);
  }
}
@keyframes scaled {
  50% {
    transform: scale(0);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes scaled-2 {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
.wrapperMain #header .headerWrapper.desktop {
  display: flex;
}
.wrapperMain #header .headerWrapper.mobile {
  display: none;
}
.wrapperMain #header .headerWrapper .img1 {
  width: 132px;
  height: 51px;
  background-image: url("../img/mbank_logo_rgb.svg");
}
.wrapperMain #header .headerWrapper .img2 {
  width: 91px;
  height: 76px;
  background-image: url("../img/section1-1.svg");
}
.wrapperMain #header .headerWrapper .menuMobile {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: #000000;
  padding: 22px 22px 22px 22px;
  position: absolute;
  top: 115px;
  right: 0;
  transition: 0.3s all ease-in-out;
  z-index: 1000;
  opacity: 0;
}
.wrapperMain #header .headerWrapper .menuMobile.active {
  opacity: 1;
}
@media (max-width: 1000px) {
  .wrapperMain #header .bg {
    height: 8px;
  }
  .wrapperMain #header .headerWrapper {
    justify-content: space-between;
  }
  .wrapperMain #header .headerWrapper .text.marginLeft {
    margin: 0 0 0 20px;
  }
}
@media (max-width: 800px) {
  .wrapperMain #header .headerWrapper {
    padding: 30px 20px 0 20px;
  }
  .wrapperMain #header .headerWrapper .text {
    font-size: 14px;
  }
}
@media (max-width: 700px) {
  .wrapperMain #header .headerWrapper {
    justify-content: space-between;
  }
  .wrapperMain #header .headerWrapper .text.marginLeft {
    margin: 0;
  }
}
@media (max-width: 650px) {
  .wrapperMain #header {
    transform: unset;
    position: relative;
    top: unset;
    left: unset;
  }
  .wrapperMain #header .headerWrapper {
    margin-bottom: 24px;
    padding-top: 24px;
  }
  .wrapperMain #header .headerWrapper.desktop {
    display: none;
  }
  .wrapperMain #header .headerWrapper.mobile {
    display: flex;
  }
  .wrapperMain #header .bg {
    height: 6px;
  }
}
@media (max-width: 450px) {
  .wrapperMain #header .headerWrapper .img1 {
    width: 86px;
    height: 33px;
  }
  .wrapperMain #header .headerWrapper .img2 {
    width: 60px;
    height: 50px;
  }
  .wrapperMain #header .headerWrapper .menuMobile {
    top: 90px;
  }
}
.wrapperMain #section1 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 30px 20px 0 20px;
}
.wrapperMain #section1 .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wrapperMain #section1 .row.row1 {
  max-width: 447px;
  margin: 0 0 134px 0;
}
.wrapperMain #section1 .column {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.wrapperMain #section1 .column.left {
  margin: 66px 0 0 130px;
}
.wrapperMain #section1 .column.relative {
  position: relative;
}
.wrapperMain #section1 .img1 {
  width: 220px;
  height: 85px;
  background-image: url("../img/mbank_logo_rgb.svg");
}
.wrapperMain #section1 .img2 {
  width: 151px;
  height: 126px;
  background-image: url("../img/section1-1.svg");
}
.wrapperMain #section1 .img3 {
  width: 523px;
  height: 683px;
  background-image: url("../img/section1-2.png");
  position: relative;
}
.wrapperMain #section1 .title {
  color: #FFF;
  font-family: mBank;
  font-size: 70px;
  font-style: normal;
  font-weight: 700;
  line-height: 79px;
  letter-spacing: -0.7px;
  margin: 0 0 5px 0;
}
.wrapperMain #section1 .subTitle {
  color: #FFF;
  font-family: mBank;
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 79px;
  letter-spacing: -0.5px;
  margin: 0;
}
.wrapperMain #section1 .star1 {
  width: 50px;
  height: 55px;
  background-image: url("../img/section1-3.svg");
  position: absolute;
  top: 0;
  left: -106px;
}
.wrapperMain #section1 .star2 {
  width: 31px;
  height: 34px;
  background-image: url("../img/section1-4.svg");
  position: absolute;
  top: 50px;
  left: -65px;
}
.wrapperMain #section1 .star3 {
  width: 40px;
  height: 44px;
  background-image: url("../img/section1-5.svg");
  position: absolute;
  top: -108px;
  left: 303px;
}
.wrapperMain #section1 .star4 {
  width: 22px;
  height: 22px;
  background-image: url("../img/section1-6.svg");
  position: absolute;
  bottom: -150px;
  right: 50px;
}
.wrapperMain #section1 .star5 {
  width: 22px;
  height: 22px;
  background-image: url("../img/section1-7.svg");
  position: absolute;
  bottom: -50px;
  right: -75px;
}
@media (max-width: 1400px) {
  .wrapperMain #section1 .column {
    width: fit-content;
  }
  .wrapperMain #section1 .column.left {
    margin: 60px 0 0 100px;
  }
  .wrapperMain #section1 .star4 {
    right: 150px;
  }
  .wrapperMain #section1 .star5 {
    right: 25px;
  }
}
@media (max-width: 1300px) {
  .wrapperMain #section1 .column.left {
    margin: 60px 0 0 7%;
  }
  .wrapperMain #section1 .title {
    font-size: 64px;
    line-height: 75px;
    margin: 0;
  }
  .wrapperMain #section1 .subTitle {
    font-size: 46px;
  }
  .wrapperMain #section1 .star1 {
    left: -80px;
  }
  .wrapperMain #section1 .star2 {
    left: -40px;
  }
}
@media (max-width: 1200px) {
  .wrapperMain #section1 .title {
    font-size: 58px;
    line-height: 70px;
  }
  .wrapperMain #section1 .subTitle {
    font-size: 38px;
    line-height: 70px;
  }
  .wrapperMain #section1 .row.row1 {
    margin: 0 0 85px 0;
  }
  .wrapperMain #section1 .img1 {
    width: 176px;
    height: 68px;
  }
  .wrapperMain #section1 .img2 {
    width: 121px;
    height: 101px;
  }
  .wrapperMain #section1 .img3 {
    width: 418px;
    height: 546px;
    margin: 0 20px 0 0;
  }
  .wrapperMain #section1 .star3 {
    top: -70px;
    left: 280px;
  }
}
@media (max-width: 1000px) {
  .wrapperMain #section1 {
    padding: 25px 20px 0 20px;
  }
  .wrapperMain #section1 .column.left {
    margin: 40px 0 0 5%;
  }
  .wrapperMain #section1 .row.row1 {
    margin: 0 0 70px 0;
  }
  .wrapperMain #section1 .title {
    font-size: 50px;
    line-height: 56px;
  }
  .wrapperMain #section1 .subTitle {
    font-size: 34px;
    line-height: 56px;
  }
  .wrapperMain #section1 .star1 {
    width: 40px;
    height: 44px;
    top: unset;
    bottom: -40px;
    left: 0;
  }
  .wrapperMain #section1 .star2 {
    width: 25px;
    height: 27px;
    top: unset;
    bottom: -65px;
    left: 40px;
  }
  .wrapperMain #section1 .star3 {
    width: 32px;
    height: 35px;
    top: -50px;
  }
  .wrapperMain #section1 .star4 {
    bottom: -100px;
  }
  .wrapperMain #section1 .star5 {
    bottom: -30px;
  }
  .wrapperMain #section1 .img3 {
    margin: 0;
  }
}
@media (max-width: 900px) {
  .wrapperMain #section1 {
    padding: 20px 20px 0 20px;
  }
  .wrapperMain #section1 .column.left {
    margin: 35px 0 0 5%;
  }
  .wrapperMain #section1 .title {
    font-size: 42px;
  }
  .wrapperMain #section1 .subTitle {
    font-size: 32px;
  }
  .wrapperMain #section1 .img3 {
    width: 340px;
    height: 444px;
    margin: 50px 0 0 5px;
  }
  .wrapperMain #section1 .star3 {
    left: 245px;
  }
}
@media (max-width: 800px) {
  .wrapperMain #section1 .column.left {
    margin: 30px 0 0 0;
  }
  .wrapperMain #section1 .star4 {
    bottom: -80px;
  }
  .wrapperMain #section1 .star5 {
    bottom: -10px;
  }
}
@media (max-width: 750px) {
  .wrapperMain #section1 .title {
    font-size: 37px;
    line-height: 48px;
  }
  .wrapperMain #section1 .subTitle {
    font-size: 28px;
    line-height: 48px;
  }
  .wrapperMain #section1 .img1 {
    width: 132px;
    height: 51px;
  }
  .wrapperMain #section1 .img2 {
    width: 91px;
    height: 76px;
  }
  .wrapperMain #section1 .img3 {
    margin: 25px 0 0 5px;
  }
  .wrapperMain #section1 .star3 {
    left: 200px;
  }
}
@media (max-width: 670px) {
  .wrapperMain #section1 .title {
    font-size: 31px;
    line-height: 46px;
  }
  .wrapperMain #section1 .subTitle {
    font-size: 24px;
    line-height: 46px;
  }
  .wrapperMain #section1 .img3 {
    width: 262px;
    height: 342px;
    margin: 75px 0 0 10px;
  }
  .wrapperMain #section1 .star3 {
    left: 180px;
  }
  .wrapperMain #section1 .star4 {
    bottom: -70px;
  }
  .wrapperMain #section1 .star5 {
    bottom: 0px;
  }
}
@media (max-width: 650px) {
  .wrapperMain #section1 {
    flex-direction: column;
  }
  .wrapperMain #section1 .column {
    width: 100%;
  }
  .wrapperMain #section1 .column.right {
    justify-content: center;
    align-items: center;
  }
  .wrapperMain #section1 .row.row1 {
    display: none;
  }
  .wrapperMain #section1 .star3 {
    left: 210px;
  }
  .wrapperMain #section1 .star4 {
    display: none;
  }
  .wrapperMain #section1 .star5 {
    display: none;
  }
  .wrapperMain #section1 .img1 {
    display: none;
  }
  .wrapperMain #section1 .img2 {
    display: none;
  }
  .wrapperMain #section1 .img3 {
    width: 340px;
    height: 444px;
    margin: 0;
    position: relative;
    top: -75px;
  }
}
@media (max-width: 450px) {
  .wrapperMain #section1 {
    padding: 0 20px;
  }
  .wrapperMain #section1 .row.row1 {
    margin: 0 0 25px 0;
  }
  .wrapperMain #section1 .title {
    font-size: 28px;
    line-height: 38px;
    font-weight: 600;
  }
  .wrapperMain #section1 .subTitle {
    font-size: 20px;
    line-height: 38px;
  }
  .wrapperMain #section1 .img3 {
    width: 262px;
    height: 342px;
    margin: 0 0 0 25px;
    position: relative;
    top: -65px;
  }
  .wrapperMain #section1 .star1 {
    width: 25px;
    height: 28px;
  }
  .wrapperMain #section1 .star2 {
    width: 16px;
    height: 17px;
    bottom: -60px;
    left: 30px;
  }
  .wrapperMain #section1 .star3 {
    width: 19px;
    height: 21px;
    left: 191px;
    top: -30px;
  }
}
@media (max-width: 350px) {
  .wrapperMain #section1 .title {
    font-size: 24px;
    line-height: 32px;
  }
  .wrapperMain #section1 .subTitle {
    font-size: 16px;
    line-height: 32px;
  }
  .wrapperMain #section1 .img1 {
    width: 96px;
    height: 38px;
  }
  .wrapperMain #section1 .img2 {
    width: 58px;
    height: 48px;
  }
  .wrapperMain #section1 .img3 {
    top: -55px;
  }
  .wrapperMain #section1 .star3 {
    left: 165px;
  }
}
.wrapperMain #section2 {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 20px;
  margin: 160px 0 0 0;
}
.wrapperMain #section2 .brMobile {
  display: none;
}
.wrapperMain #section2 .title {
  color: #FF8600;
  text-align: center;
  font-family: mBank;
  font-size: 60px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: -0.6px;
  margin: 0 0 45px 0;
}
.wrapperMain #section2 .subTitle {
  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: 0 0 25px 0;
}
.wrapperMain #section2 .text {
  color: var(--white, #FFF);
  text-align: center;
  font-family: mBank;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 37px;
  letter-spacing: -0.15px;
  margin: 25px 0;
}
@media (max-width: 1300px) {
  .wrapperMain #section2 .title {
    font-size: 54px;
  }
  .wrapperMain #section2 .subTitle {
    font-size: 36px;
  }
  .wrapperMain #section2 .text {
    font-size: 28px;
  }
}
@media (max-width: 1200px) {
  .wrapperMain #section2 {
    margin: 140px 0 0 0;
  }
  .wrapperMain #section2 .title {
    font-size: 52px;
  }
  .wrapperMain #section2 .subTitle {
    font-size: 34px;
  }
  .wrapperMain #section2 .text {
    font-size: 26px;
  }
  .wrapperMain #section2 .text .br1 {
    display: none;
  }
}
@media (max-width: 1000px) {
  .wrapperMain #section2 {
    margin: 100px 0 0 0;
  }
  .wrapperMain #section2 .title {
    font-size: 5vw;
    margin: 0 0 40px 0;
  }
  .wrapperMain #section2 .subTitle {
    font-size: 3.4vw;
    margin: 0 0 20px 0;
  }
  .wrapperMain #section2 .text {
    font-size: 2.3vw;
    margin: 20px 0 25px 0;
  }
}
@media (max-width: 800px) {
  .wrapperMain #section2 {
    margin: 80px 0 0 0;
  }
  .wrapperMain #section2 .title {
    font-size: 40px;
    margin: 0 0 25px 0;
  }
  .wrapperMain #section2 .subTitle {
    font-size: 26px;
    margin: 0;
    line-height: 42px;
  }
  .wrapperMain #section2 .subTitle .br {
    display: none;
  }
  .wrapperMain #section2 .text {
    font-size: 18px;
    font-weight: 550;
    line-height: 35px;
  }
  .wrapperMain #section2 .text .br {
    display: none;
  }
}
@media (max-width: 600px) {
  .wrapperMain #section2 .text br {
    display: none;
  }
}
@media (max-width: 550px) {
  .wrapperMain #section2 {
    margin: 10px 0 0 0;
  }
  .wrapperMain #section2 .brMobile {
    display: block;
  }
}
@media (max-width: 450px) {
  .wrapperMain #section2 {
    margin: 0;
  }
  .wrapperMain #section2 .title {
    font-size: 32px;
  }
  .wrapperMain #section2 .subTitle {
    font-size: 24px;
    line-height: 34px;
  }
  .wrapperMain #section2 .text {
    font-size: 16px;
    line-height: 28px;
  }
}
.wrapperMain #section8 {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 25px 0 0 150px;
  margin: 100px 0 0 0;
}
.wrapperMain #section8 .content {
  max-width: 1138px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.wrapperMain #section8 .row {
  width: 100%;
  display: flex;
}
.wrapperMain #section8 .column {
  width: 70%;
  display: flex;
  flex-direction: column;
}
.wrapperMain #section8 .title {
  color: #FFF;
  text-align: right;
  font-family: mBank;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: -0.4px;
  margin: 75px 0 25px 0;
}
.wrapperMain #section8 .text {
  color: #FFF;
  text-align: right;
  font-family: mBank;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.12px;
  margin: 60px 0 30px 0;
}
.wrapperMain #section8 .strip {
  width: 615px;
  height: 10px;
  background-image: url("../img/section3-1.svg");
  margin: 0 0 0 auto;
}
.wrapperMain #section8 .btn {
  max-width: 255px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 38px;
  background-color: #AE0000;
  border: 1px solid #AE0000;
  color: #FFF;
  text-align: center;
  font-family: mBank;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 20px 0;
  margin: 0 0 0 auto;
  cursor: pointer;
  user-select: none;
  transition: 0.3s all ease-in-out;
}
.wrapperMain #section8 .btn:hover {
  background-color: #ffffff;
  color: #AE0000;
}
.wrapperMain #section8 .btn.mobile {
  display: none;
}
.wrapperMain #section8 .movieCard {
  display: none;
  width: 550px;
  height: 375px;
  margin: 0 0 0 44px;
  padding: 0 20px 0 0;
}
.wrapperMain #section8 .movieCard.active {
  display: flex;
}
.wrapperMain #section8 .imgCard {
  display: none;
  width: 501px;
  height: 323px;
  margin: 0 20px 0 44px;
  background-image: url("../img/section8-2.png");
  flex-shrink: 0;
}
.wrapperMain #section8 .imgCard.active {
  display: flex;
}
@media (max-width: 1400px) {
  .wrapperMain #section8 {
    padding: 25px 0 0 120px;
  }
  .wrapperMain #section8 .title {
    margin: 50px 0 25px;
  }
}
@media (max-width: 1300px) {
  .wrapperMain #section8 {
    margin: 80px 0 0 0;
    padding: 25px 0 0 8.33%;
  }
  .wrapperMain #section8 .title {
    padding: 0 20px 0 0;
    margin: 40px 0 25px;
  }
}
@media (max-width: 1100px) {
  .wrapperMain #section8 {
    margin: 70px 0 0 0;
  }
  .wrapperMain #section8 .movieCard {
    width: 440px;
    height: 300px;
    margin: 0 0 0 25px;
  }
  .wrapperMain #section8 .imgCard {
    margin: 0 20px 0 25px;
    flex-shrink: 1;
  }
}
@media (max-width: 1000px) {
  .wrapperMain #section8 {
    margin: 50px 0 0 0;
  }
  .wrapperMain #section8 .title {
    font-size: 4vw;
  }
  .wrapperMain #section8 .text {
    font-size: 2.3vw;
    margin: 40px 0 30px 0;
  }
  .wrapperMain #section8 .strip {
    width: 460px;
    height: 8px;
  }
}
@media (max-width: 900px) {
  .wrapperMain #section8 .movieCard {
    width: 330px;
    height: 225px;
    margin: 0 0 0 15px;
  }
}
@media (max-width: 800px) {
  .wrapperMain #section8 {
    padding: 25px 0 0 20px;
  }
  .wrapperMain #section8 .title {
    font-size: 30px;
    line-height: 42px;
    margin: 20px 0 15px 0;
  }
  .wrapperMain #section8 .text {
    font-size: 18px;
  }
}
@media (max-width: 700px) {
  .wrapperMain #section8 {
    padding: 0 20px;
    position: relative;
  }
  .wrapperMain #section8 .row {
    flex-direction: column-reverse;
  }
  .wrapperMain #section8 .column {
    width: 100%;
  }
  .wrapperMain #section8 .movieCard {
    width: 550px;
    height: 375px;
    margin: 0 auto;
    padding: 0;
  }
  .wrapperMain #section8 .imgCard {
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
  .wrapperMain #section8 .title {
    text-align: left;
    padding: 0;
  }
  .wrapperMain #section8 .text {
    text-align: left;
    margin: 20px 0 30px 0;
    padding: 0;
  }
  .wrapperMain #section8 .btn {
    margin: 0 auto 30px;
  }
  .wrapperMain #section8 .strip {
    position: absolute;
    right: 0;
    top: 0;
  }
}
@media (max-width: 600px) {
  .wrapperMain #section8 .movieCard {
    width: 440px;
    height: 300px;
  }
}
@media (max-width: 550px) {
  .wrapperMain #section8 .title {
    font-size: 28px;
  }
}
@media (max-width: 500px) {
  .wrapperMain #section8 {
    margin: 30px 0 0 0;
  }
  .wrapperMain #section8 .title {
    margin: 20px 0 15px 0;
  }
  .wrapperMain #section8 .movieCard {
    width: 330px;
    height: 225px;
  }
  .wrapperMain #section8 .strip {
    width: 100vw;
    height: 6px;
    right: unset;
    left: 0;
  }
  .wrapperMain #section8 .btn.desktop {
    display: none;
  }
  .wrapperMain #section8 .btn.mobile {
    display: flex;
  }
}
@media (max-width: 450px) {
  .wrapperMain #section8 .imgCard {
    height: 60vw;
  }
}
@media (max-width: 360px) {
  .wrapperMain #section8 .movieCard {
    width: 275px;
    height: 188px;
  }
}
.wrapperMain #section3 {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 75px 0 0 150px;
}
.wrapperMain #section3 .column {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.wrapperMain #section3 .column.relative {
  width: 45%;
  position: relative;
  margin: 90px 0 0 0;
}
.wrapperMain #section3 .row {
  width: 100%;
  display: flex;
}
.wrapperMain #section3 .title {
  color: #E90A0A;
  font-family: mBank;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: -0.4px;
  margin: 41px 0 27px 0;
}
.wrapperMain #section3 .text {
  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 .imgTop {
  width: 615px;
  height: 10px;
  background-image: url("../img/section3-1.svg");
}
.wrapperMain #section3 .imgBottom {
  width: 733px;
  height: 263px;
  background-image: url("../img/section3-2.png");
  margin: 69px 0 0 96px;
}
.wrapperMain #section3 .imgHoof {
  opacity: 0;
  transition: 0.3s all ease-in-out;
}
.wrapperMain #section3 .imgHoof.active {
  opacity: 1;
}
.wrapperMain #section3 .imgHoof1 {
  width: 73px;
  height: 49px;
  background-image: url("../img/section3-3.svg");
  position: absolute;
  top: 0;
  left: 0;
}
.wrapperMain #section3 .imgHoof2 {
  width: 77px;
  height: 79px;
  background-image: url("../img/section3-4.svg");
  position: absolute;
  top: 55px;
  left: 145px;
}
.wrapperMain #section3 .imgHoof3 {
  width: 84px;
  height: 86px;
  background-image: url("../img/section3-5.svg");
  position: absolute;
  top: 142px;
  left: 56px;
}
.wrapperMain #section3 .imgHoof4 {
  width: 70px;
  height: 79px;
  background-image: url("../img/section3-6.svg");
  position: absolute;
  top: 210px;
  left: 224px;
}
.wrapperMain #section3 .imgHoof5 {
  width: 76px;
  height: 83px;
  background-image: url("../img/section3-7.svg");
  position: absolute;
  top: 302px;
  left: 107px;
}
.wrapperMain #section3 .imgHoof6 {
  width: 82px;
  height: 65px;
  background-image: url("../img/section3-8.svg");
  position: absolute;
  top: 400px;
  left: 239px;
}
.wrapperMain #section3 .imgHoof7 {
  width: 83px;
  height: 87px;
  background-image: url("../img/section3-9.svg");
  position: absolute;
  top: 483px;
  left: 110px;
}
.wrapperMain #section3 .imgHoof8 {
  width: 78px;
  height: 79px;
  background-image: url("../img/section3-10.svg");
  position: absolute;
  top: 607px;
  left: 213px;
}
.wrapperMain #section3 .imgHoof9 {
  width: 74px;
  height: 50px;
  background-image: url("../img/section3-11.svg");
  position: absolute;
  top: 657px;
  left: 85px;
}
.wrapperMain #section3 .imgHoof10 {
  width: 78px;
  height: 84px;
  background-image: url("../img/section3-12.svg");
  position: absolute;
  top: 781px;
  left: 162px;
}
@media (max-width: 1400px) {
  .wrapperMain #section3 {
    padding: 50px 0 0 120px;
  }
  .wrapperMain #section3 .imgBottom {
    margin: 65px 0 0 80px;
  }
}
@media (max-width: 1300px) {
  .wrapperMain #section3 {
    padding: 40px 0 0 8.33%;
  }
  .wrapperMain #section3 .column.relative {
    scale: 0.9;
  }
  .wrapperMain #section3 .imgBottom {
    margin: 60px 0 0 45px;
  }
}
@media (max-width: 1200px) {
  .wrapperMain #section3 {
    justify-content: space-between;
  }
  .wrapperMain #section3 .column {
    width: calc(100% - 350px);
  }
  .wrapperMain #section3 .column.relative {
    width: 350px;
  }
  .wrapperMain #section3 .imgBottom {
    width: 586px;
    height: 210px;
    margin: 50px 0 0 0;
  }
}
@media (max-width: 1000px) {
  .wrapperMain #section3 .column {
    width: calc(100% - 300px);
  }
  .wrapperMain #section3 .column.relative {
    width: 300px;
    scale: 0.8;
    margin: 0;
  }
  .wrapperMain #section3 .title {
    font-size: 32px;
    line-height: 42px;
  }
  .wrapperMain #section3 .text {
    font-size: 22px;
    line-height: 30px;
  }
  .wrapperMain #section3 .imgBottom {
    width: 476px;
    height: 171px;
  }
  .wrapperMain #section3 .imgTop {
    width: 460px;
    height: 8px;
    position: relative;
    left: -20px;
  }
}
@media (max-width: 800px) {
  .wrapperMain #section3 {
    padding: 40px 0 0 20px;
  }
  .wrapperMain #section3 .column {
    width: calc(100% - 250px);
  }
  .wrapperMain #section3 .column.relative {
    width: 250px;
    scale: 0.6;
    margin: 0;
  }
  .wrapperMain #section3 .title {
    font-size: 28px;
    line-height: 34px;
  }
  .wrapperMain #section3 .text {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (max-width: 650px) {
  .wrapperMain #section3 {
    padding: 0 20px;
  }
  .wrapperMain #section3 .column {
    width: 100%;
  }
  .wrapperMain #section3 .column.relative {
    display: none;
  }
  .wrapperMain #section3 .title {
    font-size: 26px;
    font-weight: 700;
    line-height: 30px;
  }
  .wrapperMain #section3 .title br {
    display: none;
  }
  .wrapperMain #section3 .text br {
    display: none;
  }
  .wrapperMain #section3 .imgBottom {
    margin: 30px auto 0;
  }
}
@media (max-width: 550px) {
  .wrapperMain #section3 .title {
    font-size: 24px;
  }
  .wrapperMain #section3 .text {
    font-size: 18px;
  }
}
@media (max-width: 500px) {
  .wrapperMain #section3 {
    padding: 0;
  }
  .wrapperMain #section3 .column {
    padding: 0 20px;
  }
  .wrapperMain #section3 .imgBottom {
    width: 410px;
    height: 248px;
    background-image: url("../img/section3-13.png");
  }
  .wrapperMain #section3 .imgTop {
    width: 100%;
    height: 6px;
    position: unset;
    left: unset;
  }
}
@media (max-width: 450px) {
  .wrapperMain #section3 .imgBottom {
    width: 328px;
    height: 199px;
  }
}
@media (max-width: 370px) {
  .wrapperMain #section3 .imgBottom {
    width: 267px;
    height: 161px;
  }
}
@media (max-width: 350px) {
  .wrapperMain #section3 .title {
    font-size: 20px;
    line-height: 24px;
  }
  .wrapperMain #section3 .text {
    font-size: 16px;
    line-height: 24px;
  }
}
.wrapperMain #section4 {
  width: 100%;
  display: flex;
  padding: 86px 0 90px 150px;
}
.wrapperMain #section4 .brMobile {
  display: none;
}
.wrapperMain #section4 .column {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.wrapperMain #section4 .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 15px 0;
}
.wrapperMain #section4 .text span {
  color: #FFF;
  font-family: mBank;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.12px;
}
.wrapperMain #section4 .endText {
  color: #E90A0A;
  font-family: mBank;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: -0.4px;
  margin: 25px 0 0 0;
}
.wrapperMain #section4 .list {
  list-style: none;
  padding-left: 0;
}
.wrapperMain #section4 .list li {
  position: relative;
  padding-left: 30px;
  margin: 0 0 30px 0;
}
.wrapperMain #section4 .list li::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 18px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-color: #E90A0A;
  border-radius: 50%;
}
.wrapperMain #section4 .img1 {
  width: 615px;
  height: 397px;
  background-image: url("../img/section4-1.png");
  position: absolute;
  left: 524px;
  bottom: -90px;
}
@media (max-width: 1400px) {
  .wrapperMain #section4 {
    padding: 86px 0 90px 120px;
  }
}
@media (max-width: 1300px) {
  .wrapperMain #section4 {
    padding: 86px 0 90px 8.33%;
  }
  .wrapperMain #section4 .img1 {
    width: 492px;
    height: 318px;
    bottom: -70px;
    left: unset;
    right: 40px;
  }
}
@media (max-width: 1050px) {
  .wrapperMain #section4 .img1 {
    width: 369px;
    height: 238px;
  }
}
@media (max-width: 1000px) {
  .wrapperMain #section4 .text {
    font-size: 22px;
    line-height: 30px;
  }
  .wrapperMain #section4 .text span {
    font-size: 22px;
    line-height: 30px;
  }
  .wrapperMain #section4 .endText {
    font-size: 38px;
  }
  .wrapperMain #section4 .img1 {
    bottom: -50px;
  }
}
@media (max-width: 900px) {
  .wrapperMain #section4 .img1 {
    left: unset;
    right: 0;
    bottom: -90px;
  }
}
@media (max-width: 800px) {
  .wrapperMain #section4 {
    padding: 50px 20px 110px 20px;
  }
  .wrapperMain #section4 .img1 {
    right: -20px;
    bottom: -120px;
  }
  .wrapperMain #section4 .text {
    font-size: 20px;
    line-height: 28px;
  }
  .wrapperMain #section4 .text span {
    font-size: 20px;
    line-height: 28px;
  }
  .wrapperMain #section4 .endText {
    font-size: 32px;
    margin: 15px 0 0 0;
  }
}
@media (max-width: 650px) {
  .wrapperMain #section4 .img1 {
    bottom: -140px;
  }
}
@media (max-width: 600px) {
  .wrapperMain #section4 .endText {
    padding: 0 240px 0 0;
    line-height: 48px;
    margin: 0;
  }
}
@media (max-width: 550px) {
  .wrapperMain #section4 .text {
    font-size: 16px;
    margin: 0 0 0 0;
  }
  .wrapperMain #section4 .text span {
    font-size: 16px;
  }
  .wrapperMain #section4 .text br {
    display: none;
  }
  .wrapperMain #section4 .endText {
    font-size: 28px;
    line-height: 42px;
  }
  .wrapperMain #section4 .list li {
    margin: 0 0 10px 0;
  }
}
@media (max-width: 450px) {
  .wrapperMain #section4 .img1 {
    width: 277px;
    height: 179px;
    bottom: -60px;
  }
  .wrapperMain #section4 .brMobile {
    display: block !important;
  }
}
@media (max-width: 370px) {
  .wrapperMain #section4 .endText {
    font-size: 24px;
    line-height: 32px;
  }
  .wrapperMain #section4 .img1 {
    width: 320px;
    height: 182px;
    background-image: url("../img/section4-2.png");
    bottom: -70px;
  }
}
@media (max-width: 350px) {
  .wrapperMain #section4 .endText {
    font-size: 20px;
    line-height: 28px;
  }
  .wrapperMain #section4 .img1 {
    bottom: -90px;
  }
}
.wrapperMain #section5 {
  display: flex;
  flex-direction: column;
  padding: 380px 0 0 0;
  position: relative;
}
.wrapperMain #section5 .title {
  color: var(--white, #FFF);
  text-align: right;
  font-family: mBank;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: -0.4px;
  margin: 0 0 35px 0;
}
.wrapperMain #section5 .splideText {
  height: 50px;
  color: #E90A0A;
  text-align: right;
  font-family: mBank;
  font-size: 60px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.3px;
  margin: 15px 0;
}
.wrapperMain #section5 .column {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: absolute;
  top: 135px;
  left: 448px;
}
.wrapperMain #section5 .row {
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}
.wrapperMain #section5 .slider {
  max-width: 575px;
  width: 100%;
}
.wrapperMain #section5 .img1 {
  width: 690px;
  height: 599px;
  background-image: url("../img/section5-1.png");
  margin: 0 0 0 150px;
  z-index: 10;
}
.wrapperMain #section5 .img2 {
  width: 1640px;
  height: 205px;
  background-image: url("../img/section5-2.png");
  position: absolute;
  left: -110px;
  bottom: 1px;
  z-index: 1;
  animation-name: swipeAnimation;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
@keyframes swipeAnimation {
  0% {
    left: -110px;
  }
  50% {
    left: -140px;
  }
  100% {
    left: -110px;
  }
}
.wrapperMain #section5 .img3 {
  width: 191px;
  height: 159px;
  background-image: url("../img/section5-3.png");
  position: absolute;
  left: 75px;
  bottom: 66px;
  z-index: 2;
  transform: rotate(10deg);
  animation-name: rotateAnim;
  animation-duration: 3.6s;
  animation-delay: 0.1s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
.wrapperMain #section5 .img4 {
  width: 197px;
  height: 165px;
  background-image: url("../img/section5-4.png");
  position: absolute;
  right: 129px;
  bottom: 107px;
  z-index: 3;
  transform: rotate(10deg);
  animation-name: rotateAnim;
  animation-duration: 3.3s;
  animation-delay: 0.3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
@keyframes rotateAnim {
  0% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(10deg);
  }
}
.wrapperMain #section5 .hoofContainer {
  position: absolute;
  top: 0;
  left: 0;
}
.wrapperMain #section5 .imgHoof {
  opacity: 0;
  transition: 0.3s all ease-in-out;
}
.wrapperMain #section5 .imgHoof.active {
  opacity: 1;
}
.wrapperMain #section5 .imgHoof1 {
  width: 47px;
  height: 72px;
  background-image: url("../img/section5-5.svg");
  position: absolute;
  top: 0;
  left: 264px;
}
.wrapperMain #section5 .imgHoof2 {
  width: 75px;
  height: 52px;
  background-image: url("../img/section5-6.svg");
  position: absolute;
  top: 69px;
  left: 121px;
}
.wrapperMain #section5 .imgHoof3 {
  width: 83px;
  height: 67px;
  background-image: url("../img/section5-7.svg");
  position: absolute;
  top: 176px;
  left: 213px;
}
.wrapperMain #section5 .imgHoof4 {
  width: 59px;
  height: 63px;
  background-image: url("../img/section5-8.svg");
  position: absolute;
  top: 277px;
  left: 94px;
}
.wrapperMain #section5 .imgHoof5 {
  width: 83px;
  height: 66px;
  background-image: url("../img/section5-9.svg");
  position: absolute;
  top: 358px;
  left: 209px;
}
.wrapperMain #section5 .imgHoof6 {
  width: 62px;
  height: 73px;
  background-image: url("../img/section5-10.svg");
  position: absolute;
  top: 444px;
  left: 80px;
}
.wrapperMain #section5 .imgHoof7 {
  width: 80px;
  height: 81px;
  background-image: url("../img/section5-11.svg");
  position: absolute;
  top: 491px;
  left: 178px;
}
.wrapperMain #section5 .imgHoof8 {
  width: 86px;
  height: 84px;
  background-image: url("../img/section5-12.svg");
  position: absolute;
  top: 600px;
  left: 96px;
}
@media (max-width: 1400px) {
  .wrapperMain #section5 .column {
    left: 417px;
  }
}
@media (max-width: 1300px) {
  .wrapperMain #section5 {
    padding: 90px 0 0 0;
  }
  .wrapperMain #section5 .column {
    position: unset;
    padding: 0 40px;
  }
  .wrapperMain #section5 .hoofContainer {
    scale: 0.9;
    margin: 5px 0 0 0;
    left: -20px;
  }
}
@media (max-width: 1200px) {
  .wrapperMain #section5 .title {
    font-size: 32px;
    line-height: 42px;
    margin: 0 0 30px 0;
  }
  .wrapperMain #section5 .splideText {
    font-size: 54px;
  }
  .wrapperMain #section5 .img1 {
    width: 552px;
    height: 479px;
    margin: 70px 0 0 150px;
  }
  .wrapperMain #section5 .img2 {
    width: 1558px;
    height: 195px;
  }
  .wrapperMain #section5 .img3 {
    width: 153px;
    height: 131px;
  }
  .wrapperMain #section5 .img4 {
    width: 158px;
    height: 132px;
  }
}
@media (max-width: 1000px) {
  .wrapperMain #section5 .title {
    font-size: 28px;
    line-height: 40px;
    margin: 0 0 25px 0;
  }
  .wrapperMain #section5 .splideText {
    font-size: 48px;
  }
  .wrapperMain #section5 .hoofContainer {
    scale: 0.8;
    margin: 5px 0 0 0;
    left: -30px;
    top: -15px;
  }
  .wrapperMain #section5 .img1 {
    width: 419px;
    height: 360px;
    margin: 50px 0 0 200px;
  }
  .wrapperMain #section5 .img2 {
    width: 1312px;
    height: 164px;
  }
  .wrapperMain #section5 .img3 {
    width: 115px;
    height: 95px;
  }
  .wrapperMain #section5 .img4 {
    width: 118px;
    height: 99px;
    bottom: 90px;
  }
}
@media (max-width: 900px) {
  .wrapperMain #section5 .img1 {
    margin: 50px 0 0 150px;
  }
}
@media (max-width: 850px) {
  .wrapperMain #section5 .img4 {
    right: 80px;
  }
}
@media (max-width: 800px) {
  .wrapperMain #section5 .column {
    padding: 0 20px;
  }
  .wrapperMain #section5 .title {
    font-size: 26px;
    line-height: 36px;
    margin: 0 0 20px 0;
  }
  .wrapperMain #section5 .splideText {
    font-size: 36px;
  }
  .wrapperMain #section5 .hoofContainer {
    scale: 0.6;
    top: 30px;
  }
  .wrapperMain #section5 .img1 {
    width: 345px;
    height: 300px;
    margin: 20px 0 0 150px;
  }
  .wrapperMain #section5 .img2 {
    width: 1148px;
    height: 144px;
  }
  .wrapperMain #section5 .img3 {
    width: 96px;
    height: 80px;
  }
  .wrapperMain #section5 .img4 {
    width: 99px;
    height: 83px;
    right: 100px;
    bottom: 70px;
  }
}
@media (max-width: 700px) {
  .wrapperMain #section5 .title {
    padding: 0 0 0 15%;
  }
  .wrapperMain #section5 .img1 {
    margin: 20px 0 0 100px;
  }
  .wrapperMain #section5 .img3 {
    left: 40px;
  }
  .wrapperMain #section5 .img4 {
    right: 60px;
  }
}
@media (max-width: 650px) {
  .wrapperMain #section5 .column {
    align-items: flex-start;
  }
  .wrapperMain #section5 .title {
    text-align: left;
    padding: 0;
  }
  .wrapperMain #section5 .splideText {
    text-align: left;
  }
  .wrapperMain #section5 .hoofContainer {
    display: none;
  }
}
@media (max-width: 600px) {
  .wrapperMain #section5 .img1 {
    margin: 20px 0 0 70px;
  }
  .wrapperMain #section5 .img3 {
    left: 20px;
  }
  .wrapperMain #section5 .img4 {
    right: 30px;
  }
}
@media (max-width: 550px) {
  .wrapperMain #section5 .img1 {
    margin: 0 0 0 45px;
  }
  .wrapperMain #section5 .img3 {
    left: 15px;
  }
  .wrapperMain #section5 .img4 {
    right: 10px;
  }
}
@media (max-width: 500px) {
  .wrapperMain #section5 .img2 {
    width: 984px;
    height: 123px;
    left: 10px;
  }
  .wrapperMain #section5 .img4 {
    bottom: 160px;
    right: 28px;
  }
}
@media (max-width: 450px) {
  .wrapperMain #section5 {
    padding: 0;
  }
  .wrapperMain #section5 .img1 {
    width: 310px;
    height: 270px;
    margin: 0 0 0 40px;
  }
  .wrapperMain #section5 .img3 {
    width: 86px;
    height: 72px;
    left: 8px;
  }
  .wrapperMain #section5 .img4 {
    width: 89px;
    height: 74px;
  }
}
@media (max-width: 380px) {
  .wrapperMain #section5 .title {
    font-size: 24px;
    line-height: 34px;
    margin: 0;
  }
  .wrapperMain #section5 .splideText {
    font-size: 32px;
  }
  .wrapperMain #section5 .img1 {
    background-image: url("../img/section5-13.png");
    margin: 0 0 0 10px;
    width: 320px;
    height: 217px;
  }
  .wrapperMain #section5 .img3 {
    width: 76px;
    height: 64px;
    left: 5px;
    bottom: 50px;
  }
  .wrapperMain #section5 .img4 {
    width: 79px;
    height: 66px;
    bottom: 140px;
    right: 30px;
  }
}
@media (max-width: 350px) {
  .wrapperMain #section5 .title {
    font-size: 22px;
    line-height: 32px;
  }
  .wrapperMain #section5 .splideText {
    font-size: 28px;
  }
}
@media (max-width: 330px) {
  .wrapperMain #section5 .img1 {
    margin: 0;
  }
  .wrapperMain #section5 .img3 {
    left: 3px;
    bottom: 40px;
  }
}
.wrapperMain #section6 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 45px 124px 50px 150px;
}
.wrapperMain #section6 .row {
  width: 100%;
  display: flex;
}
.wrapperMain #section6 .column {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.wrapperMain #section6 .column.right {
  width: 333px;
  position: relative;
  flex-shrink: 0;
  margin: 100px 0 0 0;
}
.wrapperMain #section6 .title {
  color: #FF8600;
  font-family: mBank;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: -0.4px;
  margin: 22px 0 0 0;
}
.wrapperMain #section6 .title span {
  color: #FF8600;
  font-family: mBank;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 48px;
  letter-spacing: -0.4px;
}
.wrapperMain #section6 .text {
  color: #FFF;
  font-family: mBank;
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 35px;
  letter-spacing: -0.131px;
  margin: 25px 0;
}
.wrapperMain #section6 .subTitle {
  color: #FF8600;
  font-family: mBank;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 34.93px;
  letter-spacing: -0.131px;
  margin: 25px 0;
}
.wrapperMain #section6 .list {
  list-style: none;
  padding-left: 45px;
}
.wrapperMain #section6 .list li {
  position: relative;
  padding-left: 30px;
  margin: 0 0 10px 0;
}
.wrapperMain #section6 .list li::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 18px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-color: #FF8600;
  border-radius: 50%;
}
.wrapperMain #section6 .textEnd {
  color: #ffffff;
  font-family: mBank;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.15px;
  margin: 60px 0 0;
}
.wrapperMain #section6 .textLight {
  color: #FFF;
  font-family: mBank;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.3px;
  margin: 0 0 30px 0;
}
.wrapperMain #section6 .btn {
  max-width: 360px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 38px;
  background-color: #AE0000;
  border: 1px solid #AE0000;
  color: #FFF;
  text-align: center;
  font-family: mBank;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 20px 0;
  margin: 150px 0 0 0;
  cursor: pointer;
  user-select: none;
  transition: 0.3s all ease-in-out;
}
.wrapperMain #section6 .btn:hover {
  background-color: #ffffff;
  color: #AE0000;
}
.wrapperMain #section6 .btn.mobile {
  display: none;
}
.wrapperMain #section6 .imgHoof {
  opacity: 0;
  transition: 0.3s all ease-in-out;
}
.wrapperMain #section6 .imgHoof.active {
  opacity: 1;
}
.wrapperMain #section6 .imgHoof1 {
  width: 87px;
  height: 86px;
  background-image: url("../img/section6-1.svg");
  position: absolute;
  top: 0;
  left: 0;
}
.wrapperMain #section6 .imgHoof2 {
  width: 51px;
  height: 74px;
  background-image: url("../img/section6-2.svg");
  position: absolute;
  top: 22px;
  left: 188px;
}
.wrapperMain #section6 .imgHoof3 {
  width: 77px;
  height: 57px;
  background-image: url("../img/section6-3.svg");
  position: absolute;
  top: 156px;
  left: 97px;
}
.wrapperMain #section6 .imgHoof4 {
  width: 87px;
  height: 76px;
  background-image: url("../img/section6-4.svg");
  position: absolute;
  top: 227px;
  left: 247px;
}
.wrapperMain #section6 .imgHoof5 {
  width: 65px;
  height: 68px;
  background-image: url("../img/section6-5.svg");
  position: absolute;
  top: 336px;
  left: 123px;
}
.wrapperMain #section6 .imgHoof6 {
  width: 83px;
  height: 66px;
  background-image: url("../img/section6-6.svg");
  position: absolute;
  top: 429px;
  left: 239px;
}
.wrapperMain #section6 .imgHoof7 {
  width: 76px;
  height: 83px;
  background-image: url("../img/section6-7.svg");
  position: absolute;
  top: 480px;
  left: 90px;
}
.wrapperMain #section6 .imgHoof8 {
  width: 78px;
  height: 58px;
  background-image: url("../img/section6-8.svg");
  position: absolute;
  top: 603px;
  left: 197px;
}
.wrapperMain #section6 .imgHoof9 {
  width: 56px;
  height: 77px;
  background-image: url("../img/section6-9.svg");
  position: absolute;
  top: 649px;
  left: 14px;
}
@media (max-width: 1400px) {
  .wrapperMain #section6 {
    padding: 45px 100px 50px 120px;
  }
}
@media (max-width: 1300px) {
  .wrapperMain #section6 {
    padding: 45px 80px 50px 8.33%;
  }
  .wrapperMain #section6 .column.right {
    width: 300px;
    scale: 0.9;
  }
}
@media (max-width: 1000px) {
  .wrapperMain #section6 .column.right {
    width: 240px;
    scale: 0.8;
  }
  .wrapperMain #section6 .title {
    font-size: 36px;
  }
  .wrapperMain #section6 .title span {
    font-size: 36px;
  }
  .wrapperMain #section6 .text {
    font-size: 22px;
    margin: 20px 0;
  }
  .wrapperMain #section6 .subTitle {
    font-size: 24px;
    margin: 20px 0 10px 0;
  }
  .wrapperMain #section6 .textLight {
    font-size: 28px;
  }
  .wrapperMain #section6 .textEnd {
    font-size: 28px;
    margin: 40px 0 0 0;
  }
  .wrapperMain #section6 .btn {
    margin: 120px 0 0 0;
  }
  .wrapperMain #section6 .list {
    padding-left: 20px;
  }
}
@media (max-width: 900px) {
  .wrapperMain #section6 .column.right {
    width: 180px;
    scale: 0.7;
  }
}
@media (max-width: 800px) {
  .wrapperMain #section6 {
    padding: 20px 20px 50px 20px;
  }
  .wrapperMain #section6 .column.right {
    width: 230px;
    scale: 0.6;
  }
  .wrapperMain #section6 .title {
    font-size: 32px;
  }
  .wrapperMain #section6 .title span {
    font-size: 32px;
  }
  .wrapperMain #section6 .text {
    font-size: 20px;
    margin: 15px 0;
  }
  .wrapperMain #section6 .subTitle {
    font-size: 22px;
    margin: 15px 0 5px 0;
  }
  .wrapperMain #section6 .textLight {
    font-size: 26px;
    margin: 0 0 10px 0;
  }
  .wrapperMain #section6 .textEnd {
    font-size: 24px;
    margin: 30px 0 0 0;
  }
  .wrapperMain #section6 .btn {
    margin: 100px 0 0 0;
  }
  .wrapperMain #section6 .list {
    padding-left: 0;
  }
}
@media (max-width: 700px) {
  .wrapperMain #section6 .column.right {
    width: 200px;
    scale: 0.55;
  }
  .wrapperMain #section6 .title {
    font-size: 30px;
    line-height: 42px;
  }
  .wrapperMain #section6 .title span {
    font-size: 30px;
  }
  .wrapperMain #section6 .text {
    font-size: 18px;
    margin: 15px 0;
  }
  .wrapperMain #section6 .subTitle {
    font-size: 20px;
    margin: 15px 0 5px 0;
  }
  .wrapperMain #section6 .textEnd {
    font-size: 22px;
  }
  .wrapperMain #section6 .btn {
    margin: 80px 0 0 0;
  }
  .wrapperMain #section6 .textLight {
    font-size: 24px;
    margin: 0 0 8px 0;
  }
  .wrapperMain #section6 .list {
    padding-left: 0;
  }
  .wrapperMain #section6 .list li {
    margin: 0 0 5px 0;
  }
  .wrapperMain #section6 .list li::before {
    width: 15px;
    height: 15px;
  }
}
@media (max-width: 650px) {
  .wrapperMain #section6 .column.right {
    display: none;
  }
}
@media (max-width: 550px) {
  .wrapperMain #section6 .title {
    font-size: 28px;
    line-height: 36px;
  }
  .wrapperMain #section6 .title span {
    font-size: 28px;
  }
  .wrapperMain #section6 .text {
    font-size: 16px;
    line-height: 30px;
    margin: 15px 0;
  }
  .wrapperMain #section6 .subTitle {
    font-size: 18px;
    margin: 10px 0 0px 0;
  }
  .wrapperMain #section6 .textEnd {
    font-size: 20px;
  }
  .wrapperMain #section6 .btn {
    margin: 60px 0 0 0;
  }
  .wrapperMain #section6 .textLight {
    font-size: 22px;
    margin: 0 0 5px 0;
  }
  .wrapperMain #section6 .list li {
    margin: 0;
    padding-left: 25px;
  }
  .wrapperMain #section6 .list li::before {
    width: 10px;
    height: 10px;
    top: 15px;
  }
}
@media (max-width: 450px) {
  .wrapperMain #section6 .textEnd {
    font-size: 22px;
    line-height: 28px;
  }
}
@media (max-width: 380px) {
  .wrapperMain #section6 .title {
    font-size: 24px;
    line-height: 32px;
  }
  .wrapperMain #section6 .title span {
    font-size: 24px;
  }
  .wrapperMain #section6 .text {
    font-size: 14px;
    line-height: 24px;
    margin: 5px 0;
  }
  .wrapperMain #section6 .textLight {
    font-size: 20px;
  }
  .wrapperMain #section6 .subTitle {
    font-size: 16px;
    margin: 0;
  }
  .wrapperMain #section6 .textEnd {
    font-size: 18px;
  }
  .wrapperMain #section6 .list {
    margin: 5px 0 10px;
  }
  .wrapperMain #section6 .list li {
    padding-left: 20px;
  }
  .wrapperMain #section6 .list li::before {
    top: 12px;
  }
  .wrapperMain #section6 .btn {
    font-size: 18px;
    padding: 18px 0;
  }
  .wrapperMain #section6 .btn.desktop {
    display: none;
  }
  .wrapperMain #section6 .btn.mobile {
    display: flex;
  }
}
.wrapperMain #section7 {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 100px 20px 155px 150px;
}
.wrapperMain #section7 .strip {
  width: 615px;
  height: 10px;
  background-image: url("../img/section3-1.svg");
}
.wrapperMain #section7 .title {
  color: #FFF;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  margin: 32px 0 0 0;
}
.wrapperMain #section7 .element {
  display: flex;
  color: #FFF;
  align-items: center;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  margin: 0 0 32px 0;
  transition: 0.3s all ease-in-out;
}
.wrapperMain #section7 .element .icon {
  color: #FFF;
  width: 30px;
  height: 40px;
  flex-shrink: 0;
  margin: 0 32px 0 0;
  transition: 0.3s all ease-in-out;
}
.wrapperMain #section7 .element.noIcon {
  margin: 0 0 0 62px;
}
.wrapperMain #section7 .element:hover {
  color: #FF8600;
}
.wrapperMain #section7 .element:hover .icon {
  color: #FF8600;
}
.wrapperMain #section7 .row {
  max-width: 1140px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 40px 0;
}
.wrapperMain #section7 .column {
  width: 48%;
  display: flex;
  flex-direction: column;
}
.wrapperMain #section7 .text {
  max-width: 1140px;
  color: #FFF;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  margin: 0;
  word-break: break-word;
}
.wrapperMain #section7 .text span {
  font-weight: 700;
  margin: 0;
}
.wrapperMain #section7 .text a {
  text-decoration-line: underline;
  transition: 0.3s all ease-in-out;
  word-wrap: break-word;
  margin: 0;
}
.wrapperMain #section7 .text a:hover {
  color: #FF8600;
}
@media (max-width: 1400px) {
  .wrapperMain #section7 {
    padding: 100px 20px 155px 120px;
  }
}
@media (max-width: 1300px) {
  .wrapperMain #section7 {
    padding: 80px 20px 155px 8.33%;
  }
}
@media (max-width: 1000px) {
  .wrapperMain #section7 .strip {
    width: 460px;
    height: 8px;
    position: relative;
    left: -20px;
  }
}
@media (max-width: 800px) {
  .wrapperMain #section7 {
    padding: 50px 20px 155px 20px;
  }
  .wrapperMain #section7 .element {
    align-items: flex-start;
  }
}
@media (max-width: 900px) {
  .wrapperMain #section7 .element {
    align-items: flex-start;
  }
}
@media (max-width: 700px) {
  .wrapperMain #section7 .row {
    flex-direction: column;
  }
  .wrapperMain #section7 .column {
    width: 100%;
  }
  .wrapperMain #section7 .element {
    align-items: center;
  }
}
@media (max-width: 500px) {
  .wrapperMain #section7 {
    position: relative;
  }
  .wrapperMain #section7 .strip {
    width: 100vw;
    height: 6px;
    position: absolute;
    left: 0;
    top: 0;
  }
  .wrapperMain #section7 .title {
    margin: 0;
  }
}
@media (max-width: 450px) {
  .wrapperMain #section7 .element {
    align-items: flex-start;
  }
}/*# sourceMappingURL=main.css.map */