@charset "UTF-8";
/* Указываем box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}
ul,
ol {
  margin: 30px 0;
}
/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
p,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}
/* Выставляем основные настройки по-умолчанию для body */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}
a {
  text-decoration: none;
  transition: all 0.3s;
}
/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}
/* Упрощаем работу с изображениями */
img {
  max-width: 100%;
  display: block;
  height: auto;
}
/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
  font: inherit;
  border: none;
}
button,
[role=button] {
  cursor: pointer;
}
/* Удаляем все анимации и переходы для людей, которые предпочитай их не использовать */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.page--content {
  padding: 60px 0;
}
.page--breadcrumbs {
  padding: 20px 0;
}
.updated {
  margin: 20px 0;
  display: flex;
  justify-content: flex-start;
}
.updated--inner {
  padding: 10px 15px;
  border-radius: 12px;
}
.post-entry {
  font-size: 18px;
}
.post-entry a {
  color: #FF6200;
}
.post-entry h2 {
  margin: 30px 0 16px;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.18;
}
.post-entry h2:first-child {
  margin-top: 0;
}
.post-entry h3 {
  margin: 30px 0 16px;
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
}
.post-entry h3:first-child {
  margin-top: 0;
}
.post-entry p {
  margin: 16px 0;
}
.post-entry ul {
  padding-left: 0;
}
.post-entry ul li {
  list-style: none;
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
}
.post-entry ul li:before {
  display: block;
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  background: #005BAA;
  border-radius: 50%;
  left: 0;
  top: 4px;
}
.post-entry ol {
  list-style: none;
  counter-reset: list;
  padding-left: 0;
}
.post-entry ol li {
  position: relative;
  counter-increment: list;
  list-style: none;
  padding-left: 68px;
  margin-bottom: 24px;
}
.post-entry ol li:before {
  position: absolute;
  display: block;
  width: 40px;
  height: 40px;
  content: counter(list);
  font-weight: 700;
  text-align: center;
  line-height: 40px;
  color: #E6E6E6;
  background: #005BAA;
  border-radius: 50%;
  font-size: 22px;
  left: 0;
  top: -7px;
}
.post-entry .wp-block-group {
  margin: 30px 0;
  padding: 40px;
  border: 1px solid #233148;
  background: #121A2B;
  border-radius: 30px;
}
.post-entry .wp-block-columns {
  margin: 30px 0;
  gap: 20px;
}
.post-entry .wp-block-image {
  margin: 15px 0;
  border-radius: 16px;
  overflow: hidden;
}
.post-entry .wp-block-buttons .wp-block-button__link {
  min-width: 100px;
}
.post-entry .wp-block-table {
  margin: 16px 0;
  border-radius: 16px;
  padding: 0;
}
.post-entry .wp-block-table table {
  border-spacing: 0;
}
.post-entry .wp-block-table table tr {
  border-spacing: 0 10px;
}
.post-entry .wp-block-table table td,
.post-entry .wp-block-table table th {
  padding: 16px 24px;
  background: #121A2B;
  border: none;
}
.post-entry .wp-block-table table tr:nth-child(even) td,
.post-entry .wp-block-table table tr:nth-child(even) th {
  background-color: #233148;
}
.post-entry .wp-block-table table thead {
  border-bottom: none;
}
.post-entry .wp-block-table table thead tr th,
.post-entry .wp-block-table table thead tr td {
  background: #233148 !important;
}
.post-entry .wp-block-table table thead tr th:first-child,
.post-entry .wp-block-table table thead tr td:first-child {
  border-radius: 10px 0 0 0;
}
.post-entry .wp-block-table table thead tr th:last-child,
.post-entry .wp-block-table table thead tr td:last-child {
  border-radius: 0 10px 0 0;
}
.btn-primary, .btn-border, .post-entry .wp-block-buttons .wp-block-button__link {
  font-size: 18px;
  font-weight: 700;
  padding: 15px 39px;
  display: inline-block;
  color: #0A0F1F;
  background: #FF6200;
  border: 1px solid #FF6200;
  border-radius: 5px;
  text-align: center;
}
.btn-border {
  background: transparent;
  color: #FF6200;
}
.header {
  background: #002E5D;
  padding: 24px 0;
  position: relative;
  z-index: 100;
}
.header--mobile-row {
  display: none;
}
.header--menu-open {
  display: none;
}
.header--row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.header--right {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header--buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header--logo {
  display: block;
  width: 124px;
}
.header--logo img {
  max-width: 100%;
  width: 100%;
  height: auto;
}
.header--left {
  display: flex;
  align-items: center;
  gap: 50px;
}
.header--button {
  padding: 9px;
  font-size: 14px;
}
.header--menu ul {
  list-style: none;
  margin: 0;
}
.header--menu ul li {
  list-style: none;
}
.header--menu .menu {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 16px;
}
.header--menu .menu a {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.header--menu .menu a:hover {
  color: #FF6200;
}
.header--menu .menu .sub-menu {
  position: absolute;
  top: 100%;
  left: -15px;
  background: #0A0F1F;
  display: none;
  flex-direction: column;
  gap: 7px;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 14px;
  min-width: calc(100% + 35px);
}
.header--menu .menu .sub-menu a {
  display: block;
  white-space: nowrap;
}
.header--menu .menu > li.menu-item-has-children {
  position: relative;
  padding-right: 20px;
}
.header--menu .menu > li.menu-item-has-children:after {
  display: block;
  content: "";
  position: absolute;
  right: 0;
  top: calc(50% - 3px);
  width: 11px;
  height: 6px;
  background-image: url(//joya9bangladesh.net/wp-content/themes/theme/dist/styles/../../images/angle-bottom.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.3s;
}
.header--menu .menu > li.menu-item-has-children:hover:after {
  transform: rotate(180deg);
}
.header--menu .menu > li.menu-item-has-children:hover > .sub-menu {
  display: flex;
}
@media (max-width: 1024px) {
  .header--buttons {
    display: none;
  }
  .header--menu-open {
    display: flex;
    width: 28px;
    height: 28px;
    padding: 0;
    align-items: center;
    justify-content: center;
    background-color: transparent;
  }
  .header--menu {
    display: none;
    position: absolute;
    height: calc(100vh - 124px);
    top: 100%;
    width: 100vw;
    left: 0;
    background: #0A0F1F;
  }
  .header--menu.menu-active {
    display: block;
  }
  .header--menu .menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
  }
  .header--menu .menu li:after {
    display: none !important;
  }
  .header--menu .menu .sub-menu {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
  }
  .header--mobile-row {
    display: block;
    margin-top: 15px;
  }
  .header--mobile-row .header--buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
  }
}
.footer {
  background: #002E5D;
  color: #E6E6E6;
  margin-top: 50px;
  padding: 40px 0;
}
.footer--top {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}
.footer--logo {
  margin-bottom: 22px;
}
.footer--logo img {
  width: 100%;
}
.footer--top-center {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
}
.footer--menu-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}
.footer--socials {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.footer--social-item {
  width: 36px;
  height: 36px;
  display: block;
}
.footer--social-item img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.footer--line {
  margin: 32px 0;
  height: 1px;
}
.footer--top-right {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0;
}
.footer--top-right a {
  color: #fff;
}
.footer--top-right a:hover {
  color: #FF6200;
}
.footer--contacts {
  margin-bottom: 20px;
}
.footer--app {
  padding: 12px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 220px;
}
.footer--app-text {
  font-size: 12px;
  line-height: 16px;
  display: flex;
  flex-direction: column;
}
.footer--app-text span {
  margin-top: 5px;
  font-weight: 700;
  font-size: 14px;
}
.footer--menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.footer--menu a {
  color: #fff;
}
.footer--menu a:hover {
  color: #FF6200;
}
.footer--logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
.footer--copyright {
  text-align: center;
}
@media (max-width: 1024px) {
  .footer--top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer--top-center {
    flex-direction: column;
    align-items: flex-start;
  }
}
.toc {
  margin: 30px 0;
  position: sticky;
  top: 30px;
  right: 0;
}
.toc.active .toc--title {
  border-radius: 16px 0 0;
}
.toc.active .toc--title span {
  transform: rotate(180deg);
}
.toc.active ul {
  display: flex;
}
.toc--title {
  padding: 20px 152px 20px 24px;
  border-radius: 16px 0 0 16px;
  -webkit-clip-path: polygon(0 0, 79.271% 0, 79.271% 0, 80.085% 0.148%, 80.88% 0.585%, 81.65% 1.298%, 82.389% 2.276%, 83.09% 3.507%, 83.749% 4.979%, 84.36% 6.681%, 84.915% 8.6%, 85.41% 10.725%, 85.838% 13.043%, 100% 100%, 0 100%, 0 0);
          clip-path: polygon(0 0, 79.271% 0, 79.271% 0, 80.085% 0.148%, 80.88% 0.585%, 81.65% 1.298%, 82.389% 2.276%, 83.09% 3.507%, 83.749% 4.979%, 84.36% 6.681%, 84.915% 8.6%, 85.41% 10.725%, 85.838% 13.043%, 100% 100%, 0 100%, 0 0);
  font-weight: 700;
  font-size: 24px;
  position: relative;
  background: #121A2B;
  border: 1px solid #233148;
  color: #E6E6E6;
}
.toc--title span {
  width: 26px;
  height: 26px;
  position: absolute;
  top: calc(50% - 13px);
  right: 52px;
  transition: 0.2s;
}
.toc--top {
  position: relative;
}
.toc--top:after {
  display: block;
  content: "";
  position: absolute;
  width: 95%;
  height: 1px;
  right: 0;
  bottom: 0;
}
.toc ul {
  padding: 30px 15px;
  border-radius: 0 0 16px 16px;
  margin: 0;
  display: none;
  flex-direction: column;
  border: 1px solid #233148;
  gap: 20px;
}
.toc ul li {
  list-style: none;
  position: relative;
  padding-left: 25px;
}
.toc ul li:before {
  content: "";
  height: 15px;
  width: 15px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 2px;
  border: 2px solid #005BAA;
}
.toc ul li::marker {
  display: none;
}
.toc ul li a {
  display: block;
  color: #E6E6E6;
  font-size: 18px;
  font-weight: 500;
}
.toc ul li a:hover {
  color: #FF6200;
}
.faq {
  margin: 30px 0;
}
.faq--item {
  border-radius: 18px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 2px solid #233148;
}
.faq--item.active .faq--text {
  display: block;
}
.faq--item.active .faq--title svg {
  transform: rotate(180deg);
}
.faq--title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  background-color: #121A2B;
  width: 100%;
  font-weight: 700;
  font-size: 24px;
  text-align: left;
  color: #E6E6E6;
  padding: 30px 40px;
}
.faq--title svg {
  width: 30px;
  transition: all 0.3s;
  fill: #0A0F1F;
}
.faq--text {
  display: none;
  background: #121A2B;
  padding: 30px 40px;
}
.review-table--logo {
  display: flex;
  justify-content: center;
}
.review-table .wp-block-table table th, .review-table .wp-block-table table td {
  padding: 6px 10px;
}
.review-table .wp-block-table table th .btn-primary, .review-table .wp-block-table table th .post-entry .wp-block-buttons .wp-block-button__link, .post-entry .wp-block-buttons .review-table .wp-block-table table th .wp-block-button__link, .review-table .wp-block-table table th .btn-border, .review-table .wp-block-table table td .btn-primary, .review-table .wp-block-table table td .post-entry .wp-block-buttons .wp-block-button__link, .post-entry .wp-block-buttons .review-table .wp-block-table table td .wp-block-button__link, .review-table .wp-block-table table td .btn-border {
  color: #0A0F1F;
  padding: 6px;
  font-size: 15px;
}
.pros-cons {
  margin: 30px 0;
  background: #121A2B;
  border-radius: 30px;
  padding: 40px;
}
.pros-cons--row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.pros-cons--title {
  font-size: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.pros-cons--title span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: #75ff52;
  border-radius: 50%;
}
.pros-cons--title span svg {
  fill: #fff;
  width: 40px;
  height: 40px;
  color: #fff;
}
.pros-cons ol li:before {
  color: #fff;
  background: #75ff52;
}
.pros-cons--right .pros-cons--title span {
  background: #ff0000;
}
.pros-cons--right .pros-cons--title span svg {
  transform: rotate(180deg);
}
.pros-cons--right ol li:before {
  background: #ff0000;
}
@media (max-width: 1024px) {
  .pros-cons {
    padding: 30px 15px;
  }
  .pros-cons--row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.cols-links {
  margin: 30px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 44px 24px;
}
.cols-links--image {
  height: 224px;
  border-radius: 38px;
  overflow: hidden;
  margin-bottom: 10px;
}
.cols-links--image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.cols-links--title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
}
.cols-links--link {
  width: 100%;
  color: #E6E6E6 !important;
  padding: 5px;
}
.hero {
  padding: 80px 40px;
  background: #002E5D;
  color: #fff;
}
.hero--row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}
.hero--title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero--text {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
}
.hero--links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.hero--right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 15px;
}
.hero--promo-wrap {
  display: flex;
  align-items: center;
  background: #121A2B;
  border: 1px solid #233148;
  border-radius: 15px;
  padding: 30px 0;
}
.hero--promo-left {
  font-size: 35px;
  font-weight: 700;
  text-align: center;
  padding: 0 25px;
  line-height: 1;
  text-transform: uppercase;
}
.hero--promo-left span {
  font-weight: 400;
}
.hero--logo img {
  width: 100%;
  height: auto;
}
.hero--promo-right {
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.hero--promo-right.active .hero--promo-placeholder {
  display: none;
}
.hero--promo-right.active .hero--promo {
  display: block;
}
.hero--promo-info {
  padding: 4px;
  border-radius: 10px;
  border: 2px solid #FF6200;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  font-weight: 700;
  color: #FF6200;
  font-size: 18px;
}
.hero--promo {
  display: none;
  word-break: break-word;
  text-align: center;
}
.hero--promo-btn {
  font-size: 18px;
  background: transparent;
  color: #FF6200;
  text-decoration: underline;
  font-weight: 700;
  padding: 0;
}
@media (max-width: 1024px) {
  .hero {
    padding: 40px 18px;
    border-radius: 10px;
    margin-bottom: 0;
    background: linear-gradient(90deg, #000 0%, #b8b8b8 100%);
  }
  .hero--row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .hero--links {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .hero--right {
    flex-direction: column;
    align-items: center;
  }
}
.page--content-row {
  display: grid;
  grid-template-columns: 1fr 374px;
  gap: 40px;
}
@media (max-width: 1024px) {
  .page--content {
    padding: 30px 0;
  }
  .page--content-row {
    display: flex;
    flex-direction: column-reverse;
    gap: 30px;
  }
}
html,
body {
  margin-top: 0 !important;
  font-family: "Roboto", serif;
}
html.-toggle,
body.-toggle {
  overflow: hidden;
}
.body--inner {
  position: relative;
  max-width: 100vw;
  min-height: 100vh;
  font-size: 18px;
  background: #0A0F1F;
  color: #E6E6E6;
}
.container {
  width: 1380px;
  max-width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}
.lang--switcher {
  position: relative;
  font-size: 14px;
  background: #0A0F1F;
  border-radius: 5px;
}
.lang--switcher:hover .lang--switcher-list {
  display: flex;
}
.lang--switcher:hover .lang--switcher-current svg {
  transform: rotate(180deg);
}
.lang--switcher-current {
  background: transparent;
  padding: 6px 12px 6px 6px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.lang--switcher-current svg {
  max-width: 8px;
  transition: all 0.3s;
  position: relative;
}
.lang--switcher-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
}
.lang--switcher-item span {
  width: 16px;
  min-width: 16px;
}
.lang--switcher-list {
  display: none;
  flex-direction: column;
  gap: 4px;
  position: absolute;
  top: 100%;
  left: 0;
  padding: 8px 6px;
  background: #0A0F1F;
  z-index: 100;
  border-radius: 8px;
}
body.light .body--inner {
  background: #fff;
  color: #1A1A1A;
}
body.light .toc ul li a {
  color: #1A1A1A;
}
body.light .pros-cons {
  background: transparent;
  border: 1px solid #233148;
}
body.light .faq--title, body.light .faq--text {
  background: transparent;
  color: #1A1A1A;
}
body.light .faq--title svg {
  fill: #1A1A1A;
}
body.light .faq--title svg polygon,
body.light .faq--title svg path {
  fill: #1A1A1A;
}
body.light .post-entry .wp-block-group {
  background: transparent;
}
body.light .post-entry .wp-block-table {
  border: 1px solid #233148;
}
body.light .post-entry .wp-block-table table td,
body.light .post-entry .wp-block-table table th {
  background: transparent;
  border-bottom: 1px solid #233148;
}
body.light .post-entry .wp-block-table table tbody tr:last-child td {
  border-bottom: none;
}
body.light .post-entry .wp-block-table table thead tr th {
  background: transparent !important;
}