/* latin-ext */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v18/UcCo3FwrK3iLTcvsYwYL8g.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v18/UcCo3FwrK3iLTcviYwY.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    line-height: 1.5;
    color: #000000;
    background: #F6F8FA;
}

body,
html {
    width: 100%;
    height: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

a,
button {
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.container {
    width: 100%;
    max-width: 1220px;
    padding: 0 25px;
    margin: 0 auto;
    overflow-x: clip;
}

.container__flex {
    display: flex;
}

.fixed {
    position: fixed;
    width: 282px;
}

/* icons */
.icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: no-repeat center / cover;
}

.icon__star,
.icon__nstar {
    width: 20px;
    height: 20px;
}

.icon__star {
    background-image: url("img/icon-star.svg");
}

.icon__nstar {
    background-image: url("img/icon-nstar.svg");
}

.icon__calendar {
    background-image: url("img/icon-calendar.svg");
}

.icon__user {
    background-image: url("img/icon-user.svg");
}

.icon__clock {
    background-image: url("img/icon-clock.svg");
}

.icon__eye {
    background-image: url("img/icon-eye.svg");
}

.icon__comment {
    background-image: url("img/icon-commnet.svg");
}

.icon__quote {
    width: 26px;
    height: 19px;
    background-image: url("img/icon-quote.svg");
}

.icon__check {
    width: 16px;
    height: 16px;
    background-image: url("img/icon-verified.svg");
}


/* header */
.header {
    width: 100%;
    padding: 20px 0;
    margin: 0 0 32px;
    background: #252C40;
}

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

.nav {
    display: flex;
}

.nav a {
    color: #fff;
    font-size: 16px;
    margin-left: 32px;
}

.nav a:first-child {
    margin-left: 0;
}

.nav a:hover {
    opacity: 0.8;
}

/* main */
.main {
    flex: 1;
    min-width: 0;
}

.aside {
    position: relative;
    flex: 0 0 282px;
    margin-left: 32px;
}

.breadcrumbs {
    margin-bottom: 12px;
}

.breadcrumbs li {
    display: inline;
    list-style: none;
    font-weight: 600;
    font-size: 14px;
    color: #777;
    text-transform: uppercase;
}

.breadcrumbs li:not(:last-child):after {
    content: '›';
    margin: 0 0 0 5px;
}

.wrapper {
    background: #fff;
    border: 1px solid #EFF1F2;
    border-radius: 24px;
}

.main__image {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 24px 24px 0 0;
}


/* content */
.content {
    padding: 0 52px 52px 52px;
}

.meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-bottom: 1px solid #EFF1F2;
    padding: 32px 0;
    margin-bottom: 24px;
    color: #777;
    font-size: 14px;
    font-weight: 600;
}

.meta span {
    display: flex;
    align-items: center;
}

.meta span i {
    margin-right: 8px;
}

.meta__author {
    display: none;
}

.content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.content a {
    color: #0258F8;
    text-decoration: underline;
}

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

h1,
h2,
h3,
.h1,
.h2,
.h3 {
    color: #252C40;
    font-weight: 700;
    line-height: 1.3;
}

.h1,
.content p.h1 {
    font-size: 38px;
    margin-bottom: 32px;
}

.h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.content .image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 24px;
    margin-bottom: 20px;
}

.content .image-400 {
    max-width: 400px;
    margin: 0 auto 20px auto;
}

.content .video {
    display: block;
    width: 100%;
    max-width: 400px;
    height: auto;
    max-height: 400px;
    border-radius: 24px;
    margin: 0 auto 20px auto;
}

.content *:last-of-type:not(+ *) {
    margin-bottom: 0;
}

.content ul {
    list-style: none;
    padding: 0 0 0 30px;
    margin: 0 0 20px 0;
}

.content ul li {
    font-size: 18px;
    padding-left: 39px;
    position: relative;
}

.content ul li::before {
    content: '';
    width: 24px;
    height: 24px;
    position: absolute;
    left: 0;
    top: 2px;
    background: url("img/icon-check.svg") 50% no-repeat;
    background-size: 100%;
}

.content ul li:not(:last-child) {
    margin-bottom: 10px;
}

.offer {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 0 20px;
    justify-content: space-between;
    align-items: center;
    background: #97BC62;
    border-radius: 24px;
    padding: 42px;
    margin-bottom: 50px;
}

.offer__img img {
    max-width: 100%;
    height: auto;
}

.offer__info {
    color: #fff;
}

.offer__info span {
    display: block;
}

.offer__title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.timer {
    display: flex;
    justify-content: space-between;
    width: 240px;
    margin-bottom: 12px;
}

.timer__box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #F9F9F9;
}

.timer__num {
    font-size: 12px;
    font-weight: 700;
    color: #000;
}

.timer__txt {
    font-size: 9px;
    font-weight: 600;
    color: #828282;
    margin-top: -2px;
}

.timer__box:nth-last-child(-n + 2) .timer__num {
    color: red;
}

.offer__text {
    margin-bottom: 24px;
    font-size: 18px;
    font-weight: 600;
}

.offer__btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 12px;
    background: #fff;
    border-bottom: 3px solid #C6C6C6;
    color: #000 !important;
    text-decoration: none !important;
    font-size: 18px;
    font-weight: 600;
}

.offer__btn:hover {
    background: #C6C6C6;
}

.testimonials {
    background: #FCFFF7;
    margin: 50px -52px;
    max-width: 904px;
}

.testimonials__inner {
    padding: 52px;
}

.testimonial__icon {
    width: 52px;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 24px auto;
    border-radius: 52px;
    background: #97BC62;
}

.testimonial {
    text-align: center;
}

.testimonial__text {
    display: block;
    font-size: 18px;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial__author {
    display: block;
    font-size: 20px;
    font-weight: 600;
}

.testimonial__city {
    color: #777;
    font-size: 16px;
    font-weight: 600;
}

.slider-main {
    margin-bottom: 24px;
}

.slider-thumb {
    max-width: 500px;
    margin: 0 auto;
}

.thumb__img {
    display: block;
    width: 64px;
    height: 64px;
    margin: 4px auto;
    border-radius: 72px;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    cursor: pointer;
}

.slick-current .thumb__img {
    width: 72px;
    height: 72px;
    margin: 0 auto;
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

.slider-arrows {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 24px auto;
}

.slider__btn {
    width: 32px;
    height: 32px;
    border: 0;
}

.slider__btn:hover {
    opacity: 0.9;
}

.prev {
    background: url("img/icon-prev.svg") 100% 50% no-repeat;
}

.next {
    margin-left: 24px;
    background: url("img/icon-next.svg") 100% 50% no-repeat;
}

.faq {
    margin-bottom: 30px;
}

.faq__item {
    border-top: 1px solid #EFF1F2;
}

.faq__item:last-child {
    border-bottom: 1px solid #EFF1F2;
}

.question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 20px;
    font-weight: 700;
    color: #252C40;
    cursor: pointer;
}

.question .icon {
    width: 40px;
    height: 40px;
    margin-left: 12px;
    border-radius: 40px;
    background: #F5F5F5 url("img/icon-plus.svg") 50% no-repeat;
}

.question.active .icon {
    background-image: url("img/icon-minus.svg");
}

.answer {
    display: none;
}

.answer.active {
    display: block;
}

.review {
    padding: 24px;
    margin-top: 12px;
    border-radius: 12px;
    border: 1px solid #EFF1F2;
}

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

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

.review__ava {
    display: flex;
    width: 64px;
    height: 64px;
    align-items: center;
    justify-content: center;
    background: #F4EAFC;
    border-radius: 64px;
    margin-right: 20px;
}

.review__ava.bg-1 {
    background: #F4EAFC;
}

.review__ava.bg-2 {
    background: #FCEAEA;
}

.review__ava.bg-3 {
    background: #EAF4FC;
}

.review__name {
    display: block;
    color: #000;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 2px;
}

.review__date {
    display: block;
    font-weight: 600;
    font-size: 12px;
    color: #777;
}

.review__stars {
    display: flex;
}

.review__text {
    font-size: 16px;
}

.review__imgs {
    display: flex;
    margin-top: 12px;
}

.review__imgs img {
    height: 95px;
    border-radius: 12px;
    margin-right: 10px;
}

.reviews+h3 {
    margin-top: 50px;
}

.form {
    padding: 24px;
    margin-top: 12px;
    border-radius: 12px;
    border: 1px solid #EFF1F2;
}

.form__fields {
    display: flex;
    flex-wrap: wrap;
    justify-items: center;
}

.form__fields * {
    flex: 1;
}

.form__input {
    height: 42px;
    margin-right: 12px;
    border: 1px solid #EDEDED;
    border-radius: 8px;
    padding: 0 20px;
    color: #777;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.form__stars {
    display: flex;
    min-width: 165px;
    align-items: center;
    height: 42px;
    color: #777;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.form__stars span {
    flex: 0;
    margin-right: 10px;
}

.form__stars div {
    margin-top: 3px;
}

.form__stars div i {
    cursor: pointer;
}

.form__field {
    position: relative;
    width: 100%;
    height: 72px;
    margin: 0 12px 12px 0;
    border: 1px solid #EDEDED;
    border-radius: 8px;
    padding: 0 20px;
}

.form__textarea {
    width: 95%;
    height: 100%;
    color: #777;
    font-size: 12px;
    font-weight: 600;
    padding: 12px 80px 5px 0;
    border: 0;
    resize: none;
}

.form__upload {
    position: absolute;
    top: 50%;
    right: 20px;
    margin-top: -10px;
}

.form__upload-btn {
    display: block;
    width: 24px;
    height: 19px;
    background: url("img/icon-upload.svg") no-repeat center;
    position: relative;
    cursor: pointer;
}

.form__upload-btn input {
    opacity: 0;
    position: absolute;
    inset: 0;
}

.form__btn {
    padding: 17px 32px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    background: #97BC62;
    border: 0;
    border-radius: 8px;
}

.form__btn:hover {
    background: #658E2A;
}

input:focus,
textarea:focus {
    outline: none;
}

.form__btn:disabled,
.form__btn[disabled] {
    cursor: not-allowed;
    background: #777;
}

/* sidebar */
.widget__title {
    color: #252C40;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.widget {
    padding: 24px;
    background: #fff;
    border: 1px solid #EFF1F2;
    border-radius: 24px;
    margin-bottom: 32px;
}

.widget:last-child {
    margin-bottom: 0;
}


/* author side */
.author__photo {
    position: relative;
    width: 64px;
    height: 64px;
    margin: 0 auto;
    border-radius: 64px;
    margin-bottom: 12px;
}

.author__img {
    display: block;
    border-radius: 100%;
}

.author__verified::before {
    content: '';
    position: absolute;
    right: -5px;
    width: 24px;
    height: 24px;
    background: url('img/icon-verified.svg') 50% no-repeat;
    background-size: 100%;
}

.author__name,
.author__spec {
    text-align: center;
}

.author__name {
    color: #252C40;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.author__spec {
    font-size: 12px;
    color: #777;
    font-weight: 600;
}

.author__desc {
    margin-top: 12px;
    font-size: 12px;
}


/* average rating */
.average__rate {
    display: flex;
    align-items: center;
}

.average__num {
    font-weight: 700;
    font-size: 28px;
    color: #252C40;
    margin-right: 8px;
}

.average__stars {
    display: flex;
}

.average__cl {
    font-weight: 600;
    font-size: 12px;
    color: #777;
    padding-left: 3px;
}

.bars {
    margin: 16px 0;
}

.bar__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #252C40;
    font-size: 12px;
}

.bar__row>strong {
    font-weight: 700;
    min-width: 9px;
    text-align: center;
}

.bar__row>span {
    min-width: 30px;
    text-align: right;
}

.bar {
    background: #F6F8FA;
    border-radius: 6px;
    width: 100%;
    padding: 1px;
    margin: 8px 12px;
}

.bar__line {
    display: block;
    height: 8px;
    background: #97BC62;
    border-radius: 6px;
}

.average__title {
    color: #252C40;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.average__text {
    color: #777;
    font-size: 12px;
    margin-bottom: 12px;
}

.average__btn {
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    padding: 9px 16px;
    background: #97BC62;
    border: 0;
    border-radius: 8px;
}

.average__btn:hover {
    background: #658E2A;
}


/* PS */
.ps {
    margin: 50px 0;
}

.ps__wrap {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.ps__txt {
    flex: 1;
    padding: 0 85px 0 0;
}

.ps__img {
    flex: 1;
}

.ps__title {
    color: #252C40;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.ps__text {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
}

.ps__btn {
    display: block;
    color: #fff;
    border: none;
    margin-top: 50px;
    font-size: 24px;
    font-weight: 700;
    padding: 20px;
    background: #97BC62;
    border-radius: 24px;
    text-align: center;
    border-bottom: 3px solid #658E2A;
}

.ps__btn:hover {
    background: #658E2A;
}

.ps__img img {
    display: block;
    width: 100%;
    max-width: 420px;
    height: auto;
}


/* footer */
.footer {
    width: 100%;
    padding: 32px 0;
    background: #252C40;
}

.footer__logo {
    margin-bottom: 30px;
    display: block;
}

.footer__info {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__text {
    font-size: 12px;
    color: #AFAFAF;
    margin: 0 auto 20px;
    text-align: center;
    max-width: 960px;
}

.footer__text:last-child {
    margin-bottom: 0;
}

.footer__copy {
    color: #fff;
}

.references {
    font-size: 10px;
    color: #B6B6B6;
    margin-top: 32px;
}

.references__list {
    padding: 5px 0 0;
    margin: 0;
    font-size: 10px;
}

.references__list li {
    display: inline-block;
    margin-right: 10px;
}

.cta__holder {
    margin-top: 50px;
    min-height: 64px;
}

.cta {
    position: fixed;
    z-index: 9;
    bottom: -150px;
    width: 100%;
    transition: all 1s ease-in-out;
}

.cta.active {
    bottom: 20px;
}

.cta .container__flex {
    justify-content: center;
}

.cta__offer {
    display: flex;
    flex: 0 0 282px;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 24px;
    padding: 14px 32px;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.2);
}

.cta__offer-off {
    text-wrap: nowrap;
    color: #97BC62;
    font-weight: 600;
    font-size: 24px;
}

.cta__offer-till {
    color: #777;
    margin-left: 12px;
    font-weight: 600;
    font-size: 12px;
}

.cta__btn {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 520px;
    border-radius: 24px;
    padding: 14px 32px;
    color: #fff;
    font-weight: 600;
    font-size: 24px;
    text-align: center;
    background: #252C40 url("img/cta.jpg") 50% 50% no-repeat;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.2);
}

.cta__btn:hover {
    background-position: 50% 55%;
}

.cta__btn::after {
    content: '';
    position: relative;
    width: 28px;
    height: 28px;
    background: url("img/btn-arrow.svg") 50% no-repeat;
    background-size: 100%;
    margin-left: 12px;
}

@media screen and (max-width: 1200px) {
    .meta {
        justify-content: inherit;
        padding: 24px 0;
    }

    .meta>span {
        margin: 4px 10px 4px 0;
    }

    .offer {
        padding: 20px;
    }

}

@media screen and (max-width: 960px) {

    .h1,
    .content p.h1 {
        font-size: 32px;
    }

    .aside {
        display: none;
    }

    .ps {
        margin: 50px 0;
    }

    .ps__title {
        font-size: 24px;
    }

    .ps__text {
        font-size: 16px;
    }

    .ps__btn {
        font-size: 18px;
        padding: 20px 16px;
    }
}


@media screen and (max-width: 768px) {
    .ps__wrap {
        flex-direction: column;
    }

    .ps__txt {
        padding: 0;
    }

    .ps__img {
        width: 100%;
        margin-top: 50px;
    }

    .ps__img img {
        margin: 0 auto;
        position: relative;
    }

    .h1,
    .content p.h1 {
        font-size: 24px;
    }

    .h2 {
        font-size: 21px;
    }

    .h3 {
        font-size: 18px;
    }

    .content ul {
        padding: 0;
    }

    .content ul li,
    .content p,
    .testimonial__text {
        font-size: 16px;
    }

    .testimonial__author {
        font-size: 18px;
    }

    .testimonial__city {
        font-size: 14px;
    }

    .content ul li {
        padding-left: 35px;
    }

    .references__list li {
        display: block;
        margin: 0;
        ;
    }

    .cta__offer {
        flex: 1;
    }

    .cta__offer-off {
        font-size: 24px;
    }

    .cta__btn {
        flex: 0 0 60%;
        font-size: 18px;
    }

    .cta__btn::after {
        width: 24px;
        height: 24px;
    }

    .cta__offer,
    .cta__btn {
        justify-content: center;
    }

    .offer {
        grid-template-columns: 100%;
        padding: 40px 30px;
        margin-bottom: 30px;
        text-align: center;
    }

    .timer {
        margin: 12px auto;
    }
}

@media screen and (max-width: 680px) {


    .cta__btn {
        flex: 1;
    }

    .cta__offer {
        flex-direction: column;
        flex: 130px 0 0;
        padding: 10px 20px;
    }

    .cta__offer-till {
        margin: -4px 0 0 0;
    }

    .cta__offer-off {
        font-size: 22px;
        font-weight: 700;
    }
}

@media screen and (max-width: 560px) {
    .header__inner {
        justify-content: center;
    }

    .footer__logo {
        text-align: center;
    }

    .header__menu {
        display: none;
    }

    .wrapper {
        margin: 0 -25px;
    }

    .content {
        padding: 0 20px 20px 20px;
    }

    .meta__author {
        order: 1;
        display: flex;
        flex: 1 1 100%;
        align-items: center;
        margin-bottom: 12px;
    }

    .meta__author-img {
        width: 48px;
        height: 48px;
        margin-right: 12px;
        border-radius: 42px;
    }

    .meta__author-name {
        font-size: 16px;
        color: #000 !important;
    }

    .meta__author-name i {
        margin-left: 4px;
    }

    .meta__author-desc {
        font-size: 12px;
    }

    .meta span.meta__name {
        display: none;
    }

    .meta__date {
        order: 2
    }

    .meta__comms {
        order: 3
    }

    .meta__time {
        order: 4
    }

    .meta__views {
        order: 5
    }

    .testimonials {
        margin: 30px -20px;
    }

    .testimonials__inner {
        padding: 32px;
    }

    .next {
        margin-left: 12px;
    }

    .question {
        font-size: 18px;
        padding: 12px 0;
    }

    .question .icon {
        width: 32px;
        height: 32px;
        flex: 0 0 32px;
    }

    .form {
        border: 0;
        padding: 0;
    }

    .form__fields {
        flex-direction: column;
    }

    .form__fields * {
        flex: none;
    }

    .reviews+h3 {
        margin-top: 30px;
    }
}

@media screen and (max-width: 500px) {

    .cta__btn,
    .cta__offer {
        padding: 10px 5px;
        font-size: 16px;
    }

    .cta__btn::after {
        display: none;
    }

    .cta__offer-off {
        font-size: 14px;
    }

    .cta__offer>span {
        display: block;
        width: 100%;
        text-align: center;
    }
}

@media screen and (max-width: 420px) {
    .cta__btn {
        font-size: 16px;
        line-height: 1.2;
    }

    .review__info {
        flex-direction: column;
        align-items: start;
    }

    .review__stars {
        margin-top: 24px;
    }

    .references__list li {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}