.arrow-block {
    display: none;
}

.section-wrapper {
    max-width: unset;
    margin: 0 auto;
    padding: 0;
}
#heroines {
    margin-top: 140px;
}
.heroines-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-rows: auto;
    margin: 25px 50px 25px;
}
.heroines-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

/*.heroines-item .picture {*/
/*    height: 400px;*/
/*}*/
.heroines-item .name {
    font-size: 34px;
    font-weight: 300;
    text-transform: uppercase;
}
.heroines-item .title {
    font-size: 24px;
    font-weight: 400;
    display: inline-block;
    padding: 0 4px;
    background: #a95fff;
    margin-bottom: 22px;
}
.heroines-item .picture {
    height: 400px;
    width: 100%;
}
.heroines-item:nth-child(2n+1) .title {
    background: #ff6fa3;
}
.heroines-item:nth-child(3n+1) .title {
    background: #00a60b;
}
.heroines-item .desc {
    font-size: 22px;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 40px;
}
.button-block {
    display: flex;
    align-items: center;
    margin-top: auto;
}
.button-block .read-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    width: 170px;
    height: 43px;
    border: 1px solid #ffffff;
    color: #fff;
    text-decoration: none;
    margin-right: 16px;
    transition: all .3s ease-in-out;
}
.button-block .read-btn:hover {
    margin-right: 22px;
}

/*ARTICLE PAGE*/
.single-women_in_science {
    background: #fff;
    color: #000;
    margin-bottom: 9px;
}
.single-women_in_science section {
    background-size: contain;
    background-position: 60px 0;
    background-repeat-y: repeat;
}
.page-content {
    background-repeat: no-repeat;
    max-width: 1440px;
    margin: 130px auto 0;
    background-size: contain;
    background-position: 60px 0;
    min-height: calc(100vh - 69px);
}
article {
    margin-top: 60px;
    display: flex;
    padding: 0 86px;
}
article .photo {
    margin-right: 58px;
    max-width: 500px;
    margin-bottom: 27px;
}
article p.name {
    font-size: 43px;
    font-style: normal;
    letter-spacing: normal;
}
article p.desc {
    font-size: 24px;
    font-style: normal;
    margin-top: 10px;
}
.article-content {
    max-width: 800px;
}
.article-content .article-title {
    font-size: 41px;
    font-style: normal;
    margin-bottom: 13px;
}
.article-content p, .article-content li, .article-content span {
    font-size: 26px;
    font-weight: 400;
    margin: 29px 0 0;
}

.controls {
    max-width: 1440px;
    margin: 0 auto;
    padding: 50px 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.controls a img {
    margin-right: 31px;
    transition: all .3s ease-in-out;
}
.controls a.prev img {
    transform: rotate(180deg);
}
.controls a {
    color: #000000;
    font-size: 26px;
    font-weight: bold;
    margin-right: 30px;
    display: flex;
    align-items: center;
}
.controls a:hover {
    text-decoration: none;
}
.controls a:hover > img {
    transform: translateX(20px);
}
.controls a.prev:hover > img {
    transform: rotate(180deg) translateX(20px) ;
}
@media (max-width: 1024px) {
    .heroines-item .picture {
        height: auto;
        margin-bottom: 15px;
    }
}

@media (max-width: 780px) {
    .navbar-toggle {
        display: block;
    }
    .heroines-row {
        margin-left: 0;
        display: flex;
        overflow: auto;
        margin-right: 35px;
    }
    .heroines-item {
        flex-shrink: 0;
        width: 100%;
        padding: 10px 30px;
    }

    .heroines-item .picture {
        height: 400px;
        width: 100%;
        text-align: center;
    }

    .heroines-item .title {
        margin-bottom: 10px;
    }
    .heroines-item .desc {
        font-size: 18px;
        font-weight: 400;
    }
    .arrow-block {
        position: absolute;
        top: 60px;
        right: 30px;
        display: block;
    }
    article {
        flex-direction: column;
        padding: 0;
    }
    .single-women_in_science section {
        background: none !important;
    }
    .single-women_in_science article {
        margin-top: 50px;
    }
    .controls {
        flex-direction: column;
        padding: 10px;
    }
    .controls a {
        margin-top: 10px;
        font-size: 23px;
    }
    .page-content {
        margin: 20px;
    }
}