﻿/*
  Feature-Block 
  ----------------
*/
.feature-block1 {
    padding: 10px 0;
}

    .feature-block1 .features-item {
        background-color: var(--light-color);
        display: flex;
        align-items: center;
        padding: 20px;
        transition: 0.3s;
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        position: relative;
    }

        .feature-block1 .features-item i {
            font-size: 32px;
            padding-right: 10px;
            height: 32px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .feature-block1 .features-item .text-p {
            font-weight: 700;
            font-size: 16px;
            margin: 0;
            padding: 0;
        }

            .feature-block1 .features-item .text-p a {
                color: var(--heading-color);
                transition: 0.3s;
            }

        .feature-block1 .features-item:hover {
            border-color: var(--accent-color);
        }

            .feature-block1 .features-item:hover .text-p a {
                color: var(--accent-color);
            }
