.header {
    background-color: white;
    padding-bottom: 18px;
    padding-top: 18px;
}

.header__tab-link-item {
    background-color: #2ec76f;
    border-radius: 5px;
    color: #ffffff;
    display: block;
    font-size: 16px;
    padding: 10px 32px;
}

.header__mob-list {
    background: #27898c;
    min-height: 244px;
    padding: 16px 16px 7px 16px;
    position: absolute;
    right: 0;
    width: 244px;
    z-index: 7;
}

.header__mob-list {
    display: none;
    flex-direction: column;
    gap: 20px;
}

.header__mob-list-item-link {
    color: white;
    cursor: pointer;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}

.header__mob-list-item-close {
    display: flex;
    justify-content: end;
}

.header__mob-burger {
    background: #2ec76f;
    border: none;
}

.header__mob-burger-close {
    background-color: transparent;
    border: none;
    height: 40px;
    width: 40px;
}

.header__mob-list-item {
    color: #000000;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}

.header__mob {
    position: relative;
}

.header__tab-list {
    display: none;
}

.header__tab-link {
    display: none;
}

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

@media screen and (min-width: 744px) {
    .header .container {
        align-items: center;
        display: flex;
        justify-content: space-between;
    }

    .header__mob {
        display: none;
    }

    .header__wrapper {
        display: flex;
    }

    .header__tab-list-item-link {
        color: #000000;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
        text-decoration: none;
        transition: color 0.2s;
    }

    .header__tab-list-item-link:hover {
        color: #27898c;
    }

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

    .header__tab-list {
        align-items: center;
        display: flex;
        justify-content: space-between;
        width: 280px;
    }

    .header__tab-link {
        display: block;
    }

    .header__mainLink {
        display: block;
    }
}

@media screen and (min-width: 1440px) {
    .header__tab-list {
        margin-top: 0;
        width: 288px;
    }

    .header__wrapper {
        flex-direction: row;
        justify-content: space-between;
        width: 77.5%;
    }
}