/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
/*.features .features-image {
    position: relative;
    min-height: 400px;
}

    .features .features-image img {
        position: absolute;
        inset: 0;
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

.features .features-item h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.features .features-item i {
    font-size: 48px;
    color: var(--accent-color);
    margin-right: 20px;
    line-height: 0;
}

.features .features-item p {
    font-size: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin: 0;
}*/


/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
/*.team .team-member {
    background-color: var(--light-color);
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

    .team .team-member .member-img {
        position: relative;
        overflow: hidden;
    }

    .team .team-member .social {
        position: absolute;
        left: 0;
        bottom: 30px;
        right: 0;
        opacity: 0;
        transition: ease-in-out 0.3s;
        text-align: center;
    }

        .team .team-member .social a {
            background: color-mix(in srgb, var(--contrast-color), transparent 25%);
            color: color-mix(in srgb, var(--default-color), transparent 20%);
            margin: 0 3px;
            border-radius: 4px;
            width: 36px;
            height: 36px;
            transition: ease-in-out 0.3s;
            display: inline-flex;
            justify-content: center;
            align-items: center;
        }

            .team .team-member .social a:hover {
                color: var(--contrast-color);
                background: var(--accent-color);
            }

        .team .team-member .social i {
            font-size: 18px;
            line-height: 0;
        }

    .team .team-member .member-info {
        padding: 25px 15px;
    }

        .team .team-member .member-info h4 {
            font-weight: 700;
            margin-bottom: 5px;
            font-size: 18px;
        }

        .team .team-member .member-info span {
            display: block;
            font-size: 13px;
            font-weight: 400;
            color: color-mix(in srgb, var(--default-color), transparent 40%);
        }

    .team .team-member:hover .social {
        opacity: 1;
        bottom: 15px;
    }*/


/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
/*.portfolio-details .portfolio-details-slider img {
    width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

    .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background-color: color-mix(in srgb, var(--default-color), transparent 85%);
        opacity: 1;
    }

    .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
        background-color: var(--accent-color);
    }

.portfolio-details .portfolio-info {
    background-color: var(--light-color);
    padding: 30px;
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

    .portfolio-details .portfolio-info h3 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    }

    .portfolio-details .portfolio-info ul {
        list-style: none;
        padding: 0;
        font-size: 15px;
    }

        .portfolio-details .portfolio-info ul li + li {
            margin-top: 10px;
        }

.portfolio-details .portfolio-description {
    padding-top: 30px;
}

    .portfolio-details .portfolio-description h2 {
        font-size: 26px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .portfolio-details .portfolio-description p {
        padding: 0;
        color: color-mix(in srgb, var(--default-color), transparent 30%);
    }*/
