@font-face {
  font-family: "Fira Sans";
  src: url("../fonts/FiraSans-Regular.woff2") format("woff2"), url("FiraSans-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fira Sans";
  src: url("../fonts/FiraSans-Bold.woff2") format("woff2"), url("FiraSans-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

.products {
  color: #000;
  font-size: 16px;
  display: flex;
  align-items: flex-start;
  padding-bottom: 50px;
  font-family: "Fira Sans";
}

@media only screen and (max-width: 991px) {
  .products {
    display: block;
  }
}

.products__content {
  width: calc(100% - 322px);
}

@media only screen and (max-width: 991px) {
  .products__content {
    width: 100%;
  }
}

.products__sidebar {
  margin-left: 22px;
  width: 300px;
  flex-shrink: 0;
  margin-top: 180px;
}

@media only screen and (max-width: 991px) {
  .products__sidebar {
    margin-top: 50px;
    margin-left: 0;
  }
}

.products h2 {
  font-size: 34px;
  font-weight: bold;
  margin-bottom: 20px;
  margin-top: 30px;
}

@media only screen and (max-width: 575px) {
  .products h2 {
    font-size: 24px;
  }
}

.products iframe {
  width: 100%;
  height: 600px;
  margin-bottom: 30px;
}

@media only screen and (max-width: 1336px) {
  .products iframe {
    height: 500px;
  }
}

@media only screen and (max-width: 1200px) {
  .products iframe {
    height: 400px;
  }
}

@media only screen and (max-width: 767px) {
  .products iframe {
    height: 300px;
  }
}

.products a {
  color: #2255A1;
}

.products h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  margin-top: 25px;
  line-height: 1.3;
}

.products h4 {
  font-size: 24px;
  margin-bottom: 20px;
  margin-top: 30px;
  font-weight: 700;
  color: black;
}

.products b {
  font-weight: bold;
}

.products i {
  font-style: italic;
}

.products ul {
  display: grid;
  grid-gap: 10px;
  list-style-type: none;
  margin-bottom: 24px;
}

.products ul li {
  font-size: 18px;
  line-height: 1.4;
}

.products ul li:before {
  content: "";
  display: inline-block;
  transform: translateY(-4px);
  width: 14px;
  height: 2px;
  background: #f11191;
  margin-right: 7px;
  flex-shrink: 0;
}

.products ul li span {
  color: #000;
  font-weight: bold;
}

.products ul li a {
  color: #2255A1;
  font-weight: bold;
  text-decoration: underline;
}

.products ul li a:hover {
  text-decoration: none;
}

.products ol {
  counter-reset: li;
  list-style-type: none;
}

.products ol li {
  font-size: 18px;
  margin-bottom: 20px;
  counter-increment: li;
  line-height: 1.4;
}

.products ol li:before {
  content: counter(li);
  color: #f11191;
  margin-right: 6px;
  font-weight: bold;
}

.products p {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.4;
}

.products table {
  width: auto;
  min-width: 100%;
  border: 1px solid #bababa;
  font-size: 18px;
  font-weight: 700;
  color: #292929;
}

.products thead {
  background: #eff4f7;
}

.products tfoot {
  background: #fee7f4;
}

.products td,
.products th {
  padding: 20px;
  border: 1px solid #bababa;
  text-align: center;
}

.products .to-top {
  margin-left: 10px;
}

.products .to-top:hover:before {
  border-color: #2255A1;
}

.products .to-top:before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border: 3px solid #898989;
  transform: rotate(45deg);
  border-bottom: none;
  border-right: none;
  transition: 300ms;
}

.products__title {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 20px;
}

@media only screen and (max-width: 575px) {
  .products__title {
    font-size: 38px;
  }
}

.products__header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.products__description {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 25px;
}

@media only screen and (max-width: 575px) {
  .products__description {
    font-size: 18px;
  }
}

.products__description a {
  color: #2255A1;
}

.products__item {
  display: flex;
  align-items: center;
  padding: 0 10px;
  border-right: 1px solid #898989;
  color: #898989;
}

.products__item:first-child {
  padding-left: 0;
}

@media only screen and (max-width: 575px) {
  .products__item {
    margin: 10px 0;
  }
}

.products__item img {
  flex-shrink: 0;
  margin-right: 10px;
}

.products__image {
  flex-shrink: 0;
  margin-bottom: 45px;
}

.products__stars {
  display: flex;
  align-items: center;
}

.products__star {
  margin-right: 12px;
}

.products__rate {
  border-right: 1px solid #898989;
  padding: 0 10px;
  display: flex;
  align-items: center;
  color: #898989;
}

.products__evaluate .products__rate {
  border-right: none;
  padding: 0;
}

@media only screen and (max-width: 767px) {
  .products__rate {
    margin-top: 10px;
  }
}

.products__link a {
  color: #2255A1;
}

.products__share {
  display: flex;
  align-items: center;
  color: #898989;
  padding: 0 10px;
  position: relative;
  cursor: pointer;
}

@media only screen and (max-width: 767px) {
  .products__share {
    margin-top: 10px;
  }
}

.products__share:hover .products__dropdown {
  opacity: 1;
  visibility: visible;
}

.products__share img {
  margin-left: 5px;
}

.products__dropdown {
  position: absolute;
  right: 0;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 0 18px 2px rgba(0, 0, 0, 0.1);
  z-index: 3;
  padding: 10px;
  display: flex;
  flex-direction: column;
  margin-top: 5px;
  opacity: 0;
  visibility: hidden;
  transition: 300ms;
}

.products__dropdown-item {
  color: #898989;
  margin-bottom: 10px;
}

.products__dropdown-item:hover {
  color: #2255A1;
}

.products__dropdown-item:last-child {
  margin-bottom: 0;
}

.products__table {
  max-width: 100%;
  overflow: auto;
  margin-bottom: 30px;
  padding-bottom: 10px;
}

.products__table::-webkit-scrollbar {
  height: 8px;
  background-color: #e1e7eb;
  border-radius: 4px;
}

.products__table::-webkit-scrollbar-thumb {
  background-color: #f11191;
  border-radius: 4px;
}

.products__competitors-text {
  font-size: 18px;
  margin-bottom: 20px;
}

.products__competitors-text a {
  color: #2255A1;
  font-weight: bold;
}

.products__article {
  max-width: 940px;
  border: 1px solid #bababa;
  border-radius: 12px;
  padding: 25px 27px 27px 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 43px;
  position: relative;
}

.products__article-link {
  max-width: 560px;
}

.products__article-link span {
  display: block;
  margin-bottom: 20px;
  font-size: 18px;
}

.products__article-link a {
  font-size: 24px;
  font-weight: 700;
  text-decoration: underline;
  color: #2255A1;
}

.products__article-image {
  width: 235px;
  flex-shrink: 0;
}

@media only screen and (max-width: 767px) {
  .products__article-image {
    display: none;
  }
}

.products__commission {
  margin-bottom: 45px;
}

.products__commission-text {
  font-size: 18px;
  margin-bottom: 45px;
  line-height: 1.4;
}

.products__commission-item p {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.4;
}

.products__commission-item p:before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 2px;
  background: #f11191;
  margin-right: 7px;
  flex-shrink: 0;
  transform: translateY(-5px);
}

.products__commission-item span {
  font-weight: 700;
  color: #000000;
}

.products__commission-banner {
  background-color: #eff4f7;
  border-radius: 12px;
  width: 100%;
  display: flex;
  align-items: flex-start;
  padding: 35px 114px 45px 29px;
  margin-bottom: 16px;
}

@media only screen and (max-width: 767px) {
  .products__commission-banner {
    padding: 30px;
  }
}

.products__commission-icon {
  flex-shrink: 0;
  margin-right: 25px;
}

@media only screen and (max-width: 575px) {
  .products__commission-icon {
    display: none;
  }
}

.products .products__content blockquote,
.products  .products__content blockquote p,
.products__commission-desc {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.products__attention {
  border: 1px solid #f11191;
  border-radius: 12px;
  padding: 27px 27px 50px;
  font-size: 18px;
  margin-bottom: 28px;
}

.products__attention-title {
  font-weight: 700;
  color: #f11191;
  margin-bottom: 5px;
}

.products__attention-text {
  font-weight: bold;
  line-height: 1.4;
}

.products__profit {
  margin-bottom: 62px;
}

.products__profit-description {
  margin-bottom: 23px;
}

.products__profit-table {
  border: 2px solid #bababa;
  width: 100%;
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 18px;
}

.products__profit-table td,
.products__profit-table th {
  border-bottom: 1px solid #bababa;
  padding: 18px 15px;
}

.products__profit-table td:first-child,
.products__profit-table th:first-child {
  border-right: 1px solid #bababa;
}

.products__profit-table td:last-child,
.products__profit-table th:last-child {
  width: 179px;
  text-align: center;
}

.products__profit-table th {
  font-weight: bold;
  background: #eff4f7;
}

.products__profit-table .blue-bg {
  background: #2255A1;
  color: #fff;
  font-weight: bold;
}

.products__profit-table .pink-bg {
  background: #fee7f4;
  font-weight: bold;
}

.products__profit-notification {
  color: #898989;
  font-weight: bold;
}

.products__invest {
  margin-bottom: 45px;
}

.products__invest-title {
  text-decoration: underline;
  font-size: 18px;
  margin-bottom: 15px;
}

.products__invest-img {
  text-align: center;
  margin-top: 32px;
}

.products__start {
  margin-bottom: 45px;
}

.products__start-description {
  line-height: 1.4;
  font-size: 18px;
}

.products__start-description p {
  margin-bottom: 10px;
}

.products__start-description p a {
  color: #2255A1;
}

.products__start-description p a:hover {
  text-decoration: underline;
}

.products__start-description p i {
  font-style: italic;
}

.products__start-description p b {
  font-weight: bold;
}

.products__grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  grid-gap: 20px;
  margin-bottom: 40px;
}

@media only screen and (max-width: 1200px) {
  .products__grid {
    grid-template-columns: 300px 1fr;
  }
}

@media only screen and (max-width: 767px) {
  .products__grid {
    grid-template-columns: 1fr;
  }
}

.products__strategy, .products__brief {
  text-align: center;
  border-radius: 12px;
  padding: 34px 30px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.products__strategy {
  border: 1px solid #f11191;
  font-size: 24px;
}

.products__strategy-link {
  color: #f11191;
  text-decoration: underline !important;
  font-weight: bold;
}

.products__strategy-link:hover {
  text-decoration: none !important;
  color: #f11191;
}

.products__strategy-text {
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 23px;
  flex-grow: 10;
}

.products__strategy-btn {
  width: 260px;
  height: 60px;
  background-color: #f11191;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 1px;
}

@media only screen and (max-width: 575px) {
  .products__strategy-btn {
    width: 230px;
  }
}

.products__strategy-btn:hover {
  color: #fff;
}

.products__brief {
  border: 1px solid #2255A1;
}

.products__brief-text {
  line-height: 1.4;
  font-size: 18px;
  margin-bottom: 23px;
  flex-grow: 10;
}

.products__brief-text a {
  color: #2255A1;
  text-decoration: underline;
  font-weight: bold;
}

.products__brief-text a:hover {
  text-decoration: none;
}

.products__brief-btn {
  width: 260px;
  height: 60px;
  background-color: #2255A1;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 1px;
}

@media only screen and (max-width: 575px) {
  .products__brief-btn {
    width: 230px;
  }
}

.products__brief-btn:hover {
  color: #fff;
}

.products__info {
  background-color: #eff4f7;
  padding: 28px 42px;
  border-radius: 12px;
  margin-bottom: 50px;
  font-size: 20px;
  line-height: 1.5;
}

.products__info a {
  color: #2255A1;
  font-weight: bold;
}

.products__subscribe {
  display: flex;
  align-items: center;
  font-size: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid #ccd6dc;
  margin-bottom: 25px;
}

.products__subscribe a {
  color: #2255A1;
  font-weight: bold;
}

.products__subscribe img {
  flex-shrink: 0;
  margin-right: 20px;
}

.products__tags {
  padding-bottom: 22px;
  margin-bottom: 25px;
  border-bottom: 1px solid #ccd6dc;
  color: #898989;
  display: grid;
  grid-gap: 11px;
  font-size: 16px;
}

.products__tag {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 575px) {
  .products__tag {
    display: block;
  }
}

.products__type {
  width: 135px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

@media only screen and (max-width: 575px) {
  .products__type {
    margin-bottom: 5px;
  }
}

.products__type img {
  flex-shrink: 0;
  margin-right: 15px;
}

.products__text span,
.products__text a {
  color: #2255A1;
  margin-right: 8px;
}

.products__author {
  padding-bottom: 28px;
  margin-bottom: 38px;
  border-bottom: 1px solid #ccd6dc;
  display: grid;
  grid-template-columns: 80px 1fr 220px;
  grid-gap: 54px;
  align-items: center;
}

@media only screen and (max-width: 575px) {
  .products__author {
    grid-template-columns: 80px 1fr;
    grid-gap: 30px;
  }
}

.products__author-avatar img {
  height: 80px;
  width: 100%;
  border-radius: 50%;
}

.products__author-info {
  color: #898989;
  line-height: 1.4;
}

.products__author-info a {
  color: #2255A1;
}

.products__author-btn {
  border: 1px solid #2255A1;
  border-radius: 12px;
  width: 220px;
  height: 60px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  color: #2255A1;
  justify-content: center;
  letter-spacing: 1px;
  font-size: 18px;
}

.products__social {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 23px;
}

@media only screen and (max-width: 575px) {
  .products__social {
    display: block;
  }
}

.products__social-label {
  font-size: 18px;
  font-weight: bold;
}

.products__social-items {
  display: flex;
}

@media only screen and (max-width: 575px) {
  .products__social-items {
    margin-top: 10px;
  }
}

.products__social-item {
  margin-right: 20px;
}

@media only screen and (max-width: 575px) {
  .products__social-item {
    margin-right: 10px;
  }
}

.products__social-item:last-child {
  margin-right: 0;
}

.products__evaluate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

@media only screen and (max-width: 575px) {
  .products__evaluate {
    display: block;
  }
}

.products__evaluate-label {
  font-size: 18px;
  font-weight: bold;
}

@media only screen and (max-width: 575px) {
  .products__evaluate-label {
    margin-bottom: 10px;
  }
}

.products__evaluate-rate {
  display: flex;
  align-items: center;
}

.products__evaluate-stars {
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.products__evaluate-star {
  margin-right: 10px;
}

.products__evaluate-star:last-child {
  margin-right: 0;
}

.products__evaluate-text {
  color: #898989;
  font-size: 18px;
}

.products__comments {
  margin-bottom: 50px;
}

.products__comments-title {
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: 300ms;
  margin-bottom: 16px;
  display: inline-block;
}

.products__comments-title.active .arrow {
  transform: translateY(-2px);
}

.products__comments-title.active .arrow:before {
  transform: rotate(225deg);
  border-color: #2255A1;
}

.products__comments-title:hover {
  color: #2255A1;
}

.products__comments-title .arrow {
  margin-left: 10px;
  transform: translateY(3px);
  display: inline-block;
  transition: 300ms;
}

.products__comments-title .arrow:before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border: 2px solid #898989;
  transform: rotate(45deg);
  border-bottom: none;
  border-right: none;
  transition: 300ms;
}

.products__comments-all {
  display: none;
}

.products__comments-content .comments-widget {
  margin-bottom: 20px;
}

.products__comments-tabs {
  display: flex;
  margin-bottom: 30px;
}

.products__comments-tab {
  color: #898989;
  font-size: 18px;
  font-weight: bold;
  margin-right: 20px;
  border-bottom: 2px solid transparent;
  padding-bottom: 6px;
  cursor: pointer;
  transition: 300ms;
}

.products__comments-tab:hover {
  color: #000;
}

.products__comments-tab:last-child {
  margin-right: 0;
}

.products__comments-tab.active {
  color: #000;
  border-color: #2255A1;
}

.products__comments-form {
  border: 1px solid #bababa;
  border-radius: 4px;
  padding: 17px;
}

.products__comments-field {
  height: 132px;
  margin-bottom: 15px;
}

.products__comments-field textarea {
  height: 100%;
  width: 100%;
  border: none;
  resize: none;
}

.products__comments-field textarea::-webkit-input-placeholder {
  color: #bababa;
}

.products__comments-field textarea:-moz-placeholder {
  color: #bababa;
}

.products__comments-field textarea::-moz-placeholder {
  color: #bababa;
}

.products__comments-field textarea:-ms-input-placeholder {
  color: #bababa;
}

.products__comments-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.products__comments-files {
  display: flex;
  align-items: center;
}

.products__comments-file {
  margin-right: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.products__comments-file input {
  display: none;
}

.products__comments-filename {
  margin-left: 5px;
}

.products__comments-btn {
  width: 180px;
  height: 60px;
  background-color: #2255A1;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  font-size: 16px;
  color: #fff !important;
  border: none;
}

@media only screen and (max-width: 575px) {
  .products__comments-btn {
    width: 140px;
    height: 50px;
  }
}

.products__comments-btn:hover {
  color: #fff;
}

.products__banner {
  position: relative;
  margin-bottom: 30px;
}

.products__banner img,
.products__article-image img {
  border-radius: 12px;
}

img.share {
  border-radius: 0px;
}

.products__banner--small {
  width: 620px;
  max-width: 100%;
  margin: 0 auto 58px;
}

.products__banner-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.products__banner-text {
  width: 100%;
  font-weight: bold;
  font-size: 18px;
  padding: 5px 0;
  line-height: 1.3;
}

.products__banner-dropdown {
  position: absolute;
  right: 20px;
  top: 20px;
}

.products__banner-current {
  cursor: pointer;
}

.products__banner-modal {
  position: absolute;
  top: 100%;
  margin-top: 10px;
  right: 0;
  width: 200px;
  background: #fff;
  box-shadow: 0 0 18px 2px rgba(0, 0, 0, 0.1);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transition: 300ms;
}

.products__banner-modal.show {
  opacity: 1;
  visibility: visible;
  display: flex!important;
  flex-direction: column;
}

.products .comments-item:before {
  display: none;
}

.products__content blockquote {
  background-color: #eff4f7;
  border-radius: 12px;
  width: 100%;
  display: flex;
  align-items: flex-start;
  padding: 35px 114px 45px 29px;
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  position: relative;
}

@media only screen and (max-width: 400px) {
  .products__content blockquote {
    display: block;
  }
  .products__content blockquote p {
    width: 150%;
  }
}


.products__content blockquote:before {
  content: url("../images/quotes-news.png");
  margin-right: 25px;
}
.products__content blockquote .products__banner-dropdown a {
  font-size: 16px;
}

.products__star img {
  filter: grayscale(1);
}
.products__star.active img {
  filter: grayscale(0);
}