body, textarea, input {
  background: #1B1B1B;
  color: #FFFFFF;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
  margin: 0;
}

body.active {
  overflow: hidden;
}

.container {
  position: relative;
  max-width: calc(100vw - 48px);
  margin: 0 auto;
  width: 1200px;
}

button {
  border: 0;
}

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

img {
  width: auto;
}

b, strong {
  font-weight: 900;
}

a {
  cursor: pointer;
  color: inherit;
  text-decoration: none;
}

span {
  display: block;
}

h1, h2, h3 {
  font-family: "Tenor Sans", sans-serif;
  font-weight: 300;
  font-style: normal;
  margin: 0;
}

p {
  margin: 0;
}

.padding {
  padding: 120px 0;
}

.grey-section {
  background: #2A2A2A;
}

@media (max-width: 1200px) {
  .container {
    max-width: calc(100vw - 40px);
  }
  .padding {
    padding: 80px 0;
  }
}
.mch-widget-giwzs.mch-widget-news.horizontal {
  min-width: auto !important;
}

.m-10 {
  margin-bottom: 10px;
}

.m-16 {
  margin-bottom: 16px;
}

.m-24 {
  margin-bottom: 24px;
}

.m-48 {
  margin-bottom: 48px;
}

.m-120 {
  margin-bottom: 120px;
}

.grey-text {
  color: #BABABA;
}

h1 {
  font-weight: 400;
  font-size: 48px;
  line-height: 50px;
}

h2 {
  font-weight: 400;
  font-size: 42px;
  line-height: 46px;
}

h3 {
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
}

@media (max-width: 1200px) {
  h1 {
    font-size: 42px;
    line-height: 46px;
  }
  h2 {
    font-size: 32px;
    line-height: 36px;
  }
  p {
    font-size: 18px;
    line-height: 22px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 24px;
    line-height: 26px;
  }
  h2 {
    font-size: 24px;
    line-height: 26px;
  }
  h3 {
    font-size: 18px;
    line-height: 22px;
  }
  p {
    font-size: 16px;
    line-height: 18px;
  }
}
.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  padding: 10px 20px;
  border-radius: 32px;
  transition: color 0.3s, background-color 0.3s, border-color 0.3s;
}

.btn-yellow {
  background: #FAAB01;
  color: #2A2A2A;
  border: 1px solid #FAAB01;
}

.btn-yellow:hover {
  background: #DE9800;
}

.btn-hidden {
  background: transparent;
  border: 1px solid #FFFFFF;
}
.btn-hidden svg path {
  transition: all 0.3s;
}

.btn-hidden:hover {
  background: #FFFFFF;
  color: #2A2A2A;
}
.btn-hidden:hover svg path {
  fill: #2A2A2A;
}

.btn-dark {
  background: #2A2A2A;
  color: #FFFFFF;
}

.btn-dark:hover {
  background: #5B5B5B;
}

@media (max-width: 768px) {
  .btn {
    width: -moz-available;
    width: -webkit-fill-available;
    width: fill-available;
  }
}
header.scroll {
  background-color: rgba(42, 42, 42, 0.8);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #2A2A2A;
  transition: background 0.3s;
  z-index: 99999;
}
.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  display: flex;
  align-items: center;
}
.header__left {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 800px;
  width: 100%;
}
.header__right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__buttons {
  display: flex;
  gap: 20px;
}
.header__nav .header__buttons {
  display: none;
}
.header__nav input {
  display: none;
}
.header__nav > ul, .header__lang > ul {
  display: flex;
  gap: 40px;
}
.header__nav > ul > li, .header__lang > ul > li {
  position: relative;
  padding: 28px 0;
}
.header__nav > ul > li > a, .header__lang > ul > li > a {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}
.header__nav > ul > li > a:after, .header__lang > ul > li > a:after {
  content: "";
  margin-left: 10px;
  margin-bottom: 3px;
  display: block;
  width: 8px;
  height: 8px;
  border-left: 2px solid #FFFFFF;
  border-bottom: 2px solid #FFFFFF;
  transform: rotate(-45deg);
  transition: 0.2s;
}
.header__nav > ul > li ul, .header__lang > ul > li ul {
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 60px;
  background: #2A2A2A;
  box-shadow: -2px -2px 4px 0px rgba(0, 0, 0, 0.2509803922);
  border-radius: 3px;
  width: max-content;
  max-height: 0;
  transition: max-height 0.5s;
}
.header__nav > ul > li ul a, .header__lang > ul > li ul a {
  display: block;
  width: 100%;
  transition: color 0.3s;
}
.header__nav > ul > li ul a:hover, .header__lang > ul > li ul a:hover {
  color: #FAAB01;
}
.header__nav > ul > li ul li, .header__lang > ul > li ul li {
  padding: 10px 0;
  margin: 0 10px;
  width: 100%;
}
.header__nav > ul > li ul li:not(:last-child) {
  border-bottom: 1px solid rgba(138, 138, 138, 0.2);
}
.header__nav > ul > li:hover > a, .header__lang > ul > li:hover > a {
  color: #FAAB01;
}
.header__nav > ul > li:hover > a:after, .header__lang > ul > li:hover > a:after {
  rotate: 180deg;
  border-color: #FAAB01;
  margin-bottom: -6px;
}
.header__nav > ul > li:hover ul, .header__lang > ul > li:hover ul {
  max-height: 300px;
  z-index: 2;
}

.menu-item-9999999999 span.wpglobus_flag {
  padding: 0;
  text-transform: uppercase;
  line-height: 17px;
  width: 23px;
}

.wpglobus_flag {
  height: auto !important;
  width: auto !important;
  background-image: none !important;
}

body.active .header__nav > ul {
  display: block;
  opacity: 1;
}

body.active .header__nav label span:nth-child(1) {
  opacity: 0;
}
body.active .header__nav label span:nth-child(2) {
  transform: rotate(315deg);
  top: 44%;
}
body.active .header__nav label span:nth-child(3) {
  transform: rotate(45deg);
  top: 10px;
}

@media (max-width: 1200px) {
  .header__right {
    display: none;
  }
  .header__left {
    padding: 22px 0;
    width: 100%;
    max-width: none;
  }
  .header__nav {
    position: relative;
  }
  .header__nav .header__buttons {
    display: block;
  }
  .header__nav label {
    display: block !important;
    position: relative !important;
    width: 36px !important;
    height: 22px !important;
  }
  .header__nav label span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #FFFFFF;
    transition: all 0.3s;
  }
  .header__nav label span:nth-child(1) {
    top: 0;
  }
  .header__nav label span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  .header__nav label span:nth-child(3) {
    bottom: 0;
  }
  .header__nav > ul {
    display: none;
    position: absolute;
    top: 50px;
    right: 0;
    flex-direction: column;
    gap: 0;
    width: 400px;
    opacity: 0;
    z-index: 999999;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 1);
    overflow: hidden;
    transition: all 0.3s;
  }
  .header__nav > ul > li {
    background: #1A1B1D;
    width: 100%;
    text-align: start;
    padding: 0;
  }
	.header__nav > ul > li:not(:last-child) {
		border-bottom: 1px solid #595959;
	}
  .header__nav > ul > li > a {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    width: -webkit-fill-available;
    padding: 20px 25px;
  }
  .header__nav > ul > li a.active ~ ul {
    display: flex;
  }
  .header__nav > ul > li > a:not(:last-child):after {
    content: "";
    margin-left: 10px;
    margin-bottom: 3px;
    display: block;
    width: 8px;
    height: 8px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(-45deg);
    transition: 0.2s;
  }
  .header__nav > ul > li ul {
    display: none;
    flex-direction: column;
    position: relative !important;
    bottom: auto !important;
    top: 0 !important;
    transform: translateY(0) !important;
    width: 100% !important;
    border-top: 1px solid #595959;
    max-height: fit-content;
  }
  .header__nav > ul > li ul li {
    padding: 10px 25px;
    margin: 0;
    width: -webkit-fill-available;
  }
  .header__nav > ul > li:hover > ul {
    display: none;
    max-height: fit-content;
  }
  .header__nav .header__buttons {
    display: flex;
    flex-direction: column;
    background: #1A1B1D;
    padding: 10px 25px;
  }
  .header .header__btn.mob {
    display: block;
    line-height: normal !important;
    margin: 10px 20px;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .header__nav > ul {
    width: calc(100vw - 40px);
  }
}
.hero {
  margin-top: 80px;
  padding: 200px 0;
  background: url("../img/bg/hero-bg.png") no-repeat center;
  background-size: cover;
}
.hero-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-second {
  margin-top: 80px;
  padding: 80px 0;
  background: url("../img/bg/hero-second.png") no-repeat right bottom;
  background-size: contain;
  min-height: 170px;
}
.hero-second__breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 30px;
  gap: 5px;
}
.hero-second__breadcrumbs a:not(:first-child) {
  cursor: default;
}
.hero-second__breadcrumbs a svg path {
  transition: all 0.3s;
}
.hero-second__breadcrumbs a:hover svg path {
  fill: #FAAB01;
}

@media (max-width: 1200px) {
  .hero {
    padding: 100px 0;
  }
  .hero-wrap {
    flex-direction: column;
    gap: 60px;
  }
  .hero__left, .hero__right {
    width: 100%;
  }
  .hero__right {
    display: flex;
    justify-content: center;
  }
  .hero__right img {
    width: 85%;
  }
}
.why-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.why__left {
  border-radius: 3px;
  overflow: hidden;
}
.why__left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
}
.why ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.why ul li {
  position: relative;
  padding-left: 20px;
}
.why ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: #717171;
  border-radius: 32px;
}

@media (max-width: 1200px) {
  .why-wrap {
	display: flex;
    flex-direction: column;
  }
  .why__left {
    order: 1;
  }
}
.start .container::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10%;
  width: 100%;
  height: 100%;
  background: url("../img/bg/bg-section.png") no-repeat left;
  background-size: contain;
  z-index: -1;
}
.start-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
.start__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #2A2A2A;
  padding: 40px 24px;
  border-radius: 8px;
}
.start__item img {
  width: 80%;
  margin: 0 auto 16px;
  max-height: 125px;
  object-fit: contain;
}
.start__item .start__buttons {
  display: flex;
  margin-top: auto;
  gap: 15px;
}
.start__item .start__buttons .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
}

@media (max-width: 1024px) {
  .start-wrap {
    grid-template-columns: 1fr;
  }
}
.advantages.index .advantages__grid, .advantages.index .advantages__img {
	height: 210px;
}
.advantages-wrap {
  display: flex;
  gap: 32px;
}
.advantages__left, .advantages__right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  width: 50%;
}
.advantages__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 245px;
  gap: 32px;
}
.advantages__item {
  padding: 24px;
  height: auto;
  background: #1B1B1B;
  border-radius: 5px;
}
.advantages__item img {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
}
.advantages__img {
  overflow: hidden;
  display: flex;
  height: 245px;
  border-radius: 5px;
}
.advantages__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}

@media (max-width: 1200px) {
  .advantages-wrap {
    flex-direction: column;
  }
  .advantages__left, .advantages__right {
    width: 100%;
  }
}
@media (max-width: 560px) {
  .advantages__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
	.advantages__grid, .advantages.index .advantages__grid, .advantages.index .advantages__img {
		height: auto;
	}
  .advantages__img {
    height: 100%;
    max-height: 155px;
  }
}
.analytics .container::before {
  content: "";
  position: absolute;
  top: 15%;
  left: -10%;
  width: 115%;
  height: 100%;
  background: url("../img/bg/bg-section1.png") no-repeat left;
  background-size: contain;
  z-index: -1;
}
.analytics__buttons {
  display: flex;
}
.analytics__buttons button {
  font-family: "Tenor Sans", sans-serif;
  font-size: 24px;
  color: #8A8A8A;
  background: transparent;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 3px solid #8A8A8A;
  padding: 14px 0;
  flex-grow: 1;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
}
.analytics__buttons button.active {
  color: #FAAB01;
  border-color: #FAAB01;
}
.analytics__widget {
  display: none;
}
.analytics__widget.active {
  display: block;
}
.analytics__swiper {
  display: none;
}

@media (max-width: 1024px) {
  .analytics .container::before {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .analytics__buttons, .analytics__widgets {
    display: none;
  }
  .analytics__swiper {
    display: block;
    overflow: hidden;
  }
  .analytics__swiper .awards__button {
    position: absolute;
    top: 65px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    height: auto;
    left: 0;
    z-index: 9999;
  }
  .analytics__swiper h3 {
    text-align: center;
    margin: 0 0 24px 0;
  }
  .analytics__swiper .swiper-slide-active h3 {
    color: #FAAB01;
  }
  .analytics__swiper .swiper-button-disabled {
    opacity: 0.2;
  }
}
.banner {
  color: #1B1B1B;
  background: url("../img/bg/banner-bg.jpg") no-repeat center;
  background-size: cover;
}
.banner__logo {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.2);
  white-space: nowrap;
}
.banner__logo p {
  font-size: 14px;
  line-height: normal;
}
.banner-wrap {
  display: flex;
  justify-content: space-between;
  gap: 100px;
  min-height: 400px;
}
.banner__text {
  padding: 60px 0;
  width: 50%;
}
.banner__img {
  display: flex;
  width: 50%;
  margin-top: auto;
}
.banner__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
}

@media (max-width: 1024px) {
  .banner {
    background-position-x: 65%;
  }
  .banner-wrap {
    flex-direction: column;
    gap: 0;
  }
  .banner__text, .banner__img {
    width: 100%;
  }
  .banner__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .banner__img {
    display: flex;
    justify-content: center;
  }
  .banner__img img {
    width: 60%;
  }
}
@media (max-width: 425px) {
  .banner__logo p {
    display: none;
  }
}
.footer {
  background: url("../img/bg/footer-bg.png") no-repeat left;
  background-size: inherit;
}
.footer .info {
  font-size: 16px;
  line-height: 18px;
  color: #8A8A8A;
}
.footer__up {
  padding: 28px 20px;
  background: #2A2A2A;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__up_left, .footer__up_right {
  display: flex;
  align-items: center;
  gap: 40px;
}
.footer__nav > ul {
  display: flex;
  justify-content: space-between;
}
.footer__nav > ul > li > a {
  display: block;
  color: #8A8A8A;
  margin-bottom: 14px;
}
.footer__nav > ul > li > a ~ ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__nav > ul > li > a ~ ul li a {
  transition: color 0.3s;
}
.footer__nav > ul > li > a ~ ul li a:hover {
  color: #FAAB01;
}

@media (max-width: 1024px) {
  .footer__up {
    flex-direction: column;
    gap: 24px;
  }
  .footer__up_left, .footer__up_right {
    flex-direction: column;
    gap: 24px;
  }
  .footer__nav ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}
@media (max-width: 425px) {
  .footer__nav ul {
    grid-template-columns: 1fr;
  }
}
.type-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.type-slider {
  display: none;
}
.type__buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.type__button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 32px;
  background: #1B1B1B;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}
.type__button h3 {
  display: flex;
  align-items: center;
  gap: 20px;
}
.type__button h3 span {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 14px;
  color: #2A2A2A;
  background: linear-gradient(90deg, #F6D365 0%, #FDA085 100%);
  padding: 3px 10px;
  border-radius: 10px;
  transition: background-color 0.3s, color 0.3s;
}
.type__button.active {
  color: #1B1B1B;
  background: linear-gradient(90deg, #F6D365 0%, #FDA085 100%);
}
.type__button.active > span {
  opacity: 0;
}
.type__button.active h3 span {
  background: #1B1B1B;
  color: #FFFFFF;
}
.type__tariffs {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  max-height: 404px;
  height: 404px;
}
.type__tariff {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 32px;
  background: #1B1B1B;
  border-radius: 5px;
  width: -moz-available;
  width: -webkit-fill-available;
  width: fill-available;
  height: 356px;
  transform: translateY(100%);
  z-index: 2;
  opacity: 0;
  transition: all 0.7s;
}
.type__tariff_head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 16px;
}
.type__tariff ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: disc;
  font-size: 16px;
  line-height: 18px;
  color: #BABABA;
  margin-bottom: 24px;
  padding-left: 20px;
}
.type__tariff ul li.minus {
  color: #454545;
}
.type__tariff.active {
  opacity: 1;
  transform: translateY(0);
  z-index: 3;
}

@media (max-width: 1200px) {
  .type__tariffs {
    max-height: max-content;
    height: auto;
  }
}
@media (max-width: 1124px) {
  .type-wrap {
    display: none;
  }
  .type-slider {
    display: block;
    overflow: hidden;
  }
  .type-slider .awards__button {
    display: flex;
    justify-content: center;
    gap: 20px;
    top: 0;
    height: 60px;
  }
  .type-slider .awards__button .swiper-button-disabled {
    opacity: 0.2;
  }
  .type__tariff {
    position: relative;
    transform: translateY(0);
    min-height: 416px;
    opacity: 1;
  }
  .type__tariff_head {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
	.type__tariff {
		min-height: 374px;
	}
}

.instr-list__tables {
  font-family: "Roboto", sans-serif;
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 5px;
  overflow-x: auto;
  border-bottom: 5px solid #2A2A2A;
  border-left: 5px solid #2A2A2A;
  border-right: 5px solid #2A2A2A;
  color: #BABABA;
}

.instr-list__tables_button {
  display: flex;
  justify-content: space-between;
  background: #2A2A2A;
}

.instr-list__tables_button button {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  line-height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-grow: 1;
  background: var(--beige);
  padding: 21px 31px;
  cursor: pointer;
  color: #8A8A8A;
  border-bottom: 3px solid #8A8A8A;
  transition: background 0.3s, color 0.3s;
}

.instr-list__tables_button button svg path {
  transition: all 0.3s;
}

.instr-list__tables_button button:hover {
  color: #FFFFFF;
}

.instr-list__tables_button button:hover svg path {
  fill: #FFFFFF;
}

.instr-list__tables_button button.active {
  color: #FAAB01;
  border-color: #FAAB01;
}

.instr-list__tables_button button.active svg path {
  fill: #FAAB01;
}

.instr-list__table {
  display: none;
  min-width: 1035px;
  width: 100%;
  background: var(--white);
  border-spacing: 0px;
}

.instr-list__table th {
  padding: 22px 20px;
  text-align: left;
  color: inherit;
}

.instr-list__table td {
  padding: 12px 20px;
  font-size: 16px;
  line-height: 1.5;
  vertical-align: middle;
}

.instr-list__table tr:not(:last-child) td, .instr-list__table th {
  border-bottom: 4px solid #2A2A2A;
}

.instr-list__table tr {
  transition: background-color 0.3s;
}

.instr-list__table tr:hover {
  background-color: #242321;
}

.instr-list__table td:first-child span {
  display: block;
}

.instr-list__table td:first-child span:first-child {
  color: #9C9C9C;
}

.instr-list__table td:last-child {
  display: flex;
  align-items: center;
  width: auto;
  white-space: nowrap;
}

.instr-list__table td:last-child span {
  display: inline-block;
}

.instr-list__table td:last-child span:first-child {
  margin-right: 65px;
  width: 120px;
}

.instr-list__table.active {
  display: table;
}

.instr-list__table.small tr:nth-child(n+7) {
  display: none;
}

.instr-list__table.small.list-open tr:nth-child(n+7) {
  display: table-row;
}

.instr-btn {
  display: inline-block;
  padding: 10px 20px;
  color: var(--white);
  border-radius: 30px;
  font-size: 16px;
  line-height: 1.25;
}

.instr-btn:hover {
  color: #fff;
}

.instr-btn_green {
  background-color: #39BF23;
}

.instr-btn_green:hover {
  background-color: #31A61E;
}

.instr-btn_red {
  margin-left: 10px;
  background-color: #DD4461;
}

.instr-btn_red:hover {
  background-color: #CC3B56;
}

.instr-list__more {
  border-radius: 0 0 5px 5px;
  border-top: 0;
  width: 100%;
}

.instr-list__more a {
  border-radius: 0 0 5px 5px;
  display: none;
  width: -moz-available;
  width: -webkit-fill-available;
  width: fill-available;
  padding: 22px 20px;
  background-color: #2A2A2A;
  font-size: 16px;
  line-height: 0.93;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s;
}

.instr-list__more a::after {
  content: "";
  margin-left: 10px;
  margin-bottom: 3px;
  display: block;
  width: 8px;
  height: 8px;
  border-left: 2px solid #FFFFFF;
  border-bottom: 2px solid #FFFFFF;
  transform: rotate(-45deg);
  transition: 0.2s;
}

.instr-list__more a.show {
  display: flex;
  justify-content: center;
  transition: color 0.3s;
}

.instr-list__more a.show:hover {
  color: #FAAB01;
}

.instr-list__more a.active::after {
  transform: rotate(135deg);
  margin-top: 4px;
}

.instr-list__more a.show:hover::after {
  border-color: #FAAB01;
}

@media (hover) {
  .instr-list__tabs li:hover button {
    background-color: #9C9C9C;
  }
}
@media (max-width: 1220px) {
  .trade-items {
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 24px;
  }
  .trade__item {
    width: 100%;
  }
  .trade__item:nth-child(1) {
    margin-bottom: 0;
  }
  .instr-list__tables {
    overflow: scroll;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  .instr-list__tables_button {
    min-width: 1036px;
  }
}
.platform__text {
  width: 60%;
  text-align: center;
  margin: 0 auto;
}
.platform__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: auto;
  gap: 32px;
}
.platform__item {
  position: relative;
  padding: 32px 26px;
  background: #1B1B1B;
  border-radius: 5px;
}
.platform__item_head {
  display: flex;
  align-items: center;
  gap: 20px;
}
.platform__item_head img {
  width: 30px;
  height: 30px;
}
.platform__item_img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 190px;
}
.platform__item:nth-child(1) {
  grid-column: 1/2;
  grid-row: 1/2;
}
.platform__item:nth-child(2) {
  grid-column: 2/3;
  grid-row: 1/2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.platform__item:nth-child(2) .btn-hidden {
  margin-top: auto;
}
.platform__item:nth-child(3) {
  grid-column: 1/3;
  grid-row: 2/3;
}
.platform__item:nth-child(3) .platform__item_img {
  right: 30px;
  bottom: 0;
  width: 240px;
}
.platform__item:nth-child(1) p, .platform__item:nth-child(2) p {
  width: 70%;
}
.platform__item:nth-child(3) > p {
  width: 40%;
}
.platform__buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.platform__item_qr {
  display: flex;
  text-align: center;
  gap: 32px;
  position: absolute;
  right: 25%;
  top: 25%;
  height: 150px;
}

@media (max-width: 1200px) {
	.platform__item_qr {
		display: none;
	}
}

@media (max-width: 1024px) {
  .platform__text {
    width: 100%;
  }
  .platform__grid {
    grid-template-columns: 1fr;
  }
  .platform__item:nth-child(1), .platform__item:nth-child(2), .platform__item:nth-child(3) {
    grid-column: auto;
    grid-row: auto;
  }
}
@media (max-width: 768px) {
  .platform__item .platform__item_img {
    display: none;
  }
  .platform__item:nth-child(3):after {
    content: none;
  }
  .platform__item:nth-child(1) p, .platform__item:nth-child(2) p, .platform__item:nth-child(3) p {
    width: 100%;
  }
  .platform__buttons {
    flex-direction: column;
  }
}
.start-trading__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 100px;
}
.start-trading__item {
  text-align: center;
}
.start-trading__item_num:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.start-trading__item_num {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  margin: 0 auto 16px;
}
.start-trading__item_num span {
  font-size: 64px;
  line-height: 64px;
}
.start-trading__item:not(:last-child) .start-trading__item_num:after {
  content: "";
  position: absolute;
  right: -180%;
  top: 50%;
  display: block;
  width: 170%;
  height: 1px;
  background: #8A8A8A;
}
.start-trading__item:nth-child(1) .start-trading__item_num:before {
  background: url("../img/svg/circle1.svg") no-repeat center top;
  background-size: contain;
}
.start-trading__item:nth-child(2) .start-trading__item_num:before {
  background: url("../img/svg/circle2.svg") no-repeat center top;
  background-size: contain;
}
.start-trading__item:nth-child(3) .start-trading__item_num:before {
  background: url("../img/svg/circle3.svg") no-repeat center top;
  background-size: contain;
}

@media (max-width: 1024px) {
  .start-trading__wrap {
    grid-template-columns: 1fr;
    gap: 80px;
  }
  .start-trading .start-trading__item:not(:last-child) .start-trading__item_num:after {
    content: "";
    position: absolute;
    right: 26%;
    top: 230%;
    display: block;
    width: 50%;
    transform: rotate(90deg);
    height: 1px;
    background: #8A8A8A;
  }
  .start-trading__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 240px;
  }
  .start-trading__item_num {
    width: 120px;
    height: 120px;
  }
  .start-trading__item_num span {
    font-size: 40px;
    line-height: 40px;
  }
  .start-trading__item p {
    width: 290px;
    margin: 0;
  }
}
@media (max-width: 768px) {
  .start-trading .start-trading__item:not(:last-child) .start-trading__item_num:after {
    top: 217%;
  }
  .start-trading__item p {
    width: 260px;
    margin: 0;
  }
}
@media (max-width: 560px) {
  .start-trading .start-trading__item:not(:last-child) .start-trading__item_num:after {
    top: 220%;
  }
  .start-trading .start-trading__item:nth-child(2) .start-trading__item_num::after {
    top: 215%;
  }
}
@media (max-width: 415px) {
  .start-trading .start-trading__item:not(:last-child) .start-trading__item_num:after {
    top: 220%;
  }
  .start-trading .start-trading__item:nth-child(2) .start-trading__item_num::after {
    top: 220%;
  }
}
.accordion__wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.accordion__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #2A2A2A;
  border-radius: 5px;
  padding: 18px 24px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.accordion__head h3 {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 90%;
  transition: color 0.3s;
}
.accordion__head h3 span {
  color: #FAAB01;
  transition: color 0.3s;
}
.accordion__head svg {
  transition: all 0.3s;
}
.accordion__head:hover {
  background: #242321;
}
.accordion__content {
  overflow: hidden;
  max-height: 0;
}
.accordion__content p {
  padding: 18px 24px;
}
.accordion__item.active .accordion__head {
  background: linear-gradient(90deg, #F6D365 0%, #FDA085 100%);
}
.accordion__item.active .accordion__head h3, .accordion__item.active .accordion__head span {
  color: #1B1B1B;
}
.accordion__item.active .accordion__head svg {
  transform: rotate(180deg);
}
.accordion__item.active .accordion__head svg path {
  stroke: #2A2A2A;
}
.accordion__item.active .accordion__content {
  max-height: 500px;
}

.news-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
.news__item_img {
  overflow: hidden;
  border-radius: 5px;
  max-height: 150px;
  height: 150px;
}
.news__item_img img {
  width: 100%;
  height: inherit;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s;
}
.news__item h3 {
  font-size: 20px;
  line-height: 24px;
  cursor: pointer;
  transition: color 0.3s;
}
.news__item h3:hover {
  color: #FAAB01;
}
.news__item p {
  font-size: 16px;
  line-height: 18px;
}
.news__item span {
  font-size: 14px;
  color: #8A8A8A;
}
.news__item:hover img {
  scale: 1.2;
}
.news__pag ul {
  display: flex;
  align-items: center;
  gap: 10px;
}
.news__pag ul a, .news__pag ul li, .news__pag ul .extend {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #1B1B1B;
  border-radius: 32px;
  transition: color 0.3s;
}
.news__pag ul a:hover {
  color: #FAAB01;
}
.news__pag ul li.active {
  background: #FAAB01;
  color: #1B1B1B;
}

@media (max-width: 1200px) {
  .news-wrap {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .news-wrap {
    grid-template-columns: 1fr;
  }
}
.grid-bg {
  background: url("../img/bg/grid-bg.png") no-repeat center;
  background-size: cover;
}
.grid-bg__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.grid-bg__item {
  background: #1B1B1B;
  border-radius: 5px;
  padding: 32px;
  text-align: center;
}
.grid-bg__item_text {
  width: 70%;
  margin: 0 auto;
}
.grid-bg__item:nth-child(3) {
  grid-column-start: 1;
  grid-column-end: 3;
}

@media (max-width: 1024px) {
  .grid-bg__wrap {
    grid-template-columns: 1fr;
  }
  .grid-bg__item:nth-child(3) {
    grid-column-start: auto;
    grid-column-end: auto;
  }
  .grid-bg__item_text {
    width: 100%;
  }
}
.about-text__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

@media (max-width: 1024px) {
  .about-text__wrap {
    grid-template-columns: 1fr;
  }
  .about-text__img {
    display: flex;
    justify-content: center;
    order: 1;
  }
  .about-text__img img {
    width: 60%;
  }
}
@media (max-width: 768px) {
  .about-text__img img {
    width: 100%;
  }
}
.awards {
  position: relative;
}
.awards__item {
  padding: 36px 40px;
  border-radius: 5px;
  background: #2A2A2A;
}
.awards__item img {
  width: 100%;
  max-height: 100px;
  object-fit: contain;
}
.awards__button {
  position: absolute;
  top: 49%;
  left: -5%;
  width: 110%;
  height: 100px;
}
.awards__button .swiper-button-prev:after, .awards__button .swiper-button-next:after {
  content: none;
}
.swiper-button-next svg g path, .swiper-button-prev svg g path {
	transition: all 0.3s;
}
.swiper-button-next:hover svg g path, .swiper-button-prev:hover svg g path {
	stroke: #FAAB01;
}

@media (max-width: 1200px) {
  .awards__button {
    width: 100%;
    left: 0;
  }
}
@media (max-width: 1024px) {
  .awards__button {
    position: relative;
    top: -140px;
    left: 0;
    width: 100%;
  }
  .awards__button img {
    width: 40px;
    height: 40px;
  }
}
.contact__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  padding: 32px 24px;
  background: #1B1B1B;
  border-radius: 5px;
}
.contact__item ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 5px;
}
.contact__item ul li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact__item ul li img {
  width: 40px;
  height: 40px;
}
.contact__item form {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  gap: 20px;
}
.contact__item form .contact__input {
  width: 100%;
}
.contact__item form .contact__input label {
  display: block;
  margin-bottom: 6px;
}
.contact__item form .contact__input input, .contact__item form .contact__input textarea {
  width: -moz-available;
  width: -webkit-fill-available;
  width: fill-available;
  border: 0;
  border-radius: 5px;
  background: #2A2A2A;
  padding: 18px 10px;
  margin-top: 6px;
}
.contact__item form .contact__checkbox {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.contact__item form .contact__checkbox .wpcf7-list-item {
  margin: 0;
}
.contact__item form .contact__checkbox .wpcf7-list-item label {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.wpcf7-acceptance input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.wpcf7-acceptance .wpcf7-list-item-label::before {
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  flex-grow: 0;
  border-radius: 0.25em;
  margin-right: 0.5em;
  margin-bottom: -2px;
  background: #2A2A2A;
  cursor: pointer;
}
.wpcf7-acceptance input:checked ~ .wpcf7-list-item-label::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px' width='100' height='100' viewBox='0,0,256,256'%3E%3Cg fill='%23FAAB01' fill-rule='nonzero'%3E%3Cg transform='scale(8.53333,8.53333)'%3E%3Cpath d='M26.98047,5.99023c-0.2598,0.00774 -0.50638,0.11632 -0.6875,0.30273l-15.29297,15.29297l-6.29297,-6.29297c-0.25082,-0.26124 -0.62327,-0.36647 -0.97371,-0.27511c-0.35044,0.09136 -0.62411,0.36503 -0.71547,0.71547c-0.09136,0.35044 0.01388,0.72289 0.27511,0.97371l7,7c0.39053,0.39037 1.02353,0.39037 1.41406,0l16,-16c0.29576,-0.28749 0.38469,-0.72707 0.22393,-1.10691c-0.16075,-0.37985 -0.53821,-0.62204 -0.9505,-0.60988z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	background-position: center;
    background-size: contain;
}

@media (max-width: 1024px) {
  .contact__wrap {
    display: flex;
    flex-direction: column;
    width: -moz-available;
    width: -webkit-fill-available;
    width: fill-available;
  }
  .contact__item_man {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
    object-position: center;
  }
  .contact__item:nth-child(1) {
    order: 1;
  }
}
.text-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.text-acc {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}
.text-acc .accordion__wrap {
  width: 65%;
}
.text-acc .text-acc_img {
  display: grid;
  width: 35%;
  min-height: 785px;
}
.text-acc .text-acc_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 5px;
}
.text__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
.text__item {
  padding: 24px;
  border-radius: 5px;
  background: #1B1B1B;
}
.text__item img {
  width: 40px;
  height: 40px;
}
.text ul {
  list-style: disc;
  padding-left: 20px;
}

@media (max-width: 768px) {
  .text-wrap {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .text__items {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .text-acc {
    flex-direction: column;
  }
  .text-acc .accordion__wrap, .text-acc .text-acc_img {
    width: 100%;
  }
  .text-acc .text-acc_img {
    display: flex;
    justify-content: center;
	min-height: 0;
  }
  .text-acc .text-acc_img img {
    width: 100%;
    max-height: 500px;
  }
}
.error h1 {
  font-size: 96px;
  line-height: 96px;
}
.error-wrap {
  margin-top: 80px;
  padding: 112px 0;
  background: url("../img/bg/error-bg.png") no-repeat center;
  background-size: contain;
}

@media (max-width: 1024px) {
  .error h1 {
    font-size: 50px;
    line-height: 50px;
  }
  .error-wrap {
    padding: 80px 0;
  }
}

/*# sourceMappingURL=style.css.map */
