html,
body {
    overflow-x: hidden;
}

body {
    padding: 0;
    margin: 0;
    font-size: 16px;
    position: relative;
    color: #333;
    background: #f9f9f9;
}

a {
    color: #2998ff;
    text-decoration: none !important;
    transition: all 0.5s ease;
}

a:hover {
    color: #7fe972;
}


/*---------------------------------------------*/

header {
    padding: 20px 0;
}

.header__menu .menu {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.header__menu .menu a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.5s ease;
}

.header__menu .menu a:hover {
    color: #7fe972;
}

.header__menu .menu li {
    margin-right: 35px;
}

.header__menu .menu li:last-child {
    margin-right: 0;
}


/*---------------------------------------------*/

.content__block {
    background: #fff;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 20%), 0 1px 3px 0 rgb(0 0 0 / 10%);
    border-radius: 8px;
    max-width: 880px;
    margin: 0 auto;
    padding: 15px 40px;
    margin-bottom: 30px;
    margin-top: 30px;
}

.summary__img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: top;
}

.content__block--line {
    padding-top: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e5e5e5;
}

.content__block--line:last-child {
    border-bottom: none;
}

.summary__top--name>h1 {
    font-size: 32px;
    margin-bottom: 0;
}

.summary__top--name {
    margin-bottom: 20px;
}

.summary__line {
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 14px;
}

.summary__info--title {
    color: #999;
    font-size: 12px;
}

.content__block--title {
    color: #999;
    font-size: 24px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.tag__item {
    display: inline-block;
    position: relative;
    flex-grow: 1;
    flex-shrink: 1;
    overflow: hidden;
    /* white-space: nowrap; */
    text-overflow: ellipsis;
    box-sizing: border-box;
    padding: 0 11px;
    text-align: left;
    background-color: hsla(0, 0%, 80%, .3);
    color: #666;
    margin: 0 5px 5px 0;
}

.experience__item {
    font-size: 14px;
    margin-bottom: 25px;
}

.experience__item:last-child {
    margin-bottom: 0;
}

.experience__item--date {
    line-height: 1.2;
}

.experience__item--company {
    font-weight: bold;
    margin-bottom: 5px;
}

.experience__item--position {
    font-weight: bold;
}