/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

/*!
Theme Name: one-plus v2
Theme URI: https://www.one-plus.pl/
Description: ONE PLUS WordPress theme v2
Author: ONE PLUS
Text Domain: onepluswp
Version: 2.0.0
*/

/* =========================================
 * ONE PLUS — TOC heading highlight START
 * Подсветка заголовков при клике по содержанию
 * ========================================= */

html {
    scroll-behavior: smooth;
}

.ttx h2,
.ttx h3,
h2[id],
h3[id] {
    scroll-margin-top: 140px;
}

@media (max-width: 768px) {
    .ttx h2,
    .ttx h3,
    h2[id],
    h3[id] {
        scroll-margin-top: 230px;
    }
}

.op-heading-highlight {
    position: relative;
    border-radius: 10px;
    animation: opHeadingFlash 2.2s ease;
}

@keyframes opHeadingFlash {

    0% {
        background: rgba(20, 55, 183, 0);
        box-shadow: 0 0 0 0 rgba(35, 128, 235, 0);
    }

    18% {
        background: rgba(35, 128, 235, 0.10);
        box-shadow: 0 0 0 8px rgba(35, 128, 235, 0.08);
    }

    55% {
        background: rgba(35, 128, 235, 0.07);
        box-shadow: 0 0 0 12px rgba(35, 128, 235, 0.04);
    }

    100% {
        background: rgba(20, 55, 183, 0);
        box-shadow: 0 0 0 0 rgba(35, 128, 235, 0);
    }
}

/* =========================================
 * ONE PLUS — TOC heading highlight END
 * ========================================= */



/* =========================================
 * ONE PLUS — TOC design START
 * Стили блока содержания
 * ========================================= */

.op-toc {
    background: #f8fafd;
    border: 1px solid #dce7f5;
    border-radius: 16px;
    padding: 20px;
    margin: 24px 0;
}

.op-toc__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 36px;
}

.op-toc.is-collapsed .op-toc__head {
    margin-bottom: 0;
}

.op-toc__title,
.ttx .op-toc__title {
    margin: 0;
    padding: 0;
    flex: 1 1 auto;
    font-size: 24px;
    line-height: 36px;
    font-weight: 700;
}

.op-toc__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 1px solid #dce7f5;
    border-radius: 50%;
    background: #fff;
    color: #2380eb;
    font-family: inherit;
    cursor: pointer;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.op-toc:not(.is-collapsed) .op-toc__toggle {
    border-color: #e53935;
    background: #fff3f3;
    color: #e53935;
    box-shadow: 0 0 0 3px rgba(229, 57, 53, .14);
}

.op-toc__toggle:hover,
.op-toc__toggle:focus-visible {
    outline: none;
    transform: translateY(-1px);
}

.op-toc:not(.is-collapsed) .op-toc__toggle:hover,
.op-toc:not(.is-collapsed) .op-toc__toggle:focus-visible {
    border-color: #d32f2f;
    background: #e53935;
    color: #fff;
    box-shadow: 0 4px 14px rgba(229, 57, 53, .34);
}

.op-toc.is-collapsed .op-toc__toggle:hover,
.op-toc.is-collapsed .op-toc__toggle:focus-visible {
    border-color: #2380eb;
    color: #2380eb;
    box-shadow: 0 0 0 3px rgba(35, 128, 235, .12);
}

.op-toc__toggle-icon {
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.op-toc__toggle-svg {
    display: block;
    width: 12px;
    height: 12px;
}

.op-toc:not(.is-collapsed) .op-toc__toggle-icon--close {
    display: inline-flex;
}

.op-toc.is-collapsed .op-toc__toggle-icon--open {
    display: inline-flex;
}

.op-toc__panel {
    overflow: hidden;
    max-height: none;
    opacity: 1;
    margin-top: 14px;
    margin-bottom: 0;
    transition: max-height .32s ease, opacity .24s ease, margin-top .24s ease;
}

.op-toc.is-collapsed .op-toc__panel,
.op-toc.is-collapsed > .op-toc__list,
.ttx .op-toc.is-collapsed .op-toc__panel,
.ttx .op-toc.is-collapsed .op-toc__list {
    max-height: 0 !important;
    opacity: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
    visibility: hidden;
    pointer-events: none;
}

.op-toc.is-collapsed .op-toc__panel[hidden],
.op-toc.is-collapsed > .op-toc__list[hidden] {
    display: none;
}

.op-toc__list {
    margin: 0;
    padding-left: 20px;
}

.op-toc__item {
    margin: 8px 0;
    line-height: 1.35;
}

.op-toc__item:last-child {
    margin-bottom: 0;
}

.op-toc__list li:last-child {
    margin-bottom: 0;
}

.op-toc ol {
    margin-bottom: 0 !important;
}

@media (max-width: 640px) {
    .op-toc {
        padding: 16px;
    }

    .op-toc__head {
        min-height: 32px;
    }

    .op-toc__title,
    .ttx .op-toc__title {
        font-size: 20px;
        line-height: 32px;
    }

    .op-toc__toggle {
        width: 32px;
        height: 32px;
    }

    .op-toc__toggle-svg {
        width: 11px;
        height: 11px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .op-toc__panel {
        transition: none;
    }
}

/* =========================================
 * ONE PLUS — TOC design END
 * ========================================= */

.wp-block-image img {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
  width: 100% !important;
}


.faq-wrap__list ul,
.faq-wrap__list ol {
	padding-left: 15px;
}

.yasr-star-rating .yasr-star-value {
    background-image: url(https://www.one-plus.pl/wp-content/uploads/2026/05/0yasr_1.svg);
	height: 32px;
}

.yasr-star-rating {
    background-image: url(https://www.one-plus.pl/wp-content/uploads/2026/05/0yasr_0.svg);
}

/* YouTube full width fix */
.wp-block-embed__wrapper,
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
}

.wp-block-embed__wrapper iframe,
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
}

figure.wp-block-embed.is-type-video.is-provider-youtube.wp-block-embed-youtube.wp-embed-aspect-16-9.wp-has-aspect-ratio {
	margin: 10px 0 20px;
}	

.hh {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: #f5f5f5;
    border-radius: 12px;
    padding: 16px 24px;
    gap: 20px;
    margin: 24px auto 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.rating-count {
    text-align: center;
    margin-left: 10px;
    margin-top: 5px;
}

.hh-stars {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    pointer-events: none;
}

.grecaptcha-badge {
    display: none !important;
}

/* Только для этого чекбокса CF7 */
.choices__list--single, .choices__list--single .choices__item {
	max-height: 28px!important;
}
.op-list-wrap__flex .op-item-text ul li::after {
	top: 5px!important;
}
@media (min-width: 1100px) {
	.page-id-1677 .op-contacts-wrap__content--form .op-cf7-submit {
	margin-top: 15px;
	  width: 280px;
	  -webkit-box-pack: center;
	      -ms-flex-pack: center;
	          justify-content: center;
	}
	.page-id-1677 .op-contacts-wrap__content--form .op-cf7-submit input.wpcf7-submit.has-spinner.btn {
		padding: 12px 20px 12px 0;
    	text-align: center;
	}
	.page-id-1677 .op-contacts-wrap__content--form .wpcf7-spinner {
		display: none;
	}
}

@media (max-width: 640px) {
	.page-id-1677 .op-contacts-wrap__content--form .wpcf7-spinner {
		display: none;
	}
}

.cky-switch input[type="checkbox"] {
  padding: 0 !important;
}
.slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.slick-track .slick-slide {
    height: 100%;
}

.slick-track .slick-slide .item {
    height: 100%;
}

@media (min-width: 768px) {
	.fancybox-slide:not(.fancybox-slide--iframe):not(.fancybox-slide--video) {
		margin-left: 5%!important;
	}
}

.fancybox-slide:not(.fancybox-slide--iframe):not(.fancybox-slide--video) {
    margin-left: 0%;
    margin-top: 2.5%;
}

.fancybox-slide--video,
.fancybox-slide--iframe {
    margin: 0 !important;
    padding: 0;
}

.fancybox-slide--iframe .fancybox-content {
    overflow: hidden;
    background: #000;
}

.fancybox-slide--iframe .fancybox-iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.recommend-wrap__title {
    text-align: center;
}

.compensation-wrap__title {
    text-align: center;
    margin-bottom: 30px;
}

.iti__flag {
    width: 20px;
    height: 14px;
}

.for-wrap__list .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.for-wrap__list .item {
    height: inherit;
    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-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.top-wrap__title {
    max-width: 70%;
}

.map-wrap__content {
    padding-bottom: 0;
}

.footer-wrap__nav {
    margin-top: 30px;
}

.choices.is-open {
    position: relative;
    z-index: 10;
}

.choices__inner {
    padding: 15px 25px !important;
    margin-bottom: 15px;
}

.choices__list--dropdown .choices__item {
    font-size: 18px !important;
    line-height: 24px;
}

.choices[data-type*=select-one]::after {
    top: 45%;
}

.iti {
    width: 100%;
    margin-bottom: 15px;
}

.real-phone {
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    position: absolute;
}

.clients-wrap__list .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.iti--inline-dropdown .iti__dropdown-content {
    top: auto !important;
    bottom: 100% !important;
    margin-bottom: 4px;
}

.clients-wrap__reviews--slider .item-top {
    margin-bottom: 20px;
}

.wpcf7-list-item {
    margin: 0;
}

.wpcf7-list-item label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    position: relative;
}

.wpcf7-list-item input {
    width: 26px;
    height: 26px;
    margin: 0;
    padding: 0;
    opacity: 0;
}

.wpcf7-list-item .wpcf7-list-item-label {
    display: block;
    width: 100%;
    max-width: calc(100% - 26px);
    padding-left: 20px;
    font-size: 16px;
    line-height: 24px;
    color: #131313;
}

.wpcf7-list-item .wpcf7-list-item-label::after {
    content: '';
    display: block;
    width: 26px;
    height: 26px;
    border: solid 1px #D0D9E7;
    border-radius: 5px;
    position: absolute;
    left: 0;
    top: -3px;
}

.wpcf7-list-item input:checked+.wpcf7-list-item-label::after {
    background: url('./assets/img/main-old/check.svg') no-repeat center center / contain;
}

.wpcf7-list-item .wpcf7-list-item-label a {
    color: #E62D5B;
    text-decoration: underline;
}

.wpcf7-list-item .wpcf7-list-item-label a:hover {
    text-decoration: none;
}

.wpcf7-not-valid-tip {
    font-size: 14px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.wpcf7-spinner {
    position: absolute;
    margin-top: -60px;
}

.ttx .btn {
    text-decoration: none;
    color: #fff;
}

.scroll {
    position: absolute;
    display: block;
    margin-top: -250px;
    overflow: hidden;
    visibility: hidden;
}

.compensation-wrap__slider--list .item img {
    border-radius: 20px;
    -webkit-box-shadow: 0px 6.65px 5.32px 0px #00000004, 0px 22.34px 17.87px 0px #00000006;
            box-shadow: 0px 6.65px 5.32px 0px #00000004, 0px 22.34px 17.87px 0px #00000006;
}

.stat-wrap .item-back {
    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-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
}

.us-wrap__notice {
    max-width: 871px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 30px;
}

.clients-bg .clients-wrap__list {
    background-color: #F8FAFD;
}

/* .help-wrap__flex {
    align-items: flex-start;
} */

.help-wrap__flex--sidebar {
    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-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.help-wrap__flex--sidebar .item-title {
    padding-right: 20px;
}

.help-wrap__flex--list .item-text img:last-child {
    margin-bottom: 0;
}

.help-wrap__flex--list .item-text ul li {
    margin-bottom: 0;
}

.default-wrap {
    padding-top: 60px;
}

.header-top__meta--languages ul {
    list-style-type: none;
    position: relative;
    cursor: pointer;
}

.header-top__meta--languages ul li {
    padding: 6px 8px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.header-top__meta--languages ul .current-lang::after {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background: url('./assets/img/main-old/lang.svg') no-repeat center center;
    margin-left: 6px;
}

.header-top__meta--languages ul li a {
    color: #fff;
}

.header-top__meta--languages ul ul {
    position: absolute;
    left: -1px;
    top: 25px;
    width: calc(100% + 2px);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    background-color: #2481EB;
    border-radius: 0 0 5px 5px;
    padding-left: 1px;
}

.header-top__meta--languages ul li img {
    display: none;
}

.header-top__meta--languages {
    padding: 0;
}

.header-top__meta--languages:hover {
    background-color: #2481EB;
    border-color: #2481EB;
}

.header-top__meta--languages ul:hover ul {
    opacity: 1;
    visibility: visible;
}

/* Ð›Ð¸Ð½Ð¸Ñ Ð´Ð»Ñ Ð°ÐºÑ‚Ð¸Ð²Ð½Ð¾Ð³Ð¾ Ð¿ÑƒÐ½ÐºÑ‚Ð° â€” ÐºÑ€Ð°ÑÐ½Ð°Ñ */
.header-wrap__nav--menu ul .current_page_item a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #E62D5B;
    /* ÐºÑ€Ð°ÑÐ½Ð°Ñ */
}

/* Ð›Ð¸Ð½Ð¸Ñ Ð¿Ñ€Ð¸ Ð½Ð°Ð²ÐµÐ´ÐµÐ½Ð¸Ð¸ â€” ÑÐ¸Ð½ÑÑ */
.header-wrap__nav--menu ul li a:hover::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #2380EB;
    /* ÑÐ¸Ð½ÑÑ */
}

.main-wrapper {
    margin-left: auto;
    margin-right: auto;
}

.main-nav .slick-arrow {
    left: 15px;
}

.main-nav .slick-next {
    left: auto;
    right: 15px;
}

.consultation-wrap__list .item-text ul li::after {
    top: 3px;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
}

.service-wrap {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}

.blog-wrap__list .item-image img,
.article-wrap__content--image img {
    -o-object-position: top;
       object-position: top;
}

.article-wrap__content--image {
    height: auto;
}

.top-wrap__text {
    max-width: 800px;
}

.history-wrap__flex {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.history-wrap__flex--content {
    margin-top: 0;
}

.service-def .service-wrap {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
}

.not-wrap {
    text-align: center;
    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-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.not-wrap h2 {
    font-size: 80px;
    line-height: 90px;
}

.default-wrap__text {
    margin-bottom: 30px;
}

.slick-carousel .slick-dots {
    display: none !important;
}

.slick-carousel.slick-single .slick-dots {
    display: block !important;
}

.list-slider,
.stat-slider {
    display: none;
}

.clients-zero .clients-wrap__subtitle {
    margin-top: 0;
}

.consultation-wrap__swipe {
    display: none;
}

.reason-wrap__content--video {
    display: none;
    border: solid 2px #2380eb;
    border-radius: 20px;
    overflow: hidden;
}

.reason-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}

.reason-wrap__video {
    position: relative;
    overflow: hidden;
    border: solid 4px #2380eb;
    border-radius: 20px;
    height: 745px;
}

.reason-wrap__video iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 16;
    margin-bottom: -5px;
    margin-top: -154px;
}

.reason-wrap__sidebar {
    display: none;
}

.service-wrap {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
}

@media (min-width: 1101px) {
    .service.service3 .service-wrap__content {
        -webkit-align-self: flex-start;
            -ms-flex-item-align: start;
                align-self: flex-start;
    }
}

.service-wrap__image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
}

.blog-wrap__flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.blog-wrap__flex a {
    color: #2380EB;
    font-weight: 500;
    padding: 10px 30px;
}

.blog-wrap__flex a:hover {
    text-decoration: underline;
}

.main-wrap .item {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}

.main-wrap .item-content {
    margin-top: 90px;
}

.main-wrap .item-content__title,
.main-wrap .item-content__text p {
    margin-bottom: 40px;
}

.main-wrap .item-content .btn {
    margin-top: 40px;
}

.mm {
    display: none !important;
}

.map-wrap {
    margin: -30px 0;
}

.map-wrap__image {
    margin-bottom: -120px;
}

.map {
    padding-bottom: 0;
}

.cf7-step {
    display: none;
}

.cf7-step.active {
    display: block;
}

.cf7-invalid input,
.cf7-invalid textarea {
    border: 2px solid red;
}

.cf7-invalid input:focus,
.cf7-invalid textarea:focus {
    border-color: darkred;
}

.cf7-invalid label {
    color: red;
}

.modal-wrap__title {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

.modal-wrap__form .wpcf7-list-item {
    display: block;
    margin-bottom: 10px;
}

.modal-wrap__form .cf7-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 30px;
    position: relative;
}

.modal-wrap__form .cf7-buttons .wpcf7-spinner {
    right: 0;
}

.modal-wrap__form .cf7-buttons .btn {
    width: 100%;
    max-width: 200px;
    margin: 0 !important;
    height: 60px !important;
}

.modal-wrap__form input,
.modal-wrap__form select,
.modal-wrap__form textarea {
    margin-bottom: 15px;
    padding: 15px 25px;
}

.modal-wrap__form .wpcf7-list-item input {
    margin: 0;
    padding: 0;
}

.btn-gray {
    background-color: gray;
    border-color: gray;
    color: #fff;
}

.btn-gray:hover {
    background-color: #fff;
    border-color: gray;
    color: gray;
}

.cf7-step p {
    margin-bottom: 10px;
    display: block;
}

.clients-wrap__reviews--slider .item-text {
    margin-top: 0;
}

.clients-wrap__reviews .slick-dots {
    margin-top: 0;
}

.clients-wrap {
    padding-bottom: 70px;
}

.blog-wrap__list .item-title {
    height: 49px;
}

.blog-wrap__list .item-text {
    height: 102px;
}

.loadMoreBtn {
    margin: 40px auto 0;
    color: #fff !important;
    opacity: 0;
}

.blog-wrap__list .item-image__date {
    color: #fff;
    background-color: #2380eb;
}

.blog-wrap__flex a {
    color: #fff;
    text-decoration: none;
}

.blog-wrap__flex a:hover {
    text-decoration: none;
}

.article-wrap__content--flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 30px;
}

.article-wrap__content--flex-count {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
}

.yasr-vv-stats-text-container,
.yasr-custom-text-vv-before,
.yasr-vv-bottom-container,
.yasr-vv-container-loader {
    display: none !important;
}

.hh {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.rating-count {
    text-align: center;
    margin-left: 10px;
    margin-top: 5px;
}

/* ===== BLOG ===== */

.op-blog-top .op-container {
    position: relative;
}

.op-blog-top__deco {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 384px;
    height: 304px;
    overflow: hidden;
    pointer-events: none;
}

.op-blog-top__deco img {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: bottom;
       object-position: bottom;
}

.op-blog {
    padding: 50px 0 70px;
}

.op-blog-filter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 40px;
}

.op-blog-filter__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 10px 20px;
    border-radius: 5px;
    border: 1px solid #e6ecf4;
    font-family: Gilroy, sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #131313;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.4;
}

.op-blog-filter__btn.active,
.op-blog-filter__btn:hover {
    background: -o-linear-gradient(357.64deg, #092B96 0%, #086CDC 100%);
    background: linear-gradient(92.36deg, #092B96 0%, #086CDC 100%);
    border-color: transparent;
    border-radius: 10px;
    color: #fff;
}

.op-blog-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 22px;
}

.op-blog-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: #f8fafd;
    border-radius: 20px;
    overflow: hidden;
    width: calc(33.333% - 15px);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.op-blog-card:hover {
    -webkit-box-shadow: 0 10px 40px rgba(8, 108, 220, .12);
            box-shadow: 0 10px 40px rgba(8, 108, 220, .12);
}

.op-blog-card__image {
    position: relative;
    aspect-ratio: 3 / 2;
    border-radius: 16px;
    overflow: hidden;
    margin: 10px 10px 0;
}

.op-blog-card__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
}

.op-blog-card__date {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #f8fafd;
    color: #777;
    font-family: Gilroy, sans-serif;
    font-size: 16px;
    font-weight: 400;
    padding: 3px 8px;
    border-radius: 5px;
    line-height: 1.4;
}

.op-blog-card__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: 16px 20px 20px;
    gap: 10px;
}

.op-blog-card__title {
    font-family: Gilroy, sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #131313;
    line-height: 1.3;
}

.op-blog-card__text {
    font-family: Gilroy, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #131313;
    line-height: 1.6;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.op-blog-card .op-btn {
    margin-top: 6px;
    min-height: 46px;
    font-size: 14px;
    padding-left: 20px;
    padding-right: 20px;
}

.op-blog-pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 50px;
}

.op-blog-pagination a,
.op-blog-pagination span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-width: 48px;
    height: 48px;
    padding: 0 6px;
    background: #f6f8fb;
    font-family: Gilroy, sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #131313;
    text-decoration: none;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    border-right: 1px solid #e6ecf4;
}

.op-blog-pagination a:first-child,
.op-blog-pagination span:first-child {
    border-radius: 5px 0 0 5px;
}

.op-blog-pagination a:last-child,
.op-blog-pagination span:last-child {
    border-radius: 0 5px 5px 0;
    border-right: none;
}

.op-blog-pagination span.current {
    background: #2380eb;
    color: #fff;
}

.op-blog-pagination a:hover {
    background: #e6ecf4;
}

@media (max-width: 1100px) {
    .op-blog-top__deco {
        width: 280px;
        height: 220px;
    }

    .op-blog-card {
        width: calc(50% - 11px);
    }
}

@media (max-width: 668px) {
    .op-blog-top__deco {
        display: none;
    }

    .op-blog-card {
        width: 100%;
    }

    .op-blog-filter__btn {
        font-size: 15px;
        padding: 8px 14px;
    }

    .op-blog {
        padding: 30px 0 50px;
    }
}

@media (max-width: 1500px) {
    .list {
        padding-top: 0;
    }

    .list-wrap {
        -webkit-transform: translateY(-30px);
            -ms-transform: translateY(-30px);
                transform: translateY(-30px);
    }
}

@media (max-width: 1100px) {
    .reason-wrap__video {
        display: none;
    }

    .reason-wrap__content--video {
        display: block;
        margin-bottom: 30px;
        overflow: hidden;
    }

    .reason-wrap__content--video iframe {
        width: 100%;
        height: auto;
        aspect-ratio: 9 / 16;
        margin-bottom: -5px;
    }

}

@media (max-width: 1024px) {

    .map-wrap {
        margin-top: 60px;
    }

    .map-wrap__image {
        margin: 30px 0;
    }

    .top-wrap__text {
        max-width: 75%;
    }

    .service3 .reason-wrap,
    .service4 .reason-wrap {
        margin-top: 60px;
    }

    .reason-wrap__sidebar {
        display: block;
        overflow: hidden;
    }

    .reason-wrap__sidebar .article-wrap__list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        white-space: nowrap;
        overflow: hidden;
        overflow-x: auto;
        max-width: 90vw;
        margin: 0 0 30px;
    }

    .reason-wrap__sidebar .article-wrap__list .item {
        margin: 0 15px 0 0;
    }

    .reason-wrap__sidebar .article-wrap__list--title {
        display: none;
    }

}

@media (max-width: 868px) {

    .for-wrap__slider {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .custom-scroll {
        overflow-x: auto;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
        -webkit-box-align: stretch;
            -ms-flex-align: stretch;
                align-items: stretch;
        padding: 0 15px 15px;
        margin-left: 0 !important;
    }

    .custom-scroll .wrapper {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 auto;
                flex: 0 0 auto;
        width: 90vw;
        scroll-snap-align: start;
        margin-left: 10px;
        margin-right: 10px;
    }

    .custom-scroll .item {
        margin-left: 0;
        margin-right: 0;
        height: 100%;
    }

    .custom-scroll {
        -ms-scroll-snap-type: x mandatory;
            scroll-snap-type: x mandatory;
    }
}

@media (max-width: 550px) {

    .main-wrap .item-content {
        margin-top: 15px;
    }

    .main-wrap .item-content__title {
        max-width: 350px;
    }

    .list {
        padding-top: 30px;
    }

    .list-wrap {
        -webkit-transform: none;
            -ms-transform: none;
                transform: none;
    }

    .top-wrap__text {
        max-width: 83%;
    }

    .list-wrap .item-image {
        max-width: 100%;
    }

    .list-wrap,
    .stat-wrap {
        display: none;
    }

    .stat {
        padding-top: 40px;
    }

    .list-slider,
    .stat-slider {
        display: block;
        margin-left: -20px;
        width: calc(100% + 40px);
        margin-top: -20px;
    }

    .list-slider {
        max-width: 100%;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        margin-right: -15px;
        padding: 0;
        -webkit-transform: translateX(3px);
            -ms-transform: translateX(3px);
                transform: translateX(3px);
    }

    .list-slider .wrapper {
        padding: 20px;
    }

    .price-wrap__list .item-text .row-item {
        white-space: break-spaces;
    }

    .main-wrap {
        padding-top: 10px;
    }

    .main-wrap .item-content__text {
        display: block;
    }

    .main-wrap .item-content__text p:last-child {
        margin-bottom: 0;
    }

    .clients-zero .clients-wrap {
        padding-top: 40px;
    }

    .us-wrap__notice {
        font-size: 14px;
        line-height: 20px;
    }

    .stat-wrap .item-back {
        display: none;
    }

    .consultation-wrap__swipe {
        display: block;
    }

    .slick-dots {
        margin-top: 20px;
    }

    .slick-dots li {
        margin: 0 5px;
    }

    .slick-dots li button {
        width: 10px;
        height: 10px;
    }

    .reason-wrap__content--title {
        max-width: 370px;
    }

    .service3 .bread,
    .service4 .bread {
        display: none;
    }

    .reason-wrap__sidebar .article-wrap__list .item-title {
        font-size: 13px;
        line-height: 16px;
    }

    .dd {
        display: none !important;
    }

    .mm {
        display: block !important;
    }

    .custom-scroll {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .for-wrap__list {
        margin-left: -15px !important;
    }

    .for-wrap__list .wrapper {
        width: 85vw;
    }

    .for-wrap__list .wrapper:first-child {
        padding-left: 15px !important;
    }

    .for-wrap__list .wrapper:last-child {
        padding-right: 15px !important;
    }

    .for-wrap__list .item {
        padding: 15px;
        height: 275px;
    }

    select {
        height: 66px;
        padding: 0 1rem;
        line-height: 66px;
    }

}

.op-team-wrap__list {
    width: 100%;
}

.partners-wrap__title {
    text-align: center;
}

.partners-wrap__text {
    font-size: 18px;
    line-height: 30px;
    max-width: 592px;
    margin: 30px auto 60px;
    text-align: center;
}

.partners-wrap {
    margin: 120px 0;
}

.partners-wrap__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.partners-wrap__list .item {
    width: 21.5%;
    margin-right: 4.6%;
    margin-bottom: 30px;
    border-radius: 20px;
    border: solid 1px #E6ECF4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 20px;
    min-height: 100px;
}

.partners-wrap__list .item img {
    max-height: 90px;
    width: auto;
}

.partners-wrap__list .item:nth-child(4n+4) {
    margin-right: 0;
}

.partners-wrap__title,
.map-title {
    text-align: center;
    margin-bottom: 40px;
}

.recommend-wrap {
    margin-bottom: 120px;
}

.recommend-wrap__list {
    background: url('./assets/img/main/bg-recommend.png') no-repeat center center/cover;
    border-radius: 50px;
    padding: 0 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 60px;
}

.recommend-wrap__list--content {
    width: 100%;
    max-width: 585px;
    margin-right: 15px;
    padding: 32px 0;
}

.recommend-wrap__list--content-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 25px;
}

.recommend-wrap__list--content-title img {
    max-width: 54px;
}

.recommend-wrap__list--content-title span {
    display: block;
    max-width: calc(100% - 54px);
    padding-left: 15px;
    font-size: 20px;
    line-height: 22px;
    font-weight: 700;
}

.recommend-wrap__list--content-text {
    font-size: 16px;
    line-height: 24px;
    max-width: 571px;
}

.recommend-wrap__list--content-text ul {
    list-style-type: none;
}

.recommend-wrap__list--content-text ul li {
    margin-bottom: 15px;
    padding-left: 27px;
    position: relative;
}

.recommend-wrap__list--content-text ul li::after {
    content: "";
    display: block;
    width: 17px;
    height: 17px;
    position: absolute;
    left: 0;
    top: 3px;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    background: url('./assets/img/main/li2.svg') no-repeat center center;
}

.recommend-wrap__list--image {
    max-width: 651px;
}

.compensation {
    overflow: hidden;
}

.compensation-wrap__text {
    margin: 30px 0 60px;
    text-align: center;
    font-size: 18px;
    line-height: 30px;
}

.compensation-wrap__slider {
    position: relative;
}

.compensation-wrap__slider--nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    pointer-events: none;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}

.compensation-wrap__slider--nav button {
    pointer-events: all;
    background-color: #F8FAFD;
    border: none;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.compensation-wrap__slider--nav button:hover {
    background-color: #0A2F9A;
}

.compensation-wrap__slider--nav button:hover svg path {
    stroke: #fff;
}

.compensation-wrap__slider--nav .slick-prev {
    margin-left: -65px;
}

.compensation-wrap__slider--nav .slick-next {
    margin-right: -65px;
}

.compensation-wrap__slider--list .wrapper {
    padding: 0 7px;
    text-align: center;
}

.compensation-wrap__slider--list .item {
    cursor: pointer;
}

.compensation-wrap__slider--list .item img {
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.compensation-wrap__slider--list .item-title {
    font-size: 18px;
    line-height: 30px;
    max-width: 363px;
    margin: 25px auto 0;
}

.compensation-wrap__notice {
    max-width: 956px;
    margin: 80px auto 0;
}

@media (max-width: 1100px) {
    .partners-wrap__list .item {
        width: 48%;
    }

    .partners-wrap__list .item:nth-child(1n+1) {
        margin: 0 2% 15px 0;
    }

    .partners-wrap__list .item:nth-child(3n+3) {
        margin-right: 0;
    }

    .recommend-wrap__list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }

    .recommend-wrap__list--content {
        margin: 0;
        padding-bottom: 0;
		max-width: 100%;
    }

    .compensation-wrap__slider--nav {
        display: none;
    }

    .compensation-wrap__slider .slick-dots li button {
        background-color: #3F4349;
        border-color: #3F4349;
    }

    .compensation-wrap__slider .slick-dots .slick-active button {
        background-color: #fff;
    }
}

@media (max-width: 668px) {
    .partners-wrap {
        margin: 60px 0;
    }

    .partners-wrap__text {
        font-size: 14px;
        line-height: 20px;
        margin: 20px auto 40px;
    }

    .partners-wrap__list {
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }

    .partners-wrap__list .item {
        width: 49%;
    }

    .partners-wrap__list .item:nth-child(1n+1) {
        margin: 0 0 10px;
    }

    .recommend-wrap {
        margin-bottom: 60px;
    }

    .recommend-wrap__list {
        padding: 30px 15px 0;
        border-radius: 20px;
    }

    .recommend-wrap__list--content {
        padding-top: 0;
    }

    .recommend-wrap__list--content-title span {
        =: 18px;
        display: block;
        max-width: calc(100% - 54px);
        padding-left: 15px;
        font-size: 20px;
        line-height: 22px;
        font-weight: 700;
    }

    .compensation-wrap__text {
        font-size: 14px;
        line-height: 20px;
        margin: 20px auto 40px;
    }

    .compensation-wrap__slider--list .item-title {
        font-size: 16px;
        line-height: 24px;
    }

    .compensation-wrap__notice {
        font-size: 16px;
        line-height: 24px;
    }
}

/* ===== SEARCH ===== */

.op-search {
    padding: 60px 0 80px;
}

.op-search-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    max-width: 700px;
    margin: 0 auto 40px;
}

.op-search-form input[type="text"] {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 14px 24px;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    font-size: 16px;
    font-family: Gilroy, sans-serif;
    color: #131313;
    background: #fff;
    -webkit-transition: border-color 0.3s;
    -o-transition: border-color 0.3s;
    transition: border-color 0.3s;
}

.op-search-form input[type="text"]:focus {
    border-color: #2481eb;
    outline: none;
}

.op-search-form .op-btn {
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    background: -o-linear-gradient(left, #092b96, #086cdc);
    background: -webkit-gradient(linear, left top, right top, from(#092b96), to(#086cdc));
    background: linear-gradient(90deg, #092b96, #086cdc);
    color: #fff;
    font-weight: 600;
    white-space: nowrap;
}

.op-search-form .op-btn:hover {
    opacity: 0.9;
}

.op-search-count {
    margin-bottom: 30px;
    font-size: 18px;
    color: #636363;
}

.op-search-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.op-search-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
    background: #f8fafd;
    -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
    transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
    -o-transition: transform 0.3s, box-shadow 0.3s;
    transition: transform 0.3s, box-shadow 0.3s;
    transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
    text-decoration: none;
    color: #131313;
}

.op-search-card:hover {
    -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
            transform: translateY(-5px);
    -webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.op-search-card__image {
    position: relative;
    aspect-ratio: 3 / 2;
    border-radius: 16px;
    overflow: hidden;
    margin: 10px 10px 0;
}

.op-search-card__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    -o-transition: transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}

.op-search-card:hover .op-search-card__image img {
    -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05);
}

.op-search-card__body {
    padding: 16px 20px 20px;
    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;
    gap: 10px;
}

.op-search-card__type {
    display: inline-block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 4px 12px;
    border-radius: 50px;
    background: -o-linear-gradient(left, #092b96, #086cdc);
    background: -webkit-gradient(linear, left top, right top, from(#092b96), to(#086cdc));
    background: linear-gradient(90deg, #092b96, #086cdc);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.op-search-card__title {
    font-family: Gilroy, sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #131313;
    line-height: 1.3;
}

.op-search-card__text {
    font-family: Gilroy, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #131313;
    line-height: 1.6;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.op-search-card__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 8px 18px 8px 20px;
    border-radius: 50px;
    background: -o-linear-gradient(left, #092b96, #086cdc);
    background: -webkit-gradient(linear, left top, right top, from(#092b96), to(#086cdc));
    background: linear-gradient(90deg, #092b96, #086cdc);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
    margin-top: 6px;
}

.op-search-card .op-btn {
    margin-top: 6px;
    min-height: 46px;
    font-size: 14px;
}

.op-search-card:hover .op-search-card__link {
    opacity: 0.9;
}

.op-search-empty {
    text-align: center;
    padding: 60px 0;
}

.op-search-empty svg {
    margin-bottom: 30px;
    opacity: 0.5;
}

.op-search-empty__title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.op-search-empty__text {
    font-size: 16px;
    color: #636363;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.op-search-empty .op-btn {
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    background: -o-linear-gradient(left, #092b96, #086cdc);
    background: -webkit-gradient(linear, left top, right top, from(#092b96), to(#086cdc));
    background: linear-gradient(90deg, #092b96, #086cdc);
    color: #fff;
    font-weight: 600;
    margin: 0 auto;
}

.op-search-empty .op-btn svg {
    margin-bottom: 0;
}

@media (max-width: 1100px) {
    .op-search-grid {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 668px) {
    .op-search {
        padding: 40px 0 60px;
    }

    .op-search-form {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    .op-search-form .op-btn {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }

    .op-search-grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .op-search-empty__title {
        font-size: 22px;
    }
}

.op-top-wrap__title--search-lead {
    font-weight: 500;
    margin-top: 16px;
}

.op-search-query-banner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    gap: 10px 16px;
    max-width: 700px;
    margin: 0 auto 20px;
    padding: 16px 20px;
    border-radius: 16px;
    background: #f0f4f9;
    border: 1px solid #e0e8f2;
}

.op-search-query-banner__label {
    font-size: 14px;
    font-weight: 600;
    color: #636363;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.op-search-query-banner__query {
    font-size: 18px;
    font-weight: 600;
    color: #131313;
    word-break: break-word;
}

.op-search-scope {
    max-width: 700px;
    margin: 0 auto 28px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px 16px;
}

.op-search-scope__label {
    font-size: 14px;
    color: #636363;
}

.op-search-scope__tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
}

.op-search-scope__tab {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #092b96;
    background: #fff;
    border: 1px solid #d0d9e7;
    -webkit-transition: background 0.2s, color 0.2s, border-color 0.2s;
    -o-transition: background 0.2s, color 0.2s, border-color 0.2s;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.op-search-scope__tab:hover {
    border-color: #2481eb;
    color: #086cdc;
}

.op-search-scope__tab.is-active {
    color: #fff;
    border-color: transparent;
    background: -o-linear-gradient(left, #092b96, #086cdc);
    background: -webkit-gradient(linear, left top, right top, from(#092b96), to(#086cdc));
    background: linear-gradient(90deg, #092b96, #086cdc);
}

.op-search-scope__reset {
    font-size: 14px;
    font-weight: 600;
    color: #636363;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.op-search-scope__reset:hover {
    color: #092b96;
}

.op-footer-top {
    background: #F6F8FB;
}

.op-btn.op-btn-primary {
    border: 1px solid transparent;
    background:
        -o-linear-gradient(#fff, #fff) padding-box,
        -o-linear-gradient(358.09deg, #092B96 0%, #086CDC 100%) border-box;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(91.91deg, #092B96 0%, #086CDC 100%) border-box;
}

.op-btn.op-btn-primary::before,
.op-btn.op-btn-primary::after {
    content: none;
}

.op-btn.op-btn-primary:hover {
    background:
        -o-linear-gradient(#086CDC, #086CDC) padding-box,
        -o-linear-gradient(358.09deg, #092B96 0%, #086CDC 100%) border-box;
    background:
        linear-gradient(#086CDC, #086CDC) padding-box,
        linear-gradient(91.91deg, #092B96 0%, #086CDC 100%) border-box;
}

.op-header-wrap__meta--languages ul ul {
    top: 34px;
    padding: 14px 10px 6px;
    z-index: 1;
}

@media (max-width: 640px) {
	.modal-wrap .wpcf7-list-item label input {
		min-height: -webkit-fit-content;
		min-height: -moz-fit-content;
		min-height: fit-content;
	}
	.modal-wrap__close {
		cursor: pointer;
		text-align: right;
		width: -webkit-fit-content;
		width: -moz-fit-content;
		width: fit-content;
		margin-left: auto;
		font-weight: 700;
		font-size: 50px;
		-webkit-transition: .3s;
		-o-transition: .3s;
		transition: .3s;
		position: absolute;
		right: 25px;
		top: 25px;
		-webkit-transform: scale(0.8);
		    -ms-transform: scale(0.8);
		        transform: scale(0.8);
	}
}

/* Отзывы: свёрнутый текст + «Ещё» */
.op-clients-reviews__list .op-item-text.op-ttx .op-item-text__main {
	max-height: 70px;
	overflow: hidden;
	-webkit-transition: max-height 0.4s ease;
	-o-transition: max-height 0.4s ease;
	transition: max-height 0.4s ease;
}

.op-clients-reviews__list .op-item-text.op-ttx.is-expanded .op-item-text__main {
	max-height: 3000px;
}

/* Только если текст длиннее лимита (класс из app.js): градиент + многоточие */
.op-clients-reviews__list .op-item-text.op-ttx.op-review-text--clamped:not(.is-expanded) .op-item-text__main {
	position: relative;
}

.op-clients-reviews__list .op-item-text.op-ttx.op-review-text--clamped:not(.is-expanded) .op-item-text__main::after {
	content: '…';
	position: absolute;
	right: 0;
	bottom: 0;
	padding: 0 2px 0 2.75rem;
	line-height: 1.35;
	pointer-events: none;
	background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(42%, #fff), to(#fff));
	background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, #fff 42%, #fff 100%);
	background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #fff 42%, #fff 100%);
	color: inherit;
}

.op-clients-reviews__list .op-item-text__read-more {
	display: block;
	margin-top: 10px;
	padding: 0;
	border: 0;
	background: none;
	cursor: pointer;
	font: inherit;
	font-size: 14px;
	font-weight: 600;
	color: #2483ed;
	text-decoration: underline;
	text-align: left;
}

.op-clients-reviews__list .op-item-text__read-more:hover {
	color: #1a6fd0;
}

.op-clients-reviews__list .op-item-text__read-more[hidden] {
	display: none;
}

@media (max-width: 768px ) {
	.default-wrap.ttx h1 {
		font-size: 36px;
	}
}

/* Главная: «Как мы работаем» — фото +15% на мобильных */
@media (max-width: 1100px) {
	.home .op-how-wrap__flex--image {
		max-width: 466px;
	}
}

@media (max-width: 640px) {
	.home .op-how-wrap__flex--image {
		max-width: 284px;
	}
}

/* Главная: «Как мы работаем» — нижний отступ −30% */
.op-how.op-how--home {
	padding-bottom: calc(120px * 0.7);
}

.page-id-13 .op-how.op-how--home {
	padding-bottom: 0;
	margin-bottom: calc(-80px * 0.3);
}

@media (max-width: 1100px) {
	.page-id-13 .op-how.op-how--home {
		margin-bottom: calc(-100px * 0.3);
	}
}

@media (max-width: 640px) {
	.op-how.op-how--home {
		padding-bottom: calc(60px * 0.7);
	}

	.page-id-13 .op-how.op-how--home {
		margin-bottom: calc(-60px * 0.3);
	}
}

/* Контакты — плашка «Как нас найти» */
.op-contacts-bottom.op-contacts-bottom--card {
	margin-top: 56px;
	padding: 48px 56px;
	background: linear-gradient(145deg, #f8fafd 0%, #f3f7fc 52%, #eef3fb 100%);
	border: 1px solid rgba(35, 128, 235, 0.1);
	border-radius: 40px;
	box-shadow: 0 16px 44px rgba(9, 43, 150, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.9);
	align-items: center;
	gap: 40px;
}

.op-contacts-bottom--card .op-contacts-bottom__content {
	max-width: 560px;
}

.op-contacts-bottom--card .op-contacts-bottom__content--title {
	margin: 0 0 24px;
	font-size: clamp(1.5rem, 1.25rem + 0.7vw, 1.75rem);
	line-height: 1.25;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.op-contacts-bottom--card .op-contacts-bottom__content--text {
	color: #2a3441;
}

.op-contacts-bottom--card .op-contacts-bottom__content--text.op-ttx p {
	margin-bottom: 16px;
	line-height: 1.65;
	font-size: 17px;
}

.op-contacts-bottom--card .op-contacts-bottom__content--text.op-ttx a:not(.op-btn) {
	font-weight: 600;
	text-decoration: none;
	border-bottom: 1px solid rgba(35, 128, 235, 0.35);
	transition: color 0.2s ease, border-color 0.2s ease;
}

.op-contacts-bottom--card .op-contacts-bottom__content--text.op-ttx a:not(.op-btn):hover {
	color: #092b96;
	border-bottom-color: rgba(9, 43, 150, 0.5);
}

.op-contacts-bottom--card .op-contacts-bottom__images {
	max-width: 620px;
	gap: 20px;
	align-items: stretch;
}

.op-contacts-bottom--card .op-contacts-bottom__figure {
	margin: 0;
	flex: 1 1 calc(50% - 10px);
	min-width: 0;
	border-radius: 22px;
	overflow: hidden;
	border: 3px solid #fff;
	box-shadow: 0 12px 30px rgba(9, 43, 150, 0.12);
	background: #fff;
}

.op-contacts-bottom__zoom {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.op-contacts-bottom__zoom-btn {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: linear-gradient(135deg, #092b96, #2380eb);
	color: #fff;
	box-shadow: 0 8px 20px rgba(9, 43, 150, 0.28);
	pointer-events: none;
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.op-contacts-bottom__zoom-btn svg {
	display: block;
	flex: 0 0 auto;
}

.op-contacts-bottom__zoom:hover .op-contacts-bottom__zoom-btn,
.op-contacts-bottom__zoom:focus-visible .op-contacts-bottom__zoom-btn {
	transform: scale(1.08);
	box-shadow: 0 10px 24px rgba(9, 43, 150, 0.36);
}

.op-contacts-bottom--card .op-contacts-bottom__figure img {
	width: 100%;
	height: 260px;
	border-radius: 0;
	object-fit: cover;
	display: block;
}

@media (max-width: 1100px) {
	.op-contacts-bottom.op-contacts-bottom--card {
		margin-top: 48px;
		padding: 36px 32px;
		flex-direction: column;
		align-items: stretch;
		gap: 32px;
		border-radius: 32px;
	}

	.op-contacts-bottom--card .op-contacts-bottom__content {
		max-width: 100%;
	}

	.op-contacts-bottom--card .op-contacts-bottom__images {
		max-width: 100%;
	}

	.op-contacts-bottom--card .op-contacts-bottom__figure img {
		height: 240px;
	}
}

@media (max-width: 640px) {
	.op-contacts-bottom.op-contacts-bottom--card {
		margin-top: 40px;
		padding: 28px 20px;
		border-radius: 24px;
		gap: 24px;
	}

	.op-contacts-bottom--card .op-contacts-bottom__content--title {
		margin-bottom: 18px;
		font-size: 1.375rem;
	}

	.op-contacts-bottom--card .op-contacts-bottom__content--text.op-ttx p {
		font-size: 16px;
		line-height: 1.6;
	}

	.op-contacts-bottom--card .op-contacts-bottom__images {
		flex-direction: column;
		gap: 16px;
	}

	.op-contacts-bottom--card .op-contacts-bottom__figure {
		flex-basis: auto;
		border-radius: 18px;
	}

	.op-contacts-bottom--card .op-contacts-bottom__figure img {
		height: auto;
		min-height: 200px;
		max-height: 280px;
	}
}

.page-id-238 .op-contacts-bottom.op-contacts-bottom--card {
	margin-top: 0 !important;
}

/* template-reviews.php — меньше отступ снизу */
.clients .clients-wrap:has(.op-clients-reviews) {
	padding-bottom: 48px;
}

@media (max-width: 767px) {
	.clients .clients-wrap:has(.op-clients-reviews) {
		padding-bottom: 36px;
	}
}

/* CF7 submit: клик по всей кнопке через JS, отступы как раньше */
.op-cf7-submit {
	cursor: pointer;
}
