/*general*/
* {
    font-family: "TT Lakes", sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

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

ul {
    list-style: none;
}

button {
    background: transparent;
    border: none;
    cursor: pointer;
}

/*header*/
.page {

    width: 100%;
    overflow: hidden;
    margin: 0 auto;
}

.header {
    height: 88px;
    padding: 18.59px 0;
    border-bottom: 1px solid #d9fff5;
}

.header__content {

    width: 100%;
    padding: 0 16px;
    margin: 0 auto;
}

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

.header__left,
.header__right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header__logo {
    position: relative;
    height: 50.81px;
    left: 11px;
    width: 96.55px;
    height: 100%;
}

.icon {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ff3e79;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.icon--call {
    background-image: url(img/call.svg);
}

.icon--chat {
    background-image: url(img/chat.svg);
}

.icon--profile {
    background-image: url(img/profile.svg);
}

.icon--application {
    background-image: url(img/repair.svg);
}

.icon--status {
    background-image: url(img/checkstatus.svg);
}

.header__line {
    border: 1px solid #eaeaea;
    border-radius: 1px;
    height: 32px;
    margin: 0 4px;
}

/*main*/
.main {
    background-color: #F8F8F8;
    padding-top: 24px;
    padding-bottom: 35px;
    margin: 0 auto;
}

.menu {

    width: 100%;
    padding-right: 16px;
    margin: 0 auto;
}

.menu__head {
    padding-bottom: 24px;
}

.menu__title {
    font-size: 28px;
    line-height: 40px;
    letter-spacing: -0.6px;
    position: relative;
    color: #1B1C21;
    font-weight: bold;
    padding-left: 16px;
}

.menu__title::before {
    content: "";
    width: 4px;
    height: 40px;
    position: absolute;
    background-color: #41F6D7;
    border-radius: 50px;
    left: -2px;
}



.menu__navigation { 
    position: relative;
    overflow-x: auto;
    color: #7E7E82;
    margin-bottom: 26px;
}


.menu__navigation-list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow-x: scroll;


}

.menu__navigation-item {
    font-size: 16px;
    line-height: 24px;
    white-space: nowrap;
    letter-spacing: -0.2px;
    padding-left: 19.56px;
}

.menu__navigation-item--active {
    margin-left: 16px;
    padding: 8px 9.3px 8px 16.54px;
    border: 2px solid #B8FFEC;
    border-radius: 6px;
    background-color: white;
}

.about {

    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
}


.about__info {

    padding-right: 16px;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.2px;

    overflow: hidden;
}

.about__button-read {
    display: flex;
    align-items: center;
    margin: 10px 32px 16px 0;
}



.about__button-read::before {
    content: "";
    width: 24px;
    height: 24px;
    margin-right: 8px;
    background-image: url(img/expand.svg);
    background-size: cover;
}

.about__text{
    padding-left: 16px;
}

.about__img {
    height: 100%;
    width: 100%;
    border-radius: 2px;
    background-color: rgba(248, 248, 248, 1);
}

@media(max-width:767px) {
    .header__icon {
        display: none;
    }

    .menu__button {
        display: none;
    }

    .about__text{
    padding-left: 16px;
}

}


@media(min-width: 768px) and (max-width: 1119px) {
    .menu__button {
        display: none;
    }

    .header__logo::before {
        content: "";
        position: absolute;
        left: -20.73px;
        top: 9px;
        border: 1px solid #EAEAEA;
        height: 32px;
    }

    .header {
        padding: 18.59px 8px;
    }

    .header__icon {
        display: flex;
    }

    main {
        padding: 24px 0 40px 8px;
    }

    .menu {
        padding-right: 0;
    }
     
    .menu__head {
        padding-bottom: 32px;
    }

    .menu__title::before {
        left: -10px;
    }

    .menu__navigation-list {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        overflow-x: auto;
        background-image: linear-gradient(to right, rgba(248, 248, 248, 1), rgba(248, 248, 248, 0));
    }

    .menu__navigation-item--active {
        padding: 8px 9.38px 8px 16.67px;
    }

    .about {
        margin-top: 32px;
        padding-right: 25px;
        padding-left: 16px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 48px;
    }

    

    .about__info {

        line-height: 20px;
        padding: 0;
    }



    .header__left {
        gap: 42px;
    }



    .icon--profile {
        margin-right: 0px;
    }
}

@media (min-width: 1120px) {
    .header {
        display: none;
    }


    .menu__navigation::before,
    .menu__navigation::after {
        content: none;
    }

    main {
        padding: 42px 32px 49px 32px;
    }

    .menu {
        padding: 0;
    }

    .about {
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding: 0;
        margin-top: 16.22px;
        gap: 36px;
        margin-left: auto;
        margin-right: auto;

        width: 100%;
    }

    .menu__buttons {
        display: flex;
        gap: 32px;
    }

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

    .menu__head {
        display: flex;
        justify-content: space-between;
        padding-top: 0;
        padding-bottom: 8px;
    }

    .menu__title {
        padding-left: 0;
    }

    .menu__title::before {
        left: -34px;
    }

    .menu__list {
        margin: 0;
    }

    .menu__navigation-list {
        overflow: hidden;
        flex-wrap: wrap;
    }

    .menu__navigation-item {
        margin-left: 0;
        padding: 8.63px 13px 8px 24px;
    }

    .menu__navigation-item--active {
        padding: 8.63px 21.7px 7.37px 22.64px;
    }

    .about__info {
        padding: 0;
        line-height: 20px;

    }

    .service-info__read-more {
        margin: 13.78px 0 0 0;
    }



}