.ticker {
  display: none;
}

.sec.tight {
  padding: 0px 0 20px;
}

body > main > section:nth-of-type(odd) {
  background: linear-gradient(180deg, #fdfdfd 0%, #f7fcff 58%, #fdfdfd 100%) !important;
}

.banner-paginate {
  margin: 0 0 1rem;
  color: #7a7c7d;
  font-weight: 600;
  font-size: 14px;
  font-family: var(--mono);
}

span.eyebrow {
  margin: 0 0 1rem;
  font-weight: 500;
  font-size: 14px;
}

.trust-right-img span.eyebrow {
  margin-top: 28px;
}

.hero h1 .hl {
  background: linear-gradient(120deg, #e4ae46 0%, #e4ae46 56%, #e4ae46 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.banner-right-img {
  min-height: 620px;
}

.banner-right-img::before {
  z-index: 0;
  position: absolute;
  top: 80px;
  right: 0;
  bottom: 0;
  width: 50%;
  height: calc(100% - 80px);
  background: url(../images/icons/hero-growth.svg);
  background-position: center right;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

.trust-right-img {
  position: relative;
}
.trust-right-img::before {
  z-index: 0;
  position: absolute;
  top: 80px;
  right: 80px;
  bottom: 0;
  width: 50%;
  height: calc(100% - 140px);
  transform: scale(1.2);
  background: url(../images/icons/hero-shield.svg);
  background-position: center right;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

.sec_title {
  margin: 0 0 2rem;
  font-size: 1rem;
}

.ico-feat {
  border: none;
  background: none;
}
.ico-feat img {
  filter: none;
  -webkit-filter: none;
}

body > main > section:nth-of-type(even) .card {
  background: linear-gradient(180deg, rgb(1, 30, 72), rgba(7, 24, 48, 0.94));
}

body > main > section:nth-of-type(odd) .card.partner-card {
  position: relative;
  background: #01193c;
}
body > main > section:nth-of-type(odd) .card.partner-card::before,
body > main > section:nth-of-type(odd) .card.partner-card::after {
  z-index: 1;
  position: absolute;
  top: 60px;
  width: 136px;
  height: 163px;
  padding: 0;
  content: "";
  -webkit-mask: none;
  mask: none;
  opacity: 1;
}
body > main > section:nth-of-type(odd) .card.partner-card::before {
  left: 0px;
  background: url(../images/icons/partner-card-left.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
body > main > section:nth-of-type(odd) .card.partner-card::after {
  right: 0px;
  left: auto;
  background: url(../images/icons/partner-card-right.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
body > main > section:nth-of-type(odd) .card.partner-card h2.section-title,
body > main > section:nth-of-type(odd) .card.partner-card p {
  z-index: 2;
  position: relative;
  color: #fff;
}
body > main > section:nth-of-type(odd) .card.partner-card .cta-row {
  z-index: 2;
  position: relative;
}

.btn-new {
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}

.btn-bordered {
  border: 1.5px solid #fff;
  background: transparent;
  color: #fff;
}

.trust-banner-bottom {
  display: flex;
  z-index: 2;
  position: relative;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 2rem 0 4rem;
  gap: 20px;
}
.trust-banner-bottom .single {
  display: flex;
  gap: 12px;
}
.trust-banner-bottom .single .icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background: #f1f5ff;
}
.trust-banner-bottom .single .content h4 {
  margin: 0 0 0.7rem;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
}
.trust-banner-bottom .single .content p {
  max-width: 160px;
  margin: 0;
  font-size: 14px;
  line-height: 16px;
}

.compliance-card {
  display: grid;
  align-content: center;
  align-items: center;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 20px;
}
.compliance-card .ico {
  grid-row: 1 / 3;
  width: 88px;
  height: 88px;
  margin-bottom: 0;
  border: none;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, rgba(245, 158, 11, 0.28), rgba(245, 158, 11, 0.08) 70%, rgba(14, 21, 37, 0) 100%);
}
.compliance-card .ico img {
  filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.48));
}
.compliance-card h3 {
  margin: 0 0 0.5rem;
}
.compliance-card p {
  margin: 0;
}
.compliance-card:hover .ico {
  border-color: #f59e0b;
  box-shadow: 0 0 22px -4px rgba(245, 158, 11, 0.5);
}

.cta-title {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  color: var(--gold);
  font-weight: 700;
}
.cta-title .arr {
  transition: transform 0.25s;
}
.cta-title:hover .arr {
  transform: translateX(3px);
}

.risk-warning {
  align-items: flex-start;
  background: #15233c;
}
.risk-warning .icon {
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  padding: 12px;
  overflow: hidden;
  border: none;
  border: 1.5px solid #e9b84a;
  border-radius: 50%;
  background: none;
}
.risk-warning .icon img {
  width: 100%;
  height: auto;
}
.risk-warning .badge {
  padding: 0;
  border: none;
  border-radius: 0;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0;
}

.mb-1 {
  margin-bottom: 1rem !important;
}

@media (max-width: 991px) {
  .btn-new {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 12px;
  }
  .card {
    padding: 26px 15px;
  }
  .trust-right-img {
    padding-bottom: 340px;
  }
  .trust-right-img::before {
    top: auto;
    right: 0;
    left: 0;
    bottom: 30px;
    width: 100%;
    height: 300px;
    transform: none;
    background-position: center bottom;
  }
}
@media (max-width: 768px) {
  .banner-right-img {
    min-height: 400px;
  }
  .trust-right-img {
    padding-bottom: 300px;
  }
  .trust-right-img::before {
    height: 260px;
  }
  .trust-banner-bottom {
    margin: 1.5rem 0 2rem;
  }
  .trust-banner-bottom .single .content p {
    max-width: none;
  }
  .risk-warning {
    flex-wrap: wrap;
  }
  .risk-warning p {
    flex: 1 1 100%;
  }
  .banner-right-img::before {
    width: 100%;
    opacity: 0.8;
  }
  body > main > section:nth-of-type(odd) .card.partner-card .cta-row {
    z-index: 2;
    position: relative;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 100%;
    gap: 7px;
  }
}
@media (max-width: 575px) {
  body > main > section:nth-of-type(odd) .card.partner-card .cta-row {
    flex-wrap: wrap;
  }
}
@media (max-width: 450px) {
  body > main > section:nth-of-type(odd) .card.partner-card .cta-row {
    gap: 10px;
  }
  .btn-new {
    min-width: 210px;
  }
}

/*# sourceMappingURL=../../../Applications/XAMPP/xamppfiles/htdocs/vtc_landing/css/broker-trust.css.map */
