@font-face {
    font-family: 'FuturaFuturisC';
    src: url('fonts/FuturaFuturisC.eot');
    src: local('FuturaFuturisC'),
        url('fonts/FuturaFuturisC.eot?#iefix') format('embedded-opentype'),
        url('fonts/FuturaFuturisC.woff2') format('woff2'),
        url('fonts/FuturaFuturisC.woff') format('woff'),
        url('fonts/FuturaFuturisC.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "Futura_Futuris";
    src: url('fonts/FuturaFuturisC.eot');
    src: url('fonts/FuturaFuturisC.eot?#iefix') format('embedded-opentype'),
       url('fonts/FuturaFuturisC.woff') format('woff'),
       url('fonts/FuturaFuturisC.ttf')  format('truetype');
}
html {
    font-size: 15px;
}
body {
    font-size: inherit;
    font-family: 'FuturaFuturisC', 'Times New Roman', serif;
    color: #000000;
}
h5 {
    font-size: inherit;
}
.cv {
    padding-top: 40px;
    padding-bottom: 80px;
}
.black {
    color: black;
}
a, .gray {
    color: #666666;
}
a:hover {
    color: #2C5098;
}
.info {
    margin-bottom: 20px;
}
.headlines {
    color: #2C5098;
    font-family: 'Playfair Display', serif;
}
.subtitle_info {
    font-size: 36px;
    color: #666666;
}
.title_info {
    font-size: 46px;
}
html[lang="ru"] .title_info {
    font-size: 42px;
}
.title {
    font-size: 36px;
    margin: 20px 0 15px;
}
.subtitle {
    font-size: 18px;
    margin-top: 20px;
}
.title_small {
    margin-bottom: 10px;
}
.subtitle_small {
    font-size: .9rem;
    color: #666666;
}
.address {
    color: #666666;
    margin-bottom: 10px;
}
.contacts {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    margin-top: 10px;
    margin-left: -5px;
    margin-bottom: -5px;
    padding: 0;
}
.responsibilities-list {
    margin-bottom: 15px;
}
.contacts > .link {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    padding: 5px;
    border-radius: 10%;
    transition: all .5s ease;
}
.contacts > .link:hover {
    background: #2C5098;
    border-radius: 30%;
}
.contacts svg path {
    fill: #000000;
}
.contacts > li {
    user-select: none;
    -webkit-user-select: none;
}
.contacts > li:hover svg, .contacts > li:hover svg path {
    fill: #ffffff;
}
.contacts > li > a {
    display: flex;
    align-items: center;
    justify-content: center;
}
.contacts > li > a:focus {
    outline: none;
    text-decoration: none;
}
.contacts svg, .contacts svg path {
    transition: all .5s ease;
}
.contacts-img {
    width: 25px;
    height: 25px;
}
.controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: auto;
}
.control {
    display: flex;
    align-items: center;
    justify-content: center;
}
.control button {
    border: 1px solid #666666;
}
.control button:first-of-type {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}
.control button:last-of-type {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px
}
.font-btn {
    appearance: none;
    background: transparent;
    color: #666666;
    padding: 6px 10px 5px;
    font-size: 14px;
    line-height: 1;
    transition: all .25s ease;
}
.font-btn:hover {
    border-color: #2C5098;
    color: #2C5098;
}
.font-btn:disabled {
    opacity: .35;
    cursor: not-allowed;
}
.font-btn:disabled:hover {
    background: transparent;
    border-color: #666666;
    color: #666666;
}
.lang-btn {
    appearance: none;
    border: 1px solid #666666;
    background: transparent;
    color: #666666;
    padding: 6px 10px 5px;
    font-size: 14px;
    line-height: 1;
    transition: all .25s ease;
}
.lang-btn:hover {
    border-color: #2C5098;
    color: #2C5098;
}
.lang-btn.active {
    background: #2C5098;
    border-color: #2C5098;
    color: #ffffff;
}

ul {
    padding-left: 20px;
    color: #666666;
}
li {
    list-style-type: none;
}
.experience ul {
    margin-bottom: 18px;
    padding-left: 0;
}
.avatar-desktop {
    margin: 20px 0 24px;
}
.avatar-mobile {
    display: none;
}
.avatar-desktop, .avatar-mobile {
    position: relative;
}
.avatar-desktop__img {
    width: 160px;
}
.avatar-mobile__img {
    width: 260px;
}
.avatar-desktop__img, .avatar-mobile__img {
    pointer-events: none;
    border: 1px solid #666666;
}
.glasses {
    position: absolute;
    left: 40px;
    top: -60px;
    pointer-events: none;
    opacity: 0;
    transition: all .5s ease;
}
.glasses.show {
    top: 74px;
    opacity: 1;
}
.bracket {
    margin-bottom: 10px;
}
.bracket-list {
    margin-bottom: 0;
}
.bracket-list li {
    white-space: pre;
}
.bracket-list_mobile {
    margin-bottom: 0;
    padding-left: 20px;
    color: #666666;
}
[data-tooltip] {
    position: relative;
}
[data-tooltip]::after {
    content: attr(data-tooltip);
    width: max-content;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    opacity: 0;
    pointer-events: none;
    background-color: white;
    border-radius: 3px;
    border: 2px solid #666666;
    z-index: 10;
    padding: 6px 8px 4px;
    font-size: 14px;
    transform: translateY(-20px);
    transition: all 150ms cubic-bezier(.25, .8, .25, 1);
}
[data-tooltip]:hover::after {
    opacity: 1;
    transform: translateY(0);
    transition-duration: 300ms;
}
@media screen and (min-width: 992px) {
    .container {
        width: 860px
    }
    .skills-mobile {
        display: none;
    }
}
@media screen and (max-width: 991px) {
    .contacts {
        flex-wrap: wrap;
    }
    .controls {
        width: 100%;
        margin: 20px 0 0;
    }
    .experience .subtitle_small {
        display: block;
    }
    .cv {
        padding-top: 20px;
        padding-bottom: 40px;
    }
    .title_info {
        font-size: 56px;
        margin-bottom: 10px;
    }
    .subtitle_info {
        margin-bottom: 20px;
    }
    aside {
        display: none;
    }
    .avatar-mobile {
        display: block;
        margin-bottom: 20px;
    }
    .contacts > span:not(:last-of-type) {
        margin-bottom: 10px;
    }
    br {
        display: none;
    }
}
@media screen and (max-width: 480px) {
    .title_info {
        font-size: 46px;
    }
}
