:root {
  --brand-color: #6781F6;
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

::selection {
  /*background: rgba(103,129,246,0.35) !important;*/
}

:root {
  --non-main-header-color: #3e4769;
  --non-main-text-color: #5e657e;
  --front-background-color: #f9f9fb;
  --icon-mint-color: #97f2c1;
  --page-width: 1300px;
  --small-page-width: 900px;
  --legal-page-width: 670px;
  --bring-to-center-page-width: 800px;
  --bring-to-center-feature-width: 480px;
}

@media (max-width: 1400px) {
  :root {
    --page-width: 100%;
  }
}

@media (max-width: 1000px) {
  :root {
    --small-page-width: 100%;
  }
}

@media (max-width: 900px) {
  :root {
    --bring-to-center-page-width: 100%;
  }
}

@media (max-width: 750px) {
  :root {
    --legal-page-width: 100%;
  }
}

@media (max-width: 550px) {
  :root {
    --bring-to-center-feature-width: 100%;
  }
}

html, body {
  overflow-x: hidden;
}

body {
  font-family: 'Open Sans', sans-serif;
}

.body {
  min-height: 100vh;
}

h1, h2, h3 {
  font-family: 'Rubik', 'Inter', sans-serif;
}

h4, h5, h6, .btn {
  font-family: 'Inter', sans-serif;
}

.btn.btn-primary {
  border-radius: 50px;
  background: var(--brand-color);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  padding: 6px 14px 6px 13px;
  border: none;
}

.btn.btn-primary:focus {
  box-shadow: 0 0 0 .15rem rgba(90,153,236,0.7) !important;
}

.btn.btn-primary i {
  font-size: 13px;
  margin-left: 5px;
}

.head-top {
  font-size: 49px;
  color: var(--brand-midnight-color);
  margin: 0 0 22px;
  cursor: default;
}

body.backed-head .head-top {
  color: #fff;
}

.head-top span, span.highlight {
  display: inline;
  /*background: var(--brand-mint-color);*/
  color: var(--brand-color);
  /*padding: 0 8px;*/
  /*margin: 0 -8px;*/
  background-size: auto;
  background-attachment: scroll;
  background-clip: border-box;
  background-origin: padding-box;
  background-position: 0% 0%;
}

span.highlight {
  /*padding: 0 5px;*/
  /*margin: 0;*/
}

.head-second {
  max-width: 460px;
  font-size: 20px;
  font-weight: 700;
  color: #484c6a;
  cursor: default;
  margin: 0 0 12px;
}

.head-text {
  max-width: 420px;
  color: #61626a;
  font-family: 'Inter', sans-serif;
  margin: 0 0 28px;
  cursor: default;
  font-size: 16px;
}

.compact .head-text {
  max-width: 580px;
  display: inline-block;
  font-size: 17px;
  margin: 0 0 12px;
}

.compact .head-text-wrap:last-child {
  margin: 0 0 34px;
}

body.backed-head .compact .head-text, body.backed-head .compact .head-text a {
  color: #f4f4f7;
}

.page-header {
  position: relative;
  z-index: 1000;
}

.page-header-box {
  padding: 22px 30px;
  position: relative;
}

.page-header-notice {
  background: #000;
  padding: 10px 16px;
  text-align: center;
}

.page-header-notice p, .page-header-notice a {
  margin: 0;
  color: #fff;
  font-weight: 600;
  transition: text-decoration-color .2s, text-underline-offset .2s;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
}

.page-header-notice a {
  text-decoration: underline;
  text-decoration-color: #000;
  text-underline-offset: 1px;
}

.page-header-notice a:hover {
  text-decoration: underline;
  text-decoration-color: #fff;
}

.page-header-notice span {
  font-weight: 500;
}

.page-header-notice i {
  margin-left: 8px;
  font-size: 14px;
}

.logo-typed-mint {
  padding: 8px 16px 8px 15px;
  border-radius: 100px;
  background: var(--brand-light-color);
}

.logo-typed-mint img, .head-logo {
  height: 31px;
}

body:not(.backed-head) .head-logo.light {
  display: none;
}

body.backed-head .head-logo:not(.light) {
  display: none;
}

.head-links {
  margin: 0;
}

.head-links a {
  color: var(--brand-dark-color);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-decoration: none;
  padding: 1px 4px;
  font-size: 17px;
  transition: background-color ease-in-out .2s, color ease-in-out .2s;
  cursor: pointer !important;
}

body.backed-head .head-links a {
  color: #fff !important;
}

.head-links a:hover {
  color: var(--brand-color);
}

.head-links li, .head-links ul {
  cursor: default;
}

.head-links li:not(:last-child) {
  margin-right: 24px;
}

.header-dropdown-position {
  position: absolute;
  left: 0;
  right: 0;
  top: 68px;
  pointer-events: none;
}

.header-dropdown {
  width: 510px;
  padding: 23px;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 .2rem 1rem rgba(0,0,0,.1) !important;
  border-radius: 9px;
  pointer-events: all;
}

.header-dropdown-item {
  padding: 9px 11px;
  border-radius: 4px;
  position: relative;
}

.header-dropdown-item .icon-sec {
  padding-right: 12px;
}

.header-dropdown-item .icon-sec img {
  max-height: 40px;
  max-width: 40px;
  opacity: .9;
  transition: opacity .25s;
}

.header-dropdown-item a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.header-dropdown-item h6 {
  color: var(--brand-nightfall-color);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 2px;
}

.header-dropdown-item h6 i {
  font-size: 13px;
  margin-left: 5px;
  opacity: 0;
  transition: opacity .25s;
}

.header-dropdown-item p {
  margin: 0;
  font-size: 13.7px;
  font-family: 'Inter', sans-serif;
  color: #828093;
  transition: color .25s;
}

.header-dropdown-item:hover .icon-sec img {
  opacity: 1;
}

.header-dropdown-item:hover h6 i, .header-dropdown-item:hover p {
  opacity: 1;
  color: var(--brand-nightfall-color);
}

.head-login-link {
  padding-right: 0;
}

.head-login-link a {
  color: var(--brand-dark-para-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

body.backed-head .head-login-link a {
  color: #fff;
}

body.backed-head .page-header-box .btn.btn-primary {
  color: var(--brand-color) !important;
  background: #fff !important;
}

.price-list-box {
  padding: 0 30px;
}

.head-overlap-price {
  position: relative;
  margin: -95px 0 0;
  z-index: 10;
}

.head-overlap-price h3 {
  font-family: 'Inter', sans-serif;
  font-size: 30px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 4px;
}

.head-overlap-price .price-description {
  color: #fff;
  margin: 0;
  font-size: 17px;
}

.head-overlap-price .price-head {
  height: 95px;
}

.head-overlap-price .price-content {
  padding: 30px 0 0;
}

.head-overlap-price .price-content .price-details {
  padding: 0 0 26px;
}

.head-overlap-price .price-content .price-details h1 {
  color: var(--non-main-header-color);
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  margin: 0 0 1px;
}

.head-overlap-price .price-content .price-details p {
  color: var(--non-main-header-color);
  margin: 0;
  font-size: 15px;
}

.head-overlap-price .price-content ul {
  margin: 0;
  padding-left: 28px;
}

.head-overlap-price .price-content li {
  font-size: 17px;
  position: relative;
  color: var(--non-main-text-color);
}

.head-overlap-price .price-content li:not(:last-child) {
  margin: 0 0 3px;
}

.head-overlap-price .price-content a:not(.btn) {
  color: var(--non-main-text-color) !important;
  /*font-weight: 600;*/
  text-decoration: underline;
  text-underline-offset: 1px;
  text-decoration-style: dotted;
  text-decoration-color: #b0b7d0;
}

.head-overlap-price .price-content .btn {
  width: 100%;
  margin-top: 12px;
}

.head-overlap-price .price-content li i {
  position: absolute;
  left: -28px;
  top: 5px;
}

.head-overlap-price .price-content li i.fa-check-circle {
  color: var(--brand-color);
}

.head-overlap-price .price-content li i.fa-minus-circle {
  color: #d8d9e7;
}

.no-margin {
  margin: 0 !important;
}

.legal-box {
  padding: 30px !important;
}

.legal-box p {
  margin: 0;
  font-size: 13px;
  color: var(--non-main-text-color);
}

.legal-box a {
  color: var(--non-main-text-color) !important;
  text-decoration: underline;
  text-underline-offset: 1px;
}

.legal-box p:not(:last-child) {
  margin: 0 0 6px;
}

.footer {
  padding: 48px 30px 12px;
  background: var(--brand-midnight-color);
}

.footer-logo {
  max-width: 180px;
  margin: 0 0 12px;
}

.footer-about, .footer-on-statement {
  max-width: 320px;
  font-family: 'Inter', sans-serif;
  color: #fff;
  margin: 0 0 22px;
}

.footer-about {
  margin: 0 0 10px;
}

.footer-on-statement a {
  color: #e3e2ea !important;
  text-decoration: underline;
  text-underline-offset: 1px;
}

.footer .btn.btn-primary {
  /*color: var(--brand-midnight-color) !important;*/
}

.footer-links h6 {
  font-size: 15px;
  color: var(--brand-subtle-gray-color);
  margin: 0 0 6px;
}

.footer-links ul {
  margin: 0;
}

.footer-links li:not(:last-child) {
  margin: 0 0 2px;
}

.footer-links a {
  color: var(--brand-gray-color);
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  font-weight: 600;
  transition: color ease-in-out .2s;
}

.footer-links a:hover {
  color: var(--brand-color);
}

.footer select {
  background: var(--brand-midnight-color);
  border: none;
  outline: none;
  padding: 3px 6px;
  color: #fff;
  margin: 0 0 10px;
  -webkit-appearance: none;
  appearance: none;
  text-align: center;
  cursor: pointer;
}

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

.footer-legal {
  display: inline-block;
  padding: 12px 0 0;
}

.footer-legal ul {
  margin: 0;
}

.footer-legal a, .footer-legal li {
  color: #abb3cf;
  text-decoration: none;
  font-size: 12px;
}

.footer-legal .actual-text a {
  text-decoration: underline;
  text-underline-offset: 1px;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f8fafb;
}

::-webkit-scrollbar-thumb {
  background: #e0e0ea;
}

::-webkit-scrollbar-thumb:hover {
  background: #d9d9e3;
}

.content-box {
  padding: 65px 30px;
}

h2 {
  color: var(--brand-midnight-color);
  font-weight: 600;
}

body.legal h2 {
  font-size: 26px;
  margin: 0 0 9px;
}

.text {
  font-size: 18px;
  color: rgba(30,31,52,0.82);
}

body.legal .text {
  text-align: left;
}

body.legal .text a {
  text-decoration: underline 1px !important;
  text-underline-offset: 1px !important;
  text-decoration-color: transparent !important;
  transition: text-decoration-color .2s;
}

body.legal .text a:hover {
  text-decoration-color: var(--brand-color) !important;
}

.text strong {
  display: inline;
}

.text:last-child, .text li:last-child {
  margin: 0;
}

.text li ol {
  margin-top: 12px;
}

.text:not(:last-child), .text li:not(:last-child) {
  margin: 0 0 12px;
}

.text .unhighlight {
  color: #a8a9b0;
}

.text .underline {
  text-decoration: underline;
  text-underline-offset: 1px;
}

tr, th, td, tbody {
  border: none !important;
  position: relative;
}

thead {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}

th {
  padding: 6px .5rem !important;
  color: var(--brand-midnight-color);
  background: var(--brand-subtle-color) !important;
  font-family: 'Inter', sans-serif;
  text-align: center;
  font-weight: 600;
}

tr {
  background: #fff;
}

tbody {
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
}

.row.advance-table {
  margin: -12px;
}

.col.advance-table {
  padding: 12px;
}

.display-background-block {
  padding: 53px 20px;
  border-radius: 4px;
  position: relative;
}

.display-background-block .pos-me {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
}

.text a {
  color: var(--brand-dark-para-color);
  text-underline-offset: 1px;
}

.legal .text a {
  text-decoration: none !important;
  color: var(--brand-color) !important;
  font-weight: 600 !important;
}

.surrounded-content {
  border-radius: 6px;
  background: var(--brand-subtle-color);
}

.surrounded-content h5 {
  font-weight: 700;
  color: var(--brand-midnight-color);
  margin: 0 0 6px;
  font-size: 17px;
}

.surrounded-content p {
  margin: 0;
  color: var(--brand-dark-para-color);
}

.surrounded-content h1 {
  color: #fff;
}

.surrounded-content .price-box {
  background: linear-gradient(-67deg, #5c7aff, #768ceb 100%);
}

.head-to-para h1 {
  font-weight: 400;
  color: var(--non-main-header-color);
  font-size: 48px;
  margin: 0;
}

.head-to-para .text {
  font-size: 19px;
  color: #656a98;
}

body.legal .terms-block-wrap {
  position: relative;
}

body.legal .terms-block {
  position: relative;
  padding: 15px 0;
}

body.legal .terms-block:not(:last-child) {
  margin: 0 0 40px;
}

body.legal .terms-block-index {
  position: absolute;
  top: -8px;
  left: -210px;
  width: 190px;
  height: 100%;
}

body.legal .terms-block-index .terms-block-index-box {
  position: sticky;
  top: 0;
  padding: 25px 10px 8px;
  background: #fff;
  max-height: 100vh;
  overflow-y: auto;
}

body.legal .terms-block-index .terms-block-index-box ul {
  margin: 0;
}

body.legal .terms-block-index .terms-block-index-box li:not(:last-child) {
  margin: 0 0 6px;
}

body.legal .terms-block-index .terms-block-index-box a {
  color: #6a6e96 !important;
  font-family: 'Inter', 'Open Sans', sans-serif;
  text-decoration: none;
  font-size: 15px;
  transition: color .35s;
}

body.legal .terms-block-index .terms-block-index-box a:hover {
  color: var(--brand-color) !important;
}

.col.my-auto.price-info, .surrounded-content .price-box {
  padding: 25px 20px;
  border-radius: 6px;
}

.col.my-auto.price-info {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.surrounded-content .price-box {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.surrounded-content .price-box .row {
  height: 100%;
  width: 100%;
}

.surrounded-content .price-box h1 {
  margin: 0;
  font-size: 27px;
  text-align: center;
}

.surrounded-content .price-box p {
  text-align: center;
  color: #fff;
  margin: 0;
}

.surrounded-content .row {
  width: 100%;
}

.surrounded-content:not(:last-child) {
  margin: 0 0 18px;
}

.grecaptcha-badge {
  display: none;
}

.footer .footer-row-space {
}

span.italic, p.italic {
  font-style: italic;
}

.footer .footer-row-space > * {
  padding: 18px;
}

@media (max-width: 995px) {
  .footer .footer-row-space > * {
    flex: 0 0 auto;
    width: 50%;
    margin-right: initial !important;
    margin-left: initial !important;
  }
}

@media (max-width: 450px) {
  .footer .footer-row-space > * {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 450px) {
  .footer .footer-bottom {
    text-align: center;
  }
}

.footer .foot-legal-box {
  padding: 8px 0 0;
}

.footer .foot-legal-text {
  color: #abb3cf;
  font-size: 12px;
  margin: 0;
}

.footer .foot-legal-text:not(:last-child) {
  margin: 0 0 2px;
}

.hide {
  display: none !important;
}

