header {
    padding: 0;
}
.main-projects .top-page {
    background-color: #1F4C50;
    padding: 33px 0 60px;
}

.main-projects .page-links a {
    color: #FFFFFF;
}

.main-projects .total-projects {
    font-size: 96px;
    line-height: 130%;
    color: #FFFFFF;
}

.main-projects .projects {
    padding: 40px 0 110px;
}

.main-projects .projects .projects-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 25px;
    row-gap: 57px;
}

.projects .project-card {
    max-width: 520px;
    box-shadow: 0 20px 26px 0 rgba(0, 0, 0, 0.25);
    border-radius: 20px;
}

.projects .project-card .project-card-header {
    height: 350px;
    width: 100%;
    position: relative;
}

.projects .project-card .project-card-header .card-bg {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 0;
}

.projects .project-card .project-card-header .overlay {
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
}

.projects .project-card .project-card-header .share-icon {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 9%;
    height: 48px;
    border-radius: 0 10px 0 0;
    background-color: #9BB2AA;
    display: flex;
    align-items: center;
    justify-content: center;
}

.projects .project-card .project-card-header .share-icon .icon-content {
    width: 21px;
    height: 24px;
    display: flex;
    padding: 3px;
}

.projects .project-card .project-card-header .share-icon .icon-content img {
    width: 100%;
}

.projects .project-card .project-card-body {
    padding: 24px;
}

.projects .project-card .project-card-body .project-title {
    color: #D0A860;
    font-size: 36px;
    margin-bottom: 32px;
}

.projects .project-card .project-card-body .details-content {
    margin-bottom: 45px;
}

.projects .project-card .project-card-body .card-item:not(:last-child) {
    margin-bottom: 16px;
}

.projects .project-card .project-card-body .card-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.projects .project-card .project-card-body .card-item .list-title {
    font-size: 22px;
    line-height: 40px;
    color: #1F4C50;
}

.projects .project-card .project-card-body .icons-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}

.projects .project-card .project-card-body .icons-list .icon-with-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.projects .project-card .project-card-body .icons-list .line-between {
    height: 53px;
    border: 0.5px solid rgba(28, 47, 52, 0.5);
}

.projects .project-card .project-card-body .icons-list .icon-with-text .icon-content {
    width: 28px;
    height: 28px;
}

.projects .project-card .project-card-body .icons-list .icon-with-text .icon-content img {
    width: 100%;
}

.projects .project-card .project-card-body .icons-list .icon-with-text .text {
    font-size: 13px;
    color: #2D3739;
    margin-top: 7px;
}

.pagenation {
    width: 153px;
    height: 32px;
    margin: 0 auto 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pagenation .box {
    background-color: #E6E6E6;
    color: #2D3739;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 100%;
    cursor: pointer;
}

.pagenation .box.dark-box {
    background-color: #2D3739;
    color: #E6E6E6;
}

.pagenation .box.box-arr {
    width: 32px;
    height: 100%;
}

.pagenation .box.box-arr .arrow-content {
    width: 9px;
    height: 100%;
}

.pagenation .box.box-arr .arrow-content img {
    width: 100%;
}

@media (max-width: 1840px) {
    .projects .project-card .project-card-body .icons-list {
        padding: 0;
    }
    .projects .project-card .project-card-body .icons-list .icon-with-text .text {
        font-size: 10px;
    }
}

@media (max-width: 1400px) {
    .projects .project-card .project-card-body .icons-list .icon-with-text .text {
        font-size: 9px;
    }
}

@media (max-width: 1200px) {
    .main-projects .projects .projects-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .main-projects .total-projects {
        font-size: 72px;
        line-height: 120%;
    }
}

@media (max-width: 767px) {
    .main-projects .total-projects {
        font-size: 64px;
    }
    .main-projects .projects .projects-content {
        grid-template-columns: repeat(1, 1fr);
    }
    .projects .project-card .project-card-body .icons-list .icon-with-text:not(:last-child)::after {
        left: -25px;
    }
}

@media (max-width: 576px) {
    .main-projects .total-projects {
        font-size: 44px;
        text-align: center;
    }
    .projects .project-card .project-card-body {
        padding: 18px;
    }
    .projects .project-card .project-card-header {
        height: 260px;
    }
    .projects .project-card .project-card-header .logo-with-text .logo-content {
        width: 160px;
        margin-bottom: 4px;
    }
    .projects .project-card .project-card-header .share-icon {
        height: 35.5px;
        border-radius: 0 7px 0 0;
    }
    .projects .project-card .project-card-header .logo-with-text .project-logo-name {
        font-size: 24px;
    }
    .projects .project-card .project-card-body .project-title {
        font-size: 33px;
        margin-bottom: 22px;
    }
    .projects .project-card .project-card-body .card-item .list-title {
        font-size: 20px;
        line-height: 30px;
    }
    .projects .project-card .project-card-body .icons-list .icon-with-text:not(:last-child)::after {
        left: -25px;
        height: 47px;
    }
}

@media (max-width: 460px) {
    .projects .project-card .project-card-body .icons-list .icon-with-text:not(:last-child)::after {
        left: -25%;
        height: 47px;
    }
}