@charset "UTF-8";
* {
  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;
}

img {
  width: 100%;
}

footer {
  background: rgba(110, 110, 110, 0.1);
}

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

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

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

.wrapperMain {
  display: flex;
  flex-flow: column;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.wrapperMain #header {
  display: flex;
  align-items: center;
  flex-flow: column;
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  z-index: 1000;
  max-width: 1440px;
}
.wrapperMain #header .headerWrapper {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 34px;
  /*menuMobile*/
}
.wrapperMain #header .headerWrapper .logo {
  background-image: url(../../assets/img/mbank-logo.svg);
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
  height: 61px;
  width: 159px;
  flex-shrink: 0;
}
.wrapperMain #header .headerWrapper .menu {
  display: flex;
  max-width: 620px;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.wrapperMain #header .headerWrapper .menu .text {
  font-family: mBank, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.002em;
  color: #ffffff;
  text-align: left;
  transition: all 0.3s;
  flex-shrink: 0;
  cursor: pointer;
}
.wrapperMain #header .headerWrapper .menu .text:hover {
  transform: scale(1.05);
}
.wrapperMain #header .headerWrapper .headerButton {
  height: 49px;
  width: 245px;
  border-radius: 23.5px;
  background-color: #0065b1;
  border: 1px solid #0065b1;
  font-family: mBank, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #ffffff;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: 0.3s all;
}
.wrapperMain #header .headerWrapper .headerButton:hover {
  background-color: #ffffff;
  color: #0065b1;
}
.wrapperMain #header .headerWrapper .btn {
  width: 37px;
  cursor: pointer;
  margin-right: 0;
}
.wrapperMain #header .headerWrapper span {
  display: block;
  width: 100%;
  height: 3px;
  background: #26221e;
  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 .menuMobile {
  display: none;
  flex-flow: column;
  position: absolute;
  top: 96px;
  right: 0;
  background-color: #ffffff;
  padding: 22px 22px 0 22px;
  align-items: flex-start;
  transition: all 0.5s;
  z-index: 1000;
  width: 100%;
}
.wrapperMain #header .headerWrapper .menuMobile .text {
  font-family: mBank, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.002em;
  text-align: left;
  margin: 10px 0 30px 0;
  cursor: pointer;
}
.wrapperMain #header .headerWrapper .menuMobile .text:hover {
  font-family: mBank, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.002em;
  text-align: left;
}
.wrapperMain #header .headerWrapper .menuMobileHide {
  display: none;
  right: -100%;
  transition: all 0.5s;
}
.wrapperMain #header .mobile {
  display: none;
}
.wrapperMain #header .bar {
  height: 11px;
}
@media screen and (max-width: 1350px) {
  .wrapperMain #header .headerWrapper .logo {
    height: 52px;
    width: 133px;
  }
  .wrapperMain #header .menuMobile {
    width: calc(100% - 40px);
  }
}
@media screen and (max-width: 1190px) {
  .wrapperMain #header .headerWrapper {
    margin-left: 40px;
    margin-right: 40px;
    width: calc(100% - 80px);
  }
}
@media screen and (max-width: 1150px) {
  .wrapperMain #header .headerWrapper .logo {
    height: 49px;
    width: 131px;
  }
  .wrapperMain #header .headerWrapper .menu {
    max-width: 550px;
  }
  .wrapperMain #header .headerWrapper .menu .text {
    font-size: 14px;
  }
  .wrapperMain #header .headerWrapper .headerButton {
    height: 44px;
    width: 230px;
    border-radius: 21px;
    font-size: 14px;
    line-height: 21px;
  }
}
@media screen and (max-width: 1000px) {
  .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: block;
  }
  .wrapperMain #header .headerWrapper .mobileFlex {
    display: none;
    margin-left: auto;
    margin-right: 50px;
  }
  .wrapperMain #header .headerWrapper .menuMobileHide {
    display: none;
  }
  .wrapperMain #header .mobile {
    display: flex;
  }
}
@media screen and (max-width: 550px) {
  .wrapperMain #header .headerWrapper {
    margin-left: 20px;
    margin-right: 20px;
    width: calc(100% - 40px);
  }
}
@media screen and (max-width: 490px) {
  .wrapperMain #header .headerWrapper .headerButton {
    height: 49px;
    width: 131px;
    border-radius: 23.5px;
  }
}
@media screen and (max-width: 450px) {
  .wrapperMain #header .headerWrapper .headerButton {
    margin: 0 auto;
  }
}
@media screen and (max-width: 380px) {
  .wrapperMain #header .headerWrapper .logo {
    height: 44px;
    width: 117px;
  }
  .wrapperMain #header .headerWrapper .headerButton {
    height: 39px;
    width: 104px;
    border-radius: 23.5px;
    font-size: 13px;
  }
  .wrapperMain #header .headerWrapper .menuMobile {
    top: 90px;
  }
}
.wrapperMain #section1 {
  display: flex;
  justify-content: space-between;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 46.7% 50px 0 50px;
  background-image: url(../../assets/img/section1.jpg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
  height: 0;
  position: relative;
}
.wrapperMain #section1 .topBar {
  position: absolute;
  top: 0;
  height: 9px;
  max-width: 1100px;
  width: 100%;
  background-image: url("../../assets/img/bar-full.svg");
  background-position: center;
  background-size: 100% auto;
  left: calc((100% - 1100px) / 2);
}
.wrapperMain #section1 .bottomBar {
  position: absolute;
  bottom: 0;
  height: 9px;
  max-width: 1100px;
  width: 100%;
  background-image: url("../../assets/img/bar-full2.png");
  background-position: right;
  background-size: 100% auto;
  right: calc((100% - 1100px) / 2);
}
.wrapperMain #section1 .contentWrapper {
  position: absolute;
  margin-left: 165px;
  left: 0;
  top: 54.5%;
  transform: translateY(-50%);
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}
.wrapperMain #section1 .content {
  height: 342px;
  width: 700px;
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  color: white;
}
.wrapperMain #section1 .content .title {
  font-family: mBank, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 45px;
  line-height: 60px;
  color: #ffffff;
  margin-top: 35px;
  padding-bottom: 35px;
}
.wrapperMain #section1 .content .title span {
  font-size: 75px;
}
.wrapperMain #section1 .content .text {
  font-family: mBank, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  margin-top: 15px;
  margin-bottom: auto;
}
.wrapperMain #section1 .content .button {
  height: 48px;
  width: 255px;
  border-radius: 23.5px;
  background-color: #0065b1;
  border: 1px solid #0065b1;
  font-family: mBank, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  margin-bottom: 40px;
  color: #ffffff;
}
.wrapperMain #section1 .content .button:hover {
  background-color: #ffffff;
  color: #0065b1;
}
.wrapperMain #section1 .mobile {
  display: none;
}
.wrapperMain #section1 .desktop {
  display: flex;
}
@media screen and (max-width: 1440px) {
  .wrapperMain #section1 .contentWrapper {
    margin-left: calc((100% - 1100px) / 2);
  }
}
@media screen and (max-width: 1350px) {
  .wrapperMain #section1 {
    padding-top: 635px;
    background-size: cover;
  }
  .wrapperMain #section1 .content {
    height: 260px;
  }
  .wrapperMain #section1 .content .title {
    font-size: 35px;
    line-height: 50px;
    margin: 0;
  }
  .wrapperMain #section1 .content .title span {
    font-size: 65px;
  }
  .wrapperMain #section1 .content .button {
    height: 48px;
    width: 230px;
    border-radius: 23.5px;
    font-size: 15px;
    line-height: 1;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1190px) {
  .wrapperMain #section1 .contentWrapper {
    margin-left: 40px;
  }
}
@media screen and (max-width: 1180px) {
  .wrapperMain #section1 .topBar {
    height: 7px;
    width: calc(100% - 80px);
    left: 40px;
  }
  .wrapperMain #section1 .bottomBar {
    height: 7px;
    width: calc(100% - 80px);
    right: 40px;
  }
}
@media screen and (max-width: 1000px) {
  .wrapperMain #section1 {
    padding-top: 46.98%;
  }
  .wrapperMain #section1 .topBar {
    width: 100%;
    left: 0;
  }
  .wrapperMain #section1 .bottomBar {
    width: 100%;
    right: 0;
  }
  .wrapperMain #section1 .content {
    width: 510px;
  }
}
@media screen and (max-width: 850px) {
  .wrapperMain #section1 .content {
    height: 260px;
    width: 420px;
  }
  .wrapperMain #section1 .content .title {
    font-size: 32px;
    line-height: 40px;
  }
  .wrapperMain #section1 .content .title span {
    font-size: 55px;
    line-height: 60px;
  }
  .wrapperMain #section1 .content .button {
    height: 48px;
    width: 230px;
    border-radius: 23.5px;
    font-size: 15px;
    line-height: 1;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 650px) {
  .wrapperMain #section1 {
    padding: 47% 50px 0 50px;
    background-image: url(../../assets/img/section1.jpg);
    background-position: center;
  }
  .wrapperMain #section1 .desktop {
    display: none;
  }
  .wrapperMain #mobile1 .content .button {
    margin-top: 25px;
  }
}
@media screen and (max-width: 500px) {
  .wrapperMain #section1 {
    padding-top: 235px;
    background-position: 100% 100%;
  }
}
.wrapperMain #mobile1 {
  display: none;
}
@media screen and (max-width: 650px) {
  .wrapperMain #mobile1 {
    display: flex;
    flex-flow: column;
    width: 100%;
  }
  .wrapperMain #mobile1 .content {
    display: flex;
    width: 100%;
    padding: 0 20px;
    flex-flow: column;
    margin-top: 30px;
  }
  .wrapperMain #mobile1 .content .title {
    font-family: mBank, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 40px;
    line-height: 48px;
    max-width: 400px;
  }
  .wrapperMain #mobile1 .content .text {
    font-family: mBank, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    margin-top: 15px;
    margin-bottom: 25px;
  }
  .wrapperMain #mobile1 .content .button {
    height: 48px;
    width: 293px;
    border-radius: 23.5px;
    font-family: mBank, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    justify-self: center;
    align-self: center;
    color: white;
    background-color: #0065b1;
    border: 1px solid #0065b1;
  }
  .wrapperMain #mobile1 .content .button:hover {
    background-color: #ffffff;
    color: #0065b1;
  }
}
@media screen and (max-width: 370px) {
  .wrapperMain #mobile1 .content .title {
    font-size: 32px;
    line-height: 38px;
  }
  .wrapperMain #mobile1 .content .text {
    font-size: 20px;
    line-height: 26px;
    margin-top: 15px;
    margin-bottom: 25px;
  }
  .wrapperMain #mobile1 .content .button {
    height: 43px;
    width: 263px;
    border-radius: 21px;
  }
}
.wrapperMain #section2 {
  display: flex;
  width: 100%;
  background: #ffffff;
  padding-bottom: 80px;
}
.wrapperMain #section2 .mainContainer {
  display: flex;
  flex-flow: column;
  max-width: 1205px;
  padding: 0 40px;
  margin: 0 auto;
  width: 100%;
  align-items: center;
}
.wrapperMain #section2 .title {
  font-family: "mBank", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 47px;
  color: #000000;
  line-height: 56px;
  margin: 110px 0 66px 0;
  text-align: center;
  max-width: 900px;
}
.wrapperMain #section2 .container {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 15px;
}
.wrapperMain #section2 .container .left {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../../assets/img/section3.svg");
  height: 267px;
  width: 305px;
  flex-shrink: 0;
}
.wrapperMain #section2 .container .right {
  display: flex;
  flex-direction: column;
  margin: 0 0 0 80px;
  max-width: 640px;
  width: 100%;
}
.wrapperMain #section2 .container .right .listTitle {
  font-family: "mBank";
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 36px;
  letter-spacing: -0.02em;
  color: #000000;
  padding-bottom: 16px;
}
.wrapperMain #section2 .container .right .list {
  width: 100%;
  list-style: none;
  padding-left: unset;
  margin-top: 0px;
  margin-bottom: 0px;
  padding-bottom: 40px;
}
.wrapperMain #section2 .container .right .list li {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 38px;
  letter-spacing: -0.005em;
  display: flex;
  align-items: flex-start;
  margin-bottom: 7px;
}
.wrapperMain #section2 .container .right .list li a {
  color: #ae0000;
  transition: 0.3s all;
  position: relative;
}
.wrapperMain #section2 .container .right .list li a:before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #850000;
  transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.wrapperMain #section2 .container .right .list li a:hover {
  color: #850000;
}
.wrapperMain #section2 .container .right .list li a:hover:before {
  width: 100%;
}
.wrapperMain #section2 .container .right .list li::before {
  content: "■";
  color: #008f20;
  font-weight: bold;
  margin-right: 15px;
  flex-shrink: 0;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 23px;
}
.wrapperMain #section2 .container .right .list li::marker {
  display: none;
}
.wrapperMain #section2 .container .right .button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 250px;
  border-radius: 23.5px;
  color: white;
  transition: all 0.3s ease;
  background-color: #ae0000;
  border: 1px solid #ae0000;
  font-family: "mBank", sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 19px;
  cursor: pointer;
}
.wrapperMain #section2 .container .right .button:hover {
  background-color: #ffffff;
  color: #ae0000;
}
.wrapperMain #section2 .desktop {
  display: block;
}
.wrapperMain #section2 .mobile {
  display: none;
}
@media screen and (max-width: 800px) {
  .wrapperMain #section2 .container {
    flex-direction: column;
    align-items: center;
  }
  .wrapperMain #section2 .container .left {
    width: 225px;
  }
  .wrapperMain #section2 .container .right {
    margin: 0;
  }
  .wrapperMain #section2 .title {
    text-align: left;
    font-size: 32px;
    line-height: 35px;
  }
  .wrapperMain #section2 .container .right .listTitle {
    font-size: 25px;
    line-height: 29px;
  }
  .wrapperMain #section2 .container .right .list li {
    font-size: 19px;
    line-height: 27px;
    font-weight: 500;
  }
  .wrapperMain #section2 .container .right .list li::before {
    height: 20px;
  }
}
@media screen and (max-width: 600px) {
  .wrapperMain #section2 .title {
    margin: 60px 0 33px 0;
  }
}
@media screen and (max-width: 550px) {
  .wrapperMain #section2 .mainContainer {
    padding: 0 20px;
  }
  .wrapperMain #section2 .container .right .button {
    margin: 0 auto;
  }
}
.wrapperMain #section3 {
  max-width: 1190px;
  margin: 0 auto;
  position: relative;
  width: 100%;
  margin-bottom: 100px;
}
.wrapperMain #section3 .containersWrapper {
  width: calc(100% - 40px);
  margin: 0 40px;
  position: relative;
  height: 1315px;
}
.wrapperMain #section3 .container {
  display: flex;
  flex-flow: column;
  position: absolute;
}
.wrapperMain #section3 .container .imageWrapper {
  width: 446px;
  height: 448px;
  position: relative;
  margin-bottom: 24px;
}
.wrapperMain #section3 .container .imageWrapper .image {
  width: 446px;
  height: 448px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: 20px;
  cursor: pointer;
  transition: 0.3s background ease-in-out;
}
.wrapperMain #section3 .container .title {
  font-family: mBank, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 32px;
  letter-spacing: -0.005em;
  color: #000000;
  margin-top: 10px;
  margin-bottom: 10px;
  max-width: 430px;
}
.wrapperMain #section3 .container .text {
  font-family: mBank, sans-serif;
  font-style: normal;
  font-size: 22px;
  line-height: 30px;
  margin: 0;
  max-width: 430px;
}
.wrapperMain #section3 .container .text .bold {
  font-weight: 700;
}
.wrapperMain #section3 .cont1 {
  right: 18px;
  top: 0;
}
.wrapperMain #section3 .cont1 .imageWrapper {
  background-color: white;
}
.wrapperMain #section3 .cont1 .imageWrapper .image {
  background-image: url(../../assets/img/section3-1.jpg);
}
.wrapperMain #section3 .cont1 .imageWrapper .image .box {
  width: 100%;
  max-width: 260px;
  padding: 60px 0 0 35px;
}
.wrapperMain #section3 .cont1 .imageWrapper .image .box .boxSymbol {
  font-family: mBank, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 90px;
  line-height: 15px;
  letter-spacing: -0.02em;
  color: #ffffff;
}
.wrapperMain #section3 .cont1 .imageWrapper .image .box .boxTitle {
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 32px;
  font-family: mBank, sans-serif;
  letter-spacing: -0.02em;
  color: #ffffff;
  padding-bottom: 5px;
}
.wrapperMain #section3 .cont1 .imageWrapper .image .box .boxText {
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 32px;
  font-family: mBank, sans-serif;
  letter-spacing: -0.02em;
  color: #ffffff;
}
.wrapperMain #section3 .cont2 {
  left: 0;
  top: 360px;
}
.wrapperMain #section3 .cont2 .imageWrapper {
  background-color: white;
}
.wrapperMain #section3 .cont2 .imageWrapper .image {
  background-image: url(../../assets/img/section3-2.jpg);
}
.wrapperMain #section3 .cont2 .imageWrapper .image .box {
  width: 100%;
  max-width: 216px;
  padding: 60px 0 0 32px;
}
.wrapperMain #section3 .cont2 .imageWrapper .image .box .boxSymbol {
  font-family: mBank, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 90px;
  line-height: 15px;
  letter-spacing: -0.02em;
  color: #ffffff;
}
.wrapperMain #section3 .cont2 .imageWrapper .image .box .boxTitle {
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 32px;
  font-family: mBank, sans-serif;
  letter-spacing: -0.02em;
  color: #ffffff;
  padding-bottom: 2px;
}
.wrapperMain #section3 .cont2 .imageWrapper .image .box .boxText {
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 32px;
  font-family: mBank, sans-serif;
  letter-spacing: -0.02em;
  color: #ffffff;
}
.wrapperMain #section3 .cont3 {
  right: 135px;
  top: 720px;
}
.wrapperMain #section3 .cont3 .imageWrapper {
  background-color: white;
}
.wrapperMain #section3 .cont3 .imageWrapper .image {
  background-image: url(../../assets/img/section3-3.jpg);
}
.wrapperMain #section3 .cont3 .imageWrapper .image .box {
  width: 100%;
  max-width: 200px;
  padding: 60px 0 0 32px;
}
.wrapperMain #section3 .cont3 .imageWrapper .image .box .boxSymbol {
  font-family: mBank, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 90px;
  line-height: 15px;
  letter-spacing: -0.02em;
  color: #ffffff;
}
.wrapperMain #section3 .cont3 .imageWrapper .image .box .boxTitle {
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 32px;
  font-family: mBank, sans-serif;
  letter-spacing: -0.02em;
  color: #ffffff;
  padding-bottom: 2px;
}
.wrapperMain #section3 .cont3 .imageWrapper .image .box .boxText {
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 32px;
  font-family: mBank, sans-serif;
  letter-spacing: -0.02em;
  color: #ffffff;
}
@media screen and (max-width: 1150px) {
  .wrapperMain #section3 .cont1 .imageWrapper .image .box {
    max-width: 205px;
  }
  .wrapperMain #section3 .cont1 .imageWrapper .image .box .boxSymbol {
    font-size: 50px;
  }
  .wrapperMain #section3 .cont1 .imageWrapper .image .box .boxTitle {
    font-size: 15px;
    line-height: 23px;
    max-width: 150px;
  }
  .wrapperMain #section3 .cont1 .imageWrapper .image .box .boxText {
    font-size: 15px;
    line-height: 23px;
  }
  .wrapperMain #section3 .cont2 .imageWrapper .image .box .boxSymbol {
    font-size: 50px;
  }
  .wrapperMain #section3 .cont2 .imageWrapper .image .box .boxTitle {
    font-size: 15px;
    line-height: 23px;
    max-width: 150px;
  }
  .wrapperMain #section3 .cont2 .imageWrapper .image .box .boxText {
    font-size: 15px;
    line-height: 23px;
  }
  .wrapperMain #section3 .cont3 .imageWrapper .image .box .boxSymbol {
    font-size: 50px;
    max-width: 150px;
  }
  .wrapperMain #section3 .cont3 .imageWrapper .image .box .boxTitle {
    font-size: 15px;
    line-height: 23px;
    max-width: 150px;
  }
  .wrapperMain #section3 .cont3 .imageWrapper .image .box .boxText {
    font-size: 15px;
    line-height: 23px;
  }
  .wrapperMain #section3 .cont3 {
    right: 100px;
    top: 550px;
  }
  .wrapperMain #section3 {
    max-width: 952px;
  }
  .wrapperMain #section3 .containersWrapper {
    height: 1052px;
  }
  .wrapperMain #section3 .container .imageWrapper {
    width: 348px;
    height: 355px;
    margin-left: 34px;
    margin-bottom: 24px;
  }
  .wrapperMain #section3 .container .imageWrapper .image {
    width: 356px;
    height: 355px;
    right: 0px;
    top: 20px;
  }
  .wrapperMain #section3 .container .title {
    margin-top: 24px;
    margin-bottom: 15px;
    max-width: 356px;
  }
  .wrapperMain #section3 .container .text {
    font-size: 17px;
    line-height: 24px;
    max-width: 330px;
  }
  .wrapperMain #section3 .cont1 {
    right: 18px;
    top: 0;
  }
  .wrapperMain #section3 .cont1 .title {
    margin-left: auto;
  }
  .wrapperMain #section3 .cont2 {
    left: 0;
    top: 200px;
  }
  .wrapperMain #section3 .cont2 .imageWrapper {
    margin-left: 0 !important;
  }
  .wrapperMain #section3 .cont2 .imageWrapper .image {
    left: 0;
    right: unset;
  }
  .wrapperMain #section3 .cont3 .title {
    margin-left: auto;
  }
}
@media screen and (max-width: 1000px) {
  .wrapperMain #section3 {
    max-width: 856px;
    margin-bottom: 50px;
  }
  .wrapperMain #section3 .containersWrapper {
    height: unset;
    display: flex;
    flex-flow: column;
    margin: 0;
    width: 100%;
    padding: 0 40px;
  }
  .wrapperMain #section3 .container {
    position: relative;
    margin-bottom: 60px;
  }
  .wrapperMain #section3 .container .imageWrapper {
    width: 437px;
    height: 446px;
    position: relative;
    margin-left: 34px;
    margin-bottom: 24px;
  }
  .wrapperMain #section3 .container .imageWrapper .image {
    width: 446px;
    height: 446px;
    top: 20px;
  }
  .wrapperMain #section3 .container .title {
    max-width: 446px;
  }
  .wrapperMain #section3 .container .text {
    max-width: 430px;
  }
  .wrapperMain #section3 .cont1 {
    right: unset;
    top: unset;
    margin-left: auto;
  }
  .wrapperMain #section3 .cont2 {
    left: unset;
    top: unset;
  }
  .wrapperMain #section3 .cont3 {
    right: unset;
    top: unset;
    margin-left: auto;
  }
  .wrapperMain #section3 .cont1 .imageWrapper .image .box .boxSymbol {
    font-size: 70px;
  }
  .wrapperMain #section3 .cont1 .imageWrapper .image .box .boxTitle {
    font-size: 20px;
    line-height: 25px;
    padding-bottom: 10px;
  }
  .wrapperMain #section3 .cont1 .imageWrapper .image .box .boxText {
    font-size: 18px;
    line-height: 23px;
  }
  .wrapperMain #section3 .cont2 .imageWrapper .image .box .boxSymbol {
    font-size: 70px;
  }
  .wrapperMain #section3 .cont2 .imageWrapper .image .box .boxTitle {
    font-size: 20px;
    line-height: 25px;
    padding-bottom: 10px;
  }
  .wrapperMain #section3 .cont2 .imageWrapper .image .box .boxText {
    font-size: 18px;
    line-height: 23px;
  }
  .wrapperMain #section3 .cont3 .imageWrapper .image .box .boxSymbol {
    font-size: 70px;
  }
  .wrapperMain #section3 .cont3 .imageWrapper .image .box .boxTitle {
    font-size: 20px;
    line-height: 25px;
    padding-bottom: 10px;
  }
  .wrapperMain #section3 .cont3 .imageWrapper .image .box .boxText {
    font-size: 18px;
    line-height: 23px;
    max-width: 150px;
    padding: 0;
  }
}
@media screen and (max-width: 550px) {
  .wrapperMain #section3 .containersWrapper {
    padding: 0 20px;
  }
  .wrapperMain #section3 .containersWrapper .container {
    width: 100%;
  }
  .wrapperMain #section3 .containersWrapper .container .title {
    margin: 15px 0 0;
    width: 100%;
    max-width: unset;
  }
  .wrapperMain #section3 .containersWrapper .container .imageWrapper {
    margin: 0;
    width: 100%;
    height: calc(100vw - 40px);
  }
  .wrapperMain #section3 .containersWrapper .container .imageWrapper .image {
    width: 100%;
    height: 100%;
    position: relative;
    top: unset;
  }
}
@media screen and (max-width: 460px) {
  .wrapperMain #section3 .containersWrapper .container .imageWrapper .image .box {
    padding: 65px 0 0 40px;
  }
  .wrapperMain #section3 .containersWrapper .container .imageWrapper .image .box .boxSymbol {
    font-size: 52px;
  }
  .wrapperMain #section3 .containersWrapper .container .imageWrapper .image .box .boxTitle {
    font-size: 17px;
    line-height: 20px;
  }
  .wrapperMain #section3 .containersWrapper .container .imageWrapper .image .box .boxText {
    font-size: 16px;
    line-height: 20px;
  }
}
@media screen and (max-width: 430px) {
  .wrapperMain #section3 .containersWrapper .container .title {
    font-size: 20px;
    line-height: 25px;
  }
  .wrapperMain #section3 .containersWrapper .container .imageWrapper .image .box {
    padding: 40px 0 0 20px;
  }
}
@media screen and (max-width: 358px) {
  .wrapperMain #section3 .cont1 .imageWrapper .image .box {
    max-width: 150px;
  }
  .wrapperMain #section3 .containersWrapper .container .imageWrapper .image .box {
    padding-top: 35px;
  }
  .wrapperMain #section3 .containersWrapper .container .imageWrapper .image .box .boxSymbol {
    font-size: 48px;
    max-width: 125px;
    padding-right: 5px;
  }
  .wrapperMain #section3 .containersWrapper .container .imageWrapper .image .box .boxTitle {
    font-size: 15px;
    line-height: 19px;
    max-width: 125px;
    padding-right: 5px;
  }
  .wrapperMain #section3 .containersWrapper .container .imageWrapper .image .box .boxText {
    font-size: 13px;
    line-height: 19px;
    max-width: 125px;
    padding-right: 5px;
  }
}
.wrapperMain #section5 {
  display: flex;
  height: 654px;
  background-image: url(../../assets/img/section5.jpg);
  background-position: left;
  background-size: cover;
  position: relative;
}
.wrapperMain #section5 .contentWrapper {
  position: absolute;
  margin-right: 190px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
}
.wrapperMain #section5 .content {
  width: 455px;
  display: flex;
  flex-flow: column;
  justify-content: center;
}
.wrapperMain #section5 .content .title {
  font-family: mBank, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 47px;
  line-height: 52px;
  color: #ffffff;
  margin-bottom: 38px;
}
.wrapperMain #section5 .content .text {
  font-family: mBank, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  letter-spacing: -0.01em;
  margin-bottom: 40px;
  color: #ffffff;
}
.wrapperMain #section5 .content .button {
  background-color: #ae0000;
  border: 1px solid #ae0000;
  color: #ffffff;
  max-width: 250px;
}
.wrapperMain #section5 .content .button:hover {
  background-color: #ffffff;
  color: #ae0000;
}
@media screen and (max-width: 1440px) {
  .wrapperMain #section5 .content {
    width: 415px;
  }
  .wrapperMain #section5 .contentWrapper {
    padding-right: 40px;
    margin-right: 0;
    margin-left: 795px;
    right: unset;
    left: 0;
  }
}
@media screen and (max-width: 1255px) {
  .wrapperMain #section5 .content {
    width: 415px;
  }
  .wrapperMain #section5 .contentWrapper {
    padding-right: 40px;
    margin-right: 0;
    margin-left: calc(100% - 455px);
    right: unset;
    left: 0;
  }
}
@media screen and (max-width: 1100px) {
  .wrapperMain #section5 {
    height: 500px;
  }
  .wrapperMain #section5 .contentWrapper {
    margin-left: calc(100% - 420px);
  }
  .wrapperMain #section5 .content {
    width: 320px;
  }
  .wrapperMain #section5 .content .title {
    font-size: 37px;
    line-height: 41px;
    margin-bottom: 30px;
  }
  .wrapperMain #section5 .content .text {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  .wrapperMain #section5 .content .button {
    font-size: 15px;
    max-width: 240px;
  }
}
@media screen and (max-width: 950px) {
  .wrapperMain #section5 .contentWrapper {
    margin-left: calc(100% - 360px);
  }
}
@media screen and (max-width: 950px) {
  .wrapperMain #section5 {
    height: 400px;
  }
  .wrapperMain #section5 .contentWrapper {
    margin-left: calc(100% - 360px);
  }
}
@media screen and (max-width: 750px) {
  .wrapperMain #section5 {
    height: 300px;
  }
  .wrapperMain #section5 .contentWrapper {
    padding-right: 30px;
    margin-left: calc(100% - 315px);
  }
  .wrapperMain #section5 .content {
    width: 285px;
  }
  .wrapperMain #section5 .content .title {
    font-size: 29px;
    line-height: 32px;
    margin-bottom: 25px;
  }
  .wrapperMain #section5 .content .text {
    font-size: 16px;
    line-height: 21px;
    margin-bottom: 25px;
  }
  .wrapperMain #section5 .content .button {
    font-size: 15px;
    max-width: 240px;
  }
}
@media screen and (max-width: 600px) {
  .wrapperMain #section5 {
    height: 600px;
    background-image: url("../../assets/img/section5_mobile.jpg");
    background-position: left bottom;
  }
  .wrapperMain #section5 .contentWrapper {
    margin: 50px 0 0 0;
    top: 0;
    transform: unset;
    padding: 0 20px;
  }
  .wrapperMain #section5 .contentWrapper .content {
    width: 100%;
  }
}
@media screen and (max-width: 550px) {
  .wrapperMain #section5 .content .button {
    align-self: center;
  }
}
.wrapperMain #section9 {
  display: flex;
  align-items: center;
  max-width: 1215px;
  width: calc(100% - 100px);
  padding: 0 50px;
  margin: 0 auto;
  flex-flow: column;
  padding-top: 100px;
}
.wrapperMain #section9 .section3Title {
  font-style: normal;
  font-weight: 700;
  font-size: 47px;
  line-height: 56px;
  font-family: mBank, sans-serif;
  text-align: center;
  color: #000000;
  padding-bottom: 50px;
}
.wrapperMain #section9 .section3Wrapper {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.wrapperMain #section9 .section3Wrapper .green {
  border: 2px solid #008f20;
}
.wrapperMain #section9 .section3Wrapper .orange {
  border: 2px solid #ff8c00;
  padding: 54px 40px 51px 40px;
}
.wrapperMain #section9 .section3Wrapper .red {
  border: 2px solid #e90a0a;
}
.wrapperMain #section9 .section3Wrapper .container {
  display: flex;
  position: relative;
  flex-flow: column;
  width: calc((100% - 56px) / 3);
  padding: 54px 50px 47px 50px;
  border-radius: 8px;
  box-sizing: border-box;
  justify-content: flex-start;
  align-items: center;
}
.wrapperMain #section9 .section3Wrapper .container .imageWrapper {
  height: 146px;
  display: flex;
  align-items: flex-end;
}
.wrapperMain #section9 .section3Wrapper .container .topImage {
  background-position: center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  width: 196px;
  height: 187px;
}
.wrapperMain #section9 .section3Wrapper .container .img1 {
  background-image: url(../../assets/img/section91.jpg);
  width: 141px;
  height: 135px;
}
.wrapperMain #section9 .section3Wrapper .container .img2 {
  background-image: url(../../assets/img/section92.jpg);
  width: 126px;
  height: 125px;
}
.wrapperMain #section9 .section3Wrapper .container .img3 {
  background-image: url(../../assets/img/section93.jpg);
  width: 126px;
  height: 146px;
}
.wrapperMain #section9 .section3Wrapper .container .title {
  font-family: mBank, sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 28px;
  line-height: 34px;
  margin-top: 42px;
  margin-bottom: 15px;
  color: black;
}
.wrapperMain #section9 .section3Wrapper .container .text {
  font-family: mBank, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  letter-spacing: -0.005em;
  color: black;
}
.wrapperMain #section9 .button {
  margin-top: 47px;
  height: 47px;
  width: 257px;
  border-radius: 23.5px;
  font-family: mBank, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  color: #ffffff;
  background-color: #ae0000;
  border: 1px solid #ae0000;
  transition: 0.3s all;
}
.wrapperMain #section9 .button:hover {
  background-color: #ffffff;
  color: #ae0000;
}
@media screen and (max-width: 1200px) {
  .wrapperMain #section9 {
    padding-top: 60px;
  }
  .wrapperMain #section9 .section3Title {
    font-size: 37px;
    line-height: 44px;
  }
  .wrapperMain #section9 .section3Wrapper {
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .wrapperMain #section9 .section3Wrapper .container {
    width: calc((100% - 60px) / 2);
  }
  .wrapperMain #section9 .section3Wrapper .red {
    margin-top: 40px;
    align-items: flex-start;
  }
  .wrapperMain #section9 .section3Wrapper .red .imageWrapper {
    align-self: center;
  }
}
@media screen and (max-width: 850px) {
  .wrapperMain #section9 .section3Wrapper {
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .wrapperMain #section9 .section3Wrapper .container {
    margin-top: 40px;
    width: 80%;
    align-items: flex-start;
  }
  .wrapperMain #section9 .section3Wrapper .container .imageWrapper {
    align-self: center;
  }
}
@media screen and (max-width: 650px) {
  .wrapperMain #section9 {
    width: calc(100% - 80px);
    padding: 60px 40px 0 40px;
  }
  .wrapperMain #section9 .section3Wrapper .container {
    width: 100%;
    max-width: 440px;
    margin-top: 30px;
  }
}
@media screen and (max-width: 500px) {
  .wrapperMain #section9 {
    width: 100%;
    padding: 60px 30px 0;
  }
  .wrapperMain #section9 .section3Title {
    font-size: 29px;
    line-height: 35px;
    padding-bottom: 10px;
  }
  .wrapperMain #section9 .section3Wrapper .container .title {
    font-size: 23px;
    line-height: 27px;
  }
  .wrapperMain #section9 .section3Wrapper .container .text {
    font-size: 18px;
    line-height: 24px;
  }
}
@media screen and (max-width: 400px) {
  .wrapperMain #section9 {
    padding: 60px 20px 0;
  }
  .wrapperMain #section9 .section3Wrapper .container {
    padding: 25px;
    margin-top: 25px;
  }
}
@media screen and (max-width: 370px) {
  .wrapperMain #section .section3Wrapper .container .title {
    font-size: 23px;
    line-height: 28px;
    margin-top: 35px;
    margin-bottom: 25px;
  }
  .wrapperMain #section .section3Wrapper .container .text {
    font-size: 18px;
    line-height: 25px;
  }
}
.wrapperMain #section6 {
  display: flex;
  width: 100%;
  padding-bottom: 83px;
  background: #bae7ff;
  margin-bottom: 116px;
}
.wrapperMain #section6 .mainContainer {
  display: flex;
  flex-flow: column;
  max-width: 1285px;
  padding: 0 40px;
  margin: 0 auto;
  width: 100%;
  align-items: center;
}
.wrapperMain #section6 .title {
  font-family: "mBank", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 47px;
  color: #000000;
  line-height: 56px;
  margin: 108px 0 57px 0;
  text-align: center;
  max-width: 900px;
}
.wrapperMain #section6 .container {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 15px;
}
.wrapperMain #section6 .container .left {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../../assets/img/section11111.svg");
  height: 394px;
  width: 481px;
  flex-shrink: 0;
}
.wrapperMain #section6 .container .right {
  display: flex;
  flex-direction: column;
  margin: 0 0 0 118px;
  max-width: 640px;
  width: 100%;
  padding-top: 48px;
}
.wrapperMain #section6 .container .right .listTitle {
  font-family: "mBank";
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 32px;
  letter-spacing: -0.02em;
  color: #000000;
  padding-bottom: 30px;
  max-width: 400px;
}
.wrapperMain #section6 .container .right .list {
  width: 100%;
  list-style: none;
  padding-left: unset;
  margin-top: 0px;
  margin-bottom: 0px;
  padding-bottom: 45px;
}
.wrapperMain #section6 .container .right .list li {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 38px;
  letter-spacing: -0.005em;
  display: flex;
  align-items: flex-start;
  margin-bottom: 7px;
}
.wrapperMain #section6 .container .right .list li a {
  color: #ae0000;
  transition: 0.3s all;
  position: relative;
}
.wrapperMain #section6 .container .right .list li a:before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #850000;
  transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.wrapperMain #section6 .container .right .list li a:hover {
  color: #850000;
}
.wrapperMain #section6 .container .right .list li a:hover:before {
  width: 100%;
}
.wrapperMain #section6 .container .right .list li::before {
  content: "■";
  color: #ae0000;
  font-weight: bold;
  margin-right: 15px;
  flex-shrink: 0;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 23px;
}
.wrapperMain #section6 .container .right .list li::marker {
  display: none;
}
.wrapperMain #section6 .container .right .button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 250px;
  border-radius: 23.5px;
  color: white;
  transition: all 0.3s ease;
  background-color: #ae0000;
  border: 1px solid #ae0000;
  font-family: "mBank", sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 19px;
  cursor: pointer;
}
.wrapperMain #section6 .container .right .button:hover {
  background-color: #ffffff;
  color: #ae0000;
}
.wrapperMain #section6 .desktop {
  display: block;
}
.wrapperMain #section6 .mobile {
  display: none;
}
@media screen and (max-width: 1030px) {
  .wrapperMain #section6 {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 1030px) {
  .wrapperMain #section6 .container .left {
    height: 197px;
    width: 240px;
  }
  .wrapperMain #section6 .container .right {
    padding-top: 0px;
  }
}
@media screen and (max-width: 800px) {
  .wrapperMain #section6 .container .right {
    margin: 0 0 0 50px;
  }
}
@media screen and (max-width: 700px) {
  .wrapperMain #section6 .container .right .button {
    margin: 0 auto;
  }
}
@media screen and (max-width: 700px) {
  .wrapperMain #section6 .title {
    margin: 54px 0 28px 0;
    text-align: left;
    font-size: 34px;
    line-height: 40px;
    color: #26221e;
  }
  .wrapperMain #section6 .container {
    flex-direction: column;
  }
  .wrapperMain #section6 .container .right {
    margin: 28px 0 0 0px;
  }
  .wrapperMain #section6 .container .right .listTitle {
    font-weight: 600;
    font-size: 22px;
    line-height: 30px;
    color: #26221e;
  }
  .wrapperMain #section6 .container .right .list li {
    font-weight: 400;
    font-size: 22px;
    line-height: 30px;
    color: #26221e;
  }
  .wrapperMain #section6 .container .left {
    align-self: center;
  }
}
@media screen and (max-width: 550px) {
  .wrapperMain #section6 .mainContainer {
    padding: 0 20px;
  }
  .wrapperMain #section6 .container .right .list li {
    font-size: 19px;
    line-height: 26px;
  }
}
.wrapperMain #section7 {
  display: flex;
  max-width: 1190px;
  width: 100%;
  margin: 133px auto 100px;
  padding: 0 40px;
  flex-flow: column;
}
.wrapperMain #section7 .title {
  font-family: mBank, sans-serif;
  margin-bottom: 40px;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 34px;
}
.wrapperMain #section7 .pointWrapper {
  display: flex;
  flex-flow: column;
  margin-bottom: 16px;
}
.wrapperMain #section7 .pointWrapper .pointRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  margin-bottom: 10px;
}
.wrapperMain #section7 .pointWrapper .pointRow .pointTekst {
  font-family: mBank, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
  text-align: left;
  width: 100%;
  max-width: 720px;
  padding-right: 20px;
}
.wrapperMain #section7 .pointWrapper .pointRow .pointImage {
  background-image: url(../img/arrowbottom.svg);
  background-position: center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  height: 11px;
  width: 23px;
  cursor: pointer;
  transition: all 0.3s;
}
.wrapperMain #section7 .pointWrapper .pointRow .pointImage.active {
  transform: rotate(180deg);
}
.wrapperMain #section7 .pointWrapper .pointContent {
  font-family: mBank, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
  text-align: left;
  transition: all 0.5s ease;
  overflow: hidden;
  width: 100%;
  max-width: 1000px;
}
.wrapperMain #section7 .pointWrapper .pointContent:not(.active) {
  display: none;
}
@media screen and (max-width: 700px) {
  .wrapperMain #section7 {
    padding: 0 30px;
    margin-bottom: 80px;
    margin-top: 90px;
  }
}
@media screen and (max-width: 550px) {
  .wrapperMain #section7 {
    padding: 0 20px;
  }
}
.wrapperMain #section8 {
  display: flex;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 78px 40px;
  flex-flow: column;
}
.wrapperMain #section8 .elementWrapper {
  width: 100%;
  max-width: 1110px;
  margin: 0 auto;
}
.wrapperMain #section8 .element {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
.wrapperMain #section8 .element .img {
  width: 17px;
  height: 21px;
  margin-right: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
.wrapperMain #section8 .element .textLink {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  color: #000000;
  margin-top: 5px;
}
.wrapperMain #section8 .textWrapper {
  width: 100%;
  max-width: 1110px;
  margin: 0 auto;
  font-family: "mBank", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  color: #000000;
  text-align: justify;
  letter-spacing: -0.01em;
}
.wrapperMain #section8 .textWrapper a {
  color: #000000;
  word-break: break-word;
}
@media screen and (max-width: 800px) {
  .wrapperMain #section8 {
    padding: 78px 30px;
  }
}
@media screen and (max-width: 550px) {
  .wrapperMain #section8 {
    padding: 78px 20px;
  }
}

#section10 {
  display: flex;
  flex-flow: column;
  width: 100%;
  padding: 0 40px;
  background-color: #008F20;
  max-width: 1440px;
}
#section10 .title {
  font-family: "mBank", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 47px;
  line-height: 1.2;
  text-align: center;
  color: #FFFFFF;
  margin-top: 110px;
}
#section10 .slider {
  width: 100%;
  margin-top: 51px;
  margin-bottom: 50px;
  padding: 0 98px;
}
#section10 .slider .arrows {
  position: absolute;
  width: 100%;
  top: 50%;
  background-color: black;
  z-index: 1;
  left: 0;
}
#section10 .slider .arrows .arrow {
  width: 18px;
  height: 30px;
  background-image: url("../../assets/img/arrow.svg");
  background-position: center;
  position: absolute;
  transition: 0.3s all;
  cursor: pointer;
}
#section10 .slider .arrows .arrow:disabled {
  visibility: hidden;
  opacity: 0;
}
#section10 .slider .arrows .arrowRight {
  right: 36px;
  transform: translateY(-50%) rotate(180deg);
}
#section10 .slider .arrows .arrowRight:hover {
  transform: translateY(-50%) rotate(180deg) scale(1.2);
}
#section10 .slider .arrows .arrowLeft {
  left: 36px;
  transform: translateY(-50%);
}
#section10 .slider .arrows .arrowLeft:hover {
  transform: translateY(-50%) scale(1.2);
}
#section10 .slider .item {
  width: 100%;
  border-radius: 10px;
}
#section10 .slider .item img {
  border-radius: 10px;
}
#section10 .text {
  font-family: "mBank", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.29;
  text-align: center;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  max-width: 830px;
  margin: 0 auto 110px;
}

@media screen and (max-width: 1100px) {
  #section10 {
    padding: 0 30px;
  }
  #section10 .slider {
    padding: 0 40px;
  }
  #section10 .slider .arrows .arrowRight {
    right: 0px;
  }
  #section10 .slider .arrows .arrowLeft {
    left: 0px;
  }
}
@media screen and (max-width: 800px) {
  #section10 .title {
    font-size: 37px;
    margin-top: 80px;
  }
  #section10 .text {
    font-size: 22px;
    margin: 0 auto 80px;
  }
}
@media screen and (max-width: 550px) {
  #section10 {
    padding: 0 20px;
  }
  #section10 .title {
    font-size: 29px;
    margin-top: 60px;
  }
  #section10 .text {
    font-size: 18px;
    margin: 0 auto 60px;
  }
}
#section11 {
  display: flex;
  max-width: 1190px;
  width: 100%;
  margin: 0 auto 80px;
  padding: 0 40px;
  flex-flow: column;
}
#section11 .title {
  font-family: "mBank", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 20px;
}
#section11 .mainWrapper {
  display: flex;
}
#section11 .mainWrapper .docWrapper {
  display: flex;
  flex-flow: column;
  width: 46%;
  margin-right: 20px;
}
#section11 .mainWrapper .docWrapper .element {
  display: flex;
  align-items: flex-start;
  margin-bottom: 17px;
}
#section11 .mainWrapper .docWrapper .element .img {
  width: 17px;
  height: 21px;
  margin-right: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
#section11 .mainWrapper .docWrapper .element .text {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  color: #000000;
}
#section11 .mainWrapper .docWrapper:last-child {
  margin-left: 30px;
  margin-right: unset;
}

@media screen and (max-width: 1000px) {
  #section11 {
    padding: 0 30px;
  }
  #section11 .mainWrapper {
    display: flex;
  }
  #section11 .mainWrapper .docWrapper {
    display: flex;
    flex-flow: column;
    width: 49%;
    margin-right: 20px;
  }
}
@media screen and (max-width: 750px) {
  #section11 {
    margin-bottom: 40px;
  }
  #section11 .mainWrapper {
    flex-flow: column;
  }
  #section11 .mainWrapper .docWrapper {
    display: flex;
    flex-flow: column;
    width: 100%;
    margin-right: unset;
  }
  #section11 .mainWrapper .docWrapper:last-child {
    margin-left: 0;
  }
}
@media screen and (max-width: 580px) {
  #section11 {
    width: 100%;
    padding: 0 20px;
  }
  #section11 .mainWrapper .title {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
  }
  #section11 .mainWrapper .docWrapper .element {
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 400px) {
  #section11 {
    margin-bottom: 20px;
  }
  #section11 .title {
    font-size: 21px;
    line-height: 28px;
  }
}
.button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 255px;
  border-radius: 23.5px;
  color: #ae0000;
  transition: all 0.3s ease;
  background-color: white;
  font-family: "mBank", sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 19px;
  cursor: pointer;
}

.button2 {
  border: 1px solid #c4c4c4;
  border-radius: 23.5px;
  max-width: 192px;
  color: #ae0000;
  background-color: #ffffff;
  padding: 14px;
}
.button2:hover {
  border: 1px solid #ae0000;
  background-color: #ae0000;
  color: #ffffff;
}

.redDark {
  color: #ae0000;
}

.blue {
  color: #0065b1;
}

.orange {
  color: #ff8600;
}

.green {
  color: #008520;
}

.red {
  color: #e90a0a;
}

.redDarkBack {
  background-color: #ae0000;
}

.blueBack {
  background-color: #0065b1;
}

.orangeBack {
  background-color: #ff8600;
}

.greenBack {
  background-color: #008520;
}

.redBack {
  background-color: #e90a0a;
}

.boldBig {
  font-weight: 700;
}/*# sourceMappingURL=main.css.map */