﻿
.home-contruct {
    position: relative;
    padding: 76px 0;
    background-color: #f8f8f8;
    padding-bottom: 78px;
}


    .home-contruct .contruct.content-item {
        margin-bottom: 30px;
    }

    .home-contruct .decor {
        position: absolute;
        bottom: 0;
        right: 0;
        pointer-events: none;
    }

    .home-contruct .heading-top {
        font-size: 35px;
        color: #010945;
        position: relative;
        margin: 0;
        margin-top: 10px;
        font-family: 'OpenB';
        padding-bottom: 16px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .home-contruct .descript-top {
        position: relative;
        display: block;
        padding: 0 16%;
        color: #fff;
        font-size: 18px;
        text-align: center;
        line-height: calc(100% + 9px);
    }


    .home-contruct .content {
        margin-top: 71px;
    }


    .home-contruct .btn-more-wrap {
        display: flex;
        margin-top: 48px;
        align-items: center;
        justify-content: center;
    }

    .home-contruct .content .btn-more {
        font-size: 14px;
        color: #4A4A4A;
        position: relative;
        padding: 14px 13px;
        overflow: hidden;
        user-select: none;
        transition: all linear .2s;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .home-contruct .content .btn-more:hover .decor {
            right: -194px;
        }

        .home-contruct .content .btn-more::before {
            content: '';
            position: absolute;
            width: 99%;
            height: 96%;
            pointer-events: none;
            user-select: none;
            border: 1px solid #b8b8b8;
        }

        .home-contruct .content .btn-more:hover span {
            color: #fff;
        }

        .home-contruct .content .btn-more span {
            position: relative;
            color: #4A4A4A;
            z-index: 1;
            transition: all linear .2s;
            font-weight: bold;
        }

        .home-contruct .content .btn-more .decor {
            width: 255%;
            height: 400%;
            top: -147px;
            transform: rotate(-34deg);
            position: absolute;
            right: -319px;
            background-color: #022155;
            transition: all ease-in-out .3s;
        }

        .home-contruct .content .btn-more i {
            padding-left: 35px;
            position: relative;
            z-index: 1;
        }

    .home-contruct .decor-2 {
        position: absolute;
        top: 0;
        left: 0;
        background-color: #2a2f3582;
        height: 577px;
        width: 100%;
    }

.home-contruct .decor-text img{
    /* width: 14%; */
}
    .home-contruct .content .col {
        padding: 0 10px;
        z-index: 999999;
    }
.project-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.project-item:hover .project-title{
    color: var(--default-color-3);
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}
.project-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.project-img {
    display: block;
    overflow: hidden;
    height: 220px;
    background: #f0f0f0;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-item:hover .project-img img {
    transform: scale(1.05);
}

.project-content {
    padding: 16px 18px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: 'OpenM';
}

.project-title {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.project-title:hover {
    color: var(--default-color-3);
}

.project-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}


    .home-contruct .decor-text {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    /*selection*/
    .home-contruct .heading-top::-moz-selection, .home-contruct .descript-top::-moz-selection {
        background-color: var(--bg-selection);
        color: var(--color-selection);
    }

    .home-contruct .heading-top::selection,
    .home-contruct .descript-top::selection {
        background-color: var(--bg-selection);
        color: var(--color-selection);
    }
@media (max-width:739px){
    .project-title{
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        display: -webkit-box;
        font-size: 16px;
    }
    .project-content{
        padding: 8px 13px;
    }
    .project-desc{
        margin-top: 0px !important;
    }.home-contruct .heading-top{
        font-size: 25px;
    }
    .home-contruct .content{
        margin-top: 33px;
    }.home-contruct .content .col{
        margin-bottom:15px;
        z-index: 1;
    }
    .home-contruct{
        padding-bottom: 37px;
    }
    .home-contruct .btn-more-wrap{
        margin-top: 20px;
    }
}