/* #region hero */
.hero {}

.hero__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.hero__content-wrapper {
    background: url(../img/hero_back.png) no-repeat right 48px bottom 0 #fff;
    padding: 44px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero__title {
    color: var(--text_001);
    font-weight: 500;
    /* font-size: 94px; */
    font-size: clamp(72px, 5vw, 94px);
    line-height: 98%;
    margin-bottom: 24px;
}

.hero__subtitle {
    color: var(--text_002);
    font-weight: 500;
    font-size: 36px;
    line-height: 128%;
    margin-bottom: 32px;
}

.hero__btn-tg {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: var(--text_001);
    color: #fff;
    border: 1px solid var(--text_001);
    height: 88px;
    max-width: 310px;
    font-weight: 500;
    font-size: 26px;
    line-height: 140%;
    padding: 0 40px;
    border-radius: 500px;
}

.hero__photo-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.hero__photo {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__photo-title-wrapper {
    position: absolute;
    top: 44px;
    left: 44px;
}

.hero__photo-title {
    color: #fff;
    font-weight: 500;
    font-size: 36px;
    line-height: 128%;
    margin-bottom: 4px;
}

.hero__photo-subtitle {
    color: #fff;
    font-weight: 400;
    font-size: 26px;
    line-height: 140%;
}

.hero__photo-btn {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    bottom: 44px;
    left: 44px;
    color: #fff;
    height: 56px;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 40px;
    font-weight: 500;
    font-size: 19px;
    line-height: 140%;
    padding: 0 30px;
    transition: all .3s;
}


.hero__photo-btn:hover {
    background-color: #fff;
    color: #555555;
}


.hero__photo-btn:hover path {
    fill: #555555;
    stroke: #555555;
}






@media (max-width: 1440px) {
    .hero__content-wrapper {
        background: url(../img/hero_back_tablet.png) no-repeat right 37px bottom 0 #fff;
        padding: 28px;
    }

    .hero__title {
        font-size: 72px;
        font-size: clamp(40px, 5vw, 72px);
    }

    .hero__subtitle {
        font-size: 28px;
    }

    .hero__btn-tg {
        font-size: 20px;
        height: 72px;
    }

    .hero__photo-title-wrapper {
        top: 28px;
        left: 28px;
    }

    .hero__photo-title {
        font-size: 28px;
    }

    .hero__photo-subtitle {
        font-size: 20px;
    }

    .hero__photo-btn {
        bottom: 28px;
        left: 28px;
        font-size: 16px;
        height: 44px;
    }
}


@media (max-width: 1200px) {

    .hero__title {
        font-size: 40px;
    }

    .hero__subtitle {
        font-size: 25px;
    }

}


@media (max-width: 900px) {

    .hero__title {
        font-size: 30px;
    }

    .hero__subtitle {
        font-size: 18px;
    }
}



@media (max-width: 768px) {
    .hero__wrapper {
        grid-template-columns: 1fr;
    }

    .hero__content-wrapper {
        background: url(../img/hero_back_mob.png) no-repeat right 28px bottom 0 #fff;
        padding: 16px;
    }

    .hero__title {
        font-size: 40px;
    }

    .hero__subtitle {
        font-size: 20px;
    }

    .hero__btn-tg {
        font-size: 16px;
        height: 56px;
    }

    .hero__photo {
        position: static;
    }

    .hero__photo-title-wrapper {
        top: 16px;
        left: 16px;
    }

    .hero__photo-title {
        font-size: 20px;
    }

    .hero__photo-subtitle {
        font-size: 16px;
    }

    .hero__photo-btn {
        bottom: 16px;
        left: 16px;
        font-size: 14px;
        height: 36px;
    }
}

/* #endregion hero */

/* #region inside */
.inside {}

.inside-slider {
    padding-bottom: 88px;
}

.inside-card {
    background-color: #fff;
    border-radius: 24px;
    height: 338px;
    padding: 44px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.inside-card_off {
    opacity: .5;
}

.inside-card__wrapper {
    display: flex;
    flex-wrap: nowrap;
    gap: 40px;
}

.inside-card__title {
    color: var(--text_001);
    font-weight: 500;
    font-size: 36px;
    line-height: 128%;
    margin-bottom: 10px;
}

.inside-card__label {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--text_001);
    border-radius: 60px;
    height: 28px;
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    padding: 0 20px;
}

.inside-card__icon {
    flex-shrink: 0;
}

.inside-card__text {
    font-weight: 400;
    font-size: 19px;
    line-height: 140%;
}




@media (max-width: 1440px) {
    .inside-slider {
        padding-bottom: 56px;
    }

    .inside-card {
        height: 260px;
        padding: 28px;
    }

    .inside-card__title {
        font-size: 28px;
    }

    .inside-card__text {
        font-size: 16px;
    }
}

@media (max-width: 1200px) {

    .inside-card__title {
        font-size: 30px;
    }

    .inside-card {
        padding: 30px;
    }
}


@media (max-width: 768px) {
    .inside-slider {
        padding-bottom: 32px;
    }

    .inside-card {
        height: 220px;
        padding: 16px;
    }

    .inside-card__title {
        font-size: 20px;
    }

    .inside-card__text {
        font-size: 14px;
    }
}

/* #endregion inside */

/* #region directions */
.directions {}

.directions__wrapper {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 40px;
    border-top: 2px solid var(--text_001);
    padding: 28px 0 88px 0;
}

.directions__content {}

.directions__title {
    color: var(--text_001);
    font-weight: 400;
    font-size: 26px;
    line-height: 140%;
    margin-bottom: 24px;
}

.directions__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.directions__item {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--text_001);
    border-radius: 40px;
    color: var(--text_001);
    height: 72px;
    font-weight: 500;
    font-size: 26px;
    line-height: 140%;
    padding: 0 40px;
    text-decoration: none;
}

@media (max-width: 1440px) {
    .directions {}

    .directions__wrapper {
        padding: 56px 0 56px 0;
    }

    .directions__content {}

    .directions__title {
        font-size: 20px;
    }

    .directions__item {
        height: 56px;
        font-size: 20px;
    }
}

@media (max-width: 900px) {
    .directions__wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .directions .section__header {
        padding-bottom: 0px;
    }
}

@media (max-width: 768px) {
    .directions {}

    .directions__wrapper {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 16px 0 48px 0;
    }

    .directions__wrapper .section__header {
        padding-bottom: 0;
    }

    .directions__content {}

    .directions__title {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .directions__item {
        height: 44px;
        font-size: 16px;
        padding: 0 16px;
    }
}

/* #endregion directions */

/* #region start */
.start {}

.start__wrapper {
    display: grid;
    grid-template-columns: 4fr 8fr;
    gap: 40px;
}

.start__content {}

.start__list {
    display: flex;
    flex-direction: column;
}

.start-item {
    display: flex;
    gap: 60px;
}

.start-item:first-child .start-item__timeline {
    margin-top: 20px;
}

.start-item:first-child .start-item__timeline:after {
    top: 0;
}

.start-item:last-child .start-item__timeline {
    height: 80px;
}

.start-item__timeline {
    position: relative;
    border-left: 2px solid #000;
}

.start-item__timeline:after {
    position: absolute;
    top: 20px;
    left: -31px;
    content: "";
    display: flex;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: url('data:image/svg+xml,<svg width="12" height="13" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="6" cy="6.88135" r="6" fill="black"/></svg>') no-repeat center center #FBE645;
}

.start-item__content {
    position: relative;
    background-color: #fff;
    padding: 44px;
    border-radius: 24px;
    margin-bottom: 8px;
    width: 100%;
}

.start-item__label {
    position: absolute;
    right: 28px;
    top: -20px;
    display: flex;
    align-items: center;
    height: 40px;
    background-color: var(--main);
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    padding: 0 20px;
    border-radius: 60px;
}

.start-item__title {
    font-weight: 500;
    font-size: 28px;
    line-height: 128%;
    margin-bottom: 8px;
}

.start-item__text {
    background: url('data:image/svg+xml,<svg width="26" height="26" viewBox="0 0 26 26" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="1" y="0.881348" width="24" height="24" rx="12" fill="white"/><rect x="1" y="0.881348" width="24" height="24" rx="12" stroke="black" stroke-width="1.5"/><path d="M12.3255 19.8813C12.3882 18.2573 13.411 14.8734 17 14.084L17 11.6787C13.411 10.8893 12.3882 7.50543 12.3255 5.88135L9 6.43641C9.60877 10.6583 11.6751 11.6139 15.1394 12.8813C11.6751 14.1487 9.60877 15.1044 9 19.3263L12.3255 19.8813Z" fill="black"/></svg>') no-repeat left top 5px;
    padding-left: 36px;
    font-weight: 400;
    font-size: 26px;
    line-height: 140%;
    margin-bottom: 32px;
}

.start-item__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--text_001);
    border-radius: 40px;
    color: var(--text_001);
    font-weight: 500;
    font-size: 19px;
    line-height: 140%;
    padding: 8px 30px;
    text-decoration: none;
}


.start-item__link_label {
    position: absolute;
    display: flex;
    align-items: center;
    top: -12px;
    right: -10px;
    height: 28px;
    padding: 0 16px;
    border-radius: 60px;
    background-color: #fff;
    color: var(--text_001);
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
}

@media (max-width: 1440px) {
    .start__content {}

    .start-item__link_label {
        top: -12px;
        right: -10px;
        height: 22px;
        padding: 0 8px;
        font-size: 12px;
    }


    .start-item__label {
        right: 28px;
        top: -16px;
        height: 32px;
        font-size: 12px;
        padding: 0 16px;
    }

    .start-item {}

    .start-item__content {
        padding: 28px;
    }

    .start-item__label {
        position: absolute;
        right: 28px;
        top: -20px;
        display: flex;
        align-items: center;
        height: 40px;
        background-color: var(--main);
        font-weight: 500;
        font-size: 14px;
        line-height: 140%;
        padding: 0 20px;
        border-radius: 60px;
    }

    .start-item__title {
        font-size: 28px;
    }

    .start-item__text {
        background: url('data:image/svg+xml,<svg width="26" height="26" viewBox="0 0 26 26" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="1" y="0.881348" width="24" height="24" rx="12" fill="white"/><rect x="1" y="0.881348" width="24" height="24" rx="12" stroke="black" stroke-width="1.5"/><path d="M12.3255 19.8813C12.3882 18.2573 13.411 14.8734 17 14.084L17 11.6787C13.411 10.8893 12.3882 7.50543 12.3255 5.88135L9 6.43641C9.60877 10.6583 11.6751 11.6139 15.1394 12.8813C11.6751 14.1487 9.60877 15.1044 9 19.3263L12.3255 19.8813Z" fill="black"/></svg>') no-repeat left top 5px;
        font-size: 20px;
    }

    .start-item__link {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .start__wrapper {
        grid-template-columns: 1fr;
    }

    .start__wrapper .section__header {
        padding-bottom: 0;
    }

    .start__content {}

    .start-item {
        gap: 26px;
    }

    .start-item__content {
        padding: 16px;
    }

    .start-item:first-child .start-item__timeline {
        margin-top: 20px;
    }

    .start-item:first-child .start-item__timeline:after {
        top: 0;
    }

    .start-item:last-child .start-item__timeline {
        height: 44px;
    }

    .start-item__timeline:after {
        top: 20px;
        left: -13px;
        width: 24px;
        height: 24px;
        background: url('data:image/svg+xml,<svg width="8" height="8" viewBox="0 0 8 8" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="4" cy="4" r="4" fill="black"/></svg>') no-repeat center center #FBE645;
    }

    .start-item__label {
        right: 28px;
        top: -12px;
        height: 24px;
        font-size: 10px;
        padding: 0 8px;
    }

    .start-item__title {
        font-size: 20px;
    }

    .start-item__text {
        background: url('data:image/svg+xml,<svg width="26" height="26" viewBox="0 0 26 26" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="1" y="0.881348" width="24" height="24" rx="12" fill="white"/><rect x="1" y="0.881348" width="24" height="24" rx="12" stroke="black" stroke-width="1.5"/><path d="M12.3255 19.8813C12.3882 18.2573 13.411 14.8734 17 14.084L17 11.6787C13.411 10.8893 12.3882 7.50543 12.3255 5.88135L9 6.43641C9.60877 10.6583 11.6751 11.6139 15.1394 12.8813C11.6751 14.1487 9.60877 15.1044 9 19.3263L12.3255 19.8813Z" fill="black"/></svg>') no-repeat left top 5px;
        font-size: 16px;
    }

    .start-item__link {
        font-size: 14px;
        padding: 8px 16px;
    }
}

/* #endregion start */

/* #region about */
.about__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
}

.about__content-first {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 44px;
    border-radius: 24px;
    background: url(../img/about_back.png) no-repeat right bottom #fff;
}

.about__content-first-text {
    font-weight: 500;
    font-size: 36px;
    line-height: 128%;
}

.about__content-first-caption {
    color: var(--text_002);
    font-weight: 400;
    font-size: 26px;
    line-height: 140%;
}

.about__photo-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.about__photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__content-second {
    padding-left: 32px;
}

.about__content-second-wrapper {
    border-top: 2px solid var(--text_001);
    padding: 28px 0;
}

.about__content-second-text {
    margin-bottom: 44px;
}

.about__content-second-text h3 {
    font-weight: 500;
    font-size: 36px;
    line-height: 128%;
    margin-bottom: 16px;
}

.about__content-second-text p {
    font-weight: 400;
    font-size: 26px;
    line-height: 140%;
    margin-bottom: 10px;
}

.about__content-second-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    height: 44px;
    color: var(--text_001);
    font-weight: 500;
    font-size: 19px;
    line-height: 140%;
    width: 100%;
    border: 1px solid var(--text_001);
    text-decoration: none;
    border-radius: 40px;
}

@media (max-width: 1440px) {
    .about__content-first {
        padding: 28px;
    }

    .about__content-first-text {
        font-size: 28px;
    }

    .about__content-first-caption {
        font-size: 20px;
    }

    .about__photo-wrapper {
        position: relative;
        border-radius: 24px;
        overflow: hidden;
    }

    .about__photo {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .about__content-second {
        padding-left: 32px;
    }

    .about__content-second-wrapper {
        border-top: 2px solid var(--text_001);
        padding: 28px 0;
    }

    .about__content-second-text h3 {
        font-size: 28px;
    }

    .about__content-second-text p {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .about__content-second-link {
        height: 44px;
        font-size: 16px;
    }
}

@media (max-width: 1200px) {
    .about__content-first-text {
        font-size: 22px;
    }

    .about__content-second-text h3 {
        font-size: 22px;
    }

    .about__content-second-text p {
        font-size: 16px;
        margin-bottom: 10px;
    }
}

@media (max-width: 900px) {
    .about__wrapper {
        grid-template-columns: 1fr 1fr;
    }

    .about__photo-wrapper {
        grid-row: 1 / 3;
    }

    .about__content-second {
        grid-row: 1 / 2;
    }
}

@media (max-width: 768px) {
    .about__wrapper {
        grid-template-columns: 1fr;
    }

    .about__content-first {
        padding: 16px;
    }

    .about__content-first-text {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .about__content-first-caption {
        font-size: 16px;
    }

    .about__photo-wrapper {
        position: relative;
        border-radius: 24px;
        overflow: hidden;
        margin-bottom: 16px;
        max-height: 510px;
    }

    .about__photo {
        position: static;
        margin-bottom: 16px;
    }

    .about__content-second {
        padding-left: 0;
    }

    .about__content-second-wrapper {
        padding: 16px 0 0 0;
    }

    .about__content-second-text {
        margin-bottom: 24px;
    }

    .about__content-second-text h3 {
        font-size: 20px;
    }

    .about__content-second-text p {
        font-size: 16px;
    }

    .about__content-second-link {
        height: 36px;
        font-size: 14px;
    }


    .about__photo-wrapper {
        grid-row: auto;
    }

    .about__content-second {
        grid-row: auto;
    }
}

/* #endregion about */

/* #region steps */
.steps {}

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

.steps__title {
    font-weight: 500;
    font-size: 46px;
    line-height: 112%;
}

.steps__navigation {
    display: flex;
    align-items: center;
    gap: 8px;

}


.steps-card {
    position: relative;
    height: auto;
}

.steps-card__img {
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.steps-card__title {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;

    display: flex;
}

@media (max-width: 1440px) {
    .steps__title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .steps__header {
        margin-bottom: 16px;
    }

    .steps__title {
        font-size: 24px;
    }

    .steps-card__title {
        font-size: 14px;
    }
}

/* #endregion steps */

/* #region posts */
.posts {}

.posts__wrapper {
    display: grid;
    grid-template-columns: 5fr 7fr;
}

.posts .section__header {
    border-top: 2px solid #000;
    padding-top: 28px;
}

.posts__first {
    background: url(../img/posts_back.png) no-repeat top 28px right;
    padding-right: 40px;
}

.posts__second {
    background-color: #fff;
    border-radius: 24px;
    padding: 44px;
    display: flex;
    flex-direction: column;
}

.posts__slider {}

.posts__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.posts-card {
    display: flex;
    gap: 32px;
}

.posts-card__img,
.posts-card__img-wrapper {
    width: 100%;
}


.posts-card__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

.posts-card__text p {
    font-weight: 400;
    font-size: 26px;
    line-height: 140%;
}

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

.posts-card__tags a {
    color: var(--text_003);
    font-weight: 500;
    font-size: 26px;
    line-height: 140%;
    text-decoration: none;
}

.posts-card__link {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--text_001);
    border-radius: 40px;
    color: var(--text_001);
    height: 56px;
    font-weight: 500;
    font-size: 19px;
    line-height: 140%;
    padding: 0 30px;
    text-decoration: none;
}

@media (max-width: 1440px) {
    .posts__second {
        padding: 28px;
    }

    .posts-card {
        gap: 24px;
    }

    .posts-card__text p {
        font-size: 20px;
    }

    .posts-card__tags a {
        font-size: 20px;
    }

    .posts-card__link {
        height: 44px;
        font-size: 16px;
    }
}

@media (max-width: 1200px) {

    .posts__wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .posts-card__text p {
        font-size: 3vw;
    }

}

@media (max-width: 768px) {
    .posts {}

    .posts__wrapper {
        gap: 0px;
    }



    .posts__first .contacts__link-tg {
        margin-bottom: 24px;
    }

    .posts .section__header {
        padding-top: 16px;

    }

    .posts__second {
        padding: 16px;
        gap: 16px;
    }

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

    .posts-card {
        flex-direction: column;
        gap: 16px;
    }

    .steps__navigation {
        margin-left: auto;
    }

    ht .posts-card__img {}

    .posts-card__content {
        gap: 16px;
    }

    .posts-card__text p {
        font-size: 16px;
    }

    .posts-card__wrapper {
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        gap: 16px;
    }

    .posts-card__tags a {
        font-size: 16px;
    }

    .posts-card__link {
        height: 36px;
        font-size: 14px;
        padding: 0 16px;
    }

    .posts .contacts__person {
        flex-direction: column-reverse;
        align-items: start;
        margin-bottom: 0;
    }
}

/* #endregion posts */

/* #region reviews */
.reviews {}

.reviews__wrapper {
    background-color: #fff;
    border-radius: 24px;
    padding: 44px;
}

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

.reviews__header .section__header {
    display: flex;
    align-items: start;
    gap: 16px;
}

.reviews_count {
    border: 1px solid var(--text_001);
    border-radius: 40px;
    color: var(--text_001);
    padding: 10px 20px;
}

.reviews-card {}

.reviews-card__icon {
    margin-bottom: 24px;
}

.reviews-card__name {
    color: var(--text_002);
    font-weight: 500;
    font-size: 26px;
    line-height: 140%;
    margin-bottom: 8px;
}

.reviews-card__text {
    font-weight: 500;
    font-size: 36px;
    line-height: 128%;
    margin-bottom: 24px;
}

.reviews-card__tags a {
    color: var(--text_003);
    font-weight: 500;
    font-size: 26px;
    line-height: 140%;
    text-decoration: none;
}

@media (max-width: 1440px) {
    .reviews__header {
        align-items: flex-start;
    }

    .reviews__wrapper {
        padding: 28px;
    }

    .reviews-card__name {
        font-size: 20px;
    }

    .reviews-card__text {
        font-size: 28px;
    }

    .reviews-card__tags a {
        font-size: 20px;
    }
}

@media (max-width: 1440px) {

    .reviews__header .section__header {
        flex-direction: column;
    }

}

@media (max-width: 768px) {
    .reviews__header {
        align-items: flex-start;
    }

    .reviews__wrapper {
        padding: 16px;
    }

    .reviews-card__icon {
        margin-bottom: 16px;
    }

    .reviews-card__name {
        font-size: 16px;
    }

    .reviews-card__text {
        font-size: 20px;
    }

    .reviews-card__tags a {
        font-size: 16px;
    }
}

/* #endregion reviews */

/* #region products */
.products {}

.products__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.products-item {
    background: #fff;
    position: relative;
    border-radius: 24px;
    padding: 44px;
    display: flex;
    gap: 40px;
    height: 520px;
    transition: .25s;
}

.products-item:hover {
    background: var(--main);
}

.products-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--bg-image) no-repeat left bottom;
    opacity: 0.25;
    transition: opacity 0.25s ease;
    z-index: 0;
}

.products-item:hover::before {
    opacity: 1;
    /* при ховере картинка становится полностью видимой */
}






.products-item__title {
    width: 50%;
    font-weight: 500;
    font-size: 46px;
    line-height: 112%;
}

.products-item__content {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 5;
}

.products-item__text {
    font-weight: 400;
    font-size: 26px;
    line-height: 140%;
    margin-bottom: 16px;
}

.products-item:hover .products-item__status,
.products-item:hover .products-item__text {
    text-shadow: -1px -1px 0 #FBE649, 1px -1px 0 #FBE649, -1px 1px 0 #FBE649, 1px 1px 0 #FBE649;
}

.products-item__status {
    color: var(--text_003);
    font-weight: 400;
    font-size: 26px;
    line-height: 140%;
    background: url('data:image/svg+xml,<svg width="24" height="29" viewBox="0 0 24 29" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 8.52002V14.52L16 18.52M3 14.52C3 19.4906 7.02944 23.52 12 23.52C16.9706 23.52 21 19.4906 21 14.52C21 9.54946 16.9706 5.52002 12 5.52002C7.02944 5.52002 3 9.54946 3 14.52Z" stroke="%23A9A9A9" stroke-width="1.5" stroke-linejoin="round"/></svg>') no-repeat left center;
    padding-left: 32px;
}

.products-item__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--text_001);
    border-radius: 40px;
    color: var(--text_001);
    height: 56px;
    font-weight: 500;
    font-size: 19px;
    line-height: 140%;
    padding: 0 30px;
    text-decoration: none;
    transition: all .3s;
}


.products-item:hover .products-item__link {
    background-color: #fff;
}

.products-item .products-item__link:hover {
    color: #fff;
    background-color: #000;
    border: 1px solid #FBE645;

}

.products-item__label {
    position: absolute;
    display: flex;
    align-items: center;
    top: -12px;
    right: -10px;
    height: 28px;
    padding: 0 16px;
    border-radius: 60px;
    background-color: #fff;
    color: var(--text_001);
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
}

@media (max-width: 1440px) {
    .products-item {
        padding: 28px;
        height: 400px;
    }

    .products-item__title {
        font-size: 36px;
    }

    .products-item__text {
        font-size: 20px;
    }

    .products-item__status {
        font-size: 20px;
    }

    .products-item__link {
        height: 44px;
        font-size: 16px;
    }

    .products-item__label {
        top: -12px;
        right: -10px;
        height: 22px;
        padding: 0 8px;
        font-size: 12px;
    }
}


@media (max-width: 900px) {
    .products-item__title {
        font-size: 6vw;
    }

    .products__grid {
        grid-template-columns: 1fr;
    }
}




@media (max-width: 550px) {
    .products__grid {
        grid-template-columns: 1fr;
    }

    .products-item {
        padding: 16px;
        flex-direction: column;
        gap: 24px;
        height: fit-content;
    }


    .products-item__title {
        width: 100%;
        font-size: 24px;
    }

    .products-item__content {
        width: 100%;


    }

    .products-item__text {
        font-size: 16px;
        margin-bottom: 8px;

    }

    .products-item__status {
        font-size: 16px;
        margin-bottom: 64px;
    }

    .products-item__link {
        height: 36px;
        font-size: 14px;
        padding: 0 16px;
        width: 165px;
        align-self: flex-end;
    }

    .products-item__label {
        top: -12px;
        right: -10px;
        height: 18px;
        padding: 0 8px;
        font-size: 10px;
    }
}

/* #endregion products */

/* #region blog */
.blog {}



.main_blog-card {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
}

.main_blog-card__img {
    margin-bottom: 8px;
    max-height: 320px;
    overflow: hidden;
    border-radius: 25px;
    aspect-ratio: 6 / 3;
}

.main_blog-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main_blog-card__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 16px;
    width: 100%;
}

.main_blog-card__tags a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    border-radius: 46px;
    border: none;
    background-color: #fff;
    color: var(--text_002);
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    padding: 0 20px;
    text-decoration: none;
}

.main_blog-card__date {
    color: var(--text_003);
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
}

.main_blog-card__title {
    font-weight: 500;
    font-size: 36px;
    line-height: 128%;
}

.blog_post-btn {
    border: 1px solid var(--text_001);
    border-radius: 40px;
    color: #fff;
    background-color: #000;
    padding: 8px 30px;

}




@media (max-width: 1440px) {
    .main_blog-card__wrapper {
        flex-direction: column-reverse;
        gap: 10px;
    }

    .main_blog-card__date {
        font-size: 14px;
    }

    .main_blog-card__title {
        font-size: 28px;
    }

    .main_blog-card__img {

        aspect-ratio: 5 / 3;
    }
}

@media (max-width: 1200px) {

   
    .main_blog-card__img {
        aspect-ratio: 5 / 3;
        grid-row: 1 / 4;
    }
}

@media (max-width: 768px) {
    .blog__wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .main_blog-card__tags a {
        height: 28px;
        font-size: 12px;
        padding: 0 12px;
    }

    .main_blog-card__date {
        font-size: 12px;
    }

    .main_blog-card__title {
        font-size: 16px;
    }

    .main_blog-card__img {
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 550px) {
    .main_blog-card__title {
        font-size: 20px;
    }

    .main_blog-card {
        display: flex;
    }

    .main_blog-card__wrapper {
        flex-direction: row;
    }

    .main_blog-card__img {
        aspect-ratio: 5 / 3;
    }
}

/* #endregion blog */

/* #region subscribe */
.subscribe {}

.subscribe__wrapper {
    display: grid;
    grid-template-columns: 4fr 8fr;
    gap: 8px;
}

.subscribe__content {
    background-color: #FBE645;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 56px;
}

.subscribe__content-text {
    color: var(--text_002);
    font-weight: 400;
    font-size: 19px;
    line-height: 140%;
}

.subscribe__form {
    background-color: #fff;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 56px;
}

.subscribe-form {}

.subscribe-form__title {
    font-weight: 500;
    font-size: 36px;
    line-height: 128%;
}

.subscribe-form__wrapper {
    display: flex;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 56px;
}

.subscribe-form__input {
    width: 100%;
    position: relative;
}

.input__label {
    display: block;
    color: var(--text_002);
    font-weight: 400;
    font-size: 19px;
    line-height: 140%;
}

.input__input {
    display: block;
    width: 100%;
    height: 72px;
    border: transparent;
    border-bottom: 2px solid #000;
    font-weight: 500;
    font-size: 26px;
    line-height: 140%;
}

.input__input:focus-visible {
    outline: none;
}

.input__input::placeholder {
    color: var(--text_003);
    font-weight: 500;
    font-size: 26px;
    line-height: 140%;
}

.input__invalid {
    position: absolute;
    bottom: -20px;
    left: 0;
    color: var(--error);
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
}

.subscribe-form__btn {
    background-color: var(--text_001);
    border: 1px solid var(--text_001);
    color: #fff;
    display: inline-flex;
    align-items: center;
    height: 72px;
    padding: 0 40px;
    text-decoration: none;
    border-radius: 40px;
    white-space: nowrap;
    font-weight: 500;
    font-size: 26px;
    line-height: 140%;
}

.subscribe-form__checkbox {}

.checkbox {
    margin-top: 5px;
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
}

.checkbox__input {
    appearance: none;
    position: relative;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border: 1px solid #000;
    overflow: hidden;
    flex-shrink: 0;
}

.checkbox__input::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    background-image: url('data:image/svg+xml,<svg width="12" height="10" viewBox="0 0 12 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.799988 3.99109L4.69999 8.67109L11.2 0.871094" stroke="black" stroke-width="1.5"/></svg>');
    background-repeat: no-repeat;
    background-position: center center;
}

.checkbox__input:checked::after {
    width: 24px;
    height: 24px;
    background-color: #FBE645;
}

.checkbox__label {
    font-weight: 400;
    font-size: 19px;
    line-height: 140%;
    margin-left: 5px;
}

.checkbox__label a {
    color: var(--text_001);
    text-decoration: underline;
}

@media (max-width: 1440px) {
    .subscribe__content {
        padding: 44px;
    }

    .subscribe__content-text {
        font-size: 16px;
    }

    .subscribe__form {
        padding: 44px;
    }

    .subscribe-form__title {
        font-size: 28px;
    }

    .subscribe-form__wrapper {
        margin-bottom: 44px;
    }

    .input__label {
        font-size: 16px;
    }

    .input__input {
        height: 56px;
        font-size: 20px;
    }

    .input__input::placeholder {
        font-size: 20px;
    }

    .subscribe-form__btn {
        height: 56px;
        padding: 0 40px;
        font-size: 20px;
    }

    .checkbox__label {
        font-size: 16px;
    }
}

@media (max-width: 900px) {
    .subscribe-form__wrapper {
        align-items: start;
        flex-direction: column;
    }

}

@media (max-width: 768px) {
    .subscribe {}

    .subscribe__wrapper {
        grid-template-columns: 1fr;
    }

    .subscribe__content {
        padding: 24px;
    }

    .subscribe__content-text {
        font-size: 14px;
    }

    .subscribe__form {
        padding: 24px;
    }

    .subscribe-form__title {
        font-size: 20px;
        margin-bottom: 40px;
    }

    .subscribe-form__wrapper {
        align-items: center;
        flex-direction: column;
        margin-bottom: 16px;
    }

    .input__label {
        font-size: 14px;
    }

    .input__input {
        height: 44px;
        font-size: 16px;
    }

    .input__input::placeholder {
        font-size: 16px;
    }

    .subscribe-form__btn {
        height: 44px;
        padding: 0 40px;
        width: 100%;
        font-size: 16px;
        justify-content: center;
    }

    .subscribe-form__checkbox {}

    .checkbox__label {
        font-size: 14px;
    }
}

@media (max-width: 400px) {
    .subscribe-form__btn {
        font-size: 13px;
        padding: 0 20px;
		
    }
}

/* #endregion subscribe */