*::-webkit-input-placeholder {
  color: #666;
  opacity: 1;
}
*:-moz-placeholder {
  color: #666;
  opacity: 1;
}
*::-moz-placeholder {
  color: #666;
  opacity: 1;
}
*:-ms-input-placeholder {
  color: #666;
  opacity: 1;
}

body input:focus:required:invalid,
body textarea:focus:required:invalid {
}
body input:required:valid,
body textarea:required:valid {
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
tt,
var,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

a {
  text-decoration: none;
}

strong {
  font-weight: 700;
}

:root {
  --color-white: #fff;
  --color-primary: #000;
  --color-secondary: #505561;
  ---color-gray: #5c6370;
  --color-gray-light: #a4a8b0;
  --color-gray-extra-light: #d9d9d9;
  --color-black: #000;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Epilogue", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-black);
  background-color: var(--color-white);
  overflow-x: hidden;
}

ul {
  list-style: none;
}

p {
  margin-bottom: 24px;
}

.wrapper {
  overflow: hidden;
}

.center {
  text-align: center;
}

.color-white {
  color: var(--color-white);
}

.btn {
  display: inline-block;
  background-color: var(--color-white);
  color: var(--color-secondary);
  /* padding: 13px 60px; */
  padding: 8px 40px;
  border-radius: 6px;
  border: 0;
  outline: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.btn-mob {
  display: none;
  background-color: var(--color-white);
  color: var(--color-secondary);
  padding: 13px 60px;
  border-radius: 6px;
  border: 0;
  outline: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.btn:hover {
  background-color: var(--color-gray-extra-light);
}

.btn--dark {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

.btn--dark:hover {
  background-color: var(--color-gray-light);
}

.btn--big {
  padding: 17px 90px;
}

.h1 {
  font-size: 52px;
}

.mw-600 {
  max-width: 600px;
}

.header {
  color: var(--color-white);
  text-align: center;
  background: url("../img/Header.png") no-repeat;
  background-color: var(--color-black);
  background-size: cover;
  overflow: hidden;
  padding-bottom: 90px;
  margin-bottom: 50px;
  margin-top: -90px;
  border-radius: 0 0 50px 50px;
}

/* .topline {
  position: fixed;
  width: 100%;
  top: 0;
  padding: 20px ;
  transform: translateX(-50%);
  left: 50%;
  z-index: 100;
  border-top: 0;
  max-width: 1230px;
  margin: 0 auto;
  transition: all 0.2s;
} */

/* HAMBURGER */

.topline-desktop {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topline {
  position: fixed;

  /* background-color: #333; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* width: 100%; */
  top: 0;
  left: 0;
  transition: all 0.25s;
  z-index: 100;
  width: 100vw !important;
  max-width: 100% !important;
  /* overflow-x: hidden; */
}

.topline-container {
  padding: 10px 20px;
  border-radius: 0px 0px 25px 25px;
  background: rgba(0, 0, 0, 0.6);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger span {
  display: block;
  width: 60%;
  height: 3px;
  margin: 0 auto;
  opacity: 1;
  background-color: #fff;
  border-radius: 4px;
}
.hamburger::after {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  z-index: 1;
}

.mobile-logo {
  display: none;
}

@media (max-width: 768px) {
  body > div.topline > div > div {
    /* justify-content: flex-end !important; */
  }
  .btn-mob {
    display: none;
  }
  .desktop-logo {
    display: none;
  }
  .mobile-logo {
    display: block;
  }
  .menu {
    display: none;
    flex-direction: column;
    background-color: #fff;
    border-radius: 6px;
    position: absolute;
    top: 50px;
    right: 0;
    width: 100%;
    padding: 20px;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .menu.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s;
  }
  .menu.active a {
    color: #525565;
  }
  /* last child in language switcher */
  .menu.active a:last-child {
    /* display: none; */
  }

  .hamburger {
    display: flex;
    /* margin: 0 auto; */
  }
}
/* END */
.nav-bg {
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 0 0 25px 25px;
}

.menu {
  gap: 38px;
}
/* Language switcher start */
.language-switcher {
  display: flex;
  align-items: center;
  font-size: 16px;
  gap: 5px;
}

.lang-option {
  color: white;
  text-decoration: none;
  cursor: pointer;
}

.lang-option.disabled {
  color: #9c9a9a;
  pointer-events: none;
  cursor: default;
}

.slash_color {
  color: var(--color-white);
}

/* Language switche end */
@media (max-width: 768px) {
  .slash_color {
    color: #000;
  }
}

/* Cryptocurrency slider */

.slider-row {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.crypto-slider-container {
  overflow: hidden;
  width: 100%;
  /* max-width: 1200px; */
  /* width: auto; */
  padding: 0 30px;
  position: absolute;
  top: 180px;
  left: 50%;
  transform: translateX(-50%);
  scroll-snap-stop: always;
}

.slider-body {
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.crypto-slider {
  display: flex;
  align-items: center;
  scroll-snap-stop: always;
  transition: transform 0.5s ease;
}

.crypto-slider div {
  flex: 0 0 auto;
  align-self: center;
  box-sizing: border-box;
  padding: 2px;
  margin-right: 10px;
  font-size: 14px;
  font-family: inherit;
  scroll-snap-align: start;
}

.slider-mob {
  display: none;
}

@media screen and (max-width: 768px) {
  .slider-row {
    padding-bottom: 50px;
  }

  .crypto-slider-container {
    padding: 0;
  }
  .slider-body {
    width: 380px; /* Adjust for smaller screens */
  }
  .prev-btn,
  .next-btn {
    display: none;
  }
}

.prev-btn,
.next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  font-family: inherit;
}

.prev-btn {
  left: 0;
}

.next-btn {
  right: 0;
}

.intro__title-card {
  font-size: 52px;
  line-height: 100%;
}

.intro__title {
  max-width: 670px;
  /* margin: 120px auto 60px; */
  margin: 60px auto 60px;
  line-height: 1.3;
  font-weight: 500;
  padding-top: 250px;
}
@media screen and (max-width: 575.98px) {
  .intro__title {
    padding-top: 120px;
  }

  h1.intro__title-card {
    line-height: 1;
  }
}
.intro__footer {
  /* display: flex; */
  gap: 50px;
}

/* .more-link__wrap{
  position: relative;
} */

.more-link__wrap {
  margin: 0 auto;
}

.more-link__wrap h2 {
  font-size: 48px;
  font-weight: 600;
  margin: 0 auto;
}

.more-link {
  position: relative;
  color: var(--color-white);
  font-size: 20px;
  font-weight: 700;
  padding-right: 40px;
  text-wrap: nowrap;
}

.more-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 24px;
  height: 20px;
  background: url(../img/white-arrow.svg) no-repeat;
  transform: translateY(-50%);
}

.plus-list__white li {
  position: relative;
  padding-left: 40px;
  text-align: left;
  font-size: 20px;
}

.plus-list__white li + li {
  margin-top: 24px;
}

.plus-list__white {
  max-width: 100%;
  width: 500px;
}

@media screen and (max-width: 758px) {
  .intro__footer {
    flex-direction: column;
  }
}
.plus-list__white li::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 20px;
  height: 20px;
  background: url(/img/plus-white.svg) no-repeat;
}
.intro-list {
  margin-bottom: 60px;
  overflow: hidden;
}

.intro-list__item {
  position: relative;
  max-width: 260px;
  font-size: 14px;
  margin: 0 auto;
  padding-top: 20px;
}

.intro-list__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 83px;
  height: 3px;
  background-color: var(--color-white);
  transform: translateX(-50%);
  z-index: 100;
}

.header-carousel {
  max-width: 1100px;
  margin: 0 auto;
}
.row {
  padding-top: 100px;
}

.row-policy {
  padding-top: 0px;
  padding-left: 15px;
  padding-right: 15px;
}

.section-title {
  font-size: 40px;
  font-weight: 500;
  /* margin-bottom: 70px; */
  line-height: 1.3;
}

.section-title__desc {
  font-size: 18px;
  color: var(--color-primary);
  margin-top: 16px;
  text-align: right;
  font-weight: 400;
  max-width: 500px;
}

/* Center heading */
.heading-alignment {
  justify-content: center !important;
}

/* Banking page style start */
.traditional-banking {
  display: flex;
  flex-wrap: wrap;
}

.traditiona-banking__img {
  display: flex;
  gap: 50px;
}

@media screen and (max-width: 986px) {
  .row-debitcard {
    flex-direction: column;
  }
  .solution-list li:nth-child(2) {
    margin-left: 0px;
  }
}

.debit-cards {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
}
.order-card {
  position: absolute;
  top: 220px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  text-align: right;
  color: #fff;
  padding: 10px 30px;
  background: #4d4d4e;
  border-radius: 10px;
  font-size: 16px;
  transition: backgorund-color 0.3s;
}

.order-card-img {
  width: 20px;
  height: auto;
  display: block;
}
.order-card:hover {
  background-color: #505050;
}

@media screen and (max-width: 1199px) {
  .order-card {
    padding: 10px;
  }
}

/* @media  screen and (max-width: 1075px) {
  .order-card {
    padding: 5px 25px;
    font-size: 14px;
  }
  
} */

@media screen and (max-width: 986px) {
  .order-card {
    top: 85px;
    padding: 10px 30px;
  }
  .cards-img {
    padding-top: 30px;
  }
}

@media screen and (max-width: 986px) {
  .debit-cards {
    flex-direction: column;
  }
}

.debit-cards__desc {
  position: relative;
  font-size: 26px;
  color: var(--color-primary);
  text-transform: uppercase;
  font-weight: 700;
  text-align: right;
  max-width: 200px;
}

/* .debit-cards__desc::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 155px;
  height: 80px;
  background: url(../img/black-arrow.svg) no-repeat;
  transform: translate(-100%, 40px);
} */

.solution-list li {
  max-width: 510px;
  font-size: 16px;
}

.plus-list li {
  position: relative;
  padding-left: 40px;
}
.plus-list--gap li + li {
  margin-top: 50px;
}

.solution-list li:nth-child(2) {
  margin-left: 150px;
}

@media screen and (max-width: 986px) {
  .solution-list li:nth-child(2) {
    margin-left: 0px;
  }
}
.solution-list li:nth-child(3) {
  margin-left: 300px;
}

@media screen and (max-width: 986px) {
  .solution-list li:nth-child(3) {
    margin-left: 0px;
  }
}

.plus-list li:after {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 20px;
  height: 20px;
  background: url(../img/black-plus.svg) no-repeat;
}

.section-offer {
  position: relative;
  background: url(../img/offer-bg.png) no-repeat;
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 80px 0;
  margin-bottom: 142px;
  margin-top: 50px;
}

.row-items {
  padding-top: 0px;
}
@media screen and (max-width: 986px) {
  .row-items > .col-sm-3 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 16px;
  }
}
.offer-item {
  position: relative;
  color: var(--color-white);
  background-color: #2b2b2c;
  padding: 25px 14px;
  height: 100%;
}

.offer-item__title {
  color: var(--color-white);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-right: 44px;
}

.offer-item__number {
  position: absolute;
  top: 14px;
  right: 14px;
  color: var(--color-white);
  font-size: 26px;
  font-weight: 700;
}

.section-experience {
  padding-bottom: 100px;
}

.row-experience {
  padding-top: 0;
}

.default-list--sm li {
  max-width: 400px;
}

.default-list li + li {
  margin-top: 50px;
}

.default-list__icon {
  display: flex;
  gap: 50px;
}

@media screen and (max-width: 986px) {
  .row-experience {
    flex-direction: column;
  }
  .row-debitcard .col-sm-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .default-list li + li {
    margin-top: 15px;
  }
  .row {
    padding-top: 50px;
    /* padding-right: 20px;
    padding-left: 20px; */
  }
  .solution-list {
    padding-top: 50px;
  }
  .debit-cards__desc {
    text-align: center;
  }
  .section-offer {
    margin-top: 0;
  }
}

/* Banking page style END */
.integration-item {
  border: 1px solid var(--color-gray-extra-light);
  padding: 30px 50px;
  margin-bottom: 70px;
  border-radius: 48px;
  transition: all 0.2s ease-in-out;
  width: 100%;
}

@media only screen and (max-width: 760px) {
  .slider-mob {
    display: block;
  }
  .integration-item {
    margin-bottom: 40px;
  }
}

.integration-item:hover {
  border-color: var(--color-gray-light);
}

.integration-item__name {
  font-size: 18px;
  font-weight: 600;
  /* width: 100%;
    max-width: 150px; */
  text-align: center;
  padding-top: 40px;
  line-height: 18px;
}

.integration-item__desc {
  color: var(--color-secondary);
  position: 12px;
}

.integration-item img {
  width: 96px !important;
  height: 96px;
  display: block;
  margin: 0 auto;
}

.integration {
  margin-bottom: 100px;
}

/* .offer {
  position: relative;
  background-image: url("../img/offer-bg.png");
  background-color: var(--color-black);
  background-repeat: no-repeat;
  color: var(--color-white);
  padding: 80px 0;
  margin-bottom: 142px;
  background-position: 50% 26%;
  background-size: 100%;
} */

.offer {
  position: relative;
  background-image: url("../img/Section-bg.png");
  /* overflow-x: hidden; */
  color: var(--color-white);
  padding: 80px 0;
  margin-bottom: 142px;
}

.offer::after {
  content: "";
  position: absolute;
  width: 638px;
  height: 638px;
  background: url("../img/image-left.png") no-repeat;
}
.offer::before {
  content: "";
  position: absolute;
  width: 638px;
  height: 638px;
  background: url("../img/image-right.png") no-repeat;
}

.offer::after {
  top: 50%;
  left: 0;
  transform: translate(-32%, -22%);
}

.offer::before {
  top: 0;
  right: 0;
  /* transform: translate(60%, -35%); */
  transform: translate(38%, -41%);
}

.offer__title {
  position: relative;
  font-size: 28px;
  font-weight: 500;
  margin: 0 auto 40px;
  max-width: 822px;
  line-height: 1.3;
  z-index: 200;
}

.work {
  margin-bottom: 140px;
}

.work-step__wrap {
  display: flex;
  justify-content: space-between;
  max-width: 1053px;
  margin: 0 auto;
}

.work-step {
  position: relative;
  max-width: 234px;
  text-align: center;
  margin-bottom: 90px;
}

/* .work-step::after {
  content: '';
  position: absolute;
  top: 30%;
  right: -50%;
  width: 84px;
  height: 84px;
  background: url(../img/arrow-right.svg) no-repeat;
}

.work-step:last-child:after {
  display: none;
} */

.work-step__name {
  font-size: 20px;
  font-weight: 600;
  margin-top: 28px;
}

.work-step img {
  width: auto;
  height: 243px;
}

.section-deliver {
  position: relative;
}

.section-deliver::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 40%;
  background-color: #f5f5f5;
  z-index: -1;
}

.deliver {
  position: relative;
  padding-top: 100px;
  overflow: hidden;
}

.deliver-carousel__wrap {
  background-color: var(--color-black);
  background: url("../img/delivery-bg.png") no-repeat;
  background-size: cover;
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 50px 75px;
  border-radius: 20px;
}

.slide {
  position: relative;
}

.slide__content {
  max-width: 50%;
}

.slide__img {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-28%);
}

.slide__title {
  font-size: 40px;
  font-weight: 500;
  /* margin-bottom: 50px; */
}

.slide__subtitle {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 20px;
}

.slide__desc {
  font-size: 20px;
  margin-bottom: 50px;
}

.owl-carousel .owl-stage-outer {
  overflow: initial;
}

.owl-carousel .owl-dots {
  text-align: left;
}

.intro-list .owl-carousel .owl-dots {
  text-align: center;
  margin-top: 15px;
}

.owl-carousel button.owl-dot {
  width: 13px;
  height: 13px;
  border: 1px solid var(--color-white);
}

.owl-carousel button.owl-dot.active {
  background-color: var(--color-white);
}

.owl-carousel button.owl-dot + button.owl-dot {
  margin-left: 8px;
}

.section-setup {
  background-color: #f5f5f5;
  padding: 110px 0;
  margin-bottom: 90px;
}

.section-setup__title {
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 30px;
  color: var(--color-secondary);
  max-width: 455px;
  line-height: 1.3;
}

.product-numbers__icon {
  margin-bottom: 30px;
}

.product-numbers__name {
  font-weight: 500;
  font-size: 35px;
  padding-bottom: 10px;
  margin-bottom: 14px;
  border-bottom: 2px solid #e6e6e6;
}

.product-number__desc {
  font-size: 18px;
}

.section-numbers {
  margin-bottom: 110px;
}

.contact-form {
  position: relative;
  background: url("../img/contact-form-bg.png") no-repeat;
  background-size: 120%;
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 68px 82px 68px;
  border-radius: 20px;
  margin-bottom: 174px;
}

.contact-form__title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 18px;
}

.contact-form__desc {
  font-size: 18px;
  max-width: 424px;
  line-height: 1.8;
}

.field-row {
  margin-bottom: 14px;
}

.contact-form__check {
  margin-bottom: 36px;
}

.contact-form__img {
  position: relative;
}

.contact-form__img img {
  position: absolute;
  top: 10px;
  left: -20px;
}

input[type="text"],
textarea {
  width: 100%;
  min-height: 48px;
  border-radius: 12px;
  background-color: rgb(255 255 255 / 15%);
  border: 0;
  outline: none;
  color: var(--color-white);
  padding: 12px;
  font-family: "Epilogue", sans-serif;
}

textarea {
  resize: none;
  height: 96px;
}

input[type="checkbox"] {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

input[type="checkbox"] + label {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  line-height: 1.4;
  vertical-align: middle;
}

input[type="checkbox"] + label::before {
  content: "";
  display: inline-block;
  background-color: rgb(255 255 255 / 15%);
  border-radius: 5px;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  flex-grow: 0;
  margin-right: 20px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}

input[type="checkbox"]:checked + label::before {
  background-color: rgb(255 255 255 / 30%);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

.footer {
  padding: 10px 0 68px;
}

.footer__content {
  margin-bottom: 17px;
}

@media screen and (max-width: 540px) {
  .footer__content {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

.bank-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.visa-logo {
  width: auto;
  max-height: 2.65rem;
}
.master-logo {
  width: auto;
  max-height: 3rem;
}

.social-icons a {
  display: inline-block;
}

.social-icons a + a {
  margin-left: 14px;
}

.footer a {
  color: var(--color-black);
}

a.blue-link {
  color: #415eff;
}

@media screen and (max-width: 550px) {
  .footer__links {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px !important;
  }
}

@media screen and (max-width: 550px) {
  .footer-email {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
  }
}

.footer__bottom {
  font-size: 20px;
  margin-top: 30px;
}

.footer__links {
  gap: 15px;
  align-items: center;
}

.footer__links a {
  font-size: 16px;
}

.footer__links a:hover {
  color: #787575;
}

.dialog {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 30%);
  z-index: 10000;
  padding: 15px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: scroll;
  transition: all 0.2s ease-in-out;
}

.dialog.active {
  visibility: visible;
  opacity: 1;
  background-color: rgb(0 0 0 / 80%);
}

.dialog-box {
  position: relative;
  max-width: 800px;
  background-color: var(--color-white);
  padding: 40px 70px;
  border-radius: 20px;
  transform: translateY(-50%);
  transition: all 0.2s ease-in-out;
}

.dialog.active .dialog-box {
  transform: translateY(0);
}

.dialog__header {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 30px;
}

.faq-item__question {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.faq-item__answer {
  color: var(---color-gray);
}

.faq-item {
  margin-bottom: 18px;
}

.faq-item:last-child {
  margin: 0;
}

.dialog__close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 43px;
  height: 43px;
  padding: 0;
  border: 0;
  background-color: transparent;
  outline: 0;
  background: url("../img/close-icon.svg") no-repeat;
  cursor: pointer;
}

.dialog__close:hover {
  opacity: 0.6;
}

.overflow-hidden {
  overflow: hidden;
}

.thanks-block {
  display: none;
  padding: 12px;
  font-size: 16px;
  background-color: #ddf7e2;
  border-radius: 8px;
  color: #0c821e;
  font-weight: 300;
  margin-bottom: 20px;
}

.thanks-block .name {
  font-weight: 600;
  margin-bottom: 8px;
}

.thanks-block.is-error {
  background-color: #efdcde;
  color: #d23c4c;
}

.thanks-block p {
  font-size: 14px;
  margin-bottom: 0;
}

.faq-row {
  padding-top: 0;
}

.faq-heading-md {
  font-size: 20px;
  font-weight: 500;
}

.main__title {
  font-size: 20px;
  font-weight: 600;
}
.list__subtitle span {
  font-weight: 600;
}

.list__subtitle::marker {
  font-weight: 600;
  font-style: 16px;
}

.list__title li {
  list-style-type: disc;
  line-height: 2rem;
  margin-left: 20px;
}

/* .faq-row {
  display: flex;
  flex-direction: column;

} */
