

/* Start:/local/templates/phsv_personal/styles.css?17695927906218*/
@import url('/local/templates/phsv_personal/css/reset.css');

:root {
    --color-red: #a5131d;
}

body {
    font-family: 'Roboto', Tahoma, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.25;
}

.mobile {
    display: none;
}

.container {
    display: block;
    position: relative;
    margin: 0 auto;
    max-width: 1360px;
    padding: 0 1.5em;
}

.phsv-personal {
    background: linear-gradient(81deg, rgba(244, 244, 244, 1) 0%, rgba(244, 244, 244, 1) 44%, rgba(244, 244, 244, 0) 97%);
    width: 100%;
    height: calc(100vh - 4.5em);
    max-height: 640px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    border-radius: 50px;
    margin-top: 1.5em;
    overflow: hidden;
    font-size: 1.2em;
}

.phsv-personal__info {
    padding: 2.5em;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-start;
}

.phsv-personal__info li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 1em;
}

.phsv-personal__info li::before {
    content: '';
    width: 0.5em;
    height: 0.5em;
    background: var(--color-red);
    display: block;
    position: absolute;
    top: 0.4em;
    left: 0;
    border-radius: 50%;
}

.phsv-personal__photo {
    aspect-ratio: 1;
}

.phsv-personal__photo img {
    vertical-align: bottom;
    max-width: 100%;
}

.phsv-title h1 {
    font-size: 2em;
    font-weight: bold;
}

.phsv-title p {
    font-size: 1.5em;
}

.phsv-social {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1em;
}

.phsv-social a {
    text-decoration: none;
    background: var(--color-red);
    overflow: hidden;
    width: 2.3em;
    height: 2.3em;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: 0.5s;
    fill: #fff;
}

.phsv-social a:hover {
    transform: scale(1.1);
}

.phsv-social_tg {
    width: 1.35em;
    height: 1.7em;
}

.phsv-social_email {
    width: 1.7em;
    height: 1.35em;
}

.phsv-social_vk {
    width: 1.6em;
    height: 1.5em;
}

.footer__copyright {
    text-align: center;
    font-size: 80%;
    padding: 1.5em 0;
    opacity: 0.6;
}

.phsv-bio {
    padding: 2.5em;
}


.phsv-bio p:not(:last-child) {
    padding-bottom: 1em;
}

.phsv-bio__title {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 1.5em;
    gap: 2em;
    padding-left: 1.5em;
}

.phsv-bio__title::after {
    content: '';
    width: 0%;
    height: 2px;
    background: var(--color-red);
    display: block;
    overflow: hidden;
    transition: 0.5s;
    margin: 0 0 0 auto;
}

.animate .phsv-bio__title::after {
    width: 100%;
}

.phsv-bio__title h2 {
    display: inline-block;
    flex-shrink: 0;
    font-size: 1.5em;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
}

.phsv-bio__info {
    position: relative;
}

h3 {
    display: inline-block;
    flex-shrink: 0;
    font-size: 1.1em;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 1em;
    margin-top: 2em;
    margin-left: 1.5em;
}

.phsv-bio__info::before {
    content: '';
    width: 2px;
    height: 1px;
    display: block;
    position: absolute;
    top: 0.5em;
    left: 0.2em;
    ;
    transition: 3s;
    background: rgba(244, 244, 244, 1);
}

.animate .phsv-bio__info::before {
    height: calc(100% - 0.5em);
}

.phsv-bio__info a {
    text-decoration: underline;
    color: var(--color-black);
    transition: 0.5s;
}

.phsv-bio__info a:hover {
    text-decoration: none;
    color: var(--color-red);
}

.phsv-bio__info p {
    position: relative;
    transition: opacity 0.5s ease;
    list-style: none;
    padding-left: 1.5em;
}

.phsv-bio__info p::before {
    content: '';
    width: 0.5em;
    height: 0.5em;
    display: block;
    border-radius: 1em;
    background: var(--color-red);
    position: absolute;
    top: 0.3em;
    left: 0;
    opacity: 0;
    transition: 0.5s;
}

.animate .phsv-bio__info p::before {
    opacity: 1;
}

/* Задержка для каждого следующего абзаца */
.phsv-bio__info p:nth-of-type(1)::before {
    transition-delay: 0s;
}

.phsv-bio__info p:nth-of-type(2)::before {
    transition-delay: 0.5s;
}

.phsv-bio__info p:nth-of-type(3)::before {
    transition-delay: 1s;
}

.phsv-bio__info p:nth-of-type(4)::before {
    transition-delay: 1.5s;
}

.phsv-bio__info p:nth-of-type(5)::before {
    transition-delay: 2s;
}

.phsv-bio__info p:nth-of-type(6)::before {
    transition-delay: 2.5s;
}

.phsv-bio__info p:nth-of-type(7)::before {
    transition-delay: 3s;
}

.phsv-bio__info p:nth-of-type(8)::before {
    transition-delay: 3.5s;
}

.phsv-bio__info p:nth-of-type(9)::before {
    transition-delay: 4s;
}

.phsv-bio__info p:nth-of-type(10)::before {
    transition-delay: 4.5s;
}

.phsv-bio__info p:nth-of-type(11)::before {
    transition-delay: 5s;
}

@media(max-width:960px) {
    body {
        font-size: 14px;
    }

    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }

    .phsv-personal {
        flex-direction: column;
        height: auto;
        max-height: 1000%;
        border-radius: 1.5em;
        background: none;
        padding: 1.5em 0;
        font-size: 1em;
    }

    .phsv-title h1 {
        text-align: center;
        margin-bottom: 0.3em;
    }

    .phsv-title p {
        text-align: center;
    }

    .phsv-personal__photo {
        margin: 1.5em 0;
    }

    .phsv-personal__photo img {
        border-radius: 1.5em;
    }

    .phsv-personal__info {
        order: 3;
        padding: 0;
    }

    .phsv-personal__info li {
        font-size: 1.2em;
    }

    .phsv-social {
        margin: 1.5em auto;
        justify-content: center;
    }

    .phsv-bio {
        padding: 0;
        margin-bottom: 1.5em;
    }

    .phsv-bio__title {
        padding-left: 0;
    }

    .phsv-bio__info::before,
    .phsv-bio__info p::before {
        display: none;
    }

    .phsv-bio__info p {
        padding-left: 0;
        font-size: 1.2em;
    }

    .phsv-bio__title {
        gap: 1em;
    }

    .phsv-bio__title::after {
        width: 100%;
    }
}
/* End */
/* /local/templates/phsv_personal/styles.css?17695927906218 */
