/*********************************
**********************************
Author page
**********************************
*********************************/

.author {

}

.author__about {
    padding-top: 30px;
    padding-bottom: 130px;
}

.author__excerpt {
    font-size: 18px;
    line-height: 32px;
    text-transform: uppercase;
    color: #fff;
    margin-top: 38px;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.author__name {
    margin-bottom: 24px;
}

.author__name h1 {
    font-size: 52px;
    line-height: 72px;
    color: #fff;
}

.author__position_and_social {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 40px;
}

.author__position {
    position: relative;
    font-size: 26px;
    line-height: 32px;
    color: #ADADAD;
    padding-right: 24px;
    margin-right: 24px;
}

.author__position:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: block;
    width: 1px;
    height: 24px;
    background-color: #ADADAD;
}

.author__social ul {
    margin: 0;
    padding-inline-start: 0;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
}

.author__social ul li a {
    display: inline-block;
    opacity: 1;
    transition: .3s ease-in-out opacity;
}

.author__social ul li a:not(:last-child) {
    margin-right: 10px;
}

.author__social ul li a:hover {
    opacity: .7;
    transition: .3s ease-in-out opacity;
}

.author__button {

}

.author__button--mobile {
    display: none;
}

.author__description {
    font-size: 18px;
    line-height: 26px;
    color: #ADADAD;
    margin-bottom: 64px;
}

.author__quote {
    font-size: 18px;
    line-height: 26px;
    color: #EFEFEF;
    display: flex;
}

.author__quote svg {
    flex: 0 0 42px;
}

.author__quote q {
    margin-left: 26px;
}

.author__quote q:before,
.author__quote q:after {
    content: none;
}

.author__avatar{
    display: flex;
    justify-content: center;
    align-items: center;
}

.author__avatar img {
    border-radius: 50%;
    max-width: 248px;
}

.author__posts {
    padding-top: 120px;
    padding-bottom: 50px;
}

@media (max-width: 767px) {
    .author__about {
        padding-top: 50px;
        padding-bottom: 80px;
    }

    .author__excerpt {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 16px;
    }

    .author__position {
        font-size: 20px;
        line-height: 26px;
    }

    .author__description {
        font-size: 16px;
        line-height: 20px;
    }

    .author__avatar img {
        margin-left: auto;
        margin-right: auto;
    }

    .author__button--mobile {
        display: block;
        margin-bottom: 80px;
    }

    .author__quote q {
        font-size: 16px;
        line-height: 20px;
        font-weight: 700;
    }

    .author__posts {
        padding-top: 80px;
        padding-bottom: 60px;
    }
}

/*loader for author page*/

.button-loader{
    width: max-content;
    margin-left: auto;
    margin-right: auto;
    display: none;
}

.loader ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style-type: none;
}

.loader ul > li {
    height: 15px;
    width: 3px;
    background: #fff;
    margin-left: 10px;
    animation: animate .7s infinite alternate;
    -webkit-border-radius: 30px;
    border-radius: 30px;
}

@keyframes animate {
    0% {
        transform: scaleY(1);
    }

    25% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(1);
    }

    75% {
        transform: scaleY(2);
    }

    100% {
        transform: scaleY(3);
    }
}

.loader ul > li:nth-child(1) {
    -webkit-animation-delay: .1s; /* Safari 4.0 - 8.0 */
    animation-delay: .1s;

}

.loader ul > li:nth-child(2) {
    -webkit-animation-delay: .2s; /* Safari 4.0 - 8.0 */
    animation-delay: .2s;
}

.loader ul > li:nth-child(3) {
    -webkit-animation-delay: .3s; /* Safari 4.0 - 8.0 */
    animation-delay: .3s;
}

.loader ul > li:nth-child(4) {
    -webkit-animation-delay: .4s; /* Safari 4.0 - 8.0 */
    animation-delay: .4s;
}

.loader ul > li:nth-child(5) {
    -webkit-animation-delay: .5s; /* Safari 4.0 - 8.0 */
    animation-delay: .5s;
}

.loader ul > li:nth-child(6) {
    -webkit-animation-delay: .6s; /* Safari 4.0 - 8.0 */
    animation-delay: .6s;
}

.loader ul > li:nth-child(7) {
    -webkit-animation-delay: .7s; /* Safari 4.0 - 8.0 */
    animation-delay: .7s;
}

.loader ul > li:nth-child(8) {
    -webkit-animation-delay: .8s; /* Safari 4.0 - 8.0 */
    animation-delay: .8s;
}