

/* Start:/local/components/bitrix/news.list/templates/reviews_block/style.css?17557339625819*/
div.news-list
{
	word-wrap: break-word;
}
div.news-list img.preview_picture
{
	float:left;
	margin:0 4px 6px 0;
}
.news-date-time {
	color:#486DAA;
}
/* Общие стили */
.reviews{
 width:100%;
 /* background-color: #0a0a1a; */
 background-color: #1B202C;
}
.reviews-container {
 margin: 60px auto;
 overflow: hidden;
}


.reviews-header {
 text-align: center;
 padding: 40px 0;
}

.reviews-header h2 {
 font-size: 2.2rem;
 color: white;
 margin-bottom: 10px;
 font-weight: 600;
 line-height: 36px;
}

.highlight {
    color: #2e78ff;
}

.divider {
    width: 120px;
    height: 2px;
    background: #2e78ff;
    margin: 0 auto;
}

.reviews-wrapper {
    display: flex;
    gap: 30px;
    padding: 40px;
    /* background: #0f0f1c; */
    border-radius: 20px;
    background: linear-gradient(45deg, rgba(27,41,70,1) 0%,rgba(26,35,54,1) 50%,rgba(27,32,44,1) 100%,rgba(125,185,232,1) 100%);
}

.reviews-left {
 flex-shrink: 0;
 max-width: 530px;
}

.reviews-left .reviews-text {
 font-size: 24px;
 color: #fff;
 line-height: 28px;
 margin: 0;
 margin-bottom: 16px;
 font-weight: 600;
}

.reviews-link {
 color: #2e78ff !important;
 text-decoration: underline;
 font-size: 14px;
 transition: color 0.3s;
 text-transform: uppercase;
 line-height: 16.8px;
}

.reviews-link:hover {
    color: #1a55d5;
}

.reviews-right {
 flex-grow: 1;
 min-width: 1px;
}

.review-item {
    display: none;
}

.review-user {
 display: flex;
 gap: 10px;
 margin-bottom: 31px;
 position: relative;
 padding-right: 90px;
}

.user-avatar {
 width: 50px;
 height: 50px;
 border-radius: 50%;
}
.user-info {
 flex-direction: column;
 display: flex;
 overflow: hidden;
}

.user-info strong {
color: white;
 font-weight: 600;
 font-size: 20px;
 line-height: 28px;
 margin-bottom: 5px;
 white-space: nowrap;
 text-overflow: ellipsis;
 overflow: hidden;
 width: 100%;
}

.user-date {
 font-weight: 400;
 font-size: 14px;
 line-height: 24px;
 opacity: 0.8;
 color: #fff;
}

.review-text {
 color: #fff;
 font-weight: 400;
 font-size: 16px;
 line-height: 24px;
}

.btn-view-original {
 cursor: pointer;
 transition: color 0.3s;
 font-weight: 500;
 font-size: 14px;
 line-height: 16.8px;
 text-transform: uppercase;
 text-decoration: underline;
 color: #2E78FF;
 margin-top: 30px;
}

.btn-view-original:hover {
    color: #1a55d5;
}

.reviews-controls {
 display: flex;
 justify-content: center;
 gap: 10px;
 position: absolute;
 right: 0;
 top: 0;
 z-index: 2;
}

.reviews-controls button {
    width: 40px;
    height: 40px;
    border: none;
    background: #1a1a2a;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s;
}

.reviews-controls button:hover {
    background: #2e78ff;
    color: white;
}

.swiper-button-prev.prev-review,.swiper-button-next.next-review{
 display: flex;
 align-items: center;
 justify-content: center;
 position: static;
 width: 40px;
 height: 40px;
 border-radius: 50%;
 background: rgba(255, 255, 255, 0.1);
 overflow: hidden;
 backdrop-filter: blur(30px);
 cursor: pointer;
}
.swiper-button-prev.prev-review:hover,.swiper-button-next.next-review:hover{
	    transition: All 0.2s ease;
}
.swiper-button-prev.prev-review:hover svg,.swiper-button-next.next-review:hover svg{
	fill:#ffffff;
	z-index: 1;
}
.prev-review:hover::before, .next-review:hover::before{
	opacity:1
}
.prev-review::before, .next-review::before{
    position: absolute;
    content: "";
    inset: 0;
    background: linear-gradient(158deg, #2e78ff 6.6%, #4663be 71.08%);
    opacity: 0;
    transition: .3s;
    z-index: 0;
 }
 /* --- Стили для модального окна скриншота --- */
.modal-screenshot {
  display: none; /* Скрыто по умолчанию */
  position: fixed; /* Остается на месте при прокрутке */
  z-index: 10000; /* Высокий z-index, чтобы быть поверх других элементов */
  left: 0;
  top: 0;
  width: 100%; /* Полная ширина */
  height: 100%; /* Полная высота */
  overflow: auto; /* Разрешить прокрутку, если изображение больше экрана */
  background-color: rgb(0,0,0); /* Цвет фона с запасом */
  background-color: rgba(0,0,0,0.9); /* Черный с непрозрачностью */
}

/* Контент модального окна */
.modal-screenshot-content {
    margin: auto;
    display: inline-block;
    justify-content: center; 
    align-items: center;
    height: 100%;
    text-align: center;
    width: 100%;
}

/* Изображение внутри модального окна */
.modal-screenshot-img {
    width: 80%;
    height: 100%;
    object-fit: contain; 
    vertical-align: middle;
}

/* Кнопка закрытия */
.modal-screenshot-close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.modal-screenshot-close:hover,
.modal-screenshot-close:focus {
  color: #bbb;
}
/* --- Конец стилей для модального окна скриншота --- */
/* Адаптивность */
@media screen and (max-width: 1260px) {
 .reviews-left {
  max-width: 50%;
 }
 .reviews-wrapper {
  gap: 20px;
 }
}/*1260px*/
@media screen and (max-width: 1020px) {
 .reviews-wrapper {
  gap: 0;
  padding: 20px;
  flex-wrap: wrap;
 }
 .reviews-left {
  flex-shrink: 0;
  max-width: 100%;
  width: 100%;
  margin-bottom: 30px;
  text-align: center;
 }
 .reviews-right {
  flex-grow: 1;
  min-width: 1px;
  width: 100%;
 }
}/*1020px*/

@media screen and (max-width: 720px) {
 .reviews-left .reviews-text {
  font-size: 18px;
  line-height: 22px;
 }
 .reviews-link {
  font-size: 12px;
 }
 .reviews-wrapper {
  padding: 15px 10px;
 }
}/*720px*/
/* End */


/* Start:/local/components/globalbanka/faq/templates/.default/style.css?17631753638783*/
.faq-w {
    width: 860px;
    padding: 0;
    margin: 80px auto 0 auto;
    position: relative;
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -khtml-border-radius: 7px;
}

.faq-w::after {
    content: '';
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background-image: linear-gradient(104.98deg, rgba(255, 255, 255, 0.5) -13.9%, rgba(255, 255, 255, 0) 117.92%);
    background-image: -webkit-linear-gradient(104.98deg, rgba(255, 255, 255, 0.5) -13.9%, rgba(255, 255, 255, 0) 117.92%);
    background-image: -moz-linear-gradient(104.98deg, rgba(255, 255, 255, 0.5) -13.9%, rgba(255, 255, 255, 0) 117.92%);
    background-image: -o-linear-gradient(104.98deg, rgba(255, 255, 255, 0.5) -13.9%, rgba(255, 255, 255, 0) 117.92%);
    background-image: -ms-linear-gradient(104.98deg, rgba(255, 255, 255, 0.5) -13.9%, rgba(255, 255, 255, 0) 117.92%);
    -webkit-transform: translate3d(0, 0, 0);
    -webkit-backdrop-filter: blur(7px);
    -moz-backdrop-filter: blur(7px);
    -o-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -khtml-border-radius: 7px;
    opacity: 0.5;
}

.faq-w::before {
    content: '';
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background-image: linear-gradient(100.04deg, rgba(27, 32, 44, 0.9) -11.23%, rgba(27, 32, 44, 0.4) 111.77%);
    background-image: -webkit-linear-gradient(100.04deg, rgba(27, 32, 44, 0.9) -11.23%, rgba(27, 32, 44, 0.4) 111.77%);
    background-image: -moz-linear-gradient(100.04deg, rgba(27, 32, 44, 0.9) -11.23%, rgba(27, 32, 44, 0.4) 111.77%);
    background-image: -o-linear-gradient(100.04deg, rgba(27, 32, 44, 0.9) -11.23%, rgba(27, 32, 44, 0.4) 111.77%);
    background-image: -ms-linear-gradient(100.04deg, rgba(27, 32, 44, 0.9) -11.23%, rgba(27, 32, 44, 0.4) 111.77%);
    -webkit-transform: translate3d(0, 0, 0);
    -webkit-backdrop-filter: blur(7px);
    -moz-backdrop-filter: blur(7px);
    -o-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -khtml-border-radius: 7px;
    opacity: 0.5;
}

.faq {
    width: 100%;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 10;
    cursor: pointer;
}

.faq .line {
    width: calc(100% - 60px);
    height: 1px;
    padding: 0;
    margin: 0 auto;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.faq h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-style: normal;
    text-align: left;
    font-size: 20px;
    line-height: 28px;
    padding: 35px 80px 30px 30px;
    margin: 0;
    color: #ffffff;
    position: relative;
}

.faq h3::after {
    content: '';
    width: 18px;
    height: 18px;
    padding: 0;
    margin: 0;
    background: url('/local/templates/main/markup/images/faq-arrow.svg') no-repeat center center;
    -webkit-background-size: 100% auto;
    -moz-background-size: 100% auto;
    -o-background-size: 100% auto;
    background-size: 100% auto;
    position: absolute;
    top: 40px;
    right: 30px;
    z-index: auto;
}

.faq .ans {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-style: normal;
    text-align: left;
    font-size: 16px;
    line-height: 24px;
    padding: 0 80px 30px 30px;
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    display: none;
}

.faq-active h3 {
    color: #2E78FF;
}

.faq-active h3::after {
    background: url('/local/templates/main/markup/images/faq-arrow-blue.svg') no-repeat center center;
    -webkit-background-size: 100% auto;
    -moz-background-size: 100% auto;
    -o-background-size: 100% auto;
    background-size: 100% auto;
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.faq h3:hover,
.faq h3:not(:hover),
.faq h3:hover::after,
.faq h3:not(:hover)::after {
    -webkit-transition: All 0.2s ease;
    -moz-transition: All 0.2s ease;
    -o-transition: All 0.2s ease;
    -ms-transition: All 0.2s ease;
    transition: All 0.2s ease;
}

@media all and (max-width: 1020px) {

    .element-3 {
        top: 50px;
        left: calc(50% - 600px);
    }

    .blur-6 {
        top: -700px;
        left: calc(50% - 1370px);
    }

    #box-6 {
        width: 100%!important;
        padding: 110px 0 60px 0;
        margin: 0 auto;
        position: relative;
        text-align: center;
        z-index: 5;
    }

    #box-6 h2 {

        font-family: 'Montserrat', sans-serif;
        font-weight: 500;
        font-style: normal;
        text-align: center;
        font-size: 38px;
        line-height: 46px;
        padding: 0 0 20px 0;
        margin: 0;
        position: relative;
        color: #ffffff;
    }

    #box-6 h2::after {
        width: 180px;
        left: calc(50% - 90px);
    }

    #box-6 h4 {
        font-family: 'Montserrat', sans-serif;
        font-weight: 300;
        font-style: normal;
        text-align: center;
        font-size: 17px;
        line-height: 28px;
        max-width: 680px;
        padding: 0;
        margin: 30px auto 0 auto;
        color: rgba(255, 255, 255, 0.6);
    }

    .faq-w {
        width: 100%!important;
        padding: 0;
        margin: 80px auto 0 auto;
        position: relative;
        border-radius: 7px;
        -webkit-border-radius: 7px;
        -moz-border-radius: 7px;
        -khtml-border-radius: 7px;
    }

    .faq {
        width: 100%;
        padding: 0;
        margin: 0;
        position: relative;
        z-index: 10;
        cursor: pointer;
    }

    .faq .line {
        width: calc(100% - 60px);
        height: 1px;
        padding: 0;
        margin: 0 auto;
        position: relative;
        background: rgba(255, 255, 255, 0.1);
        z-index: 10;
    }

    .faq h3 {
        font-size: 18px;
        line-height: 28px;
        padding: 35px 80px 30px 30px;
    }

    .faq h3::after {
        top: 40px;
        right: 30px;
    }

    .faq .ans {
        font-size: 16px;
        line-height: 24px;
        padding: 0 80px 30px 30px;
        margin: 0;
    }
}

@media all and (max-width: 720px) {

    .element-3 {
        top: 50px;
        left: calc(50% - 800px);
    }

    .blur-6 {
        top: -700px;
        left: calc(50% - 1370px);
    }

    #box-6 {
        width: 360px;
        padding: 80px 0 60px 0;
        margin: 0 auto;
        position: relative;
        text-align: center;
        z-index: 5;
    }

    #box-6 h2 {

        font-family: 'Montserrat', sans-serif;
        font-weight: 500;
        font-style: normal;
        text-align: center;
        font-size: 30px;
        line-height: 36px;
        padding: 0 0 20px 0;
        margin: 0;
        position: relative;
        color: #ffffff;
    }

    #box-6 h2::after {
        width: 180px;
        left: calc(50% - 90px);
    }

    #box-6 h4 {
        font-family: 'Montserrat', sans-serif;
        font-weight: 300;
        font-style: normal;
        text-align: center;
        font-size: 16px;
        line-height: 24px;
        max-width: 680px;
        padding: 0;
        margin: 30px auto 0 auto;
        color: rgba(255, 255, 255, 0.6);
    }

    .faq-w {
        width: 100%;
        padding: 0;
        margin: 40px auto 0 auto;
        position: relative;
        border-radius: 7px;
        -webkit-border-radius: 7px;
        -moz-border-radius: 7px;
        -khtml-border-radius: 7px;
    }

    .faq {
        width: 100%;
        padding: 0;
        margin: 0;
        position: relative;
        z-index: 10;
        cursor: pointer;
    }

    .faq .line {
        width: calc(100% - 60px);
        height: 1px;
        padding: 0;
        margin: 0 auto;
        position: relative;
        background: rgba(255, 255, 255, 0.1);
        z-index: 10;
    }

    .faq h3 {
        font-size: 17px;
        line-height: 24px;
        padding: 30px 80px 30px 30px;
    }

    .faq h3::after {
        top: 35px;
        right: 30px;
    }

    .faq .ans {
        font-size: 15px;
        line-height: 24px;
        padding: 0 30px 30px 30px;
        margin: 0;
    }
}

/* End */


/* Start:/local/components/bitrix/news.list/templates/latest_articles/style.css?17582040002798*/
.preview {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
}
.preview__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.preview__fotobox {
  height: 240px;
  overflow: hidden;  margin: 0;
}
.preview__foto {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.preview__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 20px 20px 18px;
}
.preview__name {
	margin:0;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 24px;
  color: #FFF;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.preview__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #FFF;
}
.preview__data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  opacity: 0.8;
}
.preview__val {
  font-size: 12px;
  line-height: 14px;
  font-weight: 300;
  color: #FFF;
}
.preview:hover .preview__foto {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.preview:hover .preview__name {
  color: #2E78FF;
}
.blog {
  padding-top: 69px;
  padding-bottom: 120px;
}
.blog__box {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}
.blog__empty {
  width: 100%;
  text-align: center;
}
.latest-blog h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-style: normal;
  text-align: center;
  font-size: 40px;
  line-height: 50px;
  padding: 0 0 20px 0;
  margin: 0;
  position: relative;
  color: #ffffff;
}
.latest-blog-header {
  text-align: center;
  padding: 40px 0;
}
.latest-blog-header h2::after {
  content: '';
  width: 180px;
  height: 1px;
  padding: 0;
  margin: 0;
  background: #2E78FF;
  position: absolute;
  bottom: 0;
  left: calc(50% - 90px);
  z-index: auto;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -khtml-border-radius: 5px;
}
/* End */
/* /local/components/bitrix/news.list/templates/reviews_block/style.css?17557339625819 */
/* /local/components/globalbanka/faq/templates/.default/style.css?17631753638783 */
/* /local/components/bitrix/news.list/templates/latest_articles/style.css?17582040002798 */
