@charset "UTF-8";
@font-face {
  font-family: Roboto;
  font-display: swap;
  src: url(../modern-fonts/Roboto-Regular.woff2) format("woff2"), url(../modern-fonts/Roboto-Regular.woff) format("woff");
  font-weight: 400;
  font-style: normal;
}
*, ::after, ::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-brand:#F86523;
  --light-color:#FAFBFC;
  --light-color-2:#f3f3f3;
  --border-color:#EBEBEB;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: Roboto, sans-serif;
  line-height: 1.6;
  color: #252526;
  background-color: #fff;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ol, ul {
  list-style: none;
}

.page-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.layout-header {
  background-color: var(--light-color);
  color: #fff;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-color);
}

.header-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header-logo {
  max-width: 150px;
}

.logo-image {
  max-height: 50px;
}

.main-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.nav-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.menu-item {
  position: relative;
}

.menu-link {
  font-size: 1.2rem;
  font-weight: 700;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  color: #677f87;
}

.menu-link:hover {
  color: var(--color-brand);
}

.btn {
  display: inline-block;
  padding: 6px 20px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
}

.btn:hover {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn:after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.01);
  pointer-events: none;
}

.btn-primary {
  background-color: var(--color-brand);
  color: #fff;
  border: 2px solid transparent;
}

.btn-primary:hover {
  background-color: #fff;
  color: #252526;
}

.btn-secondary {
  color: var(--color-brand);
  border: 2px solid var(--color-brand);
}

.btn-secondary:hover {
  background-color: rgba(248, 103, 38, 0.1);
}

.title-section {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
  color: #252526;
}

.title-section:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background-color: var(--color-brand);
}

.title-dark {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 30px;
  color: #252526;
  padding-bottom: 0;
}

.title-dark:after {
  display: none;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table tr:first-child td, .data-table tr:first-child th {
  border-top: 1px solid #c6c5c8;
}

.data-table td, .data-table th {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #c6c5c8;
}

.data-table th {
  font-weight: 700;
  background-color: #f3f3f3;
}

.page-nav {
  background-color: #f3f3f3;
  padding: 30px 0;
  border-top: 1px solid #c6c5c8;
  border-bottom: 1px solid #c6c5c8;
  margin-bottom: 0;
}

.nav-heading {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 20px;
  color: #252526;
}

.nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 15px;
}

.nav-anchor-link {
  display: inline-block;
  padding: 10px 15px;
  background-color: #54798c;
  color: #fff;
  border-radius: 4px;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid #54798c;
}

.nav-anchor-link:hover {
  background-color: #fff;
  color: #54798c;
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.nav-anchor-link.active {
  background-color: var(--color-brand);
  color: #252526;
  font-weight: 700;
  border-color: var(--color-brand);
}

.scroll-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #54798c;
  color: #252526;
  border: none;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 99;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.scroll-button svg {
  pointer-events: none;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  fill: #fff;
}

.scroll-button.show {
  opacity: 1;
  visibility: visible;
}

.scroll-button:hover {
  background-color: #252526;
  color: var(--color-brand);
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
}

.scroll-button:hover svg {
  fill: #fff;
}

.exclusive-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.exclusive-table td, .exclusive-table th {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #c6c5c8;
}

.exclusive-table th {
  font-weight: 700;
  background-color: #f3f3f3;
}

.deposit-table td, .deposit-table th {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #52a9b0;
}

.deposit-table th {
  font-weight: 700;
  background-color: #333;
}

.faq-entries {
  max-width: 800px;
  margin: 0 auto;
}

.faq-entry {
  margin-bottom: 15px;
  border: 1px solid #54798c;
  border-radius: 5px;
  overflow: hidden;
}

.question-title {
  padding: 15px 20px;
  background-color: #54798c;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  --faq-icon:"+";
}

.question-title::after {
  content: var(--faq-icon, "+");
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--color-brand);
}

.question-title.active {
  background-color: #444;
}

.answer-content {
  padding: 15px 20px;
  border-top: 1px solid #52a9b0;
}

.site-footer {
  background-color: #252526;
  color: #c6c5c8;
  padding: 40px 0 20px;
  border-top: 1px solid #444247;
}

.footer-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo-img {
  max-height: 40px;
}

.footer-links {
  margin-bottom: 20px;
}

.footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
}

.footer-nav-link:hover {
  color: var(--color-brand);
}

.footer-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.icon-link {
  padding: 8px 12px;
  border: 1px solid #54798c;
  border-radius: 4px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.icon-link:hover {
  background-color: #54798c;
  color: #fff;
}

.footer-copyright {
  text-align: center;
}

.ordered-list-wrap {
  padding-left: 20px;
}

.ordered-list-wrap li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 15px;
}

.ordered-list-wrap li:before {
  content: "•";
  color: var(--color-brand);
  position: absolute;
  left: 0;
}

.content-list li {
  padding: 10px 0;
  border-bottom: 1px solid #c6c5c8;
  position: relative;
  padding-left: 25px;
}

.content-list li:before {
  content: "✓";
  color: var(--color-brand);
  position: absolute;
  left: 0;
  font-weight: 700;
}

.list-no-lines li {
  border-bottom: none;
}

.content-section {
  padding: 50px 0;
}

.section-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}

.section-body > * {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 50%;
  flex: 1 1 50%;
}

.caption-block {
  font-weight: 700;
  font-size: 1.1rem;
  color: #5d7179;
}

.text-block > :not(:last-child) {
  margin-bottom: 20px;
}

.image-block img {
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  margin-bottom: 10px;
}

.section-themed-dark {
  background-color: #f3f3f3;
}

.space-30 > :not(:last-child) {
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .header-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }
  .nav-items {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .title-section {
    font-size: 1.8rem;
  }
  .nav-links {
    gap: 10px;
  }
  .nav-anchor-link {
    padding: 8px 12px;
    font-size: 0.9rem;
  }
  .scroll-button {
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 20px;
  }
}
@media (max-width: 767.98px) {
  .section-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .text-block {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .title-section {
    font-size: 1.5rem;
  }
  .btn {
    padding: 8px 15px;
    font-size: 0.9rem;
  }
  .nav-anchor-link {
    padding: 6px 10px;
    font-size: 0.8rem;
  }
}
@media (max-width: 479.98px) {
  .header-cta {
    width: 100%;
  }
  .header-cta > * {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .menu-link {
    font-size: 1rem;
  }
  section .btn {
    width: 100%;
  }
}