/*
Theme Name: Viki Theme
Theme URI: google.com
Author: Oleksandr Nikitin
Author URI: google.com
Description:  Theme from scratch
Version: 1.0
*/
html {
  background: #fff;
  color: #000;
  font-family: Inter, sans-serif;
  font-optical-sizing: auto;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
}
body {
  margin: auto;
}
.header {
  border-bottom: 1px solid #dedede;
  left: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.cs-header {
  height: 6.7rem;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 896px) {
  .cs-header {
    height: 6rem;
  }
}
.cs-header-container {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  justify-content: space-between;
}
.cs-header-nav {
  font-size: 1.6rem;
}
@media screen and (max-width: 896px) {
  .cs-header-nav {
    display: none;
    position: absolute;
    top: 6rem;
    left: 0;
    width: 100%;
    height: calc(100svh - 6rem);
    background: #fff;
  }
  .cs-header-nav.active {
    display: block;
  }
}
.cs-header-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.2rem;
  list-style: none;
}
@media screen and (max-width: 1200px) {
  .cs-header-nav ul {
    gap: 1.6rem;
  }
}
@media screen and (max-width: 896px) {
  .cs-header-nav ul {
    flex-direction: column;
    gap: 0;
  }
  .cs-header-nav li {
    padding: 0.95rem 2.4rem;
  }
  .cs-header-nav li a {
    font-size: 1.8rem;
    line-height: 155%;
  }
}
/* section {
      max-width: 1440px;    
      margin: 0 auto;
  } */
.cs-header-nav li a {
  color: #000;
  font-weight: 400;
  text-decoration: none;
  transition: var(--transition);
}
.cs-header-nav li a:hover {
  color: #464be8;
}
.cs-header-nav li.current-menu-item a {
  color: #464be8;
  font-weight: 500;
}
.cs-header-search {
  position: relative;
  box-sizing: content-box;
}
.cs-search-container {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 26px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 52px;
  overflow: hidden;
  width: 297px;
}
.cs-header__mobile-login {
  display: none;
}
@media screen and (max-width: 896px) {
  .cs-header__mobile-login {
    display: flex;
    flex-direction: column;
  }
  .cs-header__mobile-login a {
    padding: 0.95rem 2.4rem;
    font-size: 1.8rem;
    line-height: 155%;
  }
}
@media screen and (max-width: 1120px) {
  .cs-search-container {
    display: none;
  }
}
.cs-search-link-icon {
  display: none;
}
@media screen and (max-width: 1120px) and (min-width: 896px) {
  .cs-search-link-icon {
    display: inline;
    display: initial;
  }
}
.cs-search-section {
  -ms-flex-negative: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-shrink: 0;
  gap: 8px;
  padding: 0 12px;
  width: 8rem;
}
.cs-search-icon {
  stroke: #8e8e8e;
  height: 18px;
  width: 18px;
}
.cs-search-input {
  background: transparent;
  border: none;
  color: #333;
  font-size: 16px;
  outline: none;
  width: 5rem;
}
.cs-search-input::-webkit-input-placeholder {
  color: #8e8e8e;
  opacity: 1;
}
.cs-search-input::-moz-placeholder {
  color: #8e8e8e;
  opacity: 1;
}
.cs-search-input:-ms-input-placeholder {
  color: #8e8e8e;
  opacity: 1;
}
.cs-search-input::-ms-input-placeholder {
  color: #8e8e8e;
  opacity: 1;
}
.cs-search-input::placeholder {
  color: #8e8e8e;
  opacity: 1;
}
.cs-separator {
  background-color: #dcdcdc;
  height: 50px;
  width: 1px;
}
.cs-category-container {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-grow: 1;
  height: 100%;
  position: relative;
}
.cs-category-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: transparent;
  border: none;
  color: #333;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  height: 100%;
  outline: none;
  padding: 0 30px 0 12px;
  width: 100%;
}
.cs-dropdown-icon {
  stroke: #333;
  height: 16px;
  pointer-events: none;
  position: absolute;
  right: 2rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 16px;
}
.cs-header-admin {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.2rem;
}
@media screen and (max-width: 1200px) {
  .cs-header-admin {
    gap: 1.6rem;
  }
}
.cs-header-admin a {
  color: #000;
  font-size: 1.6rem;
  font-weight: 400;
  text-decoration: none;
}
@media screen and (max-width: 896px) {
  .cs-header-admin a {
    display: none;
  }
}
.cs-header-nav-mobile {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
}
.cs-search-link-mobile {
  display: none;
}
@media screen and (min-width: 896px) {
  .cs-header-nav-mobile, .cs-search-link-mobile {
    display: none;
  }
}
.cs-menu-link-mobile-icon {
  height: 2.4rem;
  width: 2.4rem;
}
.cs-menu-link-mobile-icon svg:last-child {
  display: none;
}
.cs-menu-link-mobile-icon.active svg:first-child {
  display: none;
}
.cs-menu-link-mobile-icon.active svg:last-child {
  display: block;
}
.cs-article-top {
  background-clip: inherit;
  background-image: url("../images/8dd23e3e22335d39f8c9.jpg");
  background-position-x: cover;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 auto;
}
@media screen and (max-width: 1320px) {
  .cs-article-top {
    background-size: cover;
  }
}
@media screen and (max-width: 1060px) {
  .cs-article-top {
    background-position-x: right;
  }
}
@media screen and (max-width: 896px) {
  .cs-article-top {
    background-image: url(../images/a0d485e6c5b6bb83dd73.jpg);
    background-position-x: center;
    height: 37.5rem;
  }
}
.cs-article-top-container {
  padding: 10rem 0;
}
@media screen and (max-width: 896px) {
  .cs-article-top-container {
    padding: 6rem 0;
    position: relative;
    top: 37.5rem;
  }
}
.cs-article-top-title {
  padding-right: 30rem;
  text-align: left;
}
@media screen and (max-width: 896px) {
  .cs-article-top-title {
    padding: 0;
  }
}
.cs-article-top-title h1 {
  color: #fff;
  font-size: 7.2rem;
  font-weight: 400;
  letter-spacing: 0.09rem;
  line-height: 119%;
  margin-top: 0;
}
@media screen and (max-width: 896px) {
  .cs-article-top-title h1 {
    color: #000;
    font-size: 4rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 120%;
  }
}
.cs-article-top-subtitle {
  margin-block-start: 5rem;
  line-height: 115%;
  text-align: left;
  max-width: 86rem;
  letter-spacing: 0.12rem;
  font-weight: 200;
  font-size: 2.4rem;
  color: #fff;
}
@media screen and (max-width: 896px) {
  .cs-article-top-subtitle {
    margin-block-start: 3rem;
    padding: 0;
    font-size: 2rem;
    font-weight: 400;
  }
}
@media screen and (max-width: 896px) {
  .cs-article-top-subtitle p {
    color: #000;
  }
}
.cs-article-top-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.2rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 896px) {
  .cs-article-top-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.2rem;
  }
}
@media screen and (max-width: 896px) {
  .cs-article-top-buttons a:first-child {
    background-color: #000;
    color: #fff;
  }
}
.cs-article-top-buttons a:first-child:hover {
  background-color: #fff;
  color: #000;
}
@media screen and (max-width: 896px) {
  .cs-article-top-buttons a:first-child:hover {
    background-color: #000;
    color: #fff;
  }
}
.cs-article-top-buttons a:last-child {
  background-color: #fff;
  color: #000;
  font-weight: 300;
}
@media screen and (max-width: 896px) {
  .cs-article-top-buttons a:last-child {
    background-color: transparent;
    border: 1px solid #000;
    color: #000;
  }
}
.cs-article-top-buttons a:last-child:hover {
  background-color: transparent;
  color: #fff;
}
@media screen and (max-width: 896px) {
  .cs-article-top-buttons a:last-child:hover {
    background-color: #000;
    color: #fff;
  }
}
.cs-article-top-button-find {
  padding-inline: 6.3rem !important;
}
.cs-article-aipowered {
  padding-block: 10rem;
}
@media screen and (max-width: 896px) {
  .cs-article-aipowered {
    background: #f8f8f8;
    margin-top: 60rem;
    padding: 6rem 0;
  }
}
.cs-article-aipowered-btn {
  margin-block-start: 3.2rem;
  margin-inline: auto;
  width: max-content !important;
}
.cs-article-aipowered h2 {
  color: #000;
  font-size: 6rem;
  font-weight: 300;
  line-height: 7.2rem;
  margin: 0;
  padding: 0 18rem;
  text-align: center;
  letter-spacing: 0.21rem;
}
@media screen and (max-width: 896px) {
  .cs-article-aipowered h2 {
    font-size: 3.2rem;
    line-height: 40px;
    margin-top: 0;
    padding: 0;
  }
  .cs-article-aipowered-btn {
    width: 100% !important;
  }
}
.cs-article-aipowered h2 span {
  font-style: italic;
  font-weight: 700;
}
.cs-section {
  background-clip: inherit;
  background-image: url(../images/f2d281c120234be5fc1b.jpg);
  background-size: cover;
  border-radius: 2rem;
  margin-top: 10rem;
}
.cs-article-aipowered-mob-img {
  display: none;
}
@media screen and (max-width: 896px) {
  .cs-section {
    background-image: none;
    margin-top: 2rem;
  }
  .cs-article-aipowered-mob-img {
    margin-block-start: 3rem;
    display: block;
    width: 100%;
    border-radius: 2rem;
  }
}
.cs-section-container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 4rem;
}
@media screen and (max-width: 896px) {
  .cs-section-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    padding: 0;
    position: relative;
  }
}
.cs-label {
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 1.6rem;
  -webkit-box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  padding: 2.4rem;
  max-width: 52.3rem;
}
.cs-article-aipowered-btn-mob {
  display: none !important;
}
@media screen and (max-width: 1200px) {
  .cs-label {
    width: calc(100% - 8rem);
  }
  .cs-article-aipowered-btn-mob {
    margin-block-start: 3rem;
    display: block !important;
  }
}
@media screen and (max-width: 896px) {
  .cs-label {
    margin-top: 1.6rem;
    width: 100%;
    max-width: 100%;
    padding: 1.27rem 2rem 1.6rem 1.47rem;
  }
}
.cs-label-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.4rem;
}
.cs-label-image {
  background-clip: inherit;
  background-image: url(../images/fced9ed8ad4297045b33.png);
  background-size: cover;
  height: 9.2rem;
  width: 9.2rem;
}
.cs-label-text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: left;
  letter-spacing: 0.1rem;
}
.cs-label-text h3 {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 200;
  line-height: 3.2rem;
  margin: 0;
}
@media screen and (max-width: 896px) {
  .cs-label-text h3 {
    color: #000;
    font-size: 1.6rem;
    line-height: 100%;
    font-weight: 400;
  }
  .cs-label-text p {
    font-weight: 400 !important;
  }
  .cs-label-image {
    width: 5rem;
    height: 5rem;
  }
}
.cs-label-text p {
  color: #fff;
  font-size: 2.4rem;
  font-style: italic;
  font-weight: 200;
  line-height: 120%;
  margin: 0;
  padding-top: 2rem;
}
@media screen and (max-width: 896px) {
  .cs-label-text p {
    color: #000;
    font-size: 1.6rem;
    line-height: 100%;
    padding-top: 0.8rem;
  }
}
.cs-section-icons {
  margin-top: 6.5rem;
}
@media screen and (max-width: 896px) {
  .cs-section-icons {
    margin-top: 0;
  }
}
.cs-section-icons-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
}
.cs-section-icons-row:last-child {
  margin-block-start: 3rem;
}
@media screen and (max-width: 896px) {
  .cs-section-icons-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1rem;
  }
  .cs-section-icons-row:last-child {
    margin-block-start: 0.8rem;
  }
}
.cs-section-icon-image {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2rem;
  -webkit-box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 7rem;
  justify-content: center;
  width: 7rem;
}
.cs-section-icon-description {
  -webkit-box-flex: 1;
  color: #fff;
  -ms-flex: 1;
  flex: 1;
  font-size: 1.8rem;
  font-weight: 200;
  margin: 0;
  padding: 0;
  text-align: left;
  width: 22.5rem;
  letter-spacing: 0.05rem;
}
@media screen and (max-width: 896px) {
  .cs-section-icon-description {
    color: #000;
    font-size: 1.6rem;
    font-weight: 400;
  }
  .cs-section-icon-image {
    box-shadow: none;
    width: 4rem;
    height: 4rem;
  }
}
.cs-section-icon-container {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 3rem;
}
.cs-article-how {
  background-color: #f8f8f8;
  padding-block: 10rem;
}
@media screen and (max-width: 896px) {
  .cs-article-how {
    background: #fff;
    padding: 6rem 2rem;
  }
  .cs-section-icon-container {
    gap: 2rem;
  }
}
.cs-article-how h2 {
  margin-block-end: 6.1rem;
  color: #000;
  font-size: 6rem;
  font-weight: 400;
  line-height: 7.2rem;
  text-align: center;
}
@media screen and (max-width: 896px) {
  .cs-article-how h2 {
    font-size: 3.2rem;
    line-height: 100%;
    padding: 0 0 4rem;
  }
}
.cs-section-info {
  background-clip: inherit;
  background-image: url(../images/23c126c7362f3dc14a16.jpg);
  background-size: cover;
  border-radius: 2rem;
  padding: 4rem 4rem 2.8rem;
  text-align: left;
}
@media screen and (max-width: 896px) {
  .cs-section-info {
    background-image: url(../images/e6ba91c845757880e3d4.jpg);
    height: 40rem;
    margin-top: 25rem;
    padding: 1rem 0 0;
  }
}
.cs-section-info.cs-second {
  background-image: url(../images/324751ec2bd10c14a117.jpg);
  margin-top: 6.4rem;
}
@media screen and (max-width: 896px) {
  .cs-section-info.cs-second {
    background-image: url(../images/fa723451e4805827909a.jpg);
    height: 40rem;
    margin-top: 80.4rem;
  }
}
.cs-section-info-pretitle {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 200;
  margin: 0;
  padding: 0;
  text-align: left;
  letter-spacing: 0.11rem;
}
@media screen and (max-width: 896px) {
  .cs-first .cs-section-info-pretitle, .cs-second .cs-section-info-pretitle {
    color: #000;
    font-size: 1.6rem;
    margin-top: -26rem;
  }
}
.cs-section-info .cs-section-info-title {
  color: #fff;
  font-size: 4rem;
  font-weight: 300;
  line-height: 4rem;
  margin: 0;
  padding: 1rem 0 3rem;
  text-align: left;
  max-width: 62.2rem;
  letter-spacing: 0.23rem;
  line-height: 120%;
}
@media screen and (max-width: 896px) {
  .cs-section-info .cs-section-info-title {
    color: #000;
    font-size: 2.8rem;
    line-height: 100%;
    padding: 1rem 0 5rem;
    width: 100%;
  }
}
.cs-section-info-link {
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 10rem;
  color: #000;
  cursor: pointer;
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 300;
  padding: 1.8rem 4.5rem;
  text-align: left;
  text-decoration: none;
  width: max-content !important;
}
@media screen and (max-width: 896px) {
  .cs-section-info-link {
    display: none !important;
  }
}
.cs-section-info-link:hover {
  background-color: transparent;
  color: #fff;
}
.cs-section-info-badges {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 2.4rem;
  padding: 10rem 0 0;
}
@media screen and (max-width: 896px) {
  .cs-first .cs-section-info-badges, .cs-second .cs-section-info-badges {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    top: 40rem;
  }
}
.cs-section-info-badge {
  -webkit-box-flex: 1;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 1.6rem;
  -webkit-box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  -ms-flex: 1;
  flex: 1;
  padding: 2.4rem;
}
@media screen and (max-width: 896px) {
  .cs-section-info-badge {
    border: 1px solid #000;
  }
}
.cs-section-info-badge .cs-section-info-badge-title {
  color: #000;
  font-size: 2.8rem;
  font-weight: 300;
  margin: 0;
  padding: 0 0 1rem;
  text-align: left;
}
@media screen and (max-width: 896px) {
  .cs-section-info-badge .cs-section-info-badge-title {
    font-size: 2rem;
  }
}
.cs-section-info-badge .cs-section-info-badge-description {
  color: #000;
  font-size: 1.8rem;
  font-weight: 200;
  margin: 0;
  padding: 0;
  text-align: left;
}
@media screen and (max-width: 896px) {
  .cs-section-info-badge .cs-section-info-badge-description {
    font-size: 1.4rem;
  }
}
.cs-platform-article {
  padding-block: 10rem;
}
@media screen and (max-width: 896px) {
  .cs-platform-article {
    padding: 6rem 0;
  }
}
.cs-platform-article-title {
  color: #000;
  font-size: 6rem;
  font-weight: 400;
  line-height: 7.2rem;
  margin-block-end: 4rem;
  text-align: center;
}
@media screen and (max-width: 896px) {
  .cs-platform-article-title {
    margin-block-end: 2rem;
    font-size: 3.2rem;
    line-height: 120%;
  }
}
.cs-platform-article-description {
  margin-block-end: 6rem;
  margin-inline: auto;
  color: #000;
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 120%;
  max-width: 84.4rem;
  letter-spacing: 0.08rem;
  text-align: center;
}
@media screen and (max-width: 896px) {
  .cs-platform-article-description {
    margin-block-end: 4rem;
    font-size: 1.6rem;
    line-height: 130%;
    font-weight: 400;
  }
}
.cs-platform-block {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  background-clip: inherit;
  background-image: url(../images/66ea320e3a025a5e2d09.jpg);
  background-size: cover;
  border-radius: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  padding: 13.2rem 8rem;
}
@media screen and (max-width: 896px) {
  .cs-platform-block {
    background-image: url(../images/5874da75710efbbcb0b3.jpg);
    height: 30.4rem;
    padding: 0;
  }
}
.cs-platform-block-container {
  max-width: 64.3rem;
}
@media screen and (max-width: 896px) {
  .cs-platform-block-container {
    margin-top: 35rem;
    width: 100%;
  }
}
.cs-platform-block-title {
  color: #fff;
  font-size: 4rem;
  font-weight: 400;
  line-height: 7.2rem;
  margin: 0;
  padding: 0 0 3.2rem;
}
@media screen and (max-width: 896px) {
  .cs-platform-block-title {
    color: #000;
    font-size: 2.8rem;
    line-height: 100%;
    width: 100%;
  }
}
.cs-platform-block-description {
  color: #000;
  color: #fff;
  font-size: 2.4rem;
  font-style: italic;
  font-weight: 300;
  line-height: 2.4rem;
  margin: 0;
  padding: 0 0 3.2rem;
  line-height: 120%;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 896px) {
  .cs-platform-block-description {
    color: #000;
    font-size: 1.6rem;
    line-height: 130%;
    font-weight: 400;
  }
}
.cs-platform-block-name {
  color: #000;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 2.4rem;
  margin: 0;
  padding: 0 0 3.2rem;
}
@media screen and (max-width: 896px) {
  .cs-platform-block-name {
    color: #000;
    font-size: 1.6rem;
    line-height: 100%;
  }
}
.cs-platform-block-button {
  width: max-content !important;
}
@media screen and (max-width: 896px) {
  .cs-platform-block-button {
    background-color: #000 !important;
    border: 1px solid #000 !important;
    color: #fff !important;
    display: block;
    width: 100% !important;
  }
}
.cs-platform-block-button:hover {
  background-color: transparent;
  color: #fff;
}
.cs-training-block {
  background: linear-gradient(257.56deg, #dca27f 3.06%, #8e5d7b 62.37%, #674cb8 96.54%);
  border-radius: 2rem;
  margin-top: 6.4rem;
  padding: 10rem 5.3rem;
}
@media screen and (max-width: 896px) {
  .cs-training-block {
    margin-top: 51rem;
    padding: 4rem 2rem;
  }
}
.cs-training-block-description {
  margin-inline: auto;
  max-width: 100rem;
  color: #fff;
  font-size: 2.4rem;
  font-style: italic;
  font-weight: 300;
  line-height: 2.4rem;
  padding: 0 18rem;
  text-align: center;
  letter-spacing: 0.08rem;
  line-height: 120%;
}
@media screen and (max-width: 896px) {
  .cs-training-block-description {
    font-size: 1.6rem;
    line-height: 120%;
    padding: 0 2rem;
  }
}
.cs-training-block-name {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 2.4rem;
  margin: 0;
  padding: 4rem 0;
  text-align: center;
}
@media screen and (max-width: 896px) {
  .cs-training-block-name {
    padding: 0;
  }
}
.cs-training-block-badges {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 1.6rem;
}
@media screen and (max-width: 896px) {
  .cs-training-block-badges {
    margin-block-start: 3rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.cs-training-block-badge {
  -webkit-box-flex: 1;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 1.6rem;
  -webkit-box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  -ms-flex: 1;
  flex: 1;
  padding: 5.2rem 2.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cs-training-block-badge .cs-training-block-badge-title {
  color: #000;
  font-size: 2.8rem;
  font-weight: 300;
  margin: 0;
  padding: 0 0 2rem;
  text-align: center;
  letter-spacing: 0.1rem;
  line-height: 120%;
}
@media screen and (max-width: 896px) {
  .cs-training-block-badge .cs-training-block-badge-title {
    font-size: 2rem;
  }
  .cs-training-block-badge .cs-training-block-badge-title br {
    display: none;
  }
  .cs-training-block-badge {
    padding: 2.4rem;
  }
}
.cs-training-block-badge .cs-training-block-badge-description {
  color: #000;
  font-size: 1.8rem;
  font-weight: 300;
  margin: 0;
  padding: 0;
  text-align: center;
  letter-spacing: 0.04rem;
}
@media screen and (max-width: 896px) {
  .cs-training-block-badge .cs-training-block-badge-description {
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0;
  }
}
.cs-training-block-buttons {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.2rem;
  justify-content: center;
  margin-top: 4rem;
}
@media screen and (max-width: 896px) {
  .cs-training-block-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.5rem;
  }
}
.cs-training-block-button {
  min-width: 20rem;
  text-align: center;
}
.cs-learn-block {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  background-clip: inherit;
  background-image: url(../images/a8b89c560d76530345b1.jpg);
  background-size: cover;
  border-radius: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  margin-top: 6.4rem;
  padding: 13.8rem 7.7rem 19.6rem;
}
@media screen and (max-width: 896px) {
  .cs-learn-block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    background-image: url(../images/436250a7f5f75ad6001f.jpg);
    background-position-y: 0;
    -ms-flex-direction: row;
    flex-direction: row;
    height: 30.4rem;
    margin-top: 4.4rem;
    padding: 0;
  }
  .cs-training-block-button:first-child {
    border: 0.1rem solid var(--color_white) !important;
    color: var(--color_white) !important;
  }
}
.cs-learn-block-container {
  text-align: left;
  max-width: 64.3rem;
}
@media screen and (max-width: 896px) {
  .cs-learn-block-container {
    padding-top: 35rem;
    width: 100%;
  }
}
.cs-learn-block-title {
  color: #fff;
  font-size: 4rem;
  font-weight: 400;
  line-height: 7.2rem;
  margin: 0;
  padding: 0 0 4.2rem;
  text-align: left;
  line-height: 120%;
}
@media screen and (max-width: 896px) {
  .cs-learn-block-title {
    color: #000;
    font-size: 2.8rem;
    line-height: 100%;
    padding: 0 0 2.2rem;
  }
}
.cs-learn-block-button {
  margin-block-start: 1rem;
  padding: 1.8rem 4.5rem;
  width: max-content !important;
}
@media screen and (max-width: 896px) {
  .cs-learn-block-button {
    margin-block-start: 3.5rem;
    background-color: #000 !important;
    border: 1px solid #000 !important;
    color: #fff !important;
    display: block;
    text-align: center;
    width: 100% !important;
  }
}
.cs-learn-block-button:hover {
  background-color: transparent;
  color: #fff;
}
@media screen and (max-width: 896px) {
  .cs-learn-block-button:hover {
    color: #000;
  }
}
.cs-learn-block-list {
  margin: 0 0 0 3.5rem;
  padding: 0;
  list-style-type: disc;
}
.cs-learn-block-list-item {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 2.4rem;
  margin: 0;
  padding: 0 0 3.4rem;
  text-align: left;
  letter-spacing: 0.1rem;
  list-style-type: disc;
}
@media screen and (max-width: 896px) {
  .cs-learn-block-list-item {
    color: #000;
    font-size: 1.6rem;
    line-height: 100%;
    padding: 0 0 0.3rem;
  }
  .cs-learn-block-list {
    margin: 0 0 0 2.5rem;
  }
}
.cs-become-article {
  background: #f8f8f8;
  padding: 10rem 6.4rem;
}
@media screen and (max-width: 896px) {
  .cs-become-article {
    margin-top: 27rem;
    padding: 4rem 0;
  }
}
.cs-become-article-title {
  color: #000;
  font-size: 6rem;
  font-weight: 300;
  line-height: 7.2rem;
  margin: 0;
  padding: 0 1rem 4.2rem;
  text-align: center;
  letter-spacing: 0.21rem;
}
.cs-become-article-title strong {
  font-weight: 300;
  color: #464be8;
}
@media screen and (max-width: 896px) {
  .cs-become-article-title {
    font-size: 3.2rem;
    line-height: 100%;
    padding: 0;
  }
}
.cs-become-article-description {
  color: #000;
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 2.4rem;
  margin: 0 0 8rem;
  padding: 0;
  text-align: center;
  letter-spacing: 0.08rem;
}
@media screen and (max-width: 896px) {
  .cs-become-article-description {
    font-size: 1.6rem;
    line-height: 100%;
    margin: 3rem 0 4.5rem;
  }
}
.cs-become-block-badges {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 2rem;
  padding: 0;
}
@media screen and (max-width: 896px) {
  .cs-become-block-badges {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.cs-become-block-badge {
  -webkit-box-flex: 1;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  border: 1px solid #000;
  border-radius: 2rem;
  -ms-flex: 1;
  flex: 1;
  padding: 4rem 3.2rem;
  text-align: left;
}
@media screen and (max-width: 896px) {
  .cs-become-block-badge {
    padding: 2.4rem;
  }
}
.cs-become-block-badge-title {
  color: #000;
  font-size: 4rem;
  font-weight: 400;
  line-height: 2.4rem;
  margin: 0;
  padding-bottom: 14rem;
  padding-top: 4rem;
  text-align: left;
}
@media screen and (max-width: 896px) {
  .cs-become-block-badge-title {
    font-size: 2.8rem;
    line-height: 100%;
    padding-bottom: 7rem;
    padding-top: 3rem;
  }
}
.cs-become-article-subtitle {
  color: #000;
  font-size: 4rem;
  font-weight: 400;
  line-height: 4.4rem;
  margin: 0;
  padding-bottom: 4.5rem;
  padding-top: 10rem;
}
@media screen and (max-width: 896px) {
  .cs-become-article-subtitle {
    font-size: 2.8rem;
    line-height: 100%;
    padding-bottom: 4rem;
    padding-top: 3rem;
  }
}
.cs-become-block-badge-description {
  color: #000;
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 120%;
  margin: 0;
  padding: 0;
  text-align: left;
  letter-spacing: 0.08rem;
}
@media screen and (max-width: 896px) {
  .cs-become-block-badge-description {
    font-size: 1.6rem;
    line-height: 100%;
  }
}
.cs-become-block-badge-list {
  list-style: none;
  margin: 0;
  padding: 3.5rem 0 0;
  text-align: left;
}
.cs-become-block-badge-list-item {
  color: #000;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 120%;
  margin: 0;
  padding: 1.8rem 0;
  letter-spacing: 0.05rem;
  text-align: left;
}
@media screen and (max-width: 896px) {
  .cs-become-block-badge-list-item {
    font-size: 1.4rem;
    line-height: 100%;
  }
}
.cs-become-article-button {
  background-color: #000;
  border: 1px solid #000;
  border-radius: 10rem;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 300;
  padding: 1.8rem 4.5rem;
  text-align: left;
  text-decoration: none;
}
@media screen and (max-width: 896px) {
  .cs-become-article-button {
    display: block;
    font-size: 1.6rem;
    text-align: center;
  }
}
.cs-become-article-button:hover {
  background-color: transparent;
  color: #000;
}
.cs-become-btn {
  margin-inline: auto;
  width: max-content !important;
}
@media screen and (max-width: 639px) {
  .cs-become-btn {
    width: 100% !important;
  }
}
.cs-divider {
  background-color: #000;
  height: 0.1rem;
}
.cs-tasks-article {
  background-clip: inherit;
  background-image: url(../images/7cc198e42731ef25f131.jpg);
  background-size: cover;
  color: #fff;
  padding: 10rem 0;
  text-align: center;
  overflow: hidden;
}
@media screen and (max-width: 896px) {
  .cs-tasks-article {
    background: linear-gradient(257.56deg, #dca27f 3.06%, #8e5d7b 62.37%, #674cb8 96.54%);
    padding: 5rem 0;
  }
}
.tasks-header h2 {
  font-size: 6rem;
  font-weight: 300;
  margin: 0 0 3rem;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 896px) {
  .tasks-header h2 {
    font-size: 3.2rem;
  }
}
.tasks-header p {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 200;
  margin-bottom: 5.5rem;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 896px) {
  .tasks-header p {
    font-size: 1.6rem;
  }
}
.carousel-container {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 100%;
}
.carousel-track {
  gap: 24px;
  padding-left: calc(50% - 160px);
  padding-right: calc(50% - 160px);
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}
.carousel-track, .task-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.task-card {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  background-color: #fff;
  border-radius: 2rem;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #343a40;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 41.7rem;
  padding: 2.4rem;
  position: relative;
  text-align: left;
}
.task-category {
  background: #e2e0ff;
  border-radius: 100rem;
  color: #464be8;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 150%;
  padding: 0.5rem 0.9rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.task-card h3 {
  margin-block-start: 1.6rem;
  font-size: 2.4rem;
  font-weight: 400;
}
.task-description {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-size: 1.6rem;
  line-height: 150%;
  margin-block-start: 0.2rem;
}
.card-footer {
  margin-block-start: 1.8rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  font-size: 0.85rem;
  flex-direction: column;
  align-items: flex-start;
}
.broker-info {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.4rem;
}
.broker-info img {
  border-radius: 50%;
  height: 24px;
  width: 24px;
}
.broker-info span {
  font-size: 1.2rem;
  line-height: 150%;
}
.posted-date {
  display: inline-block;
  margin-block-start: 1.6rem;
  color: #484747;
  font-size: 1.2rem;
  line-height: 150%;
}
.arrow-link {
  margin-inline-start: auto;
  width: 2.6rem;
  height: 2.6rem;
  transition: var(--transition);
}
.arrow-link svg {
  width: 100%;
  height: 100%;
}
.arrow-link:hover {
  -webkit-transform: translate(0.5rem, 0.5rem);
  transform: translate(0.5rem, 0.5rem);
}
.carousel-dots {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 30px;
}
.dot {
  background-color: rgba(255, 255, 255, 0.35);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  height: 10px;
  padding: 0;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  width: 10px;
}
.dot.active, .view-all-btn {
  background-color: #fff;
}
.view-all-btn {
  margin-inline: auto;
  margin-top: 6rem;
  width: max-content !important;
}
@media screen and (max-width: 896px) {
  .view-all-btn {
    display: block;
    font-size: 1.6rem;
    margin: 3.3rem auto 0;
    text-align: center;
  }
  .task-card {
    min-width: 33.6rem;
  }
  .tasks-header h2 {
    margin: 0 0 2rem;
  }
  .tasks-header p {
    margin-bottom: 2.5rem;
  }
  .task-description, .card-footer {
    margin-block-start: 0;
  }
}
.view-all-btn:hover {
  background-color: transparent;
  color: #fff;
}
.carousel-container.active {
  cursor: grabbing;
  cursor: -webkit-grabbing;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cs-faq-section {
  background-color: #fff;
  padding: 10rem 6.4rem;
}
@media screen and (max-width: 896px) {
  .cs-faq-section {
    padding: 4rem 2rem;
  }
}
.cs-faq-title {
  color: #212529;
  font-size: 6rem;
  font-weight: 400;
  margin: 0 0 4rem;
  text-align: center;
}
@media screen and (max-width: 896px) {
  .cs-faq-title {
    font-size: 3.2rem;
    margin: 0;
  }
}
.cs-accordion {
  margin: 0 auto;
  max-width: 868px;
}
.cs-accordion-item {
  border-bottom: 1px solid #000;
}
.cs-accordion-header {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: none;
  border: none;
  color: #212529;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 2.4rem;
  font-weight: 300;
  justify-content: space-between;
  padding: 24px 0;
  text-align: left;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  width: 100%;
}
@media screen and (max-width: 896px) {
  .cs-accordion-header {
    font-size: 1.6rem;
    margin: 0;
  }
}
.cs-accordion-icon {
  height: 16px;
  position: relative;
  width: 16px;
}
.cs-accordion-icon:after, .cs-accordion-icon:before {
  background-color: #212529;
  content: "";
  position: absolute;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.cs-accordion-icon:before {
  height: 2px;
  left: 0;
  margin-top: -1px;
  top: 50%;
  width: 100%;
}
.cs-accordion-icon:after {
  height: 100%;
  left: 50%;
  margin-left: -1px;
  top: 0;
  width: 2px;
}
.cs-active .cs-accordion-icon:after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.cs-accordion-panel {
  color: #6c757d;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  text-align: left;
  -webkit-transition: max-height 0.3s ease-out;
  transition: max-height 0.3s ease-out;
}
@media screen and (max-width: 896px) {
  .cs-accordion-panel {
    font-size: 1.4rem;
  }
}
.cs-accordion-panel p {
  margin: 0;
  padding: 8px 0 24px;
}
.cs-footer {
  border-top: 1px solid #dedede;
  padding: 6rem 6.4rem 3.2rem;
  position: relative;
  background-color: #fff;
  z-index: 1000;
}
@media screen and (max-width: 896px) {
  .cs-footer {
    padding: 4rem 2rem;
    text-align: center;
  }
}
.cs-footer-container {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  justify-content: space-between;
  text-align: left;
}
@media screen and (max-width: 896px) {
  .cs-footer-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 4rem;
    text-align: center;
  }
}
.cs-footer-column-address, .cs-footer-column-email, .cs-footer-column-phone {
  color: #000;
  display: block;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 2.8rem;
  margin: 0;
  padding: 0;
}
.cs-footer-column-address {
  padding-top: 5rem;
}
.cs-footer-column-product {
  color: #000;
}
.cs-footer-column-product h3 {
  color: #000;
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 3.2rem;
  margin: 0;
  padding: 0 0 2rem;
}
.cs-footer-column-product ul {
  margin: 0;
  padding: 0;
}
.cs-footer-column-product li {
  color: #000;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 2.8rem;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.cs-footer-column-product a {
  color: #000;
  text-decoration: none;
}
.cs-footer-column-privacy {
  color: #000;
}
.cs-footer-column-privacy h3 {
  color: #000;
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 3.2rem;
  margin: 0;
  padding: 0 0 2rem;
}
.cs-footer-column-privacy ul {
  margin: 0;
  padding: 0;
}
.cs-footer-column-privacy li {
  color: #000;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 2.8rem;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.cs-footer-column-privacy a {
  color: #000;
  text-decoration: none;
}
.cs-footer-copyright {
  color: #919191;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.6rem;
  margin: 0;
  padding: 5rem 0 0;
  text-align: center;
}
.cs-footer-column-social {
  text-align: center;
}
.cs-footer-column-social a {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 32px 32px;
  display: inline-block;
  height: 32px;
  width: 32px;
}
.cs-instagram {
  background-image: url(../images/1c1cf15877edc72bace5.png);
}
.cs-facebook {
  background-image: url(../images/33ac05fbc935836f1827.png);
}
.cs-linkedin {
  background-image: url(../images/f4f64db228085aa142bb.png);
}
.content-page {
  text-align: start;
  padding-block: 3.2rem;
  font-size: 1.8rem;
}
.content-page h1, .content-page h2, .content-page h3, .content-page h4, .content-page h5, .content-page h6, .content-page strong, .content-page b {
  font-weight: 600;
  color: #333;
}
.content-page__header {
  text-align: center;
}
.woocommerce-notices-wrapper {
  display: none;
}
