:root {
    --accent-color: #004f7a;
}
.loading-overlay {
    position: absolute;
    z-index: 100000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(40, 47, 55, .75)
}

.loading-overlay .loader {
    position: fixed;
    z-index: 100000;
    top: 50%;
    left: 50%;
    margin: -25px 0 0 -5px
}

.loader {
    position: relative;
    width: 50px !important;
    height: 50px !important;
    margin: 0 auto;
    border-radius: 100%
}

.loader:after, .loader:before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    border: 5px solid transparent
}

.loader:before {
    z-index: 100;
    -webkit-animation: spin 1s infinite;
    animation: spin 1s infinite;
    border-top-color: var(--accent-color)
}

.loader:after {
    border: 5px solid #efefef
}

.loading-overlay--absolute {
    position: absolute;
    background: transparent
}

.loading-overlay--absolute .loader {
    position: absolute;
    margin: 0;
    top: calc(50% - 25px);
    left: calc(50% - 25px)
}

.loading-overlay--absolute .loader:after, .loading-overlay--absolute .loader:before {
    top: 0;
    left: 0
}

.isLazyLoad {
    -webkit-transition: opacity .25s ease;
    transition: opacity .25s ease
}

.isLazyLoad:not(.loaded), .isLazyLoad:not([data-was-processed=true]) {
    opacity: 0
}

.isLazyLoad.loaded, .isLazyLoad[data-was-processed=true] {
    opacity: 1
}

.isLazyLoad.loaded + .loading-overlay {
    display: none
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

/*!
 * Paging elements
 */
.paging {
    padding-top: 32px
}

.paging.is-lazy-loading .paging__list, .paging.paging--lazyload .paging__list {
    opacity: 0;
    visibility: hidden
}

.paging .paging__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    list-style: none
}

.paging a, .paging span {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 4px;
    padding: 8px 16px;
    text-align: center;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    line-height: 13px;
    color: var(--accent-color);
    background: #fff;
    border: 2px solid var(--accent-color);
    border-radius: 3px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    -webkit-transition: .35s ease-in-out, background-color .35s ease-in-out;
    transition: .35s ease-in-out, background-color .35s ease-in-out
}

.paging a:hover, .paging li.selected a, .paging span:hover {
    color: #fff;
    background-color: var(--accent-color);
    text-decoration: none
}

/*!
 * Toggler Element
 */
.testimonials-toggler {
    position: fixed;
    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;
    right: 50px;
    bottom: 0;
    width: 64px;
    height: 64px;
    border: 1px solid transparent;
    border-radius: 100%;
    background-color: var(--accent-color);
    cursor: pointer;
    z-index: 2;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(-150px);
    transform: translateY(-150px);
    -webkit-transition: opacity .25s ease, visibility .25s ease .25s, -webkit-transform .25s ease;
    transition: opacity .25s ease, visibility .25s ease .25s, -webkit-transform .25s ease;
    transition: transform .25s ease, opacity .25s ease, visibility .25s ease .25s;
    transition: transform .25s ease, opacity .25s ease, visibility .25s ease .25s, -webkit-transform .25s ease
}

.testimonials-toggler .testimonials-toggler__icon {
    width: 24px;
    height: 24px;
    font-size: 24px;
    color: #fff;
    fill: #fff
}

.testimonials-toggler:after {
    position: fixed;
    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;
    top: 0;
    right: 0;
    width: 64px;
    height: 64px;
    border: 1px solid transparent;
    border-radius: 100%;
    background-color: rgba(0, 123, 255, .15);
    cursor: pointer;
    z-index: 2;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(-150px);
    transform: translateY(-150px);
    -webkit-transition: opacity .25s ease, visibility .25s ease .25s, -webkit-transform .25s ease;
    transition: opacity .25s ease, visibility .25s ease .25s, -webkit-transform .25s ease;
    transition: transform .25s ease, opacity .25s ease, visibility .25s ease .25s;
    transition: transform .25s ease, opacity .25s ease, visibility .25s ease .25s, -webkit-transform .25s ease;
    -webkit-animation: zoom 2s infinite;
    animation: zoom 2s infinite;
    content: ""
}

.testimonials-toggler--left-bottom {
    left: 50px;
    right: 0
}

.testimonials-toggler--left-center {
    left: 50px;
    right: 0;
    bottom: calc(50vh - 32px)
}

.testimonials-toggler--center-bottom {
    right: calc(50vw - 32px)
}

.testimonials-toggler--right-center {
    bottom: calc(50vh - 32px)
}

@-webkit-keyframes zoom {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    50% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5)
    }
    to {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes zoom {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    50% {
        -webkit-transform: scale(1.5);
        transform: scale(1.5)
    }
    to {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.userpic {
    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;
    width: 64px !important;
    min-width: 64px !important;
    height: 64px !important;
    min-height: 64px !important;
    font-size: 24px;
    text-transform: uppercase;
    color: var(--accent-color);
    background-color: rgba(40, 47, 55, .06);
    border-radius: 100%
}

.userpic:hover {
    text-decoration: none
}

/*!
 * Testimonials modal
 */
.testimonials-modal {
    position: relative;
    z-index: 1040
}

.testimonials-modal .testimonials-modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(40, 47, 55, .3);
    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
}

.testimonials-modal .testimonials-modal__container {
    background-color: #fff;
    padding: 32px;
    max-width: 900px;
    max-height: 100vh;
    border-radius: 4px;
    overflow-y: auto
}

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

.testimonials-modal .testimonials-modal__title {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 600;
    font-size: 20px;
    color: #282f37
}

.testimonials-modal .testimonials-modal__description {
    margin-bottom: 12px;
    font-size: 15px;
    color: rgba(40, 47, 55, .75)
}

.testimonials-modal .testimonials-modal__title.is-hidden {
    opacity: 0
}

.testimonials-modal .testimonials-modal__description.is-hidden {
    display: none
}

.testimonials-modal .testimonials-modal__close {
    background: transparent;
    border: 0;
    cursor: pointer;
    outline: none
}

.testimonials-modal .testimonials-modal__header .testimonials-modal__close:before {
    content: "✕"
}

.testimonials-modal .testimonials-modal__content {
    margin-top: 12px;
    color: rgba(40, 47, 55, .75)
}

.testimonials-modal--slide {
    display: none
}

.testimonials-modal--slide.is-open {
    display: block
}

.testimonials-modal--slide[aria-hidden=false] .testimonials-modal__overlay {
    -webkit-animation: a .3s cubic-bezier(0, 0, .2, 1);
    animation: a .3s cubic-bezier(0, 0, .2, 1)
}

.testimonials-modal--slide[aria-hidden=false] .testimonials-modal__container {
    -webkit-animation: c .3s cubic-bezier(0, 0, .2, 1);
    animation: c .3s cubic-bezier(0, 0, .2, 1)
}

.testimonials-modal--slide[aria-hidden=true] .testimonials-modal__overlay {
    -webkit-animation: b .3s cubic-bezier(0, 0, .2, 1);
    animation: b .3s cubic-bezier(0, 0, .2, 1)
}

.testimonials-modal--slide[aria-hidden=true] .testimonials-modal__container {
    -webkit-animation: d .3s cubic-bezier(0, 0, .2, 1);
    animation: d .3s cubic-bezier(0, 0, .2, 1)
}

.testimonials-modal--slide .testimonials-modal__container, .testimonials-modal--slide .testimonials-modal__overlay {
    will-change: transform
}

@-webkit-keyframes a {
    0% {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@keyframes a {
    0% {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@-webkit-keyframes b {
    0% {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

@keyframes b {
    0% {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

@-webkit-keyframes c {
    0% {
        -webkit-transform: translateY(15%);
        transform: translateY(15%)
    }
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes c {
    0% {
        -webkit-transform: translateY(15%);
        transform: translateY(15%)
    }
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@-webkit-keyframes d {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    to {
        -webkit-transform: translateY(-10%);
        transform: translateY(-10%)
    }
}

@keyframes d {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    to {
        -webkit-transform: translateY(-10%);
        transform: translateY(-10%)
    }
}

/*!
 * Testimonials reviews list
 */
.testimonials-records .testimonials-records__content {
    display: grid;
    grid-template: auto/minmax(140px, auto) 1fr;
    gap: 32px;
    width: 100%
}

.testimonials-records .testimonials-records__row {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
    orphans: 1;
    widows: 1
}

.testimonials-records .testimonials-records__item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(40, 47, 55, .15)
}

.testimonials-records .testimonials-records__avatar {
    -ms-flex-item-align: start;
    align-self: flex-start;
    margin-right: 16px
}

.testimonials-records .testimonials-records__header {
    display: grid;
    align-items: start;
    align-content: start;
}

.testimonials-records .testimonials-records__name {
    margin-right: 16px;
    margin-bottom: 0
}

.testimonials-records .testimonials-records__body {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.testimonials-records .testimonials-records__body-item {
    margin-top: 16px;
    display: grid;
    grid-auto-flow: column;
    justify-content: start;
    align-items: center;
    gap: 8px;
}

.testimonials-records .testimonials-records__body-name {
    color: rgba(40, 47, 55, .75);
    font-size: 15px;
    font-weight: 700
}

.testimonials-records .testimonials-records__body-value {
    font-size: 15px
}

.testimonials-records .testimonials-records__date {
    font-size: 15px;
    color: rgba(40, 47, 55, .75)
}

.testimonials-records .testimonials-records__answer {
    margin-top: 16px;
    padding: 16px 20px;
    background-color: rgba(40, 47, 55, .04);
    border-radius: 3px
}

.testimonials-rating-icon {
    max-width: 24px !important;
    display: inline-block;
    font-size: inherit;
    height: 1em;
    overflow: visible;
    vertical-align: -.125em;
    color: #ffde00
}

.testimonials-last .testimonials-records__content {
    padding: 16px 20px;
    background-color: rgba(40, 47, 55, .04);
    border-radius: 20px
}

@media (max-width: 991px) {
    .testimonials-records .testimonials-records__row {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
        -webkit-column-gap: 1.25rem;
        -moz-column-gap: 1.25rem;
        column-gap: 1.25rem;
        orphans: 1;
        widows: 1
    }
}

@media (min-width: 768px) {
    .testimonials-records .testimonials-records__col {
        display: inline-block;
        width: 100%
    }
}

.testimonials *, .testimonials :after, .testimonials :before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.testimonials-default-color {
    color: var(--accent-color);
    fill: currentColor
}

.testimonials-alternative-color {
    color: rgba(0, 123, 255, .35);
    fill: currentColor
}

.testimonials {
    position: relative
}

.testimonials .testimonials__form {
    -webkit-transition: opacity .25s ease;
    transition: opacity .25s ease
}

.testimonials .testimonials__form.is-hidden, .testimonials .testimonials__success {
    display: none
}

.testimonials .testimonials__success.is-visible {
    display: block
}

.testimonials .testimonials__success-icon {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
    width: 150px;
    max-width: 150px
}

.testimonials .testimonials__success-text {
    text-align: center
}

.testimonials.is-loading .testimonials__form {
    opacity: .5
}

.testimonials .testimonials__field {
    position: relative;
    margin-bottom: 12px
}

.testimonials .testimonials__field--require .testimonials__field-name:after {
    color: red;
    content: " *"
}

.testimonials .testimonials__field-name {
    margin-bottom: 4px;
    font-size: 15px;
    color: rgba(40, 47, 55, .75)
}

.testimonials .testimonials__checkbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.testimonials .testimonials__checkbox-text {
    font-size: 15px;
    color: rgba(40, 47, 55, .75)
}

.testimonials .testimonials__field--range {
    margin-bottom: 62px
}

.testimonials .testimonials__field--range .testimonials__field-name {
    margin-bottom: 12px
}

.testimonials .testimonials__field--string {
    padding: 12px 16px;
    font-size: 15px;
    color: rgba(40, 47, 55, .75);
    background-color: rgba(40, 47, 55, .04);
    border-radius: 3px
}

.testimonials .testimonials__field--string .testimonials__field-name {
    color: #282f37
}

.testimonials .wa-captcha > p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.testimonials .wa-captcha > p:first-child {
    margin-bottom: 8px
}

.testimonials .wa-captcha-input {
    max-width: 150px
}

.testimonials .wa-captcha-refresh {
    font-size: 13px;
    color: var(--accent-color)
}

.testimonials .wa-captcha-refresh:hover {
    text-decoration: none
}

.testimonials .testimonials__input[type=email], .testimonials .testimonials__input[type=file], .testimonials .testimonials__input[type=phone], .testimonials .testimonials__input[type=text], .testimonials .testimonials__select, .testimonials .testimonials__textarea, .testimonials .wa-captcha-input {
    width: 100%;
    padding: .5rem .75rem;
    font-size: 15px;
    color: rgba(40, 47, 55, .75);
    background-color: rgba(40, 47, 55, .04);
    border: 2px solid rgba(40, 47, 55, .15);
    border-radius: 3px
}

.testimonials .testimonials__input[type=email]:active, .testimonials .testimonials__input[type=email]:focus, .testimonials .testimonials__input[type=email]:hover, .testimonials .testimonials__input[type=email]:visited, .testimonials .testimonials__input[type=file]:active, .testimonials .testimonials__input[type=file]:focus, .testimonials .testimonials__input[type=file]:hover, .testimonials .testimonials__input[type=file]:visited, .testimonials .testimonials__input[type=phone]:active, .testimonials .testimonials__input[type=phone]:focus, .testimonials .testimonials__input[type=phone]:hover, .testimonials .testimonials__input[type=phone]:visited, .testimonials .testimonials__input[type=text]:active, .testimonials .testimonials__input[type=text]:focus, .testimonials .testimonials__input[type=text]:hover, .testimonials .testimonials__input[type=text]:visited, .testimonials .testimonials__select:active, .testimonials .testimonials__select:focus, .testimonials .testimonials__select:hover, .testimonials .testimonials__select:visited, .testimonials .testimonials__textarea:active, .testimonials .testimonials__textarea:focus, .testimonials .testimonials__textarea:hover, .testimonials .testimonials__textarea:visited, .testimonials .wa-captcha-input:active, .testimonials .wa-captcha-input:focus, .testimonials .wa-captcha-input:hover, .testimonials .wa-captcha-input:visited {
    outline: none;
    border-color: var(--accent-color)
}

.testimonials .testimonials__input[type=email]::-webkit-input-placeholder, .testimonials .testimonials__input[type=file]::-webkit-input-placeholder, .testimonials .testimonials__input[type=phone]::-webkit-input-placeholder, .testimonials .testimonials__input[type=text]::-webkit-input-placeholder, .testimonials .testimonials__select::-webkit-input-placeholder, .testimonials .testimonials__textarea::-webkit-input-placeholder, .testimonials .wa-captcha-input::-webkit-input-placeholder {
    -webkit-transition: opacity .35s ease, -webkit-transform .35s ease;
    transition: opacity .35s ease, -webkit-transform .35s ease;
    transition: transform .35s ease, opacity .35s ease;
    transition: transform .35s ease, opacity .35s ease, -webkit-transform .35s ease
}

.testimonials .testimonials__input[type=email]::-webkit-input-placeholder::-webkit-input-placeholder, .testimonials .testimonials__input[type=file]::-webkit-input-placeholder::-webkit-input-placeholder, .testimonials .testimonials__input[type=phone]::-webkit-input-placeholder::-webkit-input-placeholder, .testimonials .testimonials__input[type=text]::-webkit-input-placeholder::-webkit-input-placeholder, .testimonials .testimonials__select::-webkit-input-placeholder::-webkit-input-placeholder, .testimonials .testimonials__textarea::-webkit-input-placeholder::-webkit-input-placeholder, .testimonials .wa-captcha-input::-webkit-input-placeholder::-webkit-input-placeholder {
    opacity: 0;
    -webkit-transform: translateX(10px);
    transform: translateX(10px)
}

.testimonials .testimonials__input[type=email]::-webkit-input-placeholder:-moz-placeholder, .testimonials .testimonials__input[type=email]::-webkit-input-placeholder::-moz-placeholder, .testimonials .testimonials__input[type=file]::-webkit-input-placeholder:-moz-placeholder, .testimonials .testimonials__input[type=file]::-webkit-input-placeholder::-moz-placeholder, .testimonials .testimonials__input[type=phone]::-webkit-input-placeholder:-moz-placeholder, .testimonials .testimonials__input[type=phone]::-webkit-input-placeholder::-moz-placeholder, .testimonials .testimonials__input[type=text]::-webkit-input-placeholder:-moz-placeholder, .testimonials .testimonials__input[type=text]::-webkit-input-placeholder::-moz-placeholder, .testimonials .testimonials__select::-webkit-input-placeholder:-moz-placeholder, .testimonials .testimonials__select::-webkit-input-placeholder::-moz-placeholder, .testimonials .testimonials__textarea::-webkit-input-placeholder:-moz-placeholder, .testimonials .testimonials__textarea::-webkit-input-placeholder::-moz-placeholder, .testimonials .wa-captcha-input::-webkit-input-placeholder:-moz-placeholder, .testimonials .wa-captcha-input::-webkit-input-placeholder::-moz-placeholder {
    opacity: 0;
    -webkit-transform: translateX(10px);
    transform: translateX(10px)
}

.testimonials .testimonials__input[type=email]::-webkit-input-placeholder:-ms-input-placeholder, .testimonials .testimonials__input[type=file]::-webkit-input-placeholder:-ms-input-placeholder, .testimonials .testimonials__input[type=phone]::-webkit-input-placeholder:-ms-input-placeholder, .testimonials .testimonials__input[type=text]::-webkit-input-placeholder:-ms-input-placeholder, .testimonials .testimonials__select::-webkit-input-placeholder:-ms-input-placeholder, .testimonials .testimonials__textarea::-webkit-input-placeholder:-ms-input-placeholder, .testimonials .wa-captcha-input::-webkit-input-placeholder:-ms-input-placeholder {
    opacity: 0;
    -webkit-transform: translateX(10px);
    transform: translateX(10px)
}

.testimonials .testimonials__input[type=email]:-moz-placeholder, .testimonials .testimonials__input[type=file]:-moz-placeholder, .testimonials .testimonials__input[type=phone]:-moz-placeholder, .testimonials .testimonials__input[type=text]:-moz-placeholder, .testimonials .testimonials__select:-moz-placeholder, .testimonials .testimonials__textarea:-moz-placeholder, .testimonials .wa-captcha-input:-moz-placeholder {
    -moz-transition: transform .35s ease, opacity .35s ease;
    transition: transform .35s ease, opacity .35s ease
}

.testimonials .testimonials__input[type=email]:-moz-placeholder::-webkit-input-placeholder, .testimonials .testimonials__input[type=file]:-moz-placeholder::-webkit-input-placeholder, .testimonials .testimonials__input[type=phone]:-moz-placeholder::-webkit-input-placeholder, .testimonials .testimonials__input[type=text]:-moz-placeholder::-webkit-input-placeholder, .testimonials .testimonials__select:-moz-placeholder::-webkit-input-placeholder, .testimonials .testimonials__textarea:-moz-placeholder::-webkit-input-placeholder, .testimonials .wa-captcha-input:-moz-placeholder::-webkit-input-placeholder {
    opacity: 0;
    transform: translateX(10px)
}

.testimonials .testimonials__input[type=email]:-moz-placeholder:-moz-placeholder, .testimonials .testimonials__input[type=email]:-moz-placeholder::-moz-placeholder, .testimonials .testimonials__input[type=file]:-moz-placeholder:-moz-placeholder, .testimonials .testimonials__input[type=file]:-moz-placeholder::-moz-placeholder, .testimonials .testimonials__input[type=phone]:-moz-placeholder:-moz-placeholder, .testimonials .testimonials__input[type=phone]:-moz-placeholder::-moz-placeholder, .testimonials .testimonials__input[type=text]:-moz-placeholder:-moz-placeholder, .testimonials .testimonials__input[type=text]:-moz-placeholder::-moz-placeholder, .testimonials .testimonials__select:-moz-placeholder:-moz-placeholder, .testimonials .testimonials__select:-moz-placeholder::-moz-placeholder, .testimonials .testimonials__textarea:-moz-placeholder:-moz-placeholder, .testimonials .testimonials__textarea:-moz-placeholder::-moz-placeholder, .testimonials .wa-captcha-input:-moz-placeholder:-moz-placeholder, .testimonials .wa-captcha-input:-moz-placeholder::-moz-placeholder {
    opacity: 0;
    transform: translateX(10px)
}

.testimonials .testimonials__input[type=email]:-moz-placeholder:-ms-input-placeholder, .testimonials .testimonials__input[type=file]:-moz-placeholder:-ms-input-placeholder, .testimonials .testimonials__input[type=phone]:-moz-placeholder:-ms-input-placeholder, .testimonials .testimonials__input[type=text]:-moz-placeholder:-ms-input-placeholder, .testimonials .testimonials__select:-moz-placeholder:-ms-input-placeholder, .testimonials .testimonials__textarea:-moz-placeholder:-ms-input-placeholder, .testimonials .wa-captcha-input:-moz-placeholder:-ms-input-placeholder {
    opacity: 0;
    transform: translateX(10px)
}

.testimonials .testimonials__input[type=email]::-moz-placeholder, .testimonials .testimonials__input[type=file]::-moz-placeholder, .testimonials .testimonials__input[type=phone]::-moz-placeholder, .testimonials .testimonials__input[type=text]::-moz-placeholder, .testimonials .testimonials__select::-moz-placeholder, .testimonials .testimonials__textarea::-moz-placeholder, .testimonials .wa-captcha-input::-moz-placeholder {
    -moz-transition: transform .35s ease, opacity .35s ease;
    transition: transform .35s ease, opacity .35s ease
}

.testimonials .testimonials__input[type=email]::-moz-placeholder::-webkit-input-placeholder, .testimonials .testimonials__input[type=file]::-moz-placeholder::-webkit-input-placeholder, .testimonials .testimonials__input[type=phone]::-moz-placeholder::-webkit-input-placeholder, .testimonials .testimonials__input[type=text]::-moz-placeholder::-webkit-input-placeholder, .testimonials .testimonials__select::-moz-placeholder::-webkit-input-placeholder, .testimonials .testimonials__textarea::-moz-placeholder::-webkit-input-placeholder, .testimonials .wa-captcha-input::-moz-placeholder::-webkit-input-placeholder {
    opacity: 0;
    transform: translateX(10px)
}

.testimonials .testimonials__input[type=email]::-moz-placeholder:-moz-placeholder, .testimonials .testimonials__input[type=email]::-moz-placeholder::-moz-placeholder, .testimonials .testimonials__input[type=file]::-moz-placeholder:-moz-placeholder, .testimonials .testimonials__input[type=file]::-moz-placeholder::-moz-placeholder, .testimonials .testimonials__input[type=phone]::-moz-placeholder:-moz-placeholder, .testimonials .testimonials__input[type=phone]::-moz-placeholder::-moz-placeholder, .testimonials .testimonials__input[type=text]::-moz-placeholder:-moz-placeholder, .testimonials .testimonials__input[type=text]::-moz-placeholder::-moz-placeholder, .testimonials .testimonials__select::-moz-placeholder:-moz-placeholder, .testimonials .testimonials__select::-moz-placeholder::-moz-placeholder, .testimonials .testimonials__textarea::-moz-placeholder:-moz-placeholder, .testimonials .testimonials__textarea::-moz-placeholder::-moz-placeholder, .testimonials .wa-captcha-input::-moz-placeholder:-moz-placeholder, .testimonials .wa-captcha-input::-moz-placeholder::-moz-placeholder {
    opacity: 0;
    transform: translateX(10px)
}

.testimonials .testimonials__input[type=email]::-moz-placeholder:-ms-input-placeholder, .testimonials .testimonials__input[type=file]::-moz-placeholder:-ms-input-placeholder, .testimonials .testimonials__input[type=phone]::-moz-placeholder:-ms-input-placeholder, .testimonials .testimonials__input[type=text]::-moz-placeholder:-ms-input-placeholder, .testimonials .testimonials__select::-moz-placeholder:-ms-input-placeholder, .testimonials .testimonials__textarea::-moz-placeholder:-ms-input-placeholder, .testimonials .wa-captcha-input::-moz-placeholder:-ms-input-placeholder {
    opacity: 0;
    transform: translateX(10px)
}

.testimonials .testimonials__input[type=email]:-ms-input-placeholder, .testimonials .testimonials__input[type=file]:-ms-input-placeholder, .testimonials .testimonials__input[type=phone]:-ms-input-placeholder, .testimonials .testimonials__input[type=text]:-ms-input-placeholder, .testimonials .testimonials__select:-ms-input-placeholder, .testimonials .testimonials__textarea:-ms-input-placeholder, .testimonials .wa-captcha-input:-ms-input-placeholder {
    -ms-transition: transform .35s ease, opacity .35s ease;
    transition: transform .35s ease, opacity .35s ease
}

.testimonials .testimonials__input[type=email]:-ms-input-placeholder::-webkit-input-placeholder, .testimonials .testimonials__input[type=file]:-ms-input-placeholder::-webkit-input-placeholder, .testimonials .testimonials__input[type=phone]:-ms-input-placeholder::-webkit-input-placeholder, .testimonials .testimonials__input[type=text]:-ms-input-placeholder::-webkit-input-placeholder, .testimonials .testimonials__select:-ms-input-placeholder::-webkit-input-placeholder, .testimonials .testimonials__textarea:-ms-input-placeholder::-webkit-input-placeholder, .testimonials .wa-captcha-input:-ms-input-placeholder::-webkit-input-placeholder {
    opacity: 0;
    transform: translateX(10px)
}

.testimonials .testimonials__input[type=email]:-ms-input-placeholder:-moz-placeholder, .testimonials .testimonials__input[type=file]:-ms-input-placeholder:-moz-placeholder, .testimonials .testimonials__input[type=phone]:-ms-input-placeholder:-moz-placeholder, .testimonials .testimonials__input[type=text]:-ms-input-placeholder:-moz-placeholder, .testimonials .testimonials__select:-ms-input-placeholder:-moz-placeholder, .testimonials .testimonials__textarea:-ms-input-placeholder:-moz-placeholder, .testimonials .wa-captcha-input:-ms-input-placeholder:-moz-placeholder {
    opacity: 0;
    transform: translateX(10px)
}

.testimonials .testimonials__input[type=email]:-ms-input-placeholder::-moz-placeholder, .testimonials .testimonials__input[type=file]:-ms-input-placeholder::-moz-placeholder, .testimonials .testimonials__input[type=phone]:-ms-input-placeholder::-moz-placeholder, .testimonials .testimonials__input[type=text]:-ms-input-placeholder::-moz-placeholder, .testimonials .testimonials__select:-ms-input-placeholder::-moz-placeholder, .testimonials .testimonials__textarea:-ms-input-placeholder::-moz-placeholder, .testimonials .wa-captcha-input:-ms-input-placeholder::-moz-placeholder {
    opacity: 0;
    transform: translateX(10px)
}

.testimonials .testimonials__input[type=email]:-ms-input-placeholder:-ms-input-placeholder, .testimonials .testimonials__input[type=file]:-ms-input-placeholder:-ms-input-placeholder, .testimonials .testimonials__input[type=phone]:-ms-input-placeholder:-ms-input-placeholder, .testimonials .testimonials__input[type=text]:-ms-input-placeholder:-ms-input-placeholder, .testimonials .testimonials__select:-ms-input-placeholder:-ms-input-placeholder, .testimonials .testimonials__textarea:-ms-input-placeholder:-ms-input-placeholder, .testimonials .wa-captcha-input:-ms-input-placeholder:-ms-input-placeholder {
    opacity: 0;
    transform: translateX(10px)
}

.testimonials .js-testimonials__field-error {
    position: absolute;
    right: 0;
    bottom: -20px;
    color: red;
    font-size: 13px
}

.testimonials .is-error .testimonials__input[type=email], .testimonials .is-error .testimonials__input[type=phone], .testimonials .is-error .testimonials__input[type=text], .testimonials .is-error .testimonials__textarea {
    border-color: red
}

.testimonials__field--rate .js-testimonials__field-error, .testimonials__field--rating .js-testimonials__field-error {
    position: relative;
    right: auto;
    left: 0;
    bottom: 0
}

.testimonials-files .testimonials__input {
    width: .1px;
    height: .1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1
}

.testimonials-files .testimonials__input-label {
    cursor: pointer
}

.testimonials__switch {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    height: 20px;
    padding-right: 8px;
    font-size: 14px;
    line-height: 20px;
    vertical-align: middle
}

.testimonials__switch .testimonials__input {
    opacity: 0;
    width: 0;
    height: 0
}

.testimonials__switch .testimonials__switch-slider {
    margin: 0;
    display: inline-block;
    position: relative;
    width: 40px;
    height: 20px;
    border: 1px solid #dcdfe6;
    outline: none;
    border-radius: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: #dcdfe6;
    cursor: pointer;
    -webkit-transition: border-color .3s, background-color .3s, -webkit-transform .3s;
    transition: border-color .3s, background-color .3s, -webkit-transform .3s;
    transition: transform .3s, border-color .3s, background-color .3s;
    transition: transform .3s, border-color .3s, background-color .3s, -webkit-transform .3s;
    vertical-align: middle
}

.testimonials__switch .testimonials__switch-slider:after {
    content: "";
    position: absolute;
    top: 1px;
    left: 1px;
    border-radius: 100%;
    -webkit-transition: all .3s;
    transition: all .3s;
    width: 16px;
    height: 16px;
    background-color: #fff
}

.testimonials__switch .testimonials__input:checked + .testimonials__switch-slider {
    border-color: var(--accent-color);
    background-color: var(--accent-color)
}

.testimonials__switch .testimonials__input:checked + .testimonials__switch-slider:after {
    -webkit-transform: translateX(20px);
    transform: translateX(20px)
}

.testimonials-wrapper {
    background-color: rgba(40, 47, 55, .04);
    padding: 16px 24px;
    border-radius: 3px
}

.testimonials-header {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(40, 47, 55, .15)
}

.testimonials-header, .testimonials-header .testimonials-header__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}
.testimonials-header__left {
    display: grid;
    grid-auto-flow: row;
    gap: 8px;
}
.testimonials-header .testimonials-header__title {
    font-size: 24px
}

.testimonials-header .testimonials-header__title-count {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: 12px;
    width: 22px;
    height: 22px;
    font-size: 15px;
    color: #fff;
    background-color: var(--accent-color);
    border-radius: 50%
}

.testimonials-header .testimonials-header__rate-summary, .testimonials-header .testimonials-header__title-count {
    display: grid;
    grid-auto-flow: column;
    align-items: center
}

.testimonials-header .testimonials-header__rate-summary-count, .testimonials-header .testimonials-header__rate-summary-stars {
    color: rgba(40, 47, 55, .75)
}

.testimonials-header .testimonials-header__rate-summary-stars {
    margin-left: 12px
}

.testimonials-header .testimonials-header__description {
    margin-top: 4px;
    font-size: 15px;
    color: rgba(40, 47, 55, .75)
}

.testimonials-header .testimonials-header__rate-summary-count-sep {
    padding-left: 12px;
    padding-right: 12px
}

@media (max-width: 767px) {
    .testimonials-header, .testimonials-header .testimonials-header__rate-summary {
        flex-direction: column;
        align-items: start
    }

    .testimonials-records .testimonials-records__header {
        display: grid;
        grid-template: auto/ auto auto;
        gap: 10px;
        align-items: center;
    }

    .testimonials-header .testimonials-header__rate-summary-count {
        margin-left: 0
    }

    .testimonials-header .testimonials-header__right {
        margin-top: 20px;
        width: 100%
    }

    .testimonials-header .testimonials-header__rate-summary-count-sep {
        display: none
    }

    .testimonials-header .testimonials-button {
        display: block;
        width: 100%;
        font-size: 15px
    }

    .testimonials-records__content {
        grid-template: auto/1fr !important;
        gap: 10px !important;
    }
    .testimonials-records__city {
        margin-top: 10px !important;
    }
    .testimonials-photoswipe {
        display: grid !important;
        grid-template: auto/repeat(3, 1fr);
        gap: 10px;
    }
    .testimonials-photoswipe .testimonials-photoswipe__item {
        margin: 0 !important;
        width: 100% !important;
    }
}

.testimonials-photoswipe {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 4px
}

.testimonials-photoswipe .testimonials-photoswipe__item {
    margin-right: 16px
}

.testimonials-photoswipe .testimonials-photoswipe__image {
    border-radius: 3px
}

.pswp_testimonials .pswp__img {
    max-width: none;
    -o-object-fit: contain;
    object-fit: contain
}

.testimonials-empty {
    font-size: 24px;
    color: rgba(40, 47, 55, .75)
}

.testimonials-button {
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    line-height: 18px;
    color: #fff;
    background-color: var(--accent-color);
    border: 2px solid var(--accent-color);
    border-radius: 2px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer
}

.testimonials-button--gray {
    color: rgba(40, 47, 55, .75);
    border-color: transparent;
    background-color: rgba(40, 47, 55, .06)
}

.testimonials-button-big {
    padding: 16px 62px;
    font-size: 18px
}

.wa-field.form__field.form-field {
    display: none;
}
.wa-captcha-img, .testimonials-photoswipe__image {
    max-width: 100% !important;
}.testimonials-header__rate-summary {
     display: flex;
     align-items: center;
     gap: 8px;
     flex-wrap: wrap;
 }

.testimonials-header__rate-summary-icons {
    display: inline-flex;
    align-items: center;
    gap: 4px;

    width: max-content;
    min-width: max-content;
    max-width: none;

    white-space: nowrap;
    overflow: visible;
    line-height: 1;
}

.testimonials-header__rate-summary-icons svg,
.testimonials-header__rate-summary-icons img {
    display: block;
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
}