@font-face {
  font-family: "Inter";
  src: url('../fonts/Inter_18pt-Regular.ttf');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url('../fonts/Inter_18pt-Medium.ttf');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url('../fonts/Inter_18pt-SemiBold.ttf');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url('../fonts/Inter_18pt-Bold.ttf');
  font-weight: 700;
  font-display: swap;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #EFEEEE;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

.container {
  max-width: 1360px;
  margin: 0 auto;
}

.main-logo-top {
  padding: 20px 0;
}

header {
  background: url("../img/top-bg.png") no-repeat;
  background-position: top right;
  background-size: 57%;
  padding-bottom: 690px;
}

.logo a {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
}

.logo span {
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 24px;
  color: #353535;
}

main {
  margin-top: -680px;
}

.main-logo {
  display: flex;
  justify-content: start;
}

.broker {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.broker-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: end;
}

.broker-header h2 {
  width: 100%;
  max-width: 809px;
  font-size: 64px;
  font-weight: 700;
  color: #fff;
  line-height: 130%;
  text-align: right;
}

.broker-header p{
  max-width: 548px;
  width: 100%;
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  line-height: 150%;
  text-align: right;
  letter-spacing: -0.01em;
  margin-top: 8px;
}

.broker-table-holder {
  position: relative;
  z-index: 3;
  margin-top: 86px;
  width: 100%;
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 30px;
}

.broker-table-holder-item-wrap {
  display: flex;
}

.broker-table-holder-item {
  width: 100%;
  background-color: #fff;
  display: flex;
  padding: 48px 36px;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  box-shadow: 
  0px 2px 4px 0px #00000026,
  0px 7px 7px 0px #00000021,
  0px 15px 9px 0px #00000014,
  0px 28px 11px 0px #00000005,
  0px 43px 12px 0px #00000000;

}

.broker-table-holder-item-logo {
  width: 100%;
  max-width: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  gap: 14px;
}

.broker-table-holder-item-adv {
  width: 100%;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.broker-table-holder-item-adv-block {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 4px 6px;
  gap: 6px;
  justify-content: flex-start;
}

.broker-table-holder-item-adv-block span {
  font-size: 16px;
  line-height: 120%;
  font-weight: 400;
  color: #272727;
}

.broker-table-holder-item-assets {
  width: 100%;
  max-width: 229px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 44px;
}

.broker-table-holder-item-assets-block {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #E7E7E7;
}

.broker-table-holder-item-assets-block .text {
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  color: #272727;
}

.broker-table-holder-item-assets-block .number {
  font-size: 24px;
  font-weight: 600;
  line-height: 26px;
  letter-spacing: -0.01em;
  color: #333231;
}

.broker-table-holder-item-link {
  width: 100%;
  max-width: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}

.partners {
  display: flex;
  gap: 12px;
}

.broker-table-holder-item-link a {
  align-self: stretch;
  width: 100%;
  font-size: 18px;
  font-weight: 700;
  background-color: #3ADC00;
  line-height: 24px;
  color: #fff;
  text-align: center;
  padding: 14px; 
  transition: all ease 0.3s;
  text-transform: uppercase;
}

.broker-table-holder-item-link a:hover {
  background-color: rgb(40, 97, 19);
}

.faq-block-holder-wrap {
  padding: 56px 0;
  background: linear-gradient(180deg, #9F9F9F 0%, #434343 100%);
}

.faq-block-holder {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.faq-block-holder h2 {
  font-size: 36px;
  line-height: 120%;
  font-weight: 600;
  text-align: center;
  color: #fff;
}

.faq-block-holder-items {
  margin-top: 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1024px;
}

.faq-block-questions-item {
  width: 100%;
  cursor: pointer;
}

.faq-block-questions-item-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid transparent;
  padding: 32px;
  transition: all ease .3s;
  background: #272727;
}

.faq-block-questions-item-icon {
  width: 100%;
  max-width: 34px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
  transition: all ease .3s;
  border: 3px solid #03BF35;
}

.faq-block-questions-item-label {
  background-color: #272727;
  font-weight: 600;
  font-size: 22px;
  line-height: 120%;
  transition: all ease .3s;
  border: 1px solid transparent;
  color: #fff;
}

.faq-block-questions-item-bottom {
  height: 0;
  color: #383737;
  background-color: #fff;
  font-size: 18px;
  line-height: 150%;
  font-weight: 400;
  overflow: hidden;
  opacity: 0;
  transition: all ease 0.3s;
}

.faq-block-questions-item.active .faq-block-questions-item-icon {
  background-image: url("../img/green-dot.png");
}

.faq-block-questions-item.active .faq-block-questions-item-bottom {
  padding: 32px;
  height: auto;
  opacity: 1;
}

.footer-top {
  padding: 106px 0;
  background: #272727;
}

.footer-top-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-top-content-main {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.footer-top-content-main .logo {
  width: 100%;
  max-width: 173px;
}

.footer-top-content-main .logo span {
  color: #fff;
}

.footer-top-content-main .footer-block-text-item {
  width: 100%;
  max-width: 1102px;
}

.footer-content-top-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.footer-content-top-links a {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  line-height: 24px;
}

.footer-middle-content {
  width: 100%;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-middle-content-items {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 84px
}
.footer-block-text-item h3 {
  color: #fff;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
}

.footer-block-text-item p {
  color: #fff;
  margin-top: 15px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
}

.footer-bottom {
  padding: 30px 0;
  background-color: #141414;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-bottom-content p {
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  color: #fff;
}

.footer-block-images {
  margin-top: 59px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
}

@media screen and (max-width: 1360px) {
  .container {
    max-width: 90%;
  }

  .footer-bottom-content {
    flex-direction: column;
    align-items: center;
  }

  .broker-wrapper {
    background: none;
  }

  .broker-header {
    align-items: center;
  }
}

@media screen and (max-width: 1280px) {
  .broker-table-holder-number {
    display: none;
  }

  .footer-middle-content-items {
    flex-direction: column;
    flex-wrap: nowrap;
  }

  .footer-block-text-item {
    max-width: 100%;
  }
}

@media screen and (max-width: 992px) {
  .broker-table-holder-item {
    flex-direction: column;
    align-items: center;
    padding: 20px;
    max-width: 385px;
  }

  .broker-table-holder-item-wrap {
    width: 100%;
    max-width: 380px;
  }

  .broker-table-holder {
    justify-items: center;
  }

  .footer-top-content {
    flex-direction: column;
    align-items: center;
  }

  .broker-header,
  .broker-header p {
    max-width: 100%;
  }

  .broker-header h2,
  .broker-header p {
    text-align: center;
    color: #272727;
  }

  .footer-middle-content-items {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .broker-header {
    flex-direction: column;
    align-items: center;
  }

  .broker-table-holder-item-logo {
    align-self: center;
  }

  header {
    background: none;
  }

}

@media screen and (max-width: 768px) {
  .footer-content-top {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .footer-block-images {
    justify-content: center;
  }

  .footer-content-middle {
    flex-direction: column;
    align-items: center;
  }

  .footer-content-middle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .broker-header {
    margin-left: 0;
  }

  .broker-header h2 {
    font-size: 40px;
  }

  .footer-top-content-main {
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 480px) {
  .footer-block-images,
  .footer-content-top-links {
    flex-direction: column;
    align-items: center;
  }

  .footer-top-content-wrap {
    flex-direction: column;
    align-items: center;
  }

  .faq-block-questions-item-top {
    padding: 18px 24px;
  }

  .faq-block-questions-item-label {
    font-size: 20px;
  }

  .faq-block-questions-item.active .faq-block-questions-item-bottom {
    padding: 20px;
  }

  .footer-bottom-content p {
    text-align: center;
  }
}


.policy-section{
  padding: 50px 0;
}

.policy-section .section-heading{
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 30px;
}

.policy-section .card-text{
  font-size: 16px;
  font-weight: 400;
  margin-top: 12px;
  line-height: 1.5;
}

.policy-section .card-heading {
  font-size: 22px;
  font-weight: 500;
  margin-top: 20px;
  line-height: 1.5;
}

.policy-section .container{
  width: 100%;
  max-width: 1330px;
  padding: 0 15px;
  margin: 0 auto;
}