@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
:root {
  --light-blue: #f5f5f5;
  --blue-gradient-old: linear-gradient(135deg, white 0%, var(--light-blue) 100%);
  --body-background: #f9fafb;
}

body {
  background-color: var(--body-background);
  font-family: Inter, Geist, Geist Fallback;
  color: #475569;
}

div.landing {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 100px;
  padding: 100px 0;
}
@media (max-width: 1000px) {
  div.landing {
    padding: 20px;
    max-width: 100%;
    top: 0;
  }
}
div.landing h1 {
  font-size: 2.5rem;
  font-weight: 600;
  max-width: 584px;
}
@media (max-width: 1000px) {
  div.landing h1 {
    font-size: 1.5rem;
  }
}
div.landing h2 {
  font-size: 24px;
  font-weight: 600;
}
div.landing a {
  color: black;
}
div.landing a:hover {
  color: #444444;
}
div.landing a.apply {
  background: var(--header-color);
  box-shadow: none;
  border: none;
  font-weight: 400;
  padding: 12px 24px;
  border-radius: 12px;
}
div.landing a.apply:hover {
  background: #232b2f;
}
@media (max-width: 1000px) {
  div.landing a.apply {
    width: 100%;
  }
}
div.landing .white {
  background: white;
  border-radius: 16px;
  border: 1px solid #dddddd;
  box-shadow: 0 0 64px rgba(0, 0, 0, 0.1);
  padding: 32px;
}
div.landing section .wrapper {
  padding: 40px;
}
@media (max-width: 1000px) {
  div.landing section .wrapper {
    padding: 25px;
  }
}
div.landing .blocks-menu {
  display: flex;
  border-bottom: 1px solid #cccccc;
  overflow-x: auto;
  background-color: var(--body-background);
  position: sticky;
  top: 0;
  z-index: 9;
}
div.landing .blocks-menu > a {
  padding: 16px;
  cursor: pointer;
  white-space: nowrap;
}
div.landing .blocks-menu > a:hover {
  color: black;
}

section {
  clear: both;
}

section.hero-broker h2 {
  font-size: 18px;
  color: #475569;
  font-weight: 400;
}

section.why .why-items {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 32px;
  justify-content: space-between;
  overflow-x: auto;
}
section.why .why-items .why-item {
  white-space: nowrap;
}
@media (max-width: 1000px) {
  section.why .why-items .why-item {
    padding-bottom: 8px;
  }
}
section.why .why-items .why-item h4 {
  text-align: start;
  font-size: 12px;
  color: #777777;
  margin-bottom: 8px;
}

section.about {
  color: #05191f;
}
section.about > div {
  display: flex;
  align-items: center;
}
@media (max-width: 760px) {
  section.about > div {
    flex-wrap: wrap;
  }
}
section.about > div > * {
  flex-grow: 1;
  flex-shrink: 1;
}
section.about > div img {
  margin: 0 0 0 20px;
  max-width: 50%;
}
@media (max-width: 760px) {
  section.about > div img {
    margin: 20px 0 0 0;
    width: 100%;
    max-width: 100%;
  }
}
section.about h1 {
  color: #4f626c;
  margin-bottom: 15px;
}

section.brokers {
  background: var(--light-blue);
}
section.brokers .brokers {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
@media (max-width: 1000px) {
  section.brokers .brokers {
    grid-template-columns: repeat(2, 1fr);
  }
}
section.brokers .brokers a {
  display: flex;
  gap: 8px;
  align-items: center;
  color: inherit !important;
}
section.brokers .brokers a img {
  width: 32px;
  height: 32px;
  border: 1px solid #cccccc;
}

section.withdrawal div.paysystems {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
section.withdrawal div.paysystems > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  position: relative;
  height: 130px;
}
section.withdrawal div.paysystems > div img {
  vertical-align: top;
  margin: 20px;
}
section.withdrawal div.paysystems > div img.w200 {
  max-width: 200px;
}
section.withdrawal div.paysystems > div img.h35 {
  max-height: 35px;
}
@media (max-width: 1000px) {
  section.withdrawal div.paysystems > div img {
    margin: 10px;
  }
}
section.withdrawal div.paysystems > div .fee {
  font-weight: bold;
}

section.steps .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 12px;
  margin-bottom: 32px;
}
section.steps .grid .item .img-container {
  border-radius: 100%;
  background-color: white;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
  box-shadow: 0 0 64px rgba(0, 0, 0, 0.1);
  border: 1px solid #dddddd;
  margin-bottom: 16px;
}
section.steps .grid .item .img-container img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
section.steps .grid .item .step {
  text-transform: uppercase;
  color: #777777;
}
section.steps .grid .item .title {
  flex: 1;
  font-weight: 700;
}
section.steps .grid .item .description {
  color: var(--muted);
  font-weight: 400;
  margin-top: 6px;
}
section.steps .final {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

section.proofs {
  background: var(--light-blue);
}
section.proofs .wrapper {
  padding: 24px !important;
}
section.proofs .grid {
  display: flex;
  justify-content: center;
  gap: 64px;
}
@media (max-width: 1000px) {
  section.proofs .grid {
    flex-direction: column;
    gap: 16px;
  }
}
section.proofs .grid .item {
  display: flex;
  align-items: center;
}
@media (max-width: 1000px) {
  section.proofs .grid .item {
    flex-direction: column;
    gap: 16px;
  }
}
section.proofs .grid .item img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
@media (max-width: 1000px) {
  section.proofs .grid .item img {
    height: unset;
  }
}
section.howitworks {
  background: white;
}
section.howitworks img {
  width: 100%;
  max-width: 600px;
}
section.howitworks > div.wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
section.howitworks .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 12px;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  section.howitworks .grid {
    display: flex;
    flex-direction: column;
  }
}
section.howitworks .grid .item {
  padding: 24px;
  background: var(--light-blue);
  border: 1px solid rgba(255, 255, 255, 0.6);
}
section.howitworks .grid .item img {
  width: 128px;
  height: 128px;
  object-fit: contain;
}
section.howitworks .grid .item .title {
  flex: 1;
  font-weight: 700;
  text-align: center;
  min-height: 46px;
}
section.howitworks .grid .item .description {
  color: var(--muted);
  font-weight: 400;
  margin-top: 6px;
}
@media (max-width: 1000px) {
  section.howitworks img {
    width: 100%;
  }
}

.contacts-popup {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100000;
}
.contacts-popup .wrapper {
  background-color: #41494f;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4666666667);
  color: white;
  padding: 30px 60px 30px 30px;
  margin: 20px;
}
.contacts-popup .wrapper input {
  display: block;
  margin-top: 20px;
  width: 200px;
}
.contacts-popup .wrapper .thanks {
  display: none;
}
.contacts-popup #contacts-popup-close {
  color: #b1bcca;
  position: absolute;
  right: 10px;
  cursor: pointer;
}
.contacts-popup #contacts-popup-close:hover {
  color: white;
}

section.faq > div {
  display: flex;
}
section.faq > div div:first-of-type {
  flex-grow: 1;
}
section.faq .item {
  border-bottom: 1px solid #cccccc;
}
section.faq .item h4 {
  padding: 12px 0;
  cursor: pointer;
  font-size: 12pt;
}
section.faq .item h4 > :first-of-type:hover {
  text-decoration: underline;
}
section.faq .item .content {
  display: none;
  padding-bottom: 16px;
}
section.faq .item .content img {
  max-width: 100%;
}

section.advantages {
  padding: 20px;
  background: var(--light-blue);
  text-align: center;
}
section.advantages p.section-description {
  color: var(--muted);
}
section.advantages .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 12px;
}
@media (max-width: 1000px) {
  section.advantages .grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
section.advantages .grid .item {
  display: flex;
  gap: 14px;
  padding: 12px;
  background: white;
  transition: transform 0.5s ease;
}
section.advantages .grid .item:hover {
  transform: scale(1.01);
}
section.advantages .grid .item img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
section.advantages .grid .item .content {
  flex: 1;
  font-weight: 700;
  text-align: start;
}
section.advantages .grid .item .content .description {
  color: var(--muted);
  font-weight: 400;
  margin-top: 6px;
}

hr.strip {
  height: 12px;
  background-color: #D8EBF6;
  border: none;
  margin: 16px 0;
}

section.rebates h3 {
  font-weight: 100;
  font-size: 20px;
  margin-top: 40px;
}
@media (max-width: 1000px) {
  section.rebates .table-wrapper {
    overflow-x: scroll;
  }
}
section.rebates .table-wrapper table {
  box-shadow: 0 0 64px rgba(0, 0, 0, 0.1);
  padding: 32px;
  width: 100%;
  border: none;
  background-color: white;
}
section.rebates .table-wrapper table tr {
  border: none;
}
section.rebates .table-wrapper table tr:first-of-type {
  text-transform: uppercase;
  font-size: 14px;
  background-color: #F1F5F9;
  border-bottom: 1px solid #dddddd;
}
section.rebates .table-wrapper table tr:first-of-type td, section.rebates .table-wrapper table tr:first-of-type p {
  font-size: 14px !important;
  padding: 16px;
}

section.conditions .rebate-conditions-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
section.conditions .rebate-conditions-grid > div {
  display: flex;
  justify-content: space-between;
  padding: 16px 24px !important;
  align-items: center;
}
section.conditions .rebate-conditions-grid > div div:last-of-type {
  background-color: #f1f5f9;
  border: 1px solid #d4e1ee;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 12px;
}

section.rebate-for {
  background-color: white;
}
section.rebate-for span.rebate-for {
  display: inline;
}
section.rebate-for span.rebate-for > div {
  display: inline;
}
.partner-code {
  position: relative;
  display: inline-block;
  width: 100%;
}
.partner-code span.copy-code {
  position: absolute;
  right: 8px;
  top: 4px;
  cursor: pointer;
}
.partner-code span.gradient {
  width: 60px;
  position: absolute;
  right: 1px;
  bottom: 1px;
  top: 1px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgb(255, 255, 255) 30%, rgb(255, 255, 255) 100%);
  display: block;
}
.partner-code input {
  width: 100%;
}

section.instruments {
  padding: 40px;
  text-align: center;
}
section.instruments .instruments-grid {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
section.instruments .instruments-grid > div {
  padding: 16px;
  background: var(--light-blue);
  flex-grow: 1;
  flex-basis: 0;
  align-items: center;
  text-align: center;
}

@media (max-width: 1000px) {
  section.schedule .table-wrapper {
    overflow-x: scroll;
  }
}
section.schedule .table-wrapper table {
  box-shadow: 0 0 64px rgba(0, 0, 0, 0.1);
  padding: 32px;
  width: 100%;
  border: none;
  background-color: white;
}
section.schedule .table-wrapper table tr {
  border: none;
}
section.schedule .table-wrapper table tr td {
  font-size: 14px !important;
  padding: 16px;
}
section.schedule .table-wrapper table tr td:first-of-type {
  background-color: #F1F5F9;
}

section.calc .calc-container {
  display: flex;
  gap: 32px;
}
@media (max-width: 1000px) {
  section.calc .calc-container {
    flex-direction: column;
  }
}
section.calc .calc-container > div {
  flex-basis: 0;
  flex-grow: 1;
}
section.calc .calc-container > div label {
  display: block;
}
section.calc .calc-container > div select, section.calc .calc-container > div input {
  display: block;
  padding: 8px;
  border-radius: 8px;
  margin-bottom: 16px;
  width: 100%;
  height: 40px;
  border: 1px solid #cccccc;
}
section.calc .calc-container > div h3 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #94a3b8;
  text-transform: uppercase;
}
section.calc .calc-container > div .info-block {
  margin-top: 16px;
  background-color: #f1f5f9;
  border: 1px solid #e2e8f0;
  padding: 8px 16px;
  border-radius: 8px;
}
section.calc .calc-container > div .results > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
section.calc .calc-container > div .results > div > div:last-of-type {
  font-size: 20px;
  font-weight: bold;
}
section.calc .example {
  margin-top: 32px;
}
section.calc .example h3 {
  font-size: 16px;
}
section.calc .example .table-wrapper {
  overflow-x: scroll;
}
section.calc .example .table-wrapper table {
  width: 100%;
}

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