/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Links */

a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */

aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */

input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type='submit'] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

input[type='file'] {
  max-width: 100%;
}

@font-face {
  font-family: 'Montserrat';
  src: url('/fontsMsanMT5/montserrat-variablefontMsanMT5.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
}

.headerMsanMT5 {
  background: #fff5ed;
  width: 100%;
}

.headerMsanMT5__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 16px;
}

.headerMsanMT5__logo img {
  display: block;
}

.headerMsanMT5__menu {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.headerMsanMT5__menu li a {
  color: var(--black_grey, #404040);
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  transition: opacity 0.2s;
}

.headerMsanMT5__menu li a:hover {
  opacity: 0.7;
}

.headerMsanMT5__burger {
  display: none;
  width: 32px;
  height: 22px;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
}

.headerMsanMT5__burger span {
  height: 3px;
  width: 100%;
  background: #404040;
  display: block;
}

@media (max-width: 900px) {
  .headerMsanMT5__burger {
    display: flex;
  }

  .headerMsanMT5__nav {
    position: absolute;
    top: 62px;
    left: 0;
    width: 100%;
    background: #fff5ed;
    display: none;
  }

  .headerMsanMT5__nav.active {
    display: block;
    z-index: 2;
  }

  .headerMsanMT5__menu {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 30px 0;
  }
}

.heroMsanMT5 {
  background-image: url('/imagesMsanMT5/hero-placeMsanMT5.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.heroMsanMT5__inner {
  padding: 80px 0px;
}

.heroMsanMT5__content {
  margin: 0 auto;
  text-align: center;
}

.heroMsanMT5__title {
  margin: 0 0 24px;

  color: var(--white2, #f8fafc);
  text-align: center;
  font-family: Montserrat;
  font-size: 46px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.heroMsanMT5__text {
  margin: 0 0 32px;

  color: var(--white2, #f8fafc);
  text-align: center;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.heroMsanMT5__btn {
  display: inline-block;
  padding: 12px 24px;

  border-radius: 20px;
  border: 1px solid var(--black_grey, #404040);
  background: var(--Color_oran, #ee9956);

  color: var(--black, #0b0c0b);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;

  transition: 0.25s;
}

.heroMsanMT5__btn:hover {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .heroMsanMT5__inner {
    padding: 80px 16px;
  }

  .heroMsanMT5__title {
    font-size: 30px;
  }

  .heroMsanMT5__text {
    font-size: 18px;
  }

  .heroMsanMT5__btn {
    width: 100%;
    padding: 12px 24px;
  }
}

.wondersMsanMT5 {
  position: relative;
  padding: 80px 0;
  background: #fff5ed;
  overflow: hidden;
}

.wondersMsanMT5::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 360px;
  transform: translateY(-50%);
  background: url('/imagesMsanMT5/line-1MsanMT5.webp') center center / cover
    no-repeat;
  pointer-events: none;
  z-index: 0;
}

.wondersMsanMT5__inner {
  position: relative;
  z-index: 1;
}

.wondersMsanMT5__top {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 24px;
}

.wondersMsanMT5__intro {
  padding-top: 8px;
}

.wondersMsanMT5__title {
  margin: 0 0 20px;
  color: var(--black_grey, #404040);
  font-family: Montserrat, sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  max-width: 420px;
}

.wondersMsanMT5__text {
  margin: 0;
  max-width: 500px;
  color: var(--black_grey, #404040);
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.wondersMsanMT5__topList,
.wondersMsanMT5__bottomList {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wondersMsanMT5__topList {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.wondersMsanMT5__bottomList {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.wonderCardMsanMT5 {
  overflow: hidden;
  border-radius: 10px;
  border: 2px solid var(--Color_oran, #ee9956);
  background: #f8f8f8;

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

.wonderCardMsanMT5__image img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.wonderCardMsanMT5--wide .wonderCardMsanMT5__image img {
  height: 220px;
}

.wonderCardMsanMT5__content {
  padding: 14px 18px 18px;
}

.wonderCardMsanMT5__content h3 {
  margin: 0 0 14px;
  color: var(--black_grey, #404040);
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.wonderCardMsanMT5__content p {
  margin: 0;
  color: var(--black_grey, #404040);
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 1100px) {
  .wondersMsanMT5__top {
    grid-template-columns: 1fr;
  }

  .wondersMsanMT5__topList {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wondersMsanMT5__bottomList {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .wonderCardMsanMT5--wide .wonderCardMsanMT5__image img {
    height: 210px;
  }
}

@media (max-width: 768px) {
  .wondersMsanMT5 {
    padding: 80px 0;
  }

  .wondersMsanMT5::before {
    height: 300px;
    background: url('/imagesMsanMT5/line-1mbMsanMT5.webp') center center / cover
      no-repeat;
  }

  .wondersMsanMT5__top {
    gap: 24px;
    margin-bottom: 24px;
  }

  .wondersMsanMT5__title {
    max-width: 100%;
    margin: 0 0 20px;
    font-size: 32px;
  }

  .wondersMsanMT5__text {
    max-width: 100%;
  }

  .wondersMsanMT5__topList,
  .wondersMsanMT5__bottomList {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .wonderCardMsanMT5__image img,
  .wonderCardMsanMT5--wide .wonderCardMsanMT5__image img {
    height: 240px;
  }

  .wonderCardMsanMT5__content {
    padding: 18px 16px 20px;
  }
}

.promiseMsanMT5 {
  padding: 80px 0;
  background: #fff5ed;
}

.promiseMsanMT5__title {
  margin: 0 0 10px;

  color: var(--black_grey, #404040);
  text-align: center;
  font-family: Montserrat;
  font-size: 32px;
  font-weight: 700;
  text-transform: capitalize;
}

.promiseMsanMT5__subtitle {
  margin: 0 0 40px;

  color: var(--black_grey, #404040);
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 400;
}

.promiseMsanMT5__list {
  list-style: none;
  padding: 0;
  margin: 0;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.promiseCardMsanMT5 {
  border-radius: 10px;
  border: 2px solid var(--Color_oran, #ee9956);
  background: var(--white, #fcfcfc);

  padding: 32px 20px;

  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.promiseCardMsanMT5__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
}

.promiseCardMsanMT5 h3 {
  margin: 0 0 10px;

  color: var(--black_grey, #404040);
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 700;
}

.promiseCardMsanMT5 p {
  margin: 0;

  color: var(--black_grey, #404040);
  text-align: center;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 400;
}

@media (max-width: 1000px) {
  .promiseMsanMT5__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .promiseMsanMT5__list {
    grid-template-columns: 1fr;
  }
}

.reviewsMsanMT5 {
  padding: 80px 0;
  background: #fff5ed;
  overflow: hidden;
}

.reviewsMsanMT5__header {
  position: relative;
  margin: 0 0 40px;
}

.reviewsMsanMT5__heading {
  text-align: center;
}

.reviewsMsanMT5__title {
  margin: 0 0 14px;
  color: #404040;
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.reviewsMsanMT5__subtitle {
  margin: 0;
  color: #404040;
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.reviewsMsanMT5__arrow {
  position: absolute;
  top: 2px;
  right: 0;
  width: 72px;
  height: 72px;
  border: none;
  border-radius: 50%;
  background: #ee9956;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.reviewsMsanMT5__arrow:hover {
  transform: scale(1.04);
}

.reviewsMsanMT5__arrow span {
  color: #fff;
  font-size: 44px;
  line-height: 1;
  transform: translateX(2px);
}

.reviewsMsanMT5__slider {
  margin: 0 0 40px;
}

.reviewsMsanMT5__viewport {
  overflow: hidden;
  width: 100%;
}

.reviewsMsanMT5__track {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: transform 0.45s ease;
  will-change: transform;
}

.reviewCardMsanMT5 {
  flex: 0 0 852px;
  width: 852px;
  min-height: 272px;
  padding: 40px 30px 36px;
  border-radius: 12px;
  background: #f5f5f5;
  box-sizing: border-box;
}

.reviewCardMsanMT5__top {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 22px;
}

.reviewCardMsanMT5__avatar {
  width: 10px;
  height: 100px;
  flex: 0 0 100px;
  border-radius: 50%;
  object-fit: cover;
}

.reviewCardMsanMT5__meta {
  padding-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.reviewCardMsanMT5__name {
  display: block;
  margin: 0 0 16px;
  color: var(--black_grey, #404040);
  text-align: left;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.reviewCardMsanMT5__stars {
  display: flex;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.reviewCardMsanMT5__stars img {
  width: 24px;
  height: 24px;
  display: block;
}

.reviewCardMsanMT5__text {
  margin: 0;
  padding-left: 18px;
  border-left: 2px solid #ee9956;
  color: #404040;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45;
}

.reviewsMsanMT5__dots {
  display: none;
}

.reviewsMsanMT5__btn {
  display: block;
  width: 210px;
  margin: 0 auto;
  padding: 14px 20px;
  border-radius: 28px;
  border: 1px solid #404040;
  background: #ee9956;
  color: #000;
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.reviewsMsanMT5__btn:hover {
  transform: translateY(-2px);
}

@media (max-width: 1200px) {
  .reviewCardMsanMT5 {
    flex: 0 0 720px;
    width: 720px;
  }
}

@media (max-width: 900px) {
  .reviewsMsanMT5 {
    padding: 64px 0 80px;
  }

  .reviewsMsanMT5__header {
    margin-bottom: 28px;
  }

  .reviewsMsanMT5__heading {
    text-align: left;
  }

  .reviewsMsanMT5__title {
    text-align: left;
    font-size: 32px;
    margin-bottom: 12px;
  }

  .reviewsMsanMT5__subtitle {
    text-align: left;
    font-size: 16px;
  }

  .reviewsMsanMT5__arrow {
    display: none;
  }

  .reviewsMsanMT5__slider {
    margin-bottom: 28px;
  }

  .reviewsMsanMT5__track {
    gap: 18px;
  }

  .reviewCardMsanMT5 {
    flex: 0 0 100%;
    width: 100%;
    min-height: auto;
    padding: 28px 18px 26px;
  }

  .reviewCardMsanMT5__top {
    gap: 16px;
    margin-bottom: 18px;
  }

  .reviewCardMsanMT5__avatar {
    width: 78px;
    height: 78px;
    flex-basis: 78px;
  }

  .reviewCardMsanMT5__meta {
    padding-top: 2px;
  }

  .reviewCardMsanMT5__name {
    margin-bottom: 12px;
  }

  .reviewCardMsanMT5__text {
    padding-left: 16px;
    font-size: 14px;
    line-height: 1.4;
  }

  .reviewsMsanMT5__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
  }

  .reviewsMsanMT5__dot {
    width: 10px;
    height: 10px;
    border: 1px solid #ee9956;
    border-radius: 50%;
    background: transparent;
    padding: 0;
    cursor: pointer;
  }

  .reviewsMsanMT5__dot.active {
    width: 48px;
    border-radius: 999px;
    background: #ee9956;
  }

  .reviewsMsanMT5__btn {
    width: 100%;
    max-width: 430px;
  }
}

.footerMsanMT5 {
  background: var(--white, #fcfcfc);
  padding: 60px 0 40px;
}

.footerMsanMT5__logo {
  text-align: center;
  margin-bottom: 32px;
}

.footerMsanMT5__logo img {
  max-width: 220px;
  height: auto;
}

.footerMsanMT5__nav ul {
  display: flex;
  justify-content: center;
  gap: 48px;
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.footerMsanMT5__nav ul li a {
  color: var(--black_grey, #404040);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  transition: opacity 0.25s;
}

.footerMsanMT5__nav ul li a:hover {
  opacity: 0.7;
}

.footerMsanMT5__policy ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.footerMsanMT5__policy ul li a {
  color: var(--black_grey, #404040);
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}

.footerMsanMT5__policy .divider {
  color: #404040;
}

.footerMsanMT5__copyright {
  color: var(--black_grey, #404040);
  text-align: center;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  margin: 0;
}

@media (max-width: 768px) {
  .footerMsanMT5 {
    padding: 60px 0;
  }

  .footerMsanMT5__nav ul {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
  }

  .footerMsanMT5__policy ul {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
  }

  .footerMsanMT5__policy .divider {
    display: none;
  }
}

.heroAboutMsanMT5 {
  position: relative;
  padding: 120px 0;
  background-image: url('/imagesMsanMT5/hero-seeMsanMT5.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.heroAboutMsanMT5::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.heroAboutMsanMT5__inner {
  position: relative;
  text-align: center;
}

.heroAboutMsanMT5__title {
  margin: 0 0 16px;
  color: #fff;
  font-family: Montserrat;
  font-size: 48px;
  font-weight: 700;
  line-height: 120%;
  word-wrap: break-word;
}

.heroAboutMsanMT5__subtitle {
  margin: 0;
  color: #fff;
  font-family: Montserrat;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 768px) {
  .heroAboutMsanMT5 {
    padding: 90px 0;
    background-image: url('/imagesMsanMT5/hero-see-mbMsanMT5.webp');
  }

  .heroAboutMsanMT5__title {
    font-size: 36px;
  }

  .heroAboutMsanMT5__subtitle {
    font-size: 18px;
  }
}
.teamMsanMT5 {
  position: relative;
  padding: 120px 0;
  background: #fff5ed;
  overflow: hidden;
}

.teamMsanMT5::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 240px;

  background: url('/imagesMsanMT5/line-1MsanMT5.webp') center bottom / cover
    no-repeat;

  z-index: 0;
  pointer-events: none;
}

.teamMsanMT5__grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 80px;
  align-items: center;
}

.teamMsanMT5__title {
  margin: 0 0 20px;

  color: var(--black_grey, #404040);
  font-family: Montserrat;
  font-size: 32px;
  font-weight: 700;
  text-transform: capitalize;
}

.teamMsanMT5__content p {
  color: var(--black_grey, #404040);
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.teamMsanMT5__image img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

@media (max-width: 992px) {
  .teamMsanMT5 {
    padding: 90px 0;
  }

  .teamMsanMT5__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .teamMsanMT5::after {
    height: 200px;
    background-position: center bottom;
  }
}

@media (max-width: 768px) {
  .teamMsanMT5 {
    padding: 80px 0;
  }

  .teamMsanMT5__title {
    font-size: 28px;
  }
}

@media (max-width: 436px) {
  .teamMsanMT5::after {
    top: 45%;
    bottom: auto;
    transform: translateY(-50%);
    height: 280px;

    background: url('/imagesMsanMT5/line-1mbMsanMT5.webp') center / contain
      no-repeat;
  }
}

.contactMsanMT5 {
  position: relative;
  padding: 100px 0;
  background: #fff5ed;
  overflow: hidden;
}

.contactMsanMT5::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 200px;
  width: 100%;
  height: 220px;

  background: url('/imagesMsanMT5/line-1MsanMT5.webp') center bottom / cover
    no-repeat;

  z-index: 0;
  pointer-events: none;
}

.contactMsanMT5__form {
  position: relative;
  z-index: 2;

  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contactMsanMT5__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contactMsanMT5 label {
  color: var(--black_grey, #404040);
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 400;
}

.contactMsanMT5 input,
.contactMsanMT5 textarea {
  border-radius: 8px;
  border: 1px solid var(--Color_oran, #ee9956);
  background: var(--white, #fcfcfc);

  padding: 14px 16px;

  color: var(--black_grey, #404040);
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 400;

  outline: none;
}

.contactMsanMT5 textarea {
  min-height: 150px;
  resize: none;
}

.contactMsanMT5 input::placeholder,
.contactMsanMT5 textarea::placeholder {
  color: var(--black_grey, #404040);
  font-family: Montserrat;
  font-size: 16px;
}

.contactMsanMT5__btn {
  margin: 10px auto 0;
  padding: 14px 28px;

  border-radius: 28px;
  border: 1px solid #000;

  background: #ee9956;

  color: #000;
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 600;

  cursor: pointer;
  transition: 0.25s;
}

.contactMsanMT5__btn:hover {
  transform: translateY(-2px);
}

.contactMsanMT5__success {
  display: none;

  text-align: center;
  margin-top: 10px;

  color: #404040;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 400;
}

@media (max-width: 768px) {
  .contactMsanMT5 {
    padding: 80px 0;
  }

  .contactMsanMT5::after {
    height: 260px;

    background: url('/imagesMsanMT5/line-1mbMsanMT5.webp') center / contain
      no-repeat;

    top: 45%;
    bottom: auto;
    transform: translateY(-50%);
  }

  .contactMsanMT5__btn {
    width: 100%;
  }
}
.reviewsGridMsanMT5 {
  padding: 100px 0;
  background: #fff5ed;
  overflow: hidden;
}

.reviewsGridMsanMT5__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;

  list-style: none;
  padding: 0;
  margin: 0;

  transition: transform 0.4s ease;
  will-change: transform;
}

.reviewsCardMsanMT5 {
  border-radius: 20px;
  border: 1px solid var(--white, #fcfcfc);
  background: var(--white, #fcfcfc);
  padding: 30px;
}

.reviewsCardMsanMT5__top {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}

.rev-right {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.reviewsCardMsanMT5__top img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.reviewsCardMsanMT5__name {
  display: block;

  color: #404040;
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 400;

  margin-bottom: 6px;
}

.reviewsCardMsanMT5__stars {
  display: flex;
  gap: 4px;

  list-style: none;
  padding: 0;
  margin: 0;
}

.reviewsCardMsanMT5__stars img {
  width: 24px;
  height: 24px;
}

.reviewsCardMsanMT5 p {
  color: #404040;
  font-family: Montserrat;
  font-size: 16px;
  line-height: 1.5;

  border-left: 2px solid #ee9956;
  padding-left: 14px;
}

.reviewsDotsMsanMT5 {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.reviewsDotsMsanMT5 span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #ee9956;
  cursor: pointer;
}

.reviewsDotsMsanMT5 span.active {
  background: #ee9956;
  width: 28px;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .reviewsGridMsanMT5 {
    overflow: hidden;
  }

  .reviewsGridMsanMT5__list {
    display: flex;
    gap: 16px;

    width: 100%;
    transition: transform 0.4s ease;
  }

  .reviewsCardMsanMT5 {
    min-width: 100%;
    flex: 0 0 100%;
  }

  .reviewsDotsMsanMT5 {
    display: flex;
  }
}
.exploreMsanMT5 {
  padding: 100px 0;
  background: var(--or_light, #fff5ed);
}

.exploreMsanMT5__list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.exploreMsanMT5__item {
  width: calc(50% - 15px);
  border-radius: 10px;
  overflow: hidden;
  background: var(--white, #fcfcfc);
  border-top: 2px solid var(--Color_oran, #ee9956);
  border-right: 2px solid var(--Color_oran, #ee9956);
  border-left: 2px solid var(--Color_oran, #ee9956);
  border-bottom: 2px solid var(--Color_oran, #ee9956);
}

.exploreMsanMT5__image {
  height: 220px;
}

.exploreMsanMT5__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.exploreMsanMT5__content {
  padding: 18px 20px 22px;
  text-align: center;
}

.exploreMsanMT5__content h3 {
  margin: 0 0 12px;
  color: var(--black_grey, #404040);
  text-align: center;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.exploreMsanMT5__content p {
  margin: 0;
  color: var(--black_grey, #404040);
  text-align: center;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 768px) {
  .exploreMsanMT5 {
    padding: 60px 0;
  }

  .exploreMsanMT5__list {
    gap: 20px;
  }

  .exploreMsanMT5__item {
    width: 100%;
  }

  .exploreMsanMT5__image {
    height: 210px;
  }
}

.terms {
  padding: 80px 0;
  background: var(--or_light, #fff5ed);
  color: var(--black_grey, #404040);
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  word-wrap: break-word;
}

.terms h1 {
  color: var(--black_grey, #404040);
  font-family: Montserrat;
  font-size: 46px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  word-wrap: break-word;
  margin-bottom: 32px;
}

.terms p {
  margin-bottom: 20px;
}

.terms ul {
  list-style: disc;
  margin-bottom: 20px;
}

.terms ul li {
  list-style-type: disc;
  margin-left: 20px;
}

@media (max-width: 768px) {
  .terms {
    padding: 40px 0;
  }

  .terms h1 {
    font-size: 30px;
    margin-bottom: 24px;
  }
}

.heroAboutMsanMT5.heroreviewsMsanMT5 {
  position: relative;
  padding: 120px 0;
  background-image: url('/imagesMsanMT5/hero-see-2MsanMT5.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 768px) {
  .heroAboutMsanMT5.heroreviewsMsanMT5 {
    padding: 90px 0;
    background-image: url('/imagesMsanMT5/hero-see-2mbMsanMT5.png');
  }
}

.heroAboutMsanMT5.countriesheroMsanMT5 {
  position: relative;
  padding: 120px 0;
  background-image: url('/imagesMsanMT5/hero-see-3MsanMT5.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 768px) {
  .heroAboutMsanMT5.countriesheroMsanMT5 {
    padding: 90px 0;
    background-image: url('/imagesMsanMT5/hero-see-3mbMsanMT5.png');
  }
}
