* {
  box-sizing: border-box;
  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-flow: column;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
}

.imgContain {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.row {
  width: 100%;
  display: flex;
}

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

.column {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.list {
  list-style-type: none;
  padding-left: 12px;
  margin: 0 0 20px 0;
}
.list li {
  position: relative;
  padding-left: 24px;
}
.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: #ae0000;
}

.btn {
  max-width: 320px;
  width: 100%;
  height: 94px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border: 1px solid #ae0000;
  border-radius: 64px;
  color: #000;
  text-align: center;
  font-family: mBank;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.1px;
  margin: 10px auto;
  padding: 15px;
  cursor: pointer;
  transition: 0.3s all ease-in-out !important;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  box-shadow: 0px 0px 15px 10px #ae0000;
}
.btn:hover {
  color: #ae0000;
  background-color: #ffffff;
}

*:focus-visible {
  outline: 2px solid #005fcc;
}

#header {
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  margin: 0 auto 35px;
}
#header .rowCenter {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 40px;
}
#header .topBar {
  width: 100%;
  height: 10px;
  background-image: url("../img/section0-0.svg");
  margin: 0 0 22px 0;
  display: flex;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#header .left .imgLogo {
  width: 166px;
  height: 62px;
  background-image: url("../img/mbank-logo.svg");
  display: flex;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
}
#header .right {
  max-width: 650px;
  width: 100%;
  display: flex;
  margin: 0 auto 0 10%;
}
#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 .btnHead {
  width: 37px;
  cursor: pointer;
  z-index: 1200;
  margin: 0 20px 0 0;
}
#header .btnHead.desktop {
  display: flex;
}
#header .btnHead.mobile {
  display: none;
}
#header span:not(.text) {
  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: 1050px) {
  #header .right {
    justify-content: flex-end;
  }
  #header .right .content.desktop {
    display: none;
  }
  #header .right .content.mobile {
    display: flex;
  }
  #header .right .btnHead.mobile {
    display: block;
  }
  #header .right .btnHead.desktop {
    display: none;
  }
  #header .elementMenu {
    margin: 5px 0;
  }
}
@media (max-width: 800px) {
  #header .rowCenter {
    padding: 0 20px;
  }
  #header .btnHead {
    margin: 0 5px 0 0;
  }
}
@media (max-width: 600px) {
  #header .left .imgLogo {
    width: 124px;
    height: 46px;
  }
  #header .menuMobile {
    top: 80px;
  }
}
#section1 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 auto;
}
#section1 .bg {
  background-image: url("../img/section1-1.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 900px;
  position: relative;
}
#section1 .logo {
  width: 595px;
  height: 275px;
  background-image: url("../img/section1-2.png");
  position: absolute;
  top: 113px;
  left: 58%;
  transform: translateX(-50%);
}
#section1 .content {
  display: flex;
  flex-direction: column;
  max-width: 1080px;
  width: 100%;
  position: absolute;
  bottom: 132px;
  left: 0;
  padding: 0 20px 50px 175px;
  border-radius: 0px 40px 40px 0px;
  background-color: #000;
}
#section1 .content .rowSb {
  max-width: 815px;
  margin: 20px 0 0 0;
}
#section1 .content .title {
  color: #fff;
  font-family: mBank;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: -0.4px;
}
#section1 .content .imgContain {
  transition: 0.3s scale ease-in-out;
}
#section1 .content .imgContain:hover {
  scale: 1.05;
}
#section1 .content .img1 {
  width: 140px;
  height: 42px;
  background-image: url("../img/section1-3.png");
}
#section1 .content .img2 {
  width: 153px;
  height: 35px;
  background-image: url("../img/section1-4.svg");
}
#section1 .content .img3 {
  width: 165px;
  height: 34px;
  background-image: url("../img/section1-5.svg");
}
#section1 .content .img4 {
  width: 157px;
  height: 44px;
  background-image: url("../img/section1-6.png");
}

@media (max-width: 1150px) {
  #section1 .logo {
    width: 476px;
    height: 220px;
  }
  #section1 .bg {
    height: 800px;
  }
  #section1 .content {
    max-width: 900px;
    bottom: 100px;
    padding: 0 20px 40px 100px;
  }
  #section1 .content .rowSb {
    max-width: 730px;
  }
  #section1 .content .title {
    font-size: 36px;
  }
}
@media (max-width: 900px) {
  #section1 .logo {
    width: 357px;
    height: 165px;
  }
  #section1 .bg {
    height: 700px;
  }
  #section1 .content {
    padding: 0 20px 30px 20px;
    border-radius: 0;
  }
  #section1 .content .rowSb {
    max-width: 100%;
  }
  #section1 .content .title {
    font-size: 32px;
  }
  #section1 .content .img1 {
    width: 112px;
    height: 34px;
  }
  #section1 .content .img2 {
    width: 122px;
    height: 28px;
  }
  #section1 .content .img3 {
    width: 132px;
    height: 27px;
  }
  #section1 .content .img4 {
    width: 126px;
    height: 35px;
  }
}
@media (max-width: 700px) {
  #section1 .bg {
    background-position: 80% 0;
  }
  #section1 .content .rowSb {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  #section1 .content .title {
    font-size: 26px;
  }
}
@media (max-width: 600px) {
  #section1 .logo {
    left: 50%;
  }
  #section1 .content {
    bottom: 40px;
  }
  #section1 .content .rowSb {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  #section1 .content .title {
    font-size: 20px;
    line-height: 38px;
  }
  #section1 .content .img1 {
    width: 84px;
    height: 25px;
  }
  #section1 .content .img2 {
    width: 92px;
    height: 21px;
  }
  #section1 .content .img3 {
    width: 99px;
    height: 20px;
  }
  #section1 .content .img4 {
    width: 94px;
    height: 26px;
  }
}
@media (max-width: 450px) {
  #section1 .content .title br {
    display: none;
  }
}
@media (max-width: 380px) {
  #section1 .logo {
    top: 50px;
  }
  #section1 .content {
    bottom: 0px;
  }
}
#section2 {
  display: flex;
  justify-content: center;
  background-color: #850000;
  padding: 76px 20px 100px 20px;
}
#section2 .rowSb {
  width: 100%;
  max-width: 1310px;
  margin: 0 0 0 150px;
  position: relative;
  z-index: 1;
}
#section2 .column {
  margin: 0 650px 0 0;
}
#section2 .img1 {
  width: 649px;
  height: 699px;
  background-image: url("../img/section2-1.png");
  flex-shrink: 0;
  position: absolute;
  right: -20px;
  top: -65px;
  z-index: 2;
}
#section2 .title {
  color: #fff;
  font-family: mBank;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: -0.4px;
  margin: 0 0 35px 0;
  z-index: 5;
}
#section2 .text {
  color: #fff;
  font-family: mBank;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.12px;
  margin: 0;
  z-index: 5;
}

@media (max-width: 1400px) {
  #section2 .img1 {
    width: 500px;
    height: 538px;
    right: -20px;
    top: 0px;
  }
  #section2 .rowSb {
    margin: 0 0 0 100px;
  }
  #section2 .column {
    margin: 0 500px 0 0;
  }
}
@media (max-width: 1100px) {
  #section2 .img1 {
    width: 389px;
    height: 419px;
    top: 75px;
  }
  #section2 .rowSb {
    margin: 0 0 0 50px;
  }
  #section2 .column {
    margin: 0 350px 0 0;
  }
}
@media (max-width: 1000px) {
  #section2 {
    padding: 40px 40px 100px 40px;
  }
  #section2 .rowSb {
    margin: 0;
  }
  #section2 .column {
    margin: 0 0 250px 0;
  }
  #section2 .img1 {
    top: unset;
    right: 50%;
    transform: translateX(50%);
    bottom: -100px;
  }
}
@media (max-width: 800px) {
  #section2 {
    padding: 40px 20px 100px 20px;
  }
}
@media (max-width: 600px) {
  #section2 .title {
    font-size: 26px;
    line-height: 34px;
  }
  #section2 .text {
    font-size: 20px;
    line-height: 28px;
  }
}
#section3 {
  display: flex;
  padding: 0 80px;
  background-color: #000;
}
#section3 .container {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 67px 67px 0 86px;
  position: relative;
}
#section3 .container .column {
  margin: auto 0 auto 60px;
}
#section3 .container .title {
  color: #fff;
  font-family: mBank;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: -0.4px;
  margin: 0;
}
#section3 .container .text {
  color: #fff;
  font-family: mBank;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.12px;
  margin: 50px 0 0 0;
}
#section3 .container .text.center {
  text-align: center;
}
#section3 .container .imgThumbnail {
  max-width: 495px;
  width: 100%;
  height: 495px;
  flex-shrink: 0;
  border-radius: 39px;
  margin: auto 0;
}
#section3 .container .imgThumbnail1 {
  background-image: url("../img/section3-1.jpg");
}
#section3 .container .row2 {
  margin: 134px 0 0 0;
}
#section3 .container .separator {
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, #000 0%, #fff 100%);
}
#section3 .container .img {
  width: 276px;
  height: 528px;
  background-position: center bottom;
}
#section3 .container .img1 {
  background-image: url("../img/section3-2.jpg");
}
#section3 .container .img2 {
  background-image: url("../img/section3-3.png");
}
#section3 .container .img3 {
  background-image: url("../img/section3-4.jpg");
}
#section3 .container .img4 {
  background-image: url("../img/section3-5.jpg");
}

@media (max-width: 1400px) {
  #section3 {
    padding: 0 20px;
  }
}
@media (max-width: 1250px) {
  #section3 .container .title {
    font-size: 28px;
    line-height: 34px;
    margin: 20px 0 0 0;
  }
  #section3 .container .text {
    font-size: 22px;
  }
  #section3 .container .row2 {
    margin: 100px 0 0 0;
  }
}
@media (max-width: 1100px) {
  #section3 .container {
    padding: 50px 50px 0 50px;
  }
}
@media (max-width: 1030px) {
  #section3 .container .title br {
    display: none;
  }
}
@media (max-width: 1000px) {
  #section3 .container {
    padding: 60px 20px 0 20px;
  }
  #section3 .container .row1 {
    flex-direction: column;
  }
  #section3 .container .column {
    margin: 35px 0 0;
  }
  #section3 .container .title {
    font-size: 40px;
    line-height: 48px;
    margin: 10px 0 10px 0;
  }
  #section3 .container .text {
    margin: 20px 0 0 0;
  }
  #section3 .container .imgThumbnail {
    margin: 0 auto;
  }
  #section3 .container .img {
    width: 217px;
    height: 414px;
  }
}
@media (max-width: 900px) {
  #section3 .container {
    flex-direction: column;
  }
  #section3 .container .row2 {
    margin: 50px 0 0 0;
  }
}
@media (max-width: 800px) {
  #section3 .container {
    padding: 50px 0 0;
  }
  #section3 .container .rowSb {
    flex-direction: column;
  }
  #section3 .container .row2 {
    margin: 20px 0 0 0;
  }
}
@media (max-width: 600px) {
  #section3 .container {
    padding: 45px 0 0 0;
  }
  #section3 .container .imgThumbnail {
    width: 400px;
    height: 400px;
    flex-shrink: 1;
  }
  #section3 .container .row2 {
    flex-wrap: wrap;
    justify-content: center;
  }
  #section3 .container .img {
    width: calc(50% - 1.5px);
    height: 88vw;
  }
  #section3 .container .separator {
    height: 88vw;
  }
  #section3 .container .separator.s1 {
    display: none;
  }
}
@media (max-width: 540px) {
  #section3 .container .title {
    font-size: 26px;
    line-height: 30px;
  }
  #section3 .container .text {
    font-size: 18px;
  }
  #section3 .container .imgThumbnail {
    width: 350px;
    height: 350px;
  }
}
@media (max-width: 450px) {
  #section3 .container {
    padding: 40px 0 0 0;
  }
  #section3 .container .imgThumbnail {
    width: 300px;
    height: 300px;
  }
}
@media (max-width: 350px) {
  #section3 .container .title .br {
    display: block;
  }
  #section3 .container .imgThumbnail {
    width: 250px;
    height: 250px;
  }
}
#section4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #d9d9d9;
  padding: 85px 80px;
}
#section4 .content {
  align-items: center;
}
#section4 .content .title {
  color: #201c17;
  text-align: center;
  font-family: mBank;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.12px;
  margin: 0 0 45px 0;
}
#section4 .content .rowSb {
  max-width: 1042px;
}
#section4 .content .imgContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 20px;
  width: 244px;
  height: 87.679px;
  flex-shrink: 0;
  transition: 0.3s scale ease-in-out;
}
#section4 .content .imgContainer:hover {
  scale: 1.05;
}
#section4 .content .img {
  display: flex;
}
#section4 .content .img1 {
  width: 158px;
  height: 47px;
  background-image: url("../img/section4-1.png");
  flex-shrink: 0;
}
#section4 .content .img2 {
  width: 174px;
  height: 39px;
  background-image: url("../img/section4-2.svg");
  flex-shrink: 0;
}
#section4 .content .img3 {
  width: 187px;
  height: 38px;
  background-image: url("../img/section4-3.svg");
  flex-shrink: 0;
}
#section4 .content .img4 {
  width: 178px;
  height: 49px;
  background-image: url("../img/section4-4.png");
  flex-shrink: 0;
}

@media (max-width: 1200px) {
  #section4 .content .imgContainer {
    width: 200px;
    height: 71.7px;
  }
  #section4 .content .img1 {
    width: 126px;
    height: 38px;
  }
  #section4 .content .img2 {
    width: 139px;
    height: 31px;
  }
  #section4 .content .img3 {
    width: 150px;
    height: 30px;
  }
  #section4 .content .img4 {
    width: 142px;
    height: 39px;
  }
}
@media (max-width: 1000px) {
  #section4 {
    padding: 60px 40px;
  }
  #section4 .rowSb {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
}
@media (max-width: 1000px) {
  #section4 {
    padding: 60px 20px;
  }
}
@media (max-width: 650px) {
  #section4 .content .title {
    font-size: 20px;
    line-height: 28px;
  }
}
#section5 {
  display: flex;
  flex-direction: column;
  background-color: #000;
  align-items: center;
  padding: 0 0 100px 0;
}
#section5 .imgTop {
  width: 100%;
  height: 381px;
  background-image: url("../img/section5-1.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#section5 .content {
  width: 100%;
  max-width: 1320px;
  display: flex;
  flex-direction: column;
  padding: 0 120px;
}
#section5 .content .title {
  color: #fff;
  font-family: mBank;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: -0.4px;
  margin: 0 0 35px 0;
}
#section5 .content .text {
  color: #fff;
  font-family: mBank;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.12px;
  margin: 0;
}
#section5 .content .rowSb {
  margin: 75px 0 0 0;
}
#section5 .content .element {
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
}
#section5 .content .element .img {
  width: 495px;
  height: 330px;
  flex-shrink: 0;
}
#section5 .content .element .img1 {
  background-image: url("../img/section5-2.png");
}
#section5 .content .element .img2 {
  background-image: url("../img/section5-3.png");
}
#section5 .content .element .textElement {
  color: #e90a0a;
  text-align: center;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  margin: 30px 0 70px 0;
}
#section5 .content .element .btnElement {
  max-width: 350px;
  width: 100%;
  height: 47px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border: 1px solid #ae0000;
  border-radius: 23.5px;
  color: #26221e;
  text-align: center;
  font-family: mBank;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  margin: 0 auto;
  padding: 10px;
  cursor: pointer;
  transition: 0.3s all ease-in-out !important;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  box-shadow: 0px 0px 20px 9px #ae0000;
}
#section5 .content .element .btnElement:hover {
  color: #ae0000;
  background-color: #ffffff;
}

@media (max-width: 1440px) {
  #section5 .imgTop {
    height: 26vw;
  }
}
@media (max-width: 1250px) {
  #section5 .content .element .img {
    width: 396px;
    height: 264px;
  }
}
@media (max-width: 1100px) {
  #section5 .content {
    padding: 0 40px;
  }
}
@media (max-width: 1000px) {
  #section5 .content .rowSb {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }
  #section5 .content .element {
    width: -moz-fit-content;
    width: fit-content;
    align-items: center;
  }
  #section5 .content .element .img {
    width: 495px;
    height: 330px;
  }
  #section5 .content .element .textElement {
    margin: 30px 0 30px 0;
  }
}
@media (max-width: 800px) {
  #section5 .content {
    padding: 0 20px;
  }
  #section5 .content .rowSb {
    margin: 50px 0 0 0;
  }
}
@media (max-width: 600px) {
  #section5 .content .title {
    font-size: 26px;
    line-height: 34px;
    margin: 0 0 20px 0;
  }
  #section5 .content .text {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (max-width: 600px) {
  #section5 .content .element {
    width: 100%;
  }
  #section5 .content .element .img {
    width: 100%;
    height: 66vw;
  }
  #section5 .content .element .textElement {
    font-size: 16px;
    line-height: 22px;
    margin: 10px 0 30px;
  }
}
@media (max-width: 400px) {
  #section5 .content .rowSb {
    margin: 30px 0 0 0;
  }
  #section5 .content .element .textElement br {
    display: none;
  }
}
#section7 {
  width: 100%;
  padding: 100px 40px 60px 40px;
}
#section7 .wrapper {
  display: flex;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}
#section7 .title {
  max-width: 1140px;
  color: #26221e;
  font-family: mBank;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  margin: 0 auto 30px auto;
}
#section7 .element {
  display: flex;
  align-items: center;
  margin: 10px 0 60px;
}
#section7 .element .img {
  width: 30px;
  height: 40px;
  margin-right: 34px;
  flex-shrink: 0;
  margin-top: 2px;
}
#section7 .element .textLink {
  color: #26221e;
  font-family: mBank;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}
#section7 .text {
  max-width: 1140px;
  color: #26221e;
  font-family: mBank;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  margin: 0 auto;
  word-break: break-word;
}
#section7 .text span {
  font-weight: 700;
  margin: 0;
}
#section7 .text a {
  color: #0000ff;
  text-decoration-line: underline;
  transition: 0.3s all ease-in-out;
  word-wrap: break-word;
  margin: 0;
}
#section7 .text a:hover {
  color: #ff8600;
}

@media (max-width: 800px) {
  #section7 {
    padding: 60px 30px 55px 30px;
  }
  #section7 .text,
  #section7 .text a {
    font-size: 15px;
    line-height: 22px;
  }
}
@media (max-width: 600px) {
  #section7 {
    padding: 40px 20px 52px 20px;
  }
  #section7 .text,
  #section7 .text a {
    font-size: 14px;
    line-height: 20px;
  }
  #section7 .element {
    margin-top: 30px;
  }
}
@media (max-width: 400px) {
  #section7 {
    padding: 20px 15px 50px 15px;
  }
  #section7 .text,
  #section7 .text a {
    font-size: 12px;
    line-height: 18px;
  }
}/*# sourceMappingURL=main.css.map */