.section-water-layer::after {
  content: "";
  height: 34px;
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 1;
  background: linear-gradient(0deg, rgb(10, 15, 20) 1%, rgba(253, 187, 45, 0) 98%);
}

.table-wrapper {
  overflow-x: auto;
  width: 100%;
}

.mt-auto {
  margin-top: auto;
}

.flex {
  display: flex;
}

.help-center-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding-top: 42px;
  padding-bottom: 5rem;
  justify-content: center;
}
.help-center-list li {
  width: 50%;
  padding-bottom: 34px;
}
.help-center-list li a {
  background-color: #ebf7ff;
  border-radius: 15px;
  padding: 48px 40px 48px 47px;
  text-decoration: none;
  display: flex;
  width: 100%;
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0.26px;
  color: #02182f;
  position: relative;
  transition-property: transform, background-color, color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 500ms, 300ms, 100ms;
  height: 100%;
  align-items: center;
}
.help-center-list li a span {
  width: 0.5rem;
  height: 0.28rem;
  position: absolute;
  bottom: 34px;
  border-radius: 10px;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 500ms;
  opacity: 0;
}
.help-center-list li a img {
  position: absolute;
  top: 10px;
  right: 10px;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 500ms;
  opacity: 0;
}
.help-center-list li a:hover {
  background-color: #39f;
  color: white;
  transform: translateY(-8px);
}
.help-center-list li a:hover img {
  opacity: 1;
  transform: translate(-15px, 15px);
}
.help-center-list li a:hover span {
  width: 3rem;
  background-color: white;
  opacity: 1;
}
.help-center-list li:nth-child(odd) {
  padding-right: 34px;
}

.m-block-16 {
  margin: 15px 0 16px;
}

.search-container {
  position: relative;
  max-width: 600px;
  width: 100%;
  margin-bottom: 1.75rem;
}
.search-container .icon {
  background: white url(../../assets/images/search.png);
  height: 24px;
  width: 24px;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
}
.search-container .icon.clear {
  cursor: pointer;
}
.search-container input[type=text] {
  width: 100%;
  font-size: 16px;
  border: 0;
  box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  padding: 20px 28px;
  background-color: #fff;
  border-radius: 10px;
}
.search-container .results-box {
  box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 50px;
  width: 100%;
  background: #fff;
  border: 1px solid #eeeeee;
  border-radius: 0 0 6px 6px;
  max-height: 50vh;
  overflow-y: auto;
  display: none;
  z-index: 996;
}
.search-container .results-box .result-item {
  transition: 0.35s ease;
  padding: 10px 28px;
  border-bottom: 1px solid #eee;
  font-size: 0.9rem;
}
.search-container .results-box .result-item:last-child {
  border-bottom: none;
}
.search-container .results-box .result-item:not(.no-result):hover {
  padding-left: 38px;
  background: rgb(246, 251, 254);
  cursor: pointer;
  color: #419efe;
}
.search-container .no-result {
  cursor: default;
  color: #777;
}

.accordion-wrapper {
  max-width: 900px;
  padding-bottom: 23px;
}
.accordion-wrapper h2 {
  margin-bottom: 0.8rem;
}
.accordion-wrapper .accordion-actions {
  margin-bottom: 0.75rem;
  padding: 0.25rem;
  background-color: rgb(241, 245, 249);
  border-radius: 0.45rem;
  display: flex;
  float: right;
  position: relative;
  z-index: 1;
}
.accordion-wrapper .accordion-actions button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  color: rgb(100, 117, 139);
  cursor: pointer;
  background-color: transparent;
  border: 0;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.accordion-wrapper .accordion-actions button.active {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  color: #3399ff;
  background-color: white;
}
.accordion-wrapper .accordion {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
  background: #fff;
  clear: both;
}
.accordion-wrapper .accordion:not(:last-child) {
  margin-bottom: 40px;
}
.accordion-wrapper .accordion .accordion-item {
  border-bottom: 1px solid #efefef;
}
.accordion-wrapper .accordion .accordion-item.active .accordion-header {
  background: #f8fcff;
}
.accordion-wrapper .accordion .accordion-item .accordion-header {
  width: 100%;
  background: #fff;
  border: none;
  display: flex;
  gap: 12px;
  padding: 18px 20px;
  cursor: pointer;
  text-align: left;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.16px;
  color: #14263b;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.accordion-wrapper .accordion .accordion-item .accordion-header:hover {
  background: #f5f5f5;
}
.accordion-wrapper .accordion .accordion-item .accordion-header .icon {
  font-size: 22px;
  width: 24px;
  text-align: center;
}
.accordion-wrapper .accordion .accordion-item .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px 0 25px;
  font-weight: 400;
  font-size: 14px;
  opacity: 0.7;
  letter-spacing: 0.14px;
}
.accordion-wrapper .accordion .accordion-item .accordion-content p {
  margin: 10px 0;
}
.accordion-wrapper .accordion .accordion-item .accordion-content p.m-block-16 {
  margin: 15px 0 16px;
}
.accordion-wrapper .accordion .accordion-item .accordion-content p.mt-20 {
  margin-top: 20px;
}
.accordion-wrapper .accordion .accordion-item .accordion-content ul {
  padding: 3px 20px 20px 20px;
  margin-bottom: 0;
  list-style-type: circle;
}

.max-1000 {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.max-1000.medialist .medialist-left {
  width: 27%;
}

.legal {
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  margin-bottom: 110px;
}
.legal .legal-box {
  width: 47%;
  background-color: #ebf7ff;
  border-radius: 15px;
  padding: 48px 40px 48px 47px;
}
.legal .legal-box h2 {
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0.26px;
  margin-bottom: 35px;
  margin-top: 19px;
}
.legal .legal-box ul {
  list-style: none;
}
.legal .legal-box ul li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 27px;
}
.legal .legal-box ul li::before {
  content: "";
  width: 17px;
  height: 17px;
  position: absolute;
  left: 0;
  background: url(../assets/images/check-list-icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  top: 6.5px;
  opacity: 0.8;
}
.legal .legal-box ul li a {
  text-decoration: none;
  font-weight: 400;
  color: #14263b;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.2px;
}
.legal .legal-box ul li a:hover {
  color: #39f;
}

.notification {
  background: #ebf4ff;
  padding: 7px 14px;
  font-size: 14px;
  font-weight: 600;
  color: #414243;
  margin-bottom: 0;
  border-radius: 2px;
}

.ml-32 {
  margin-left: 32px;
}

.inner-box {
  margin-left: 32px;
  display: block;
  margin-top: 17px;
}

.interest-table {
  width: 100%;
  width: -webkit-fill-available;
  max-width: 100%;
  border-collapse: collapse;
}

h4 {
  color: hsl(218, 25%, 15%);
  font-weight: 700;
  font-size: 17px;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.interest-table th {
  text-align: left;
  font-size: 18px;
  padding: 16px;
  border-bottom: 1px solid #b3d7ff;
  font-weight: 600;
  background-color: #daecff;
  box-shadow: 0 0 0 1px #b3d7ff;
}

.interest-table td {
  padding: 14px;
  border: 1px solid #b3d7ff;
  vertical-align: top;
  font-size: 15px;
  line-height: 1.6;
}

.interest-table .label {
  width: 35%;
  font-weight: 600;
}

.interest-table a {
  color: #3399fe;
  text-decoration: none;
}

.interest-table a:hover {
  text-decoration: underline;
}

.article {
  background: url(../assets/images/privacy-policy-bg-left.svg) top left no-repeat, url(../assets/images/privacy-policy-bg-right.svg) top right no-repeat, linear-gradient(180deg, #9bd7ff, white);
  background-repeat: no-repeat;
  background-position: top left, top right, center;
  color: #040307;
  min-height: 27rem;
  display: flex;
  align-items: end;
  justify-content: center;
  position: relative;
  background-size: contain;
}
.article h1 {
  padding-top: 7rem;
  padding-bottom: 4rem;
  font-size: 3rem;
  line-height: 1.2;
  text-align: center;
  font-weight: 800;
  padding-inline: 20px;
  max-width: 1034px;
}
.article.help-center {
  flex-direction: column;
  align-items: center;
}
.article.help-center h1 {
  padding-bottom: 2rem;
}
.article.help-center .label {
  letter-spacing: 0.1em;
  color: rgb(91, 102, 117);
  text-transform: uppercase;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 600;
}
.article.help-center .label a {
  text-decoration: none;
  color: rgb(150, 165, 186);
}
.article.help-center .label a:hover {
  color: rgb(91, 102, 117);
}
.article::before {
  content: "";
  height: 89px;
  width: 120px;
  position: absolute;
  background: url(../assets/images/privacy-policy-cloude-left.svg);
  top: 105px;
  left: 9%;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.5;
}
.article::after {
  content: "";
  height: 132px;
  width: 212px;
  position: absolute;
  background: url(../assets/images/privacy-policy-cloude-right.svg);
  top: 96px;
  left: 89%;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateX(-100%);
  opacity: 0.8;
}

.layout {
  padding-top: 42px;
  padding-bottom: 5rem;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
}
.layout.single-layout {
  grid-template-columns: 1fr;
}
.layout .sidebar-nav {
  overflow: hidden;
  position: sticky;
  top: 8rem;
  height: -moz-fit-content;
  height: fit-content;
  border: 1px solid #cee7ff;
  border-radius: 0.5rem;
  padding: 1.5rem 1.2rem;
  background-color: rgba(247, 251, 255, 0.4901960784);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.layout .sidebar-nav .title {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: hsl(218, 25%, 15%);
  font-family: "inter", sans-serif;
  line-height: 1.5rem;
}
.layout .sidebar-nav ul {
  list-style: none;
  padding: 0;
}
.layout .sidebar-nav ul li a {
  display: block;
  padding: 0.5rem 0.75rem;
  color: #353a42;
  text-decoration: none;
  border-radius: calc(0.5rem - 2px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.875rem;
  font-family: "Inter", sans-serif;
}
.layout .sidebar-nav ul li a:hover {
  color: #3399ff;
}
.layout .sidebar-nav ul li a.active {
  background-color: #3399ff;
  color: #fff;
  font-weight: 500;
  margin-block: 0.3rem;
}
.layout .content {
  flex: 1;
  overflow: hidden;
  scroll-margin-top: 6rem;
}
.layout .content section {
  padding-top: 2rem;
}
.layout .content section:first-of-type {
  margin-top: -2rem;
}
.layout .content .heading {
  color: #3399ff;
  font-size: 1.65rem;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  margin-bottom: 0.75rem;
}
.layout .content p {
  color: black;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.layout .content ul,
.layout .content ol {
  color: black;
  line-height: 1.7;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
.layout .content li:not(.mb-0) {
  margin-bottom: 0.5rem;
}
.layout .content strong {
  color: hsl(218, 25%, 15%);
  font-weight: 600;
}
.layout .content .subsection {
  padding-left: 1.5rem;
  border-radius: 0.5rem;
}
.layout .content .subsection:not(:last-of-type) {
  margin-bottom: 2rem;
}
.layout .content .subsection h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  margin-top: 2rem;
  color: hsl(218, 25%, 15%);
  font-family: "inter", sans-serif;
}
.layout .content .rights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.layout .content .rights-grid .right-item {
  border: 1px solid #3399ff;
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: #f7fbff;
}
.layout .content .rights-grid .right-item h3 {
  color: #3399ff;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.layout .content .rights-grid .right-item p {
  margin-bottom: 0;
}
.layout .content .rights-grid .right-item:hover {
  box-shadow: 0 10px 30px -10px hsla(224, 76%, 48%, 0.2);
  transform: translateY(-2px);
}

.medialist {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: self-start;
  justify-content: space-between;
  background: #fff;
  padding: 32px;
  border-radius: 0.5rem;
  box-shadow: 0px 13px 24px -4px rgba(0, 0, 0, 0.15);
  border: 1px solid #cee7ff;
}
.medialist h2 {
  line-height: 105%;
  color: #42a5f0;
  font-size: 1.35rem;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.medialist p {
  color: black;
  font-style: normal;
  line-height: 142%;
  display: block;
  font-size: 0.795rem;
  text-wrap: balance;
}
.medialist p.normal-font {
  font-size: 0.895rem;
}
.medialist p:not(.mt-auto) {
  margin-bottom: 10px;
}
.medialist p a {
  color: #3398fc;
  text-decoration: none;
}
.medialist .medialist-left {
  position: relative;
  height: 100%;
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  padding-right: 30px;
}
.medialist .medialist-center {
  position: relative;
  height: 100%;
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  padding-right: 40px;
}
.medialist .medialist-center::after {
  position: absolute;
  content: "";
  top: 0;
  left: -20px;
  width: 1px;
  background-color: #cbd1db;
  bottom: 0;
}
.medialist .medialist-right {
  position: relative;
  flex: 1 1 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.medialist .medialist-right::after {
  position: absolute;
  content: "";
  top: 0;
  left: -20px;
  width: 1px;
  background-color: #cbd1db;
  bottom: 0;
}

.section-water-layer {
  position: relative;
}
.section-water-layer::before {
  content: "";
  height: 244px;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
  transform: translateY(-100%);
  background: linear-gradient(0deg, rgb(246, 248, 245) 1%, rgba(253, 187, 45, 0) 98%);
}
.section-water-layer {
  background: url(../assets/images/our-app-bottom-layer.svg);
  background-size: cover;
  background-repeat: no-repeat;
  margin-left: -1px;
}
.section-water-layer img {
  width: 100%;
  object-fit: cover;
  object-position: bottom center;
  height: auto;
  visibility: hidden;
}

.progress-bar {
  background-color: #459df4;
  transition: width 0.2s ease-out;
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 3px;
}

@media (max-width: 992px) {
  .help-center-list li {
    padding-bottom: 24px;
  }
  .help-center-list li:nth-child(odd) {
    padding-right: 24px;
  }
  .help-center-list li a {
    padding: 38px 20px 38px 37px;
    border-radius: 12px;
    font-size: 22px;
  }
  .help-center-list li a span {
    bottom: 28px;
  }
  .layout {
    gap: 1.5rem;
  }
  .accordion-wrapper .accordion-actions button span {
    display: none;
  }
  .legal .legal-box {
    border-radius: 12px;
    padding: 34px 20px 34px 34px;
  }
  .legal .legal-box img {
    width: 44px;
  }
  .legal .legal-box h2 {
    font-size: 22px;
    margin-bottom: 22px;
    line-height: 34px;
  }
  .legal .legal-box ul li::before {
    top: 7px;
  }
  .legal .legal-box ul li {
    padding-left: 25px;
  }
  .legal .legal-box ul li a {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .help-center-list li {
    padding-bottom: 20px;
  }
  .help-center-list li:nth-child(odd) {
    padding-right: 20px;
  }
  .help-center-list li a {
    padding: 22px 14px 22px 28px;
    border-radius: 8px;
    font-size: 16px;
  }
  .help-center-list li a span {
    bottom: 20px;
    height: 0.2rem;
  }
  .help-center-list li a:hover img {
    transform: translate(-6px, 6px) rotate(-25deg);
    width: 14px;
  }
  .max-1000.medialist .medialist-left {
    width: 100%;
  }
  .section-water-layer img {
    margin-top: -32px;
  }
  .medialist h2 {
    gap: 0;
    flex-direction: column;
    font-size: 1.2rem;
  }
  .medialist h2 img {
    width: auto;
    height: 34px;
    margin-bottom: 4px;
  }
  .medialist {
    flex-direction: column;
    border: 0;
    text-align: center;
    gap: 50px;
  }
  .medialist .medialist-left,
  .medialist .medialist-center,
  .medialist .medialist-right {
    width: 100%;
    padding-right: 0;
  }
  .medialist .medialist-center::after,
  .medialist .medialist-right::after {
    top: -24px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #f1f5f9;
  }
  .search-container {
    margin-bottom: 0.75rem;
    max-width: 340px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .search-container input[type=text] {
    padding: 14px 15px;
    border-radius: 5px;
  }
  .search-container .icon {
    top: 0.84rem;
    right: 2.2rem;
  }
  .search-container .results-box {
    top: 42px;
    max-width: calc(100% - 40px);
  }
  .search-container .results-box .result-item {
    padding: 12px 20px;
    font-size: 0.75rem;
  }
  .article {
    min-height: 17rem;
  }
  .article::after {
    display: none;
  }
  .article::before {
    top: 59px;
    left: 0;
  }
  .article h1 {
    font-size: 1.62rem;
    letter-spacing: 0.5px;
    padding-bottom: 1.7rem;
    padding-top: 5rem;
  }
  .article.help-center .label {
    font-size: 0.62rem;
    letter-spacing: 0.05em;
  }
  .article.help-center h1 {
    padding-bottom: 0.85rem;
    padding-top: 5rem;
  }
  .accordion-wrapper .accordion-actions {
    float: none;
    display: inline-flex;
  }
  .progress-bar {
    display: none;
  }
  .legal {
    flex-direction: column;
    gap: 40px;
    max-width: 600px;
  }
  .legal .legal-box {
    width: 100%;
  }
  .section-water-layer img {
    height: 170px;
    object-position: 84%;
  }
  .layout:not(.single-layout) {
    padding-top: 0;
  }
  .layout .content .heading {
    line-height: 128%;
    font-size: 1.32rem;
  }
  .layout .content .subsection {
    padding-left: 0;
    padding-top: 1rem;
  }
  .layout {
    grid-template-columns: 1fr;
  }
  .layout .sidebar-nav {
    z-index: 2;
    overflow-x: auto;
    top: 69px;
    background-color: #f1f5f9;
    border-radius: 0;
    border: 0;
    margin-left: -20px;
    margin-right: -20px;
    padding: 0 20px;
  }
  .layout .sidebar-nav::-webkit-scrollbar {
    display: none;
  }
  .layout .sidebar-nav .title {
    display: none;
  }
  .layout .sidebar-nav ul {
    white-space: nowrap;
  }
  .layout .sidebar-nav ul li {
    display: inline-block;
    margin-bottom: 0;
  }
  .layout .sidebar-nav ul li:last-child {
    margin-right: 1rem;
  }
  .layout .sidebar-nav ul li a {
    white-space: nowrap;
  }
  .layout .sidebar-nav ul li a.active {
    background-color: transparent;
    color: #3399ff;
  }
  .section-water-layer::after {
    height: 19px;
  }
}
@media (max-width: 600px) {
  .article {
    min-height: 13rem;
  }
  .article::before {
    display: none;
  }
  .help-center-list li {
    width: 100%;
  }
  .help-center-list li:nth-child(odd) {
    padding-right: 0;
  }
}
