/** webfonts **/
@font-face {
  font-family: "IBM Plex Sans";
  src: url("/ai-password-cracking/assets/fonts/ibm-plex-sans-text.woff2") format("woff2");
  font-weight: 450;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("/ai-password-cracking/assets/fonts/ibm-plex-sans-textitalic.woff2") format("woff2");
  font-weight: 450;
  font-style: italic;
  font-display: swap;
}

/** END webfonts **/
/** general **/
@-webkit-keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(249, 130, 0, 0.5);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(249, 130, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(249, 130, 0, 0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(249, 130, 0, 0.5);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(249, 130, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(249, 130, 0, 0);
  }
}

:root {
  --duration-short: 100ms;
  --duration-default: 250ms;
  --duration-long: 500ms;
  --duration-longer: 750ms;
  --duration-longest: 1000ms;
}

body,
html {
  min-height: 100%;
  overflow-x: hidden;
}

body {
  background-color: #050E19;
  font-family: "IBM Plex Sans";
  font-size: 18px;
  color: #A9DBED;
  overflow: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

strong,
b {
  font-weight: 700;
}

p:last-child {
  margin-bottom: 0;
}

a,
a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}

img,
svg,
iframe {
  max-width: 100%;
  height: auto;
}

.container {
  --bs-gutter-x: 30px;
}

.row {
  --bs-gutter-x: 30px;
}

@media (min-width: 1200px) {
  .container-narrow {
    padding-left: 80px;
    padding-right: 80px;
  }
}

@media (min-width: 1400px) {
  .container-narrow {
    padding-left: 120px;
    padding-right: 120px;
  }
}

/** END general **/
/** form **/
button,
input,
textarea,
select {
  outline: none;
}

/** END form **/
/** helpers **/
.button-unstyled {
  background-color: transparent;
  padding: 0;
  border: 0;
}

.nav ul,
.menu,
.menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.logo {
  display: inline-block;
  font-size: 22px;
  line-height: 1;
  color: #fff;
  font-weight: 450;
  text-align: left;
  text-transform: uppercase;
}

.logo span,
.logo strong {
  display: block;
}

.logo img {
  width: 62px;
  height: auto;
}

.logo:hover {
  color: #fff;
}

.logo--inline {
  position: relative;
  padding-left: 72px;
}

.logo--inline img {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (min-width: 576px) {
  .logo.lg {
    font-size: 24px;
  }

  .logo.lg img {
    width: 70px;
  }

  .logo--inline.lg {
    padding-left: 82px;
  }
}

.full-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
}

.image-fit {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.result-color-1 {
  color: #7255FF;
}

.result-color-2 {
  color: #FF3939;
}

.result-color-3 {
  color: #FEC827;
}

.result-color-4 {
  color: #4CD9A9;
}

.result-color-5 {
  color: #266BDC;
}

/** END helpers **/
/** header **/
#header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 60px 0;
  z-index: 500;
  transition: background-color var(--duration-default);
}

#header .toggle-nav {
  position: relative;
  width: 32px;
  height: 21px;
}

#header .toggle-nav span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 10px;
}

#header .toggle-nav.collapsed>span:nth-child(1) {
  top: 0;
}

#header .toggle-nav.collapsed>span:nth-child(2) {
  top: 50%;
  margin-top: -1.5px;
}

#header .toggle-nav.collapsed>span:nth-child(3) {
  bottom: 0;
}

#header .toggle-nav:not(.collapsed)>span:nth-child(1),
#header .toggle-nav:not(.collapsed)>span:nth-child(3) {
  top: 50%;
  margin-top: -1.5px;
}

#header .toggle-nav:not(.collapsed)>span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

#header .toggle-nav:not(.collapsed)>span:nth-child(2) {
  opacity: 0;
}

#header .toggle-nav:not(.collapsed)>span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#header .nav .toggle {
  position: absolute;
  top: 13px;
  right: 0;
  width: 14px;
  height: 14px;
  background-color: transparent;
  border: 0;
  padding: 0;
  background-image: url(../svg/angle-down-sm-ffffff.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

#header .nav li {
  position: relative;
}

#header .nav li a {
  display: inline-block;
  font-size: 18px;
  font-weight: 450;
  line-height: 1.5;
  color: #fff;
  transition: all var(--duration-default);
}

#header .nav li.menu-item-has-children>a {
  padding-right: 20px;
}

@media (min-width: 992px) {
  #header .nav li:hover>ul {
    margin-top: 0;
    opacity: 1;
    visibility: visible;
  }

  #header .nav>li {
    padding: 20px 0;
    margin-right: 40px;
  }

  #header .nav>li>.toggle {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  #header .nav>li:last-child {
    margin-right: 0;
  }

  #header .nav>li:hover>a {
    color: #A9DBED;
  }

  #header .nav ul {
    position: absolute;
    top: 100%;
    min-width: 200px;
    background-color: #091B2D;
    margin-top: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-default);
  }

  #header .nav ul .toggle {
    top: 16px;
    right: 15px;
    background-image: url(../svg/angle-down-sm-ffffff.svg);
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }

  #header .nav ul li a {
    display: block;
    padding: 10px 15px;
    color: #fff;
  }

  #header .nav ul li.menu-item-has-children>a {
    padding-right: 30px;
  }

  #header .nav ul li:hover>a {
    background-color: rgba(255, 255, 255, 0.1);
  }

  #header .nav ul ul {
    top: 0;
    left: 100%;
  }
}

@media (min-width: 1200px) {
  #header .nav>li {
    margin-right: 60px;
  }

  #header .nav>li>a {
    font-size: 22px;
  }
}

@media (max-width: 991.98px) {
  #header {
    padding: 20px 0;
  }

  #header .nav {
    display: block;
    padding-top: 20px;
  }

  #header .nav .toggle {
    right: 9px;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }

  #header .nav .toggle.active {
    opacity: 0.25;
  }

  #header .nav li a {
    display: block;
    padding: 6px 0;
  }

  #header .nav li.menu-item-has-children>a {
    padding-right: 32px;
  }

  #header .nav ul {
    display: none;
    padding-left: 20px;
  }

  #header.show-nav {
    background-color: rgb(5 14 25 / 80%);
  }
}

/** END header **/
/** footer **/
#footer {
  padding: 0 0 40px;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 450;
  color: #fff;
}

#footer h4 {
  display: block;
  margin: 0 0 10px;
  padding: 0;
  font-size: 20px;
  color: #266BDC;
  font-weight: 700;
  text-transform: uppercase;
}

#footer h4 a {
  color: inherit;
}

#footer a {
  color: #fff;
}

#footer a:hover {
  color: #fff;
}

#footer ul {
  margin: 0;
}

#footer hr {
  width: 100%;
  height: 1px;
  background-color: #2D415E;
  border: 0;
  margin: 0 0 40px;
  opacity: 1;
}

@media (max-width: 991.98px) {
  #footer {
    text-align: center;
  }

  #footer .row>div:not(:last-child) {
    margin-bottom: 30px;
  }
}

/** END footer **/
/** page sections **/
.text-wrapper p strong {
  font-weight: 600;
  color: #FF910D;
}

.text-wrapper ul:not([class]) {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.text-wrapper ul:not([class])>li {
  position: relative;
  padding-left: 35px;
  font-weight: 450;
}

.text-wrapper ul:not([class])>li:before {
  content: "";
  position: absolute;
  top: 9px;
  left: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #FF910D;
}

.text-wrapper ul:not([class])>li:not(:last-child) {
  margin-bottom: 5px;
}

.s-content hr {
  width: 100%;
  height: 1px;
  border: 0;
  background-color: #2D415E;
  margin: 100px 0;
  padding: 0;
  opacity: 1;
}

/** END page sections **/
/** welcome **/
#welcome {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 100vh;
  padding: 200px 0;
  background-image: url(../images/bg-welcome.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#welcome .welcome__text {
  text-align: center;
}

#welcome .welcome__text h1 {
  margin-bottom: 45px;
  font-size: 60px;
  line-height: 1;
  font-weight: 400;
}

#welcome .welcome__text h1 span {
  display: inline-block;
  position: relative;
}

#welcome .welcome__text h1 .text-1 {
  font-weight: 500;
  color: #FC8A24;
  text-shadow: 0 0 20px #FC8A24;
  -webkit-text-stroke: 1.5px #FFBB8D;
}

#welcome .welcome__text h1 .text-2 {
  color: #24C6FF;
  font-style: italic;
}

#welcome .welcome__text h1 .text-2:before {
  content: "<";
}

#welcome .welcome__text h1 .text-2:after {
  content: ">";
}

#welcome .welcome__text h1 .text-3 {
  display: block;
  padding-top: 25px;
  font-size: 106px;
  font-weight: 700;
  color: #FC8A24;
  text-shadow: 0 0 20px #FC8A24;
  -webkit-text-stroke: 1.5px #FFBB8D;
}

#welcome .welcome__text h1 .text-3>span {
  min-width: 102px;
  padding: 0 12px;
}

#welcome .welcome__text h1 .text-3>span:after {
  content: "";
  position: absolute;
  top: -6px;
  left: -3px;
  width: 116px;
  height: 133px;
  background-image: url(../images/character.png);
  background-repeat: no-repeat;
  background-position: 0;
  background-size: contain;
  z-index: 1;
}

#welcome .welcome__text h1 .text-3>span>span {
  z-index: 2;
}

#welcome .welcome__text h1 .text-3>span.longer:after {
  width: 154px;
  height: 135px;
  top: -7px;
  left: -10px;
  background-image: url(../images/character-longer.png);
}

#welcome .welcome__text p {
  max-width: 760px;
  margin: 0 auto;
  font-family: "Inter";
  font-size: 20px;
}

#welcome .welcome__bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

#welcome .welcome__bottom img {
  display: block;
  width: 100%;
  height: auto;
}

#welcome .welcome__bottom p {
  position: relative;
  display: inline-block;
  padding-left: 32px;
  font-family: "Inter";
  font-size: 20px;
  line-height: 1.35;
}

#welcome .welcome__bottom p:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #F98200;
  box-shadow: 0 0 0 rgba(204, 169, 44, 0.4);
  -webkit-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
}

#welcome .welcome__bottom .container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

@media (min-width: 1200px) {
  #welcome .welcome__bottom .container {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 43%;
    z-index: 10;
  }
}

@media (min-width: 1400px) {
  #welcome .welcome__bottom p {
    padding-left: 36px;
    font-size: 22px;
  }

  #welcome .welcome__bottom p:before {
    width: 26px;
    height: 26px;
    top: 1px;
  }

  #welcome .welcome__bottom .container {
    bottom: 48%;
  }
}

@media (max-width: 1199.98px) {
  #welcome .welcome__bottom {
    background-image: url(../images/bg-welcome-bottom.png);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 1200px auto;
  }

  #welcome .welcome__bottom img {
    display: none;
  }

  #welcome .welcome__bottom .container {
    min-height: 110px;
  }
}

@media (max-width: 991.98px) {
  #welcome .welcome__text h1 {
    margin-bottom: 30px;
    font-size: 42px;
  }

  #welcome .welcome__text h1 .text-3 {
    padding-bottom: 18px;
    font-size: 48px;
  }

  #welcome .welcome__text h1 .text-3>span {
    min-width: 42px;
    padding: 0 4px;
  }

  #welcome .welcome__text h1 .text-3>span:after {
    width: 54px;
    height: 62px;
    top: -4px;
    left: -5px;
  }

  #welcome .welcome__text h1 .text-3>span.longer:after {
    width: 66px;
    height: 58px;
    top: -4px;
    left: -5px;
  }

  #welcome .welcome__text p {
    font-size: 18px;
  }
}

@media (max-width: 575.98px) {
  #welcome .welcome__bottom p {
    font-size: 18px;
  }
}

/** END welcome **/
/** check-password **/
#form-password {
  max-width: 570px;
}

#form-password label {
  display: block;
  margin-bottom: 14px;
  padding-left: 20px;
  font-size: 20px;
  font-weight: 700;
  color: #FF910D;
  text-transform: uppercase;
}

#form-password input {
  display: block;
  width: 100%;
  height: 55px;
  margin-bottom: 40px;
  background-color: #0b213a;
  padding: 0 20px;
  border: 0;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 500;
  color: #FF910D;
  box-shadow: 0px 12px 0px 0px #081521;
}

#form-password p {
  padding-left: 20px;
  font-size: 16px;
  font-style: italic;
  color: #164770;
}

#result {
  font-size: 24px;
  font-weight: 500;
  color: #266BDC;
  text-align: center;
}

#result p {
  margin-bottom: 10px;
}

#result .result {
  margin-right: -20px;
  font-family: "Inter";
  font-size: 45px;
  font-weight: 400;
}

#result .result:not(.active) {
  -webkit-filter: blur(8px);
  filter: blur(8px);
}

.tweet-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.tweet-wrapper:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #2D415E;
  margin-top: -0.5px;
  z-index: 1;
}

.tweet-wrapper>a {
  display: inline-block;
  position: relative;
  background-color: #FF910D;
  border-radius: 50px;
  padding: 0 20px;
  font-size: 20px;
  line-height: 52px;
  font-weight: 500;
  color: #000;
  transition: all var(--duration-default);
  z-index: 10;
}

.tweet-wrapper>a:hover {
  box-shadow: 0 0 12px #FC8A24;
}

#check-password {
  padding: 80px 0 120px;
}

#check-password .row {
  margin-bottom: 85px;
}

@media (min-width: 992px) {
  #result {
    padding-right: 20px;
    text-align: right;
  }
}

@media (max-width: 991.98px) {
  #form-password {
    margin: 0 auto 60px;
    text-align: center;
  }
}

/** END check-password **/
/** intro **/
.infographic {
  position: relative;
  background-color: #091b2d;
  border-radius: 20px;
  padding: 30px 45px 40px 40px;
  box-shadow: 0 20px 0 0 #081521;
  margin-right: 100px;
}

.infographic:before,
.infographic:after {
  content: "";
  position: absolute;
  z-index: 1;
}

.infographic:before {
  top: 0;
  bottom: 0;
  left: 0;
  width: 12px;
  background: linear-gradient(180deg, #F98200 0%, #4CD9A9 55.8%, #39AAFF 100%);
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.infographic:after {
  top: 0;
  right: -60px;
  width: 60px;
  height: 100%;
  background-image: url(../images/shape-infographic.png);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 100% auto;
}

.infographic .infographic__heading {
  position: relative;
  margin-bottom: 60px;
  z-index: 10;
}

.infographic .infographic__heading h2 {
  margin-bottom: 0;
  font-size: 50px;
  font-weight: 300;
}

.infographic .infographic__heading h2>span {
  display: inline-block;
  font-size: 26px;
  font-weight: 450;
  color: #FF910D;
  vertical-align: middle;
}

.infographic .infographic__btn {
  position: relative;
  display: inline-block;
  font-family: "Inter";
  font-size: 16px;
  color: #266BDC;
}

.infographic .infographic__btn:after {
  content: "";
  display: block;
  width: 30px;
  height: 67px;
  position: absolute;
  bottom: -22px;
  right: -55px;
  background-image: url(../svg/btn-download.svg);
  background-repeat: no-repeat;
  background-position: 0;
  background-size: contain;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.infographic .infographic__btn>span {
  display: inline-block;
}

.infographic .infographic__main {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.infographic .infographic__main table {
  width: 100%;
}

.infographic .infographic__main table tr th,
.infographic .infographic__main table tr td {
  width: 16.666%;
  padding: 8px 12px;
  color: #fff;
  text-align: right;
}

.infographic .infographic__main table tr th:nth-child(1),
.infographic .infographic__main table tr td:nth-child(1) {
  font-family: "IBM Plex Sans";
  font-weight: 450;
  padding-left: 0;
}

.infographic .infographic__main table thead tr th {
  border-right: 1px solid #2D415E;
  padding-top: 20px;
  vertical-align: bottom;
  font-family: "Inter";
  font-size: 16px;
  line-height: 1.3;
  font-weight: 400;
}

.infographic .infographic__main table thead tr th:nth-child(1) {
  text-align: left;
}

.infographic .infographic__main table tbody tr td {
  border-top: 1px solid #2D415E;
  border-right: 1px solid #2D415E;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}

@media (min-width: 992px) {
  .infographic .infographic__heading {
    padding-right: 300px;
  }

  .infographic .infographic__heading img {
    position: absolute;
    top: -118px;
    right: -166px;
    max-width: 400px;
  }

  .infographic .infographic__btn {
    position: absolute;
    bottom: 214px;
    right: -208px;
    -webkit-transform: rotateZ(90deg);
    transform: rotateZ(90deg);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    z-index: 20;
  }
}

@media (max-width: 991.98px) {
  .infographic {
    margin-right: 0;
  }

  .infographic:after {
    display: none;
  }

  .infographic .infographic__heading h2 {
    font-size: 42px;
  }

  .infographic .infographic__heading img {
    display: block;
    margin: 0 0 20px;
    max-width: 280px;
  }

  .infographic .infographic__main {
    margin-bottom: 25px;
  }
}

@media (max-width: 767.98px) {
  .infographic {
    padding: 20px 30px 30px;
  }
}

#intro {
  padding: 0 0 120px;
}

#intro .text-block {
  max-width: 620px;
  margin-bottom: 80px;
  font-size: 22px;
  font-weight: 300;
}

#intro .text-block strong {
  font-weight: 700;
}

/** END intro **/
/** key-findings **/
#key-findings {
  padding: 0 0 120px;
}

#key-findings h2 {
  margin-bottom: 80px;
  font-size: 50px;
  font-weight: 400;
  color: #FF910D;
}

#key-findings .text-block {
  padding: 0 20px;
  margin-bottom: 60px;
  font-size: 30px;
  line-height: 1.55;
  font-weight: 300;
}

#key-findings .text-block p strong {
  font-weight: 700;
}

#key-findings .key-findings__stats {
  max-width: 595px;
  background-color: #091b2d;
  border-radius: 15px;
  padding: 25px 25px 20px;
  box-shadow: 0 14px 0 0 #081521;
  font-size: 16px;
  line-height: 1.35;
  color: #A9DBED;
}

#key-findings .key-findings__stats ul {
  margin: 0;
}

#key-findings .key-findings__stats ul>li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 210px;
  border-bottom: 1px solid #2D415E;
  padding-bottom: 0;
  margin-bottom: 30px;
  text-align: right;
}

#key-findings .key-findings__stats ul>li .text-1,
#key-findings .key-findings__stats ul>li .text-2 {
  font-size: 48px;
  font-weight: 300;
  color: #39AAFF;
}

#key-findings .key-findings__stats ul>li .text-1>span,
#key-findings .key-findings__stats ul>li .text-2>span {
  color: #C7D1E0;
}

#key-findings .key-findings__stats ul>li .text-1 {
  display: block;
  width: 140px;
  text-align: left;
}

#key-findings .key-findings__stats ul>li .text-2 {
  position: absolute;
  top: 0;
  right: 0;
}

#key-findings .key-findings__stats ul>li:nth-child(2) .text-1,
#key-findings .key-findings__stats ul>li:nth-child(2) .text-2 {
  color: #266BDC;
}

#key-findings .key-findings__stats ul>li:nth-child(3) .text-1,
#key-findings .key-findings__stats ul>li:nth-child(3) .text-2 {
  color: #1C62B7;
}

#key-findings .key-findings__stats ul>li:nth-child(4) .text-1,
#key-findings .key-findings__stats ul>li:nth-child(4) .text-2 {
  color: #103A77;
}

#key-findings .key-findings__stats ul>li:last-child {
  margin-bottom: 0;
}

#key-findings .key-findings__intro {
  padding: 0 20px;
  font-size: 50px;
  line-height: 1.3;
  font-weight: 300;
}

#key-findings .key-findings__intro p {
  margin-bottom: 0;
}

#key-findings .key-findings__intro p strong {
  font-weight: 600;
}

#key-findings .key-findings__intro .text-1 {
  margin-bottom: 15px;
}

#key-findings .key-findings__intro .text-1 strong {
  color: #FF910D;
}

#key-findings .key-findings__intro .text-2 {
  position: relative;
  padding-left: 320px;
  margin-left: 125px;
}

#key-findings .key-findings__intro .text-2:before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 310px;
  height: 92px;
  background-image: url(../images/img-7-character.png);
  background-repeat: no-repeat;
  background-position: 0;
  background-size: contain;
}

#key-findings .key-findings__intro .text-2 strong {
  color: #266BDC;
}

#key-findings .key-findings__highlight {
  position: relative;
  padding-top: 75px;
  padding-bottom: 130px;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 400;
  color: #fff;
  text-align: center;
}

#key-findings .key-findings__highlight img {
  display: block;
  margin: 0 auto;
}

#key-findings .key-findings__highlight p {
  position: absolute;
  margin: 0;
}

#key-findings .key-findings__highlight p strong {
  display: inline-block;
  color: #266BDC;
}

#key-findings .key-findings__highlight .text-1 {
  top: 55px;
  left: 62px;
}

#key-findings .key-findings__highlight .text-2 {
  top: 0;
  right: 16px;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 500;
  color: #FF910D;
}

#key-findings .key-findings__highlight .text-3 {
  bottom: 23px;
  left: 39px;
}

#key-findings .key-findings__highlight .text-4 {
  bottom: 0;
  right: -3px;
}

#key-findings .key-findings__highlight .text-4 span {
  font-size: 18px;
}

@media (min-width: 992px) {
  #key-findings .image-wrapper {
    padding-left: 15px;
  }
}

@media (max-width: 1399.98px) {
  #key-findings .key-findings__highlight .text-1 {
    left: 52px;
  }

  #key-findings .key-findings__highlight .text-2 {
    right: 11px;
  }

  #key-findings .key-findings__highlight .text-3 {
    left: 34px;
  }

  #key-findings .key-findings__highlight .text-4 {
    right: -12px;
  }
}

@media (max-width: 991.98px) {
  #key-findings .image-wrapper {
    max-width: 500px;
    margin: 0 auto 60px;
  }

  #key-findings .key-findings__intro {
    font-size: 42px;
  }

  #key-findings .key-findings__intro .text-2 {
    margin-left: 20px;
    padding-left: 260px;
  }

  #key-findings .key-findings__intro .text-2:before {
    width: 260px;
    height: 76px;
  }

  #key-findings .key-findings__highlight {
    padding-top: 56px;
    padding-bottom: 102px;
    font-size: 16px;
  }

  #key-findings .key-findings__highlight .text-1 {
    top: 42px;
    left: 34px;
  }

  #key-findings .key-findings__highlight .text-2 {
    right: 6px;
    font-size: 22px;
  }

  #key-findings .key-findings__highlight .text-3 {
    left: 18px;
  }

  #key-findings .key-findings__highlight .text-4 {
    right: -22px;
  }

  #key-findings .key-findings__highlight .text-4 span {
    font-size: 16px;
  }
}

@media (max-width: 767.98px) {
  #key-findings .text-block {
    font-size: 22px;
  }

  #key-findings .key-findings__stats {
    padding: 20px 20px;
  }

  #key-findings .key-findings__stats ul>li {
    padding-right: 135px;
    margin-bottom: 25px;
  }

  #key-findings .key-findings__stats ul>li .text-1,
  #key-findings .key-findings__stats ul>li .text-2 {
    font-size: 32px;
  }

  #key-findings .key-findings__stats ul>li .text-1 {
    width: 90px;
  }

  #key-findings .key-findings__intro {
    font-size: 28px;
  }

  #key-findings .key-findings__intro .text-2 {
    margin-left: 0;
    padding-left: 157px;
  }

  #key-findings .key-findings__intro .text-2:before {
    width: 160px;
    height: 46px;
  }

  #key-findings .key-findings__highlight .text-1 {
    top: 35px;
    left: 18px;
  }

  #key-findings .key-findings__highlight .text-2 {
    right: 0;
  }

  #key-findings .key-findings__highlight .text-3 {
    left: 18px;
  }

  #key-findings .key-findings__highlight .text-4 {
    right: -15px;
  }
}

/** END key-findings **/
/** passgan **/
#passgan {
  position: relative;
  padding: 0 0 120px;
}

#passgan:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  opacity: 0.6;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#a6000000", endColorstr="#00000000", GradientType=0);
  z-index: 1;
}

#passgan .container {
  position: relative;
  z-index: 10;
}

#passgan .passgan__heading {
  border-top: 1px solid #2D415E;
  margin-bottom: 60px;
}

#passgan .passgan__heading h2 {
  display: inline-block;
  position: relative;
  border-top: 2px solid #266BDC;
  margin: -1px 0 0;
  padding-top: 16px;
  font-size: 42px;
  font-weight: 300;
  color: #fff;
}

#passgan .passgan__heading h2>strong {
  font-weight: 600;
  color: #FF910D;
}

#passgan .row {
  margin-bottom: 120px;
}

#passgan .text-block {
  max-width: 840px;
  margin: 0 auto 60px;
}

#passgan .text-block:last-child {
  margin-bottom: 0;
}

#passgan .image-block {
  margin-bottom: 40px;
  text-align: center;
}

#passgan .image-block:last-child {
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  #passgan .row>div:not(:last-child) {
    margin-bottom: 30px;
  }
}

/** END passgan **/
/** how-protect **/
#how-protect {
  position: relative;
  padding: 0 0 120px;
}

#how-protect:before {
  content: "";
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  height: 50%;
  opacity: 0.6;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#a6000000", endColorstr="#00000000", GradientType=0);
  z-index: 1;
}

#how-protect .container {
  position: relative;
  z-index: 10;
}

#how-protect .how-protect__heading {
  background-color: #091b2d;
  border-radius: 25px;
  padding: 35px 40px;
  margin-bottom: 80px;
  font-family: "Inter";
  font-size: 16px;
  color: #1D6799;
}

#how-protect .how-protect__heading h2 {
  margin-bottom: 0;
  font-size: 42px;
  font-weight: 400;
  color: #FF910D;
}

#how-protect .how-protect__block {
  padding-bottom: 80px;
  margin-bottom: 80px;
  border-bottom: 1px solid #2D415E;
}

#how-protect .how-protect__block .number {
  position: absolute;
  font-family: "Inter";
  font-size: 42px;
  color: #FF910D;
}

#how-protect .how-protect__block .image-wrapper {
  position: relative;
}

#how-protect .how-protect__block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

@media (min-width: 992px) {
  #how-protect .row {
    --bs-gutter-x: 40px;
  }

  #how-protect .row .col-lg-5 {
    width: 45%;
  }

  #how-protect .row .col-lg-7 {
    width: 55%;
  }

  #how-protect .how-protect__block.one .number {
    bottom: -55px;
    right: 10px;
  }

  #how-protect .how-protect__block.two .number {
    left: -111px;
    bottom: 5px;
  }

  #how-protect .how-protect__block.three .number {
    right: -535px;
    bottom: 5px;
  }
}

@media (min-width: 1200px) {
  #how-protect .how-protect__block.three .image-wrapper {
    margin-right: -294px;
  }

  #how-protect .how-protect__block.three .number {
    right: -302px;
  }
}

@media (min-width: 1400px) {
  #how-protect .row {
    --bs-gutter-x: 50px;
  }

  #how-protect .row .col-xxl-5 {
    width: 45%;
  }

  #how-protect .row .col-xxl-7 {
    width: 55%;
  }

  #how-protect .how-protect__block.three .number {
    right: -336px;
  }

  #how-protect .how-protect__block.three .image-wrapper {
    margin-right: -286px;
  }
}

@media (max-width: 991.98px) {
  #how-protect .how-protect__heading h2 {
    margin-bottom: 20px;
  }

  #how-protect .how-protect__block .number {
    top: 0;
    right: 0;
  }

  #how-protect .how-protect__block .image-wrapper {
    padding-right: 60px;
    margin-bottom: 20px;
  }
}

@media (max-width: 575.98px) {
  #how-protect .how-protect__heading {
    padding: 20px 20px;
  }
}

/** END how-protect **/
/** methodology **/
#methodology {
  padding: 0 0 80px;
}

#methodology .text-wrapper {
  min-height: 100%;
  background-color: #091B2D;
  padding: 40px 30px;
  border-radius: 25px;
}

#methodology .text-wrapper h2 {
  margin-bottom: 30px;
  font-size: 42px;
  font-weight: 400;
  color: #FF910D;
}

#methodology .col-lg-5 .text-wrapper {
  background-color: #266BDC;
  color: #001233;
}

#methodology .col-lg-5 .text-wrapper h2 {
  color: #A9DBED;
}

@media (max-width: 991.98px) {
  #methodology .row>div:not(:last-child) {
    margin-bottom: 40px;
  }
}

/** END methodology **/

/** extra **/
.helpful-articles {
  margin-top: 100px;
  border: 1px solid #2D415E;
  border-radius: 10px;
  padding: 20px 20px;
}

.helpful-articles p {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 10px;
}

.helpful-articles .nav {
}

.helpful-articles .nav a {
  display: inline-block;
  font-size: 17px;
  color: #A9DBED;
}

.helpful-articles .nav > li {
  width: 100%;
  padding: 5px 10px 0 0;
}

@media (min-width: 768px) {
  .helpful-articles .nav > li {
    width: 50%;
  }
}

@media (min-width: 992px) {
  .helpful-articles .nav > li {
    width: 33.333%;
  }
}
/** END extra **/