

/* Start:/local/templates/html/components-template/corp-study/style.css?17022041422698*/
.corp-study-section {
  padding: 50px 0; }

.corp-study-title {
  font-style: normal;
  font-weight: 400;
  font-size: calc((28 / 16) * 1rem);
  letter-spacing: -0.3px;
  line-height: 1.2;
  width: 100%;
  text-align: center;
  margin: 0 0 57px; }
  @media (max-width: 575px) {
    .corp-study-title {
      font-size: 24px;
      margin-bottom: 36px; } }

.corp-study-overflow {
  overflow: hidden; }

.corp-study-line {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-top: 24px;
  max-width: 1400px;
  margin: 0 auto;
  overflow: auto;
  padding-bottom: 10px; }
  .corp-study-line::-webkit-scrollbar {
    height: 3px;
    width: 3px; }
  .corp-study-line::-webkit-scrollbar-thumb {
    background-color: #ddddde;
    height: 3px;
    width: 3px; }

.corp-study-card {
  width: 235px;
  flex-shrink: 0;
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
  position: relative; }
  .corp-study-card:after {
    content: '';
    position: absolute;
    top: 20%;
    left: -30px;
    right: -30px;
    transform: translateX(calc(100% - 80px));
    z-index: -1;
    background-color: #CDD1D4;
    height: 1px; }
  .corp-study-card:last-child:after {
    content: none; }
  @media (max-width: 575px) {
    .corp-study-card {
      width: 170px; } }
  .corp-study-card span {
    background-color: #fff;
    width: 70%;
    margin-bottom: 30px;
    font-size: 60px;
    line-height: 1;
    color: #078A51; }
    @media (max-width: 575px) {
      .corp-study-card span {
        margin-bottom: 20px;
        font-size: 42px; } }
  .corp-study-card__text {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700; }
    @media (max-width: 575px) {
      .corp-study-card__text {
        font-size: 14px;
        line-height: 1.4; } }

.corp-study-desc {
  background-color: #F3F3F3;
  padding: 50px 0 30px;
  margin-bottom: 55px;
  margin-top: 50px; }
  @media (max-width: 575px) {
    .corp-study-desc {
      padding: 30px 0 16px;
      margin-top: 36px;
      margin-bottom: 36px; } }
  .corp-study-desc__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 20px; }
    @media (max-width: 1023px) {
      .corp-study-desc__body {
        font-size: 18px; } }
    @media (max-width: 575px) {
      .corp-study-desc__body {
        font-size: 16px; } }
    .corp-study-desc__body p {
      margin-bottom: 24px; }
    .corp-study-desc__body span {
      font-weight: 600; }

.corp-study-footer {
  display: flex;
  justify-content: center; }
  .corp-study-footer .btn {
    white-space: normal;
    height: auto;
    min-height: 48px;
    line-height: 1.2; }

/* End */


/* Start:/local/templates/html/components-template/modal/style.css?170220414211056*/
@charset "UTF-8";
.modal-open {
  overflow: hidden; }
  .modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto; }

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0; }

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none; }
  .modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
    transform: translate(0, -50px); }
    @media (prefers-reduced-motion: reduce) {
      .modal.fade .modal-dialog {
        transition: none; } }
  .modal.show .modal-dialog {
    transform: none; }
  .modal.modal-static .modal-dialog {
    transform: scale(1.02); }

.modal-dialog-scrollable {
  display: flex;
  max-height: calc(100% - 1rem); }
  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 1rem);
    overflow: hidden; }
  .modal-dialog-scrollable .modal-header,
  .modal-dialog-scrollable .modal-footer {
    flex-shrink: 0; }
  .modal-dialog-scrollable .modal-body {
    overflow-y: auto; }

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem); }
  .modal-dialog-centered::before {
    display: block;
    height: calc(100vh - 1rem);
    height: min-content;
    content: ""; }
  .modal-dialog-centered.modal-dialog-scrollable {
    flex-direction: column;
    justify-content: center;
    height: 100%; }
    .modal-dialog-centered.modal-dialog-scrollable .modal-content {
      max-height: none; }
    .modal-dialog-centered.modal-dialog-scrollable::before {
      content: none; }

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0; }

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000; }
  .modal-backdrop.fade {
    opacity: 0; }
  .modal-backdrop.show {
    opacity: 0.5; }

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px); }
  .modal-header .close {
    padding: 1rem 1rem;
    margin: -1rem -1rem -1rem auto; }

.modal-title {
  margin-bottom: 0;
  line-height: 1.5; }

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem; }

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px); }
  .modal-footer > * {
    margin: 0.25rem; }

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll; }

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto; }
  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem); }
    .modal-dialog-scrollable .modal-content {
      max-height: calc(100vh - 3.5rem); }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem); }
    .modal-dialog-centered::before {
      height: calc(100vh - 3.5rem);
      height: min-content; }
  .modal-sm {
    max-width: 300px; } }

@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px; } }

@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px; } }

.modal {
  background-color: #fff; }
  .modal .modal-dialog {
    margin: 0 auto; }
  .modal .modal-content {
    border: none;
    border-radius: 0;
    background-clip: unset; }
  .modal .modal-footer > * {
    margin: unset; }
  .modal .modal-footer {
    display: flex;
    align-items: flex-start;
    flex-direction: column; }
  .modal .modal-close {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    width: 48px;
    height: 48px;
    padding: 0;
    cursor: pointer;
    border: none;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M18.0859 5.24988L13.2338 10.1085L13.7645 10.6385L18.6166 5.77985L18.0859 5.24988ZM18.0863 17.9998L12.2446 12.1581L6.66285 17.7338L6.13281 17.2032L11.7142 11.6278L6.13313 6.04669L6.66346 5.51636L18.6166 17.4695L18.0863 17.9998Z' fill='%23289628'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 25px; }
  .modal .modal-body {
    padding: 20px 20px 20px; }
  .modal .modal-header {
    display: flex;
    flex-direction: column;
    padding: 40px 20px 0;
    border-bottom: none;
    border-radius: 0; }
  .modal .modal-subtitle {
    margin: 16px 0 0 0;
    color: #282828;
    font-size: calc((12 / 16) * 1rem);
    font-weight: normal;
    font-style: normal;
    line-height: 18px; }
  .modal .modal-title {
    color: #282828;
    font-size: calc((26 / 16) * 1rem);
    font-weight: bold;
    font-style: normal;
    line-height: 34px; }
  @media (min-width: 576px) {
    .modal {
      background-color: transparent; } }
  @media (min-width: 768px) {
    .modal .modal-body {
      padding: 20px 60px 40px; }
    .modal .modal-header {
      display: flex;
      flex-direction: column;
      padding: 40px 60px 0;
      border-bottom: none;
      border-radius: 0; }
    .modal .modal-subtitle {
      margin: 30px 0 0 0;
      font-size: calc((15 / 16) * 1rem);
      line-height: 24px; }
    .modal .modal-title {
      font-size: calc((40 / 16) * 1rem);
      font-weight: bold;
      line-height: 103.18%; }
      .modal .modal-title:last-child {
        margin: 0 0 10px; }
    .modal .modal-close {
      top: 5px;
      right: 5px;
      background-size: 36px; }
    .modal .modal-dialog {
      max-width: 595px; }
    .modal .modal-dialog--lg {
      max-width: 768px; } }
  @media (min-width: 1366px) {
    .modal .modal-close:hover {
      opacity: 0.8; } }

@media (min-width: 1024px) {
  body.modal-open .header-fixed {
    width: calc(100% - 17px); } }

#smart_auth-confirm .modal-title {
  padding: 30px 60px 20px; }

#smart_auth-confirm .alert--confirm {
  padding: 10px 60px 20px; }

#smart_auth-confirm .alert-container {
  display: flex; }

#smart_auth-confirm .alert-icon {
  margin: 0 15px 0 0; }

#smart_auth-confirm .action-group {
  text-align: center; }

@media (min-width: 768px) {
  #smart_auth-confirm .modal-title {
    font-size: 36px; } }

#smart_auth-forget .modal-title {
  padding: 30px 60px 0; }

#smart_auth-forget .modal-subtitle {
  padding: 0 60px 20px; }

#smart_auth-success {
  padding: 0 60px 20px; }
  #smart_auth-success .modal-title {
    padding: 30px 0 20px; }

#modalformResume .drag_n_drop-field {
  padding: 0; }

#modalformResume .webform-field-upload {
  width: 160px;
  color: #007261;
  border: 1px solid #eaeaea;
  border-radius: 50px;
  background-color: transparent; }

#modalformResume .form-file-link {
  padding: 0 20px;
  letter-spacing: 0;
  text-transform: unset;
  color: #007261 !important;
  font-size: 16px; }

#modalformResume .webform-field-upload-list li div.webform-field-item-wrap {
  display: inline-flex; }

.webpay-content {
  display: block; }

.webpay-text {
  font-size: 13px;
  line-height: 1.8; }
  .webpay-text p {
    margin: 0 0 10px; }
  .webpay-text a {
    color: #007261; }

.webpay-text__imgs {
  margin: 20px 0 0; }
  .webpay-text__imgs .payment-system {
    max-height: 100%;
    margin: 0 0 20px; }

@media (min-width: 768px) {
  .modal-webpay .modal-dialog {
    max-width: 855px; }
  .webpay-content {
    display: flex; }
  .webpay-text__imgs {
    flex: 1 0 200px;
    max-width: 200px;
    margin: 0 0 0 20px; } }

.modal.modal-cookies .modal-cookie__info {
  font-size: 18px;
  font-weight: 400; }
  @media (max-width: 575px) {
    .modal.modal-cookies .modal-cookie__info {
      font-size: 16px; } }

.modal.modal-cookies .modal-cookie__control {
  margin: 15px 0px;
  display: flex;
  align-items: center;
  gap: 20px; }
  .modal.modal-cookies .modal-cookie__control > div {
    width: calc(50% - 10px); }
    .modal.modal-cookies .modal-cookie__control > div .btn {
      width: 100%; }

.modal.modal-cookies .modal-cookie__settings {
  border-bottom: 1px solid #282828;
  color: #282828;
  display: inline-block;
  font-weight: 500; }
  @media (min-width: 1024px) {
    .modal.modal-cookies .modal-cookie__settings:hover {
      cursor: pointer;
      border-color: #078A51;
      color: #078A51; } }

.modal.modal-cookies .modal-cookie__step-1, .modal.modal-cookies .modal-cookie__step-2 {
  display: none; }

.modal.modal-cookies .modal-cookie__step-1.active, .modal.modal-cookies .modal-cookie__step-2.active {
  display: block; }

.modal.modal-cookies .modal-cookie__title {
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 500; }
  @media (max-width: 575px) {
    .modal.modal-cookies .modal-cookie__title {
      font-size: 18px; } }

.modal.modal-cookies .modal-cookie__overflow {
  max-height: 65vh;
  overflow: auto;
  padding-right: 5px;
  margin-right: -10px; }
  .modal.modal-cookies .modal-cookie__overflow::-webkit-scrollbar {
    width: 5px;
    /* ширина для вертикального скролла */
    height: 5px;
    /* высота для горизонтального скролла */
    border-radius: 0px;
    background-color: #f5f5f5; }
  .modal.modal-cookies .modal-cookie__overflow::-webkit-scrollbar-thumb {
    background-color: #bdbdbd;
    border-radius: 0em; }
    .modal.modal-cookies .modal-cookie__overflow::-webkit-scrollbar-thumb:hover {
      background-color: #828282; }

.modal.modal-cookies .modal-cookie__footer {
  padding-top: 15px; }

.modal.modal-cookies .modal-cookie__checkbox {
  margin: 10px 0px; }

.modal.modal-cookies .modal-body {
  padding: 20px 25px;
  padding-bottom: 20px; }

.modal.modal-cookies .modal-dialog {
  max-width: 500px; }

.modal.modal-cookies .modal-close {
  display: none; }

.modal.modal-cookies .modal-cookie-alert {
  display: flex;
  align-items: flex-start;
  padding: 12px;
  margin: 12px 0;
  background-color: #fbeff1;
  border-radius: 4px;
  font-size: 14px;
  line-height: 20px; }
  .modal.modal-cookies .modal-cookie-alert__icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    fill: #ff9536; }
    .modal.modal-cookies .modal-cookie-alert__icon svg {
      max-width: 100%;
      max-height: 100%; }
  .modal.modal-cookies .modal-cookie-alert.hide {
    display: none; }

.modal.modal-cookies .checkbox label {
  font-weight: 500; }

.modal.modal-cookies .form-group {
  margin-bottom: 0px; }

.modal.modal-cookies .checkbox-descr {
  font-size: 13px;
  line-height: 1.4;
  margin-top: 3px;
  opacity: 0.6;
  padding-left: 36px; }

/* End */


/* Start:/local/templates/html/components-template/buy-form/style.css?17022041426949*/
.buy-form-section {
  z-index: 2;
  display: flex;
  align-items: center;
  margin: 0 0 40px;
  padding: 40px 0;
  background: #f1f2f1; }

.buy-form-order {
  margin: -40px -15px 0;
  padding: 40px 15px;
  background: #fff;
  box-shadow: 0 14px 60px rgba(0, 0, 0, 0.12); }

.buy-form-title-thanks {
  position: relative;
  padding: 25px 0 0;
  text-align: center;
  color: #282828;
  font-size: calc((18 / 16) * 1rem);
  font-weight: bold;
  font-style: normal;
  line-height: 24px; }
  .buy-form-title-thanks:before {
    position: absolute;
    top: 0;
    left: 50%;
    width: 83px;
    content: '';
    transform: translateX(-50%);
    border-top: 1px solid #dfdfdf; }

.buy-form-title-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px; }

.buy-form-title-social__title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px; }
  @media (max-width: 1023px) {
    .buy-form-title-social__title {
      font-size: 16px; } }

.buy-form-title-social__list {
  display: flex; }
  .buy-form-title-social__list .social-item .icon {
    fill: #868686; }

.buy-form-title-second {
  margin: 0 0 20px;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: #30393F;
  font-size: calc((18 / 16) * 1rem);
  font-weight: 500;
  font-style: normal;
  line-height: 28px; }

.buy-form-title {
  width: 100%;
  margin: 0 0 20px;
  color: #282828;
  font-size: calc((26 / 16) * 1rem);
  font-weight: bold;
  font-style: normal;
  line-height: 1.3; }

.buy-form-title--center {
  text-align: center; }

.buy-form-desc {
  margin: 0 0 40px;
  color: #30393F;
  font-size: calc((15 / 16) * 1rem);
  font-weight: normal;
  font-style: normal;
  line-height: 24px; }
  .buy-form-desc a {
    color: #007261;
    transition: all ease 0.3s; }
    .buy-form-desc a .icon {
      transition: fill 0.3s, stroke 0.3s; }
    .buy-form-desc a[href]:hover {
      color: #078A51; }
      .buy-form-desc a[href]:hover .icon {
        fill: #078A51; }
    .buy-form-desc a[href]:active {
      text-decoration: none;
      color: #078A51; }
      .buy-form-desc a[href]:active .icon {
        fill: #078A51; }

.buy-form-desc--center {
  text-align: center; }

.buy-form-control:not(:last-child) {
  margin: 0 0 8px; }

.buy-form-price-list {
  margin: 0 0 15px; }

.buy-form-price-item {
  display: flex;
  align-items: baseline;
  font-size: calc((52 / 16) * 1rem);
  font-weight: 500;
  font-style: normal;
  line-height: 36px; }
  .buy-form-price-item:before {
    order: 1;
    content: '\00A0'; }
  .buy-form-price-item:after {
    order: 2;
    content: attr(data-sufix);
    font-size: calc((30 / 16) * 1rem); }
  .buy-form-price-item:not(:last-child) {
    margin: 0 0 8px; }

.buy-form-price-item--sale {
  color: #898989;
  font-size: calc((30 / 16) * 1rem);
  font-weight: 500;
  line-height: 24px;
  text-decoration-line: line-through; }
  .buy-form-price-item--sale:after {
    font-size: calc((20 / 16) * 1rem); }

.buy-form-desc-num {
  margin: 0 0 15px;
  text-align: center;
  font-size: 24px;
  font-weight: 600; }
  .buy-form-desc-num p {
    text-align: left; }

.buy-form-desc-list {
  text-align: left; }
  .buy-form-desc-list ol {
    font-size: 18px;
    font-weight: 600; }
  .buy-form-desc-list li {
    margin: 0 0 10px;
    list-style-position: inside;
    list-style-type: unset; }

.buy-form-title-btn {
  text-align: center; }

.buy-form-sale-condition {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  width: auto;
  height: 40px;
  margin: 0 0 30px;
  padding: 0 20px;
  color: #fff;
  border-radius: 50px;
  background: #007261;
  font-size: calc((15 / 16) * 1rem);
  font-weight: normal;
  font-style: normal;
  line-height: 24px; }

.buy-form-sale-condition-value {
  margin: 0 0 0 10px;
  color: #fff;
  font-size: calc((22 / 16) * 1rem);
  font-weight: bold;
  font-style: normal;
  line-height: 28px; }

.buy-form-question-item {
  display: flex;
  align-items: flex-start; }
  .buy-form-question-item:not(:last-child) {
    margin: 0 0 13px; }
  .buy-form-question-item .icon {
    display: block;
    width: 32px;
    min-width: 32px;
    height: 32px;
    margin: 0 8px 0 0;
    fill: #007261; }

.buy-form-question-item-body {
  padding: 3px 0 0 0; }

.buy-form-question-item-desc {
  font-size: calc((12 / 16) * 1rem);
  font-weight: normal;
  font-style: normal;
  line-height: 18px; }
  .buy-form-question-item-desc a {
    color: #007261;
    transition: all ease 0.3s; }
    .buy-form-question-item-desc a .icon {
      transition: fill 0.3s, stroke 0.3s; }
    .buy-form-question-item-desc a[href]:hover {
      color: #078A51; }
      .buy-form-question-item-desc a[href]:hover .icon {
        fill: #078A51; }
    .buy-form-question-item-desc a[href]:active {
      text-decoration: none;
      color: #078A51; }
      .buy-form-question-item-desc a[href]:active .icon {
        fill: #078A51; }

.theme-dark .buy-form-question-item-desc a {
  color: #fff; }

.buy-form-question-item-name {
  margin: 0 0 7px;
  color: #282828;
  font-size: calc((15 / 16) * 1rem);
  font-weight: 600;
  font-style: italic;
  line-height: 24px; }

.buy-form-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 40px 0 0; }

.buy-form-small {
  margin-top: 10px;
  text-align: center;
  color: #6d6d6d;
  font-size: calc((12 / 16) * 1rem);
  font-weight: normal;
  font-style: normal;
  line-height: 22px; }
  .buy-form-small a {
    color: #007261;
    transition: all ease 0.3s; }
    .buy-form-small a .icon {
      transition: fill 0.3s, stroke 0.3s; }
    .buy-form-small a[href]:hover {
      color: #078A51; }
      .buy-form-small a[href]:hover .icon {
        fill: #078A51; }
    .buy-form-small a[href]:active {
      text-decoration: none;
      color: #078A51; }
      .buy-form-small a[href]:active .icon {
        fill: #078A51; }

.buy-form-webpay {
  text-align: center; }
  .buy-form-webpay a {
    color: #007261;
    font-size: calc((12 / 16) * 1rem); }

@media (min-width: 1024px) {
  .buy-form-question-item-desc {
    font-size: calc((15 / 16) * 1rem);
    font-weight: normal;
    line-height: 24px; }
  .buy-form-control-list {
    margin-top: 40px; }
  .buy-form-info {
    padding: 0; }
  .buy-form-section {
    height: 630px;
    margin: 100px 0; }
  .buy-form-order {
    margin: 0;
    padding: 40px; }
  .buy-form-title-thanks {
    font-size: calc((26 / 16) * 1rem); }
    .buy-form-title-thanks:before {
      width: 241px; }
  .buy-form-title {
    letter-spacing: .5px;
    font-size: calc((40 / 16) * 1rem); } }

.theme-dark .buy-form-section {
  background: #30393F; }

.theme-dark .buy-form-question-item-name {
  color: #fff; }

.theme-dark .buy-form-order .buy-form-title {
  color: #282828; }

.theme-dark .buy-form-title, .theme-dark .buy-form-desc, .theme-dark .buy-form-title-thanks {
  color: #fff; }

.theme-dark .buy-form .buy-form-small {
  color: #fff; }

/* End */


/* Start:/local/templates/html/components-template/trust-slider/style.css?17022041421924*/
.trust-slider-section {
  padding: 40px 0 40px;
  background-color: #CDD1D4;
  position: relative; }
  .trust-slider-section .title {
    margin-bottom: 0;
    text-align: center;
    justify-content: center; }

.trust-slider-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start; }

.trust-slider-notify {
  width: 100%;
  padding: 10px 55px;
  background: #F1F2F1;
  border-radius: 20px;
  text-align: center;
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  font-style: normal;
  font-weight: normal;
  font-size: calc((14 / 16) * 1rem);
  line-height: 22px;
  color: #282828; }

.trust-slider {
  width: 100%; }
  .trust-slider .swiper-button-next,
  .trust-slider .swiper-button-prev {
    display: none; }
  .trust-slider .swiper-wrapper {
    transition-timing-function: linear !important; }

.trust-slide-img {
  max-width: 100%;
  max-height: 100%; }

.trust-slide-img-wrap {
  width: 97px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px; }

@media (min-width: 768px) {
  .trust-slider-body {
    display: flex;
    align-items: center;
    flex-direction: row; }
  .trust-slider-notify {
    width: 354px;
    min-width: 354px;
    height: 142px;
    background: #F1F2F1;
    border-radius: 20px;
    margin: 0 25px 0 0; }
  .trust-slider {
    flex-grow: 1;
    width: calc(100% - 400px); }
    .trust-slider .swiper-container {
      overflow: hidden; }
  .trust-slide-img-wrap {
    width: 177px;
    height: 142px; } }

@media (min-width: 1024px) {
  .trust-slider-section {
    padding: 70px 0 70px; }
    .trust-slider-section .title {
      margin-bottom: 20px; }
  .trust-slider-notify {
    text-align: left;
    font-size: calc((20 / 16) * 1rem);
    line-height: 24px;
    padding: 15px 45px; } }

[data-img='0'] .trust-slider-section {
  display: none !important; }

/* End */


/* Start:/local/templates/html/components-template/teacher-slider/style.css?17022041421010*/
.teacher-slider-section {
  position: relative;
  padding: 40px 0 100px;
  background-color: #30393f; }

.teacher-slider .swiper-button-prev,
.teacher-slider .swiper-button-next {
  display: none; }

.teacher-slider .swiper-slide {
  padding: 10px 0px; }

@media (min-width: 1024px) {
  .teacher-slider-section {
    padding: 70px 0 136px;
    height: 692px; }
  .teacher-slider {
    height: auto;
    padding: 20px 0 0 0; }
    .teacher-slider .swiper-button-prev,
    .teacher-slider .swiper-button-next {
      top: 100px;
      display: block; }
    .teacher-slider .swiper-pagination {
      display: none; }
    .teacher-slider .swiper-container {
      overflow: hidden;
      padding: 0px 30px;
      margin: 0 auto; } }

@media (min-width: 1366px) {
  .teacher-slider-section {
    height: 798px; } }

@media (min-width: 1366px) {
  .teacher-slider .swiper-container {
    padding: 0px 49px; } }

@media (max-width: 767px) {
  .teacher-slider .swiper-slide {
    height: auto;
    display: flex; } }

/* End */


/* Start:/local/templates/html/components-template/white-mask/style.css?1702204142361*/
.white-mask {
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% + 2px);
  height: 278px;
  pointer-events: none;
  background-position: center calc(100% + 1px);
  background-size: 100vw 15vw;
  background-repeat: no-repeat; }

@media (min-width: 768px) {
  .white-mask {
    background-size: 1922px 278px; } }

/* End */


/* Start:/local/templates/html/components-template/teacher-card/style.css?17022041426473*/
.teacher-card-container {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  width: 100%; }

.teacher-card-img-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  justify-content: center;
  width: 155px;
  height: 155px;
  border-radius: 50%;
  border-radius: 8px;
  background-color: #ececec;
  margin-left: auto;
  margin-right: 100px; }

.teacher-card-img {
  position: relative;
  z-index: 1; }

.teacher-card-header {
  position: relative;
  z-index: 3;
  width: calc(100% - 85px);
  margin: -60px 0 0 85px; }

.teacher-card-name {
  display: flex;
  align-items: center;
  width: 100%;
  height: 60px;
  padding: 16px 25px 0;
  cursor: pointer;
  color: #007261;
  border-radius: 155px 0 0 0;
  background-color: #fff;
  font-size: calc((16 / 16) * 1rem);
  font-weight: 600;
  font-style: normal;
  line-height: 21px; }

.teacher-card-body {
  position: relative;
  z-index: 2;
  margin-top: -5px;
  padding: 80px 20px 20px;
  background-color: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08); }
  @media (max-width: 767px) {
    .teacher-card-body {
      flex-grow: 1; } }

.teacher-card-desc {
  width: 100%;
  margin: 0 0 20px;
  color: #30393f;
  font-size: calc((12 / 16) * 1rem);
  font-weight: normal;
  font-style: normal;
  line-height: 18px; }

.teacher-card-info-list {
  display: flex;
  align-items: center; }

.teacher-card-info {
  margin: 0 0 5px;
  color: #007261;
  font-size: calc((12 / 16) * 1rem);
  font-weight: normal;
  font-style: normal;
  line-height: 18px; }
  .teacher-card-info:not(:last-child) {
    margin-right: 15px; }

@media (min-width: 1024px) {
  .teacher-card-img-wrap {
    width: 223px;
    height: 223px;
    margin-right: 65px; }
  .teacher-card-body {
    padding: 95px 37px 20px;
    border-radius: 8px; }
  .teacher-card-info {
    font-size: calc((15 / 16) * 1rem);
    line-height: 24px; }
  .teacher-card-desc {
    margin: 0 0 15px;
    font-size: calc((15 / 16) * 1rem);
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical; }
  .teacher-card-header {
    width: calc(100% - 102px);
    margin: -90px 0 0 102px; }
  .teacher-card-name {
    height: 90px;
    padding: 30px 75px 10px 35px;
    color: #fff;
    background-color: #30393f;
    font-size: calc((19 / 16) * 1rem);
    font-weight: 400;
    font-style: normal;
    line-height: 26px; }
  .teacher-card-body {
    margin: -50px 0px 0 -30px; } }

@media (min-width: 1365px) {
  .teacher-card-header {
    width: calc(100% - 162px);
    margin: -90px 0 0 162px; }
  .teacher-card-img-wrap {
    width: 352px;
    height: 352px;
    margin-right: 105px; } }

.teacher-card.teacher-card--slide {
  width: 290px; }
  @media (max-width: 767px) {
    .teacher-card.teacher-card--slide .teacher-card-body {
      padding-top: 30px; } }
  .swiper-container:not(.swiper-container-initialized) .teacher-card.teacher-card--slide:not(:last-child) {
    margin: 0 30px 0 0; }
  @media (min-width: 1024px) {
    .teacher-card.teacher-card--slide {
      width: 480px; }
      .teacher-card.teacher-card--slide:not(:last-child) {
        margin: 0 5px 0 0; }
      .teacher-card.teacher-card--slide:hover .teacher-card-body {
        display: block;
        opacity: 1;
        pointer-events: auto; }
      .teacher-card.teacher-card--slide:hover .teacher-card-name {
        color: #282828;
        background-color: #fff; }
        .teacher-card.teacher-card--slide:hover .teacher-card-name:hover, .teacher-card.teacher-card--slide:hover .teacher-card-name:focus {
          color: #078A51; }
      .teacher-card.teacher-card--slide .teacher-card-body {
        display: none;
        opacity: 0;
        transition: opacity .3s;
        pointer-events: none; }
      .teacher-card.teacher-card--slide.swiper-slide-active .teacher-card-body {
        display: block;
        opacity: 1;
        pointer-events: auto; }
      .teacher-card.teacher-card--slide.swiper-slide-active .teacher-card-name {
        transition: color .3s, background .3s;
        color: #282828;
        background-color: #fff; }
        .teacher-card.teacher-card--slide.swiper-slide-active .teacher-card-name:hover, .teacher-card.teacher-card--slide.swiper-slide-active .teacher-card-name:focus {
          transition: color .3s, background .3s;
          color: #078A51; } }

.teacher-card.teacher-card--grid {
  width: 100%;
  margin: 0; }
  .teacher-card.teacher-card--grid .teacher-card-name {
    color: #282828; }
  @media (min-width: 1024px) {
    .teacher-card.teacher-card--grid {
      height: 225px;
      margin: 0 0 70px; }
      .teacher-card.teacher-card--grid:hover {
        position: relative;
        z-index: 3; }
        .teacher-card.teacher-card--grid:hover .teacher-card-body {
          display: block;
          visibility: visible;
          opacity: 1;
          overflow: visible;
          height: auto;
          padding: 120px 40px 35px; }
      .teacher-card.teacher-card--grid .teacher-card-name {
        padding: 40px 0 10px 42px;
        background-color: #fff;
        font-size: calc((19 / 16) * 1rem);
        line-height: 26px;
        transition: all ease 0.3s; }
        .teacher-card.teacher-card--grid .teacher-card-name .icon {
          transition: fill 0.3s, stroke 0.3s; }
        .teacher-card.teacher-card--grid .teacher-card-name[href]:hover {
          color: #078A51; }
          .teacher-card.teacher-card--grid .teacher-card-name[href]:hover .icon {
            fill: #078A51; }
        .teacher-card.teacher-card--grid .teacher-card-name[href]:active {
          text-decoration: none;
          color: #078A51; }
          .teacher-card.teacher-card--grid .teacher-card-name[href]:active .icon {
            fill: #078A51; }
      .teacher-card.teacher-card--grid .teacher-card-body {
        visibility: hidden;
        opacity: 0;
        overflow: hidden;
        width: calc(100% + 40px);
        height: 0;
        margin: -90px 0 0 0;
        padding: 0;
        transition: opacity 0.3s;
        box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.09); }
        .teacher-card.teacher-card--grid .teacher-card-body:before {
          display: none; } }

[data-img='0'] .teacher-card-header {
  width: 100%;
  margin: 0; }

[data-img='0'] .teacher-card-name {
  border-radius: 0; }

[data-img='0'] .teacher-card-body {
  margin: 0;
  padding: 0 40px 40px; }

/* End */


/* Start:/local/templates/html/components-template/catalog-small/style.css?17022041422757*/
.teacher-section + .catalog-small {
  margin-top: 40px; }

.catalog-small {
  padding: 50px 0 25px; }

.catalog-small.catalog-small--popular {
  padding-top: 0; }
  @media (min-width: 1024px) {
    .catalog-small.catalog-small--popular {
      padding-bottom: 80px; } }
  @media (max-width: 1365px) {
    .catalog-small.catalog-small--popular {
      padding-bottom: 60px; } }

.program-slider .swiper-wrapper {
  margin-left: 0;
  margin-right: 0;
  flex-wrap: nowrap; }

.program-slider .swiper-slide {
  padding-left: 0;
  padding-right: 0;
  max-width: 100%;
  flex: 0 0 100%; }

.program-slider .swiper-pagination {
  bottom: -10px; }

.program-slider-mod .swiper-container {
  overflow: hidden;
  margin: 0 -15px;
  padding: 0px 15px; }
  .program-slider-mod .swiper-container:not(.swiper-container-initialized) .swiper-slide {
    width: calc(33% - 20px);
    margin-right: 20px; }
    @media (max-width: 1365px) {
      .program-slider-mod .swiper-container:not(.swiper-container-initialized) .swiper-slide {
        width: calc(50% - 20px); } }
    @media (max-width: 575px) {
      .program-slider-mod .swiper-container:not(.swiper-container-initialized) .swiper-slide {
        width: 100%; } }

@media (max-width: 767px) {
  .program-slider-mod .swiper-slide {
    width: 80%; } }

.program-slider-mod .program-card:hover .program-card-container {
  box-shadow: 0 1px 15px rgba(0, 0, 0, 0.2); }

.program-slider-mod .program-card-container {
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1); }

.program-slider-mod .swiper-button-prev,
.program-slider-mod .swiper-button-next {
  opacity: 1; }
  @media (max-width: 575px) {
    .program-slider-mod .swiper-button-prev,
    .program-slider-mod .swiper-button-next {
      display: none; } }

.program-slider-mod .swiper-button-prev {
  transform: translateX(-50%); }

.program-slider-mod .swiper-button-next {
  transform: translateX(50%); }

@media (max-width: 1023px) {
  .program-slider-mod .program-card.program-card--grid .program-card-container {
    height: 362px; } }

@media (max-width: 575px) {
  .program-slider-mod .swiper-pagination {
    bottom: -30px; } }

@media (min-width: 768px) {
  .program-slider .swiper-wrapper {
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px; }
  .program-slider .swiper-slide {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 15px;
    padding-right: 15px; } }

@media (min-width: 1024px) {
  .teacher-section + .catalog-small {
    margin-top: 80px; }
  .catalog-small {
    padding: 50px 0 45px; }
  .catalog-small--popular {
    padding-top: 10px; }
  .catalog-small--article {
    padding: 28px 0 75px; } }

@media (min-width: 1630px) {
  .program-slider .swiper-slide {
    flex: 0 0 33.3333%;
    max-width: 33.3333%; } }

/* End */


/* Start:/local/templates/html/components-template/small-filter/style.css?17022041421362*/
@media (max-width: 1024) {
  .small-filter-slider {
    overflow: visible; } }

.catalog-filter-body {
  position: relative;
  z-index: 12; }

.small-filter-section {
  height: 40px; }

.small-filter-slider {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
  z-index: 10; }

.small-filter-toggle {
  white-space: nowrap; }

.small-filter {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start; }
  .small-filter:not(:last-child) {
    margin: 0 10px 0 0; }

.small-filter-dropdown {
  background: #FFFFFF;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1;
  min-width: 100%;
  padding: 12px 20px;
  display: none;
  position: absolute;
  top: 40px;
  left: 0;
  max-height: 275px;
  overflow-y: auto;
  overflow-x: hidden; }
  .small-filter-dropdown::-webkit-scrollbar {
    height: 3px;
    width: 3px; }
  .small-filter-dropdown::-webkit-scrollbar-thumb {
    background-color: #ddddde;
    height: 3px;
    width: 3px; }
  .small-filter-dropdown.active {
    display: block; }
  .small-filter-dropdown .form-group:last-child {
    margin-bottom: 7px; }

@media (min-width: 1024px) {
  .small-filter-slider {
    width: auto;
    padding: 0 10px 10px !important;
    margin: 0 -10px -10px !important; }
  .small-filter--right .small-filter-dropdown {
    left: auto;
    right: 0; } }

/* End */


/* Start:/local/templates/html/components-template/program-slider-grid/style.css?1702204142377*/
.program-slider-grid {
  margin: 0 0 80px; }
  .program-slider-grid .swiper-button-next,
  .program-slider-grid .swiper-button-prev {
    display: none; }
  @media (min-width: 1024px) {
    .program-slider-grid .swiper-wrapper {
      display: flex;
      align-items: flex-start;
      flex-wrap: wrap; }
    .program-slider-grid .swiper-pagination {
      display: none; } }

/* End */


/* Start:/local/templates/html/components-template/favorite/style.css?17022041421459*/
.favorite {
  cursor: pointer; }
  .favorite.active .favorite-icon {
    display: none; }
  .favorite.active .favorite-icon--active {
    display: block; }

.favorite-text {
  display: none; }

.favorite-icon {
  fill: #007261;
  transition: fill .3s; }
  .favorite-icon:hover {
    fill: #078A51; }
  .favorite-icon:active {
    fill: #007261; }

.favorite-icon--active {
  fill: #007261 !important;
  stroke: #007261 !important;
  display: none; }

.favorite.favorite--has-text {
  display: flex;
  align-items: center;
  font-style: normal;
  font-weight: normal;
  font-size: calc((16 / 16) * 1rem);
  line-height: 24px;
  color: #007261;
  user-select: none;
  transition: all ease 0.3s; }
  .favorite.favorite--has-text .icon {
    transition: fill 0.3s, stroke 0.3s; }
  .favorite.favorite--has-text[href]:hover {
    color: #078A51; }
    .favorite.favorite--has-text[href]:hover .icon {
      fill: #078A51; }
  .favorite.favorite--has-text[href]:active {
    text-decoration: none;
    color: #078A51; }
    .favorite.favorite--has-text[href]:active .icon {
      fill: #078A51; }
  .favorite.favorite--has-text .favorite-text {
    display: block;
    margin: 0 0 0 10px !important;
    white-space: nowrap; }
  .favorite.favorite--has-text .favorite-text--active {
    display: none; }
  .favorite.favorite--has-text.active .favorite-text {
    display: none; }
  .favorite.favorite--has-text.active .favorite-text--active {
    display: block; }

/* End */


/* Start:/local/templates/html/components/slam/filter/filter-ajax/style.css?17022041401203*/
/*.ajaxfilter-disabled {*/
	/*display: none;*/
/*}*/


/*.ajaxfilter-disabled input[type=checkbox] + label {*/
	/*color: #e5e5ea;*/
/*}*/

.ajax-result.filter-preloader:before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: #fff;
	opacity: .5;
	z-index: 200;
}

.ajax-result .preloader.filter-preloader-block{
	display: none;
	opacity: 1;
	position: absolute;
	z-index: 200;
	top: 210px;
	left: 50%;
}
.checkbox.ajaxfilter-disabled label{
	color: #ccc!important;
}

.ajax-result.filter-preloader .preloader.filter-preloader-block{
	display: block;
}


@media (min-width: 980px) {
	.ext-prop-filter{
		display:none;
	}
}

.ajaxfilter-combo .form-group:not(:first-child).activate {
	-webkit-transform: translateY(-65px);
	transform: translateY(-65px);
	opacity: 0;
}

.ajaxfilter-combo .form-group:not(:last-child).deactivate {
	-webkit-transform: translateY(65px);
	transform: translateY(65px);
	opacity: 0;
}

.ajaxfilter-combo .form-group {
	transition: opacity .3s,-webkit-transform .3s;
	transition: transform .3s,opacity .3s;
	transition: transform .3s,opacity .3s,-webkit-transform .3s;
}
/* End */


/* Start:/local/components/slam/subscribe/templates/subscribe/ext_style.css?17022041433123*/
.slam-modal-subscribe .alert.error_subscribe{
    color: #b4241e;
}


.slam-modal-subscribe .slam_subscribe_modal_content{
    font-size: 18px;
    margin-bottom: 15px;
}
.slam-modal-subscribe.slam-modal .error_subscribe{
    font-size: 14px;
    color: #b4241e;
    font-weight: 100;
}
.slam-modal.cmodal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    outline: 0;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
}
.modal-open .slam-modal {
    overflow-x: hidden;
    overflow-y: auto
}
.slam-modal.cfade .modal-dialog {
    transform: translate(0, -25%);
    transition: transform .3s ease-out
}
.slam-modal.in .modal-dialog {
    transform: translate(0, 0)
}
.slam-modal .modal-dialog {
    position: relative;
    margin: 10px;
    margin-top: 50px
}
.slam-modal .modal-content {
    position: relative;
    background-color: #fff;
    background-clip: padding-box;
    outline: 0;
    box-shadow: 0 4px 50px rgba(0,0,0,.08);
}
.slam-modal .modal-header {
    padding: 0;
    border: none
}
.slam-modal .modal-header .close {
    margin-top: -2px
}
.slam-modal .modal-title {
    margin: 0;
    line-height: 1.42857143
}
.slam-modal-subscribe.slam-modal .modal-body {
    position: relative;
    padding: 30px 40px;!important;
}

.slam-modal-subscribe.slam-modal .modal-title{
    font-size: 24px;
    font-weight: 700;
}

.slam-modal.fade.in {
    opacity: 1 !important
}
.slam-modal.fade:not(.show) {
    opacity: 1
}
.modal-open {
    overflow: hidden
}
.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000
}
.modal-backdrop.fade {
    opacity: 0
}
.modal-backdrop.show {
    opacity: .5
}
.modal-backdrop.in {
    opacity: .5
}
.slam-modal-descr {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.slam-modal-subscribe .input-group {
    margin: 0 auto;
}

@media screen and (min-width: 768px) {
    .slam-modal .modal-dialog {
        margin: 150px auto!important;
        width: 600px;
    }
}
.slam-subscribe .form-control{
    height: 40px;
}


.slam-modal-subscribe input.form-control{
    display: block;
}


.slam-modal-subscribe .modal-content{
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
}


.slam-modal-subscribe .error_subscribe{
    padding: 0;
    margin: 5px 0 0 0;
    border: none;
}
.slam-modal-subscribe .alert{
    padding: 5px 0 0 0;
    margin-bottom: 0;
    border: none;
    color: #000;
}


.slam-subscribe * {
    box-sizing: border-box;
}

.slam-subscribe .input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}

.form-control.subscribe__input-wrap{
    width: 100%;
}

.subscribe__input-group{
    width: 100%;
}

.subscribe-form .form-group.has-error .help-block{
    left: 45%;!important;
}
/* End */


/* Start:/local/templates/html/components-template/metrics/style.css?17022041422162*/
.metrics-section {
  padding: 60px 0 20px;
  position: relative; }
  @media (max-width: 767px) {
    .metrics-section {
      padding-top: 35px; } }

.metrics {
  display: flex;
  align-items: center;
  padding: 0 47px;
  margin: 0 0 20px; }
  @media (max-width: 767px) {
    .metrics {
      padding: 0px; } }
  .metrics:nth-child(even) .metrics-value {
    color: #007261; }

.metrics-value {
  font-style: normal;
  font-weight: 400;
  font-size: calc((50 / 16) * 1rem);
  line-height: 103.18%;
  letter-spacing: 0.5px;
  color: #30393f;
  min-width: 95px;
  margin: 0 10px 0 0; }

.metrics-name {
  font-style: normal;
  font-weight: normal;
  font-size: calc((16 / 16) * 1rem);
  line-height: 24px;
  color: #30393f; }

@media (max-width: 767px) {
  .metrics-value {
    text-align: right; } }

@media (max-width: 575px) {
  .metrics-value {
    font-size: calc((32 / 16) * 1rem);
    margin-right: 15px; } }

@media (min-width: 576px) and (max-width: 767px) {
  .metrics-value {
    min-width: 132px; } }

@media (min-width: 768px) {
  .metrics-list {
    display: flex;
    align-items: flex-start;
    justify-content: center; }
  .metrics {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%; }
  .metrics-value {
    margin: 0 0 12px;
    min-width: auto;
    text-align: center; }
  .metrics-name {
    font-style: normal;
    font-weight: normal;
    font-size: calc((16 / 16) * 1rem);
    line-height: 24px;
    color: #30393f;
    text-align: center; }
  .metrics-section {
    padding: 85px 0 80px; }
  .metrics-section--light .metrics {
    position: static !important; } }

@media (min-width: 1024px) {
  .metrics-value {
    font-weight: 400;
    font-size: 60px;
    line-height: 103.18%;
    margin: 0 0 12px; }
  .metrics-name {
    font-size: calc((18 / 16) * 1rem);
    line-height: 24px; }
  .metrics-section--light {
    padding: 35px 0 90px; } }

@media (min-width: 1366px) {
  .metrics-value {
    font-size: 80px; }
  .metrics-name {
    font-size: calc((20 / 16) * 1rem); } }

.theme-dark .metrics-value {
  color: #6D6D6D; }

.theme-dark .metrics-name {
  color: #fff; }

/* End */
/* /local/templates/html/components-template/corp-study/style.css?17022041422698 */
/* /local/templates/html/components-template/modal/style.css?170220414211056 */
/* /local/templates/html/components-template/buy-form/style.css?17022041426949 */
/* /local/templates/html/components-template/trust-slider/style.css?17022041421924 */
/* /local/templates/html/components-template/teacher-slider/style.css?17022041421010 */
/* /local/templates/html/components-template/white-mask/style.css?1702204142361 */
/* /local/templates/html/components-template/teacher-card/style.css?17022041426473 */
/* /local/templates/html/components-template/catalog-small/style.css?17022041422757 */
/* /local/templates/html/components-template/small-filter/style.css?17022041421362 */
/* /local/templates/html/components-template/program-slider-grid/style.css?1702204142377 */
/* /local/templates/html/components-template/favorite/style.css?17022041421459 */
/* /local/templates/html/components/slam/filter/filter-ajax/style.css?17022041401203 */
/* /local/components/slam/subscribe/templates/subscribe/ext_style.css?17022041433123 */
/* /local/templates/html/components-template/metrics/style.css?17022041422162 */
