* {
  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;
  overflow-x: hidden;
}

img {
  width: 100%;
}

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-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.img {
  display: flex;
  background-position: center;
  background-repeat: no-repeat;
}
.img.contain {
  background-size: contain;
}
.img.cover {
  background-size: cover;
}
.img.noFlexshrink {
  flex-shrink: 0;
}
.img:not(.noFlexshrink) {
  flex-shrink: 1;
}

.rowCenter {
  width: 100%;
  display: flex;
  align-items: center;
}

.rowSb {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.column {
  display: flex;
  flex-direction: column;
}

.mainText {
  color: #26221E;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  margin: 0;
}
.mainText .listText {
  margin-top: 15px;
}
.mainText.italic {
  font-style: italic;
}

.mainTitle {
  text-align: center;
  position: relative;
  margin: 0 0 75px 0;
}
.mainTitle .title {
  color: #000;
  text-align: center;
  font-family: mBank;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: -0.4px;
  background-color: #ffffff;
  padding: 0 35px;
  position: relative;
  z-index: 10;
}
.mainTitle::before {
  content: "";
  display: flex;
  max-width: 1110px;
  width: 90vw;
  border-bottom: 2px solid #FF8600;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%);
  z-index: 0;
}

.mainSubtitle {
  text-align: center;
  color: #26221E;
  font-family: mBank;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.12px;
  max-width: 820px;
  margin: 0 0 50px;
}
.mainSubtitle.mainSubtitle1 {
  max-width: 1040px;
}
.mainSubtitle .link {
  font-style: normal;
  color: #0065B1;
  font-family: mBank;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.12px;
  cursor: pointer;
  transition: 0.3s all ease-in-out;
}
.mainSubtitle .link:hover {
  color: #0000ee;
}

@media (max-width: 850px) {
  .mainSubtitle {
    margin-bottom: 0;
  }
  .mainTitle {
    margin-bottom: 20px;
  }
}
#header {
  max-width: 1110px;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}
#header .topBar {
  width: 100%;
  height: 10px;
  background-image: url("../../assets/img/top-bar.svg");
  margin: 0 0 22px 0;
}
#header .left .imgLogo {
  width: 155px;
  height: 58px;
  background-image: url("../../assets/img/mbank-logo-grey.svg");
}
#header .right {
  max-width: 768px;
  width: 100%;
  display: flex;
  margin: 0 auto;
}
#header .right .content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}
#header .right .content.desktop {
  display: flex;
}
#header .right .content.mobile {
  display: none;
}
#header .elementMenu {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
#header .elementMenu > .text {
  font-family: mBank;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.032px;
  color: transparent;
  background-image: linear-gradient(90deg, blue 50%, #26221E 50%);
  background-position: 100%;
  background-size: 200% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  transition: all 0.3s ease-in-out;
}
#header .elementMenu:hover > .text {
  background-position: 0;
}
#header .btn {
  width: 37px;
  cursor: pointer;
  z-index: 1200;
  margin: 0 20px 0 0;
}
#header .btn.desktop {
  display: flex;
}
#header .btn.mobile {
  display: none;
}
#header span {
  display: block;
  width: 100%;
  height: 3px;
  background: #b1b3b3;
  transition: all 0.3s;
  position: relative;
}
#header span + span {
  margin-top: 9px;
  animation: ease 0.5s top forwards;
}
#header .active span:nth-child(1) {
  animation: ease 0.5s top forwards;
}
#header .not-active span:nth-child(1) {
  animation: ease 0.5s top-2 forwards;
}
#header .active span:nth-child(2) {
  animation: ease 0.5s scaled forwards;
}
#header .not-active span:nth-child(2) {
  animation: ease 0.5s scaled-2 forwards;
}
#header .active span:nth-child(3) {
  animation: ease 0.5s bottom forwards;
}
#header .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);
  }
}
#header .menuMobile {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: #ffffff;
  padding: 22px 22px 22px 22px;
  position: absolute;
  top: 95px;
  right: 0;
  transition: 0.3s all ease-in-out;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
}
#header .menuMobile.active {
  opacity: 1;
  pointer-events: all;
}

@media (max-width: 1120px) {
  #header .left {
    margin: 0 0 0 20px;
  }
}
@media (max-width: 700px) {
  #header .right {
    justify-content: flex-end;
  }
  #header .right .content.desktop {
    display: none;
  }
  #header .right .content.mobile {
    display: flex;
  }
  #header .right .btn.mobile {
    display: block;
  }
  #header .right .btn.desktop {
    display: none;
  }
  #header .elementMenu {
    margin: 5px 0;
  }
}
@media (max-width: 600px) {
  #header .left .imgLogo {
    width: 124px;
    height: 46px;
  }
  #header .menuMobile {
    top: 80px;
  }
}
#section1 {
  display: flex;
  width: 100%;
  max-width: 1440px;
  margin: 55px auto 0;
}
#section1 .mainImage {
  width: 100%;
  height: 505px;
  background-image: url("../../assets/img/section1-1.png");
  position: relative;
}
#section1 .mainImage .absolute {
  display: flex;
  align-items: center;
  background-color: #008520;
  color: #FFF;
  font-family: mBank;
  font-size: 42.296px;
  font-style: normal;
  font-weight: 700;
  line-height: 70.007px;
  letter-spacing: -0.423px;
  position: absolute;
  left: 0px;
}
#section1 .mainImage .absoluteFirst {
  top: 138px;
  padding: 0 35px 0 183px;
}
#section1 .mainImage .absoluteSecond {
  top: 222px;
  padding: 0 45px 0 183px;
}

@media (max-width: 1400px) {
  #section1 .mainImage {
    height: 35vw;
  }
  #section1 .mainImage .absolute {
    font-size: 36px;
    line-height: 54px;
  }
  #section1 .mainImage .absoluteFirst {
    top: 110px;
    padding: 0 35px 0 70px;
  }
  #section1 .mainImage .absoluteSecond {
    top: 180px;
    padding: 0 25px 0 70px;
  }
}
@media (max-width: 1200px) {
  #section1 .mainImage {
    height: 420px;
  }
  #section1 .mainImage .absolute {
    font-size: 36px;
    line-height: 54px;
  }
  #section1 .mainImage .absoluteFirst {
    top: 70px;
    padding: 0 35px 0 50px;
  }
  #section1 .mainImage .absoluteSecond {
    top: 135px;
    padding: 0 25px 0 50px;
  }
}
@media (max-width: 1000px) {
  #section1 {
    margin: 30px auto 0;
  }
  #section1 .mainImage {
    height: 40vw;
  }
  #section1 .mainImage .absolute {
    font-size: 28px;
    line-height: 48px;
  }
  #section1 .mainImage .absoluteFirst {
    top: 40px;
    padding: 0 35px 0 50px;
  }
  #section1 .mainImage .absoluteSecond {
    top: 100px;
    padding: 0 25px 0 50px;
  }
}
@media (max-width: 900px) {
  #section1 .mainImage {
    height: 360px;
  }
}
@media (max-width: 800px) {
  #section1 {
    margin: 10px auto 0;
  }
  #section1 .mainImage {
    height: 45vw;
  }
  #section1 .mainImage .absolute {
    font-size: 26px;
    line-height: 42px;
  }
  #section1 .mainImage .absoluteFirst {
    top: 20px;
    padding: 0 35px 0 30px;
  }
  #section1 .mainImage .absoluteSecond {
    top: 70px;
    padding: 0 25px 0 30px;
  }
}
@media (max-width: 600px) {
  #section1 {
    margin: 0 auto 40px;
  }
  #section1 .mainImage {
    height: 45vw;
  }
  #section1 .mainImage .absolute {
    font-size: 26px;
    line-height: 42px;
  }
  #section1 .mainImage .absoluteFirst {
    top: unset;
    bottom: -60px;
    padding: 0 35px 0 30px;
  }
  #section1 .mainImage .absoluteSecond {
    top: unset;
    bottom: -110px;
    padding: 0 25px 0 30px;
  }
}
@media (max-width: 450px) {
  #section1 .mainImage .absolute {
    font-size: 24px;
    line-height: 38px;
  }
  #section1 .mainImage .absoluteFirst {
    top: unset;
    bottom: -60px;
    padding: 0 35px 0 30px;
  }
  #section1 .mainImage .absoluteSecond {
    top: unset;
    bottom: -105px;
    padding: 0 25px 0 30px;
  }
}
#section2 {
  max-width: 1110px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 90px 0 0 0;
}
#section2 .containerText {
  width: 100%;
  display: flex;
}
#section2 .textSmall {
  max-width: 635px;
  width: 100%;
  color: #565A69;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 21px;
  margin: 0;
}
#section2 .textSmall .link {
  color: #0065B1;
  transition: 0.3s all ease-in-out;
  cursor: pointer;
}
#section2 .textSmall .link:hover {
  color: blue;
}
#section2 .rowSb {
  max-width: 800px;
  margin: 0 0 10px 0;
}
#section2 .rowSb .column {
  align-items: center;
}
#section2 .rowSb .textElement {
  max-width: 200px;
  color: #26221E;
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}
#section2 .img1 {
  width: 366px;
  height: 366px;
  background-image: url("../img/section2-1.svg");
  margin: 40px 0 0 35px;
}
#section2 .img2 {
  width: 90px;
  height: 90px;
  background-image: url("../img/section2-2.svg");
}
#section2 .img3 {
  width: 90px;
  height: 90px;
  background-image: url("../img/section2-3.svg");
}
#section2 .img4 {
  width: 90px;
  height: 90px;
  background-image: url("../img/section2-4.svg");
}

@media (max-width: 1300px) {
  #section2 {
    padding: 0 50px;
  }
}
@media (max-width: 1110px) {
  #section2 .mainSubtitle {
    font-size: 20px;
  }
}
@media (max-width: 1000px) {
  #section2 .containerText {
    margin: 30px 0 0 0;
  }
}
@media (max-width: 950px) {
  #section2 .mainSubtitle .br {
    display: none;
  }
}
@media (max-width: 900px) {
  #section2 .rowSb {
    margin: 0 0 30px 0;
  }
}
@media (max-width: 850px) {
  #section2 .rowSb {
    margin: 30px 0;
  }
  #section2 .rowCenter {
    flex-direction: column-reverse;
  }
  #section2 .img1 {
    margin: 0;
  }
}
@media (max-width: 700px) {
  #section2 {
    padding: 0 30px;
  }
  #section2 .mainTitle .title {
    display: block;
    padding: 0 20px;
    font-size: 34px;
  }
}
@media (max-width: 650px) {
  #section2 .rowSb {
    margin: 10px 0;
    flex-direction: column;
  }
  #section2 .rowSb .column {
    margin: 15px 0;
  }
}
@media (max-width: 500px) {
  #section2 {
    padding: 0 20px;
  }
  #section2 .mainTitle .title {
    font-size: 30px;
    line-height: 40px;
  }
  #section2 .mainSubtitle {
    font-size: 18px;
  }
}
@media (max-width: 380px) {
  #section2 .mainSubtitle {
    line-height: 30px;
  }
}
#section3 {
  width: 100%;
  height: 675px;
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 64px 0 0 0;
  padding: 0 50px;
}
#section3 .bg {
  width: 100%;
  height: 100%;
  background-image: url("../img/section3-1.jpg");
  position: absolute;
  top: 0;
  left: 0;
}
#section3 .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 289px 0 0 0;
  z-index: 10;
}
#section3 .content .text {
  max-width: 980px;
  width: 100%;
  color: #FFF;
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  z-index: 15;
}
#section3 .content .text .link {
  text-decoration-line: underline !important;
  cursor: pointer;
  transition: 0.3s all ease-in-out;
  color: #FFF;
}
#section3 .content .text .link:hover {
  color: #FF8600;
}
#section3 .content .img1 {
  width: 117px;
  height: 29px;
  background-image: url("../img/section3-2.svg");
  z-index: 15;
}
#section3 .content .img2 {
  width: 296px;
  height: 53px;
  background-image: url("../img/section3-3.svg");
  z-index: 15;
  margin: 12px 0 50px 0;
}

@media (max-width: 1400px) {
  #section3 .content {
    margin: 20% 0 0 0;
  }
}
@media (max-width: 1200px) {
  #section3 {
    height: 570px;
  }
  #section3 .content {
    margin: 18% 0 0 0;
  }
  #section3 .content .img2 {
    margin: 12px 0 30px 0;
  }
}
@media (max-width: 1000px) {
  #section3 {
    height: 580px;
  }
}
@media (max-width: 850px) {
  #section3 {
    height: 600px;
  }
  #section3 .content {
    margin: 25% 0 0 0;
  }
}
@media (max-width: 700px) {
  #section3 {
    height: 650px;
    padding: 0 30px;
  }
  #section3 .content {
    margin: 40% 0 0 0;
  }
}
@media (max-width: 550px) {
  #section3 {
    height: 675px;
  }
  #section3 .content {
    margin: 45% 0 0 0;
  }
}
@media (max-width: 500px) {
  #section3 {
    height: 700px;
    padding: 0 20px;
  }
  #section3 .content {
    margin: 50% 0 0 0;
  }
  #section3 .content .text {
    font-size: 15px;
  }
}
@media (max-width: 450px) {
  #section3 {
    height: 725px;
  }
  #section3 .text {
    font-size: 14px;
  }
}
@media (max-width: 380px) {
  #section3 {
    height: 775px;
  }
  #section3 .text {
    font-size: 13px;
  }
}
#section5 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #EEEFEF;
  padding: 70px 0;
  margin: 57px 0 0 0;
}
#section5 .content {
  max-width: 1210px;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0 50px;
}
#section5 .content .title {
  color: #000;
  font-family: mBank;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}
#section5 .content .title.red {
  color: #AE0000;
}
#section5 .content .title.margin {
  margin-top: 100px;
}
#section5 .content .textEnd {
  color: #0065B1;
  text-align: center;
  font-family: mBank;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.12px;
  margin: 90px 0 0 0;
}
#section5 .content .containerBottom .element:nth-child(n+1) {
  margin: 30px 0 0 0;
}
#section5 .content .element {
  width: 100%;
  display: flex;
}
#section5 .content .element .rowSb1 {
  max-width: 173px;
  align-items: center;
}
#section5 .content .element .rowSb2 {
  max-width: 337px;
}
#section5 .content .element .rowSbEnd {
  justify-content: end;
}
#section5 .content .element .column {
  width: 100%;
  padding: 0 0 0 30px;
}
#section5 .content .element .titleElement {
  color: #26221E;
  font-family: mBank;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  margin: 5px 0;
}
#section5 .content .element .titleElement.subtitle {
  font-size: 24px;
}
#section5 .content .element .textElement {
  color: #000;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
#section5 .content .element .textElementGrey {
  color: #6E6E6E;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  margin: 0;
}
#section5 .content .element .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  font-family: "Lato";
  border-radius: 23.5px;
  cursor: pointer;
  transition: 0.3s all ease-in-out;
  z-index: 90;
}
#section5 .content .element .btn.blue {
  background-color: #0065B1;
  border: 1px solid #0065B1;
  color: #FFF;
  text-align: center;
  font-family: mBank;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.032px;
  padding: 12px 50px;
}
#section5 .content .element .btn.blue:hover {
  background-color: #FFF;
  color: #0065B1;
}
#section5 .content .element .arrow {
  width: 49px;
  height: 49px;
  cursor: pointer;
}
#section5 .content .element .arrow circle {
  stroke: #0065B1;
  fill: transparent;
  transition: 0.3s all ease-in-out;
}
#section5 .content .element .arrow path {
  fill: #0065B1;
  transition: 0.3s all ease-in-out;
}
#section5 .content .element .arrow:hover circle {
  fill: #0065B1;
}
#section5 .content .element .arrow:hover path {
  fill: #ffffff;
}
#section5 .content .element .img {
  width: 255px;
  height: 255px;
}
#section5 .content .element .img1 {
  background-image: url("../img/section5-2.jpg");
}
#section5 .content .element .img2 {
  background-image: url("../img/section5-3.jpg");
}
#section5 .content .element .img3 {
  background-image: url("../img/section5-4.jpg");
}
#section5 .content .element .img4 {
  background-image: url("../img/section5-5.jpg");
}
#section5 .content .element .img5 {
  background-image: url("../img/section5-6.jpg");
}
#section5 .content .element .img6 {
  background-image: url("../img/section5-7.jpg");
}
#section5 .content .element .img7 {
  background-image: url("../img/section5-8.jpg");
}
#section5 .content .element .img8 {
  background-image: url("../img/section5-9.jpg");
}

@media (max-width: 1050px) {
  #section5 {
    padding: 50px 0;
  }
  #section5 .content .element .titleElement {
    font-size: 19px;
  }
  #section5 .content .element .titleElement.subtitle {
    font-size: 20px;
  }
  #section5 .content .element .textElement {
    font-size: 15px;
  }
  #section5 .content .textEnd {
    font-size: 20px;
    margin: 70px 0 0 0;
  }
}
@media (max-width: 950px) {
  #section5 .content .element .titleElement {
    margin: 2px 0;
  }
  #section5 .content .element .textElement {
    margin: 10px 0;
  }
  #section5 .content .element .btn.blue {
    padding: 10px 30px;
  }
  #section5 .content .element .rowSb2 {
    max-width: 280px;
  }
}
@media (max-width: 850px) {
  #section5 .content .element {
    flex-direction: column;
    align-items: center;
  }
  #section5 .content .element .column {
    padding: 0;
  }
  #section5 .content .element .titleElement {
    margin: 5px 0;
  }
  #section5 .content .element .textElement {
    margin: 15px 0;
  }
  #section5 .content .element .btn.blue {
    padding: 12px 50px;
  }
  #section5 .content .element .rowSb2 {
    max-width: 337px;
  }
  #section5 .content .textEnd {
    font-size: 18px;
    margin: 50px 0 0 0;
  }
}
@media (max-width: 700px) {
  #section5 .content {
    padding: 0 30px;
  }
}
@media (max-width: 600px) {
  #section5 .content .element .rowSb1 {
    margin: 0 0 15px 0;
  }
  #section5 .content .element .rowSb3 {
    flex-direction: column;
  }
  #section5 .content .element .rowSbEnd {
    justify-content: space-between;
  }
}
@media (max-width: 550px) {
  #section5 .content .element .column {
    margin: 5px 0 0 0;
  }
}
@media (max-width: 500px) {
  #section5 .content {
    padding: 0 20px;
  }
  #section5 .content .textEnd {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 350px) {
  #section5 .content .element .btn.blue {
    padding: 10px 30px;
  }
}
#section6 {
  max-width: 1110px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 90px 0 0 0;
}
#section6 .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  font-family: "Lato";
  border-radius: 23.5px;
  cursor: pointer;
  transition: 0.3s all ease-in-out;
  z-index: 90;
  width: 250px;
  margin: auto;
}
#section6 .btn.blue {
  background-color: #0065B1;
  border: 1px solid #0065B1;
  color: #FFF;
  text-align: center;
  font-family: mBank;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.032px;
  padding: 12px 50px;
}
#section6 .btn.blue:hover {
  background-color: #FFF;
  color: #0065B1;
}
#section6 .img1 {
  width: 366px;
  height: 366px;
  background-image: url("../img/section6-1.svg");
  margin: 0 0 0 35px;
}
#section6 .mainText .link {
  color: #0065B1;
  transition: 0.3s all ease-in-out;
  cursor: pointer;
}
#section6 .mainText .link:hover {
  color: #0000ee;
}

@media (max-width: 1300px) {
  #section6 {
    padding: 0 50px;
  }
}
@media (max-width: 1000px) {
  #section6 .rowCenter {
    align-items: flex-start;
  }
}
@media (max-width: 850px) {
  #section6 .rowCenter {
    flex-direction: column-reverse;
    align-items: center;
  }
  #section6 .rowCenter .img1 {
    margin: 0;
  }
}
@media (max-width: 700px) {
  #section6 {
    margin: 50px 0 0 0;
    padding: 0 30px;
  }
  #section6 .mainTitle .title {
    display: block;
    padding: 0 20px;
    font-size: 34px;
  }
  #section6 .mainTitle .title .br {
    display: block;
  }
  #section6 .mainSubtitle {
    font-size: 20px;
  }
}
@media (max-width: 500px) {
  #section6 {
    padding: 0 20px;
  }
  #section6 .mainTitle .title {
    font-size: 30px;
    line-height: 40px;
  }
  #section6 .mainSubtitle {
    font-size: 18px;
  }
  #section6 .mainText {
    font-size: 15px;
  }
  #section6 .img1 {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 380px) {
  #section6 .mainTitle .title {
    font-size: 28px;
  }
  #section6 .mainSubtitle {
    line-height: 30px;
  }
}
#section7 {
  max-width: 1110px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 90px 0 0 0;
}
#section7 .textBlue {
  color: #0065B1;
  font-weight: 700;
}
#section7 .textLightBlue {
  color: #0065B1;
}
#section7 .bold {
  font-weight: 700;
}
#section7 .column {
  padding: 0 0 0 20px;
}
#section7 .list {
  margin: 0;
}
#section7 .titleMargin {
  margin: 10px 0 0 0;
  font-size: 17px !important;
}
#section7 .img1 {
  width: 366px;
  height: 366px;
  background-image: url("../img/section7-1.svg");
  margin: 0;
}
#section7 .mainSubtitle .br {
  display: none;
}
#section7 .row {
  display: flex;
  margin: 10px 0 0 0;
}
#section7 .row .mainText1 {
  width: 90px;
  flex-shrink: 0;
}
#section7 .row .textMargin {
  margin: 0 0 0 20px;
}

@media (max-width: 1300px) {
  #section7 {
    padding: 0 50px;
  }
}
@media (max-width: 850px) {
  #section7 .rowCenter {
    flex-direction: column-reverse;
    align-items: center;
  }
  #section7 .rowCenter .img1 {
    margin: 0;
  }
}
@media (max-width: 810px) {
  #section7 .mainSubtitle .br-but-different {
    display: none;
  }
}
@media (max-width: 700px) {
  #section7 {
    margin: 50px 0 0 0;
    padding: 0 30px;
  }
  #section7 .mainTitle .title {
    display: block;
    padding: 0 20px;
    font-size: 34px;
  }
  #section7 .mainTitle .title .br {
    display: block;
  }
  #section7 .mainSubtitle {
    font-size: 20px;
  }
  #section7 .mainSubtitle .br-but-different {
    display: block;
  }
}
@media (max-width: 650px) {
  #section7 .mainSubtitle .br-but-different {
    display: none;
  }
}
@media (max-width: 500px) {
  #section7 {
    padding: 0 20px;
  }
  #section7 .titleMargin {
    font-size: 16px !important;
  }
  #section7 .mainTitle .title {
    font-size: 30px;
    line-height: 40px;
  }
  #section7 .mainSubtitle {
    font-size: 18px;
  }
  #section7 .mainText {
    font-size: 15px;
  }
  #section7 .img1 {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 425px) {
  #section7 .mainSubtitle .br-but-different {
    display: block;
  }
  #section7 .row .textMargin {
    margin: 0 0 0 10px;
  }
  #section7 .column {
    padding: 0 0 0 10px;
  }
  #section7 .list {
    padding: 0 0 0 20px;
  }
}
@media (max-width: 380px) {
  #section7 .mainTitle .title {
    font-size: 28px;
  }
  #section7 .mainSubtitle {
    line-height: 30px;
  }
}
#section12 {
  max-width: 1110px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 90px 0 0 0;
  padding: 0;
}
#section12 .mainTitle .title .br {
  display: none;
}
#section12 .img1 {
  width: 366px;
  height: 366px;
  background-image: url("../img/section12-1.svg");
  margin: 0 0 0 35px;
}
#section12 .mainSubtitle .br {
  display: none;
}

@media (max-width: 1300px) {
  #section12 {
    padding: 0 50px;
  }
}
@media (max-width: 1000px) {
  #section12 .rowCenter {
    align-items: flex-start;
  }
}
@media (max-width: 908px) {
  #section12 .mainSubtitle .br {
    display: block;
  }
}
@media (max-width: 714px) {
  #section12 .mainSubtitle .br {
    display: none;
  }
}
@media (max-width: 850px) {
  #section12 .rowCenter {
    flex-direction: column-reverse;
    align-items: center;
  }
  #section12 .rowCenter .img1 {
    margin: 0;
  }
}
@media (max-width: 700px) {
  #section12 {
    margin: 50px 0 0 0;
    padding: 0 30px;
  }
  #section12 .mainTitle .title {
    display: block;
    padding: 0 20px;
    font-size: 34px;
  }
  #section12 .mainTitle .title .br {
    display: block;
  }
  #section12 .mainSubtitle {
    font-size: 20px;
  }
  #section12 .mainSubtitle .br {
    display: block;
  }
}
@media (max-width: 572px) {
  #section12 .mainSubtitle .br {
    display: none;
  }
}
@media (max-width: 500px) {
  #section12 {
    padding: 0 20px;
  }
  #section12 .mainTitle .title {
    font-size: 30px;
    line-height: 40px;
  }
  #section12 .mainSubtitle {
    font-size: 18px;
  }
  #section12 .mainText {
    font-size: 15px;
  }
  #section12 .img1 {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 340px) {
  #section12 .mainSubtitle .br {
    display: block;
  }
}
@media (max-width: 380px) {
  #section12 .mainTitle .title {
    font-size: 28px;
  }
  #section12 .mainSubtitle {
    line-height: 30px;
  }
}
#section13 {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1450px;
  padding: 50px 0;
}
#section13 .blueBox {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #0065B1;
  width: 100%;
  overflow: hidden;
  padding: 90px 0 0 0;
}
#section13 .blueBox .white-text {
  width: 780px;
  color: #ffffff;
  margin: 0 auto 20px auto;
}
#section13 .blueBox .white-text.white-text-1 {
  position: relative;
}
#section13 .blueBox .white-text.white-text-1::after {
  content: "";
  position: absolute;
  bottom: -15px;
  right: -20px;
  width: 38px;
  height: 30px;
  background-image: url("../img/section13-2.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 10;
}
#section13 .blueBox .white-text.white-text-1::before {
  content: "";
  position: absolute;
  top: -14px;
  left: -50px;
  width: 38px;
  height: 30px;
  background-image: url("../img/section13-3.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 10;
}
#section13 .mainImage {
  width: 100%;
  height: 300px;
  background-image: url("../img/section13-1.png");
  position: relative;
}
#section13 .gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #0065B1, rgba(0, 43, 75, 0));
  z-index: 100;
}

@media (max-width: 1440px) {
  #section13 .mainImage {
    background-image: url("../img/section13-1.png");
  }
}
@media (max-width: 1000px) {
  #section13 {
    height: 100%;
  }
  #section13 .blueBox {
    padding: 90px 100px 0 100px;
  }
  #section13 .blueBox .mainText {
    width: 100%;
  }
}
@media (max-width: 750px) {
  #section13 .blueBox {
    padding: 90px 30px 0 30px;
  }
  #section13 .blueBox .mainText.white-text-1 {
    margin-bottom: 50px;
  }
  #section13 .blueBox .mainText.white-text-1::before {
    top: -40px;
    left: 0;
  }
  #section13 .blueBox .mainText.white-text-1::after {
    bottom: -40px;
    right: 0px;
  }
}
@media (max-width: 500px) {
  #section13 .blueBox {
    padding: 90px 30px 0 30px;
  }
  #section13 .blueBox .mainText {
    font-size: 15px;
  }
}
#section14 {
  display: flex;
  width: 100%;
  padding: 20px 50px;
  overflow: hidden;
}
#section14 .wrapper {
  display: flex;
  max-width: 1110px;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
}
#section14 .title {
  font-family: "mBank", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 40px;
  margin-top: 40px;
}
#section14 .mainWrapper {
  display: flex;
  justify-content: space-between;
}
#section14 .mainWrapper .docWrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: calc((100% - 25px) / 2);
}
#section14 .mainWrapper .docWrapper .element {
  display: flex;
  align-items: flex-end;
}
#section14 .mainWrapper .docWrapper .element .img {
  width: 22px;
  height: 29px;
  margin-right: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
#section14 .mainWrapper .docWrapper .element .text {
  min-height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000000;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.3;
}

@media screen and (max-width: 750px) {
  #section14 .mainWrapper {
    flex-flow: column;
  }
  #section14 .mainWrapper .docWrapper {
    display: flex;
    flex-flow: column;
    width: 100%;
    margin-right: unset;
  }
  #section14 .mainWrapper .docWrapper .element .img {
    width: 19.2px;
    height: 25.2px;
  }
  #section14 .mainWrapper .docWrapper:last-child {
    margin-left: 0;
  }
}
@media screen and (max-width: 600px) {
  #section14 .mainWrapper .docWrapper .element .img {
    width: 22.4px;
    height: 29.4px;
  }
  #section14 .mainWrapper .docWrapper .element .text {
    min-height: 35px;
  }
}
@media screen and (max-width: 500px) {
  #section14 {
    width: 100%;
    padding: 0 30px;
  }
  #section14 .mainWrapper .title {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
  }
  #section14 .mainWrapper .docWrapper .element {
    margin-bottom: 12px;
  }
  #section14 .mainWrapper .docWrapper .element .text {
    font-size: 12px;
  }
}
@media screen and (max-width: 400px) {
  #section14 .title {
    font-size: 21px;
    line-height: 28px;
    margin: 0px 0 30px 0;
  }
  #section14 .mainWrapper .docWrapper .element .img {
    width: 25px;
    height: 33px;
  }
  #section14 .mainWrapper .docWrapper .element .text {
    min-height: 40px;
  }
}
#section15 {
  display: flex;
  flex-flow: column;
  padding: 20px 50px;
}
#section15 .element {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
#section15 .element .img {
  width: 17px;
  height: 21px;
  margin-right: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
#section15 .element .text {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  color: #000000;
  margin-top: 5px;
}
#section15 .wrapper {
  max-width: 1110px;
  margin: 0 0 25px;
}
#section15 .title {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 15px;
  margin: 0 0 20px;
}
#section15 .description {
  color: #201C17;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  margin: 0;
}
#section15 .description strong {
  font-weight: 700;
}
#section15 .description a {
  color: #201C17;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  text-decoration: underline;
  transition: 0.3s all ease-in-out;
}
#section15 .description a:hover {
  color: #0000ee;
}

@media (max-width: 500px) {
  #section15 {
    padding: 20px 30px;
  }
  #section15 .mainText {
    font-size: 14px;
  }
}
@media (max-width: 380px) {
  #section15 .mainText {
    font-size: 13px;
  }
}/*# sourceMappingURL=main.css.map */