@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --black: rgba(72, 72, 72, 1);
    --pink: #EA1F80;
}

body {
    font-family: 'Montserrat', sans-serif;
}

body.active {
    overflow: hidden;
}


.container {
    position: relative;
    max-width: 1360px;
    margin: 0 auto;
}

.title {
    font-size: 40px;
    font-weight: 500;
    line-height: 48.76px;
    text-align: center;
    color: rgba(72, 72, 72, 1);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.search__parameter__block {
    padding: 20px 25px;
    border: 1px solid rgba(249, 225, 236, 1);
    border-radius: 10px;
}

.product__tag {
    padding: 11px 13px;
    background-color: var(--pink);
    border-radius: 6px;

}

.product__tag-text {
    font-size: 12px;
    font-weight: 500;
    line-height: 14.63px;
    text-transform: uppercase;
    color: #FFF;
}

.full-services__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.full-services__wrapper__list {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.full-services__wrapper__list__item {
    display: flex;
    flex-direction: column;
    row-gap: 13px;
}

.full-services__item-title {
    font-size: 20px;
    font-weight: 500;
    line-height: 24.38px;
    color: rgba(72, 72, 72, 1)
}

.full-services__item__params {
    display: flex;
    flex-direction: column;
    row-gap: 13px;
}
/*-------------------------------------------------------------------*/

.intro {
    padding-top: 24px;
    padding-bottom: 40px;
    width: 100%;
    background-image: url("../img/intro_fon.webp");
}

.page__title {
    font-size: 40px;
    font-weight: 500;
    line-height: 48.76px;
    text-align: center;
    color: rgba(72, 72, 72, 1);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.like.active .icon-favorites,
.like-detail.active .icon-favorites {
    fill: var(--pink);	
}

/*.icon-favorites.active {
    fill: var(--pink);
}*/

/*.icon-comment.active {*/
/*    fill: var(--pink);*/
/*}*/

.tofavorites.active .icon-star,
.tofavorites-detail.active .icon-star {
    fill: var(--pink);	
}

.icon-star.active {
    fill: var(--pink);
}
.link {
    text-decoration: none;
}

@media (max-width: 1366px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 1000px) {
    .title {
        font-size: 30px;
    }

    .icon-favorites {
        width: 12px;
    }
}

@media (max-width: 550px) {
    .title {
        font-size: 24px;
        line-height: 29.26px;
    }

}