:root {
    --color-1: #76aa6f;
    --color-2: #e9da5d;
}

body {
    font-family: 'Work Sans', sans-serif;
    font-size: 20px;
    line-height: 1.4;
}

a {
    color:#000;
}



header {
    background: #fff;
}

header .logo img {
    width: 200px;
}

header .main-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.mob-menu-button {
    display: none;
}

@media screen and (max-width: 760px) {

    header {
        position: relative;
        z-index: 3;
    }

    header .main-menu {
        display: none;
    }

    .mob-menu-button {
        display: block;
        cursor: pointer;
        width: 30px;
        height: 30px;
        background: url('./images/mob-menu.svg') center center no-repeat;
        background-size: 100%;
    }

    .mob-menu-button.active {
        background: url('./images/close-black.svg') center center no-repeat;
        background-size: 50%;
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #fff;
        z-index: 2;
        display: none;
        flex-direction: column;
        justify-content: center;
    }

    .mobile-menu.show-menu {
        display: flex;
    }

    .mobile-menu .main-menu {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 20px;
        text-align: center;
    }
}

.first-screen {
    position: relative;
}

.first-screen .main-img {
    display: flex;
    align-items: start;
    justify-content: center;
    height: 500px;
    overflow: hidden;
}



.first-screen .main-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-position: top;
}

.first-screen .text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.first-screen .text .main-title {
    font-size: 36px;
    color: #fff;
    font-weight: 600;
    max-width: 525px;
}

@media screen and (max-width: 760px) {
    .first-screen .main-img {
        height: 240px;
    }

    .first-screen .main-img img {
        object-position: top;
    }

    .first-screen .text .main-title {
        font-size: 22px;
        width: 240px;
    }
}

.update-date {
    background: #f6f6f6;
    padding: 15px 0;
}

.update-date .info {
    font-size: 14px;
    color: #4c4c4c;
}

@media screen and (max-width: 760px) {
    .update-date .info {
        text-align: center;
    }
}

.screen {
    padding: 80px 0
}

ul {
    padding-left: 0;
    margin-bottom: 0;
}

a:hover {
    color: #000;
    text-decoration: none;
}

.my-button {
    background: #bc83d8;
    color: #fff !important;
    padding: 0 20px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    gap: 10px;
    border-radius: 10px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none !important;
}

.top-sites .site-item:nth-child(1) {
    border: 2px solid #ff55ac;
}
.top-sites .site-item {
    box-shadow: 0 8px 20px #b4becd59;
    border-radius: 15px;
    margin-bottom: 20px;
    padding: 20px;
    position: relative;
}

.top-sites .preview {
    width: 100%;
}

.top-sites .site-item:nth-child(1) .number {
    background-color: #ff55ac;
}
.top-sites .site-item .number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #a337d9;
    border-radius: 12px 0;
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    z-index: 1;
}

.top-sites .site-item .text {
    font-size: 16px;
    line-height: 1.2
}

.top-sites .site-item .text p {
    margin-bottom: 15px
}

.top-sites .site-item .text li {
    list-style: none;
    padding-left: 25px;
    position: relative;
    margin-bottom: 15px
}

.top-sites .site-item .text li:before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    top: 2px;
    left: 0;
    background: url('./images/check.svg') center center no-repeat;
    background-size: 100%
}

.top-sites .site-item .link-more {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 16px
}

.top-sites .site-item .my-button {
    margin-bottom: 15px;
    animation: pulseColorSize 2s infinite ease-in-out
}

.top-sites .site-item .rating {
    text-align: center;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px
}

.top-sites .site-item .rating .stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px
}

.top-sites .site-item .rating .stars .star {
    width: 20px;
    height: 20px
}

.top-sites .site-item .rating .stars .star.full {
    background: url('./images/star-full.svg') 0 0 no-repeat;
    background-size: 20px
}

.top-sites .site-item .rating .stars .star.empty {
    background: url('./images/star-empty.svg') 0 0 no-repeat;
    background-size: 20px
}

.top-sites .site-item .rating .stars .star.partial {
    position: relative
}

.top-sites .site-item .rating .stars .star.partial .star-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background: url('./images/star-full.svg') 0 0 no-repeat;
    background-size: 20px;
    z-index: 1
}

.top-sites .site-item .rating .stars .star.partial .star-empty {
    width: 20px;
    height: 20px;
    background: url('./images/star-empty.svg') 0 0 no-repeat;
    background-size: 20px
}

.main-articles {
    box-shadow: 0 8px 20px #b4becd59;
    border-radius: 15px;
    padding: 20px
}

.main-articles .article-preview {
    margin-bottom: 15px
}

.main-articles .article-preview img {
    border-radius: 15px
}

.main-articles .block-h2,.main-articles .article-list .article-item {
    margin-bottom: 15px
}

.main-articles .article-list .article-item .category {
    text-transform: uppercase;
    font-size: 14px
}

.main-articles .article-list .article-item .date {
    font-size: 14px;
    color: #7f7f7f
}

.main-articles .article-list .article-item .title {
    font-weight: 600
}

.main-articles .article-list .article-item .arrow-link {
    display: block;
    width: 100%;
    height: 26px;
    background: url('./images/blog-arrow.svg') left center no-repeat
}

@keyframes pulseColorSize {
    0% {
        transform: scale(1);
        background-color: #bc83d8
    }

    50% {
        transform: scale(1.05);
        background-color: #a337d9
    }

    to {
        transform: scale(1);
        background-color: #bc83d8
    }
}

@media screen and (max-width: 760px) {
    #most-popular-project {
        margin-top: 20px;
    }

    .article-item {
        margin-top: 20px;
    }
}

.text-style h1,.text-style h2 {
    font-size: 32px;
    line-height: 36px;
    font-weight: 500;
    margin-bottom: 20px
}

@media screen and (max-width: 600px) {
    .text-style h1,.text-style h2 {
        font-size:24px;
        line-height: 30px
    }
}

.text-style h3 {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 20px
}

@media screen and (max-width: 600px) {
    .text-style h3 {
        font-size:22px;
        line-height: 28px
    }
}

.text-style h4 {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 10px
}

@media screen and (max-width: 600px) {
    .text-style h4 {
        font-size:22px;
        line-height: 28px
    }
}

.text-style p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 15px
}

@media screen and (max-width: 600px) {
    .text-style p {
        font-size:16px;
        line-height: 24px
    }
}

.text-style a {
    border-bottom: 1px solid
}

.text-style a:hover {
    border-bottom: 1px solid transparent
}

.text-style ul,.text-style ol {
    margin-left: 30px;
    margin-bottom: 20px
}

.text-style ul li,.text-style ol li {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 5px
}

@media screen and (max-width: 600px) {
    .text-style ul li,.text-style ol li {
        font-size:16px;
        line-height: 24px
    }
}

.text-style img {
    max-width: 100%;
    margin-bottom: 20px
}

.text-style .block-image {
    margin: 25px 0
}

.text-style .block-image img {
    margin-bottom: 10px
}

.text-style .block-image .img-caption {
    padding-left: 10px;
    border-left: 1px solid #222
}

.text-style .quotes {
    font-size: 20px;
    line-height: 26px;
    font-style: italic;
    padding-left: 20px;
    border-left: 1px solid #222;
    margin-bottom: 20px
}

@media screen and (max-width: 600px) {
    .text-style .quotes {
        font-size:16px;
        line-height: 22px;
        padding-left: 10px
    }
}

footer {
    background: #000;
    color: #fff;
    padding: 40px 0
}

footer .copy {
    text-align: center;
    font-size: 14px;
    color: #ccc
}

footer .main-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px
}

footer .main-menu a {
    color: #fff;
}

.block-h2 {
    font-size: 32px;
    font-weight: 600;
}

.article-text .brand-logo {
    max-width: 400px;
}

.articles-page .article-item .preview a {
    height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.articles-page .article-item .preview img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.articles-page .article-item .bottom {
    box-shadow: 0 8px 20px #b4becd59;
    border-radius: 0 0 15px 15px;
    padding: 15px
}

.articles-page .article-item .title {
    display: -webkit-box;
    display: -moz-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    -moz-line-clamp: 2;
    line-clamp: 2;
    height: 56px;
    text-overflow: ellipsis;
    overflow: hidden;
    font-weight: 600
}

.title-screen {
    background: #ffaeb7;
    color: #fff
}

.mobile-menu {
    display: none;
}

@media screen and (max-width: 600px) {
    footer .main-menu {
        flex-direction:column;
        gap: 10px
    }
}