.visitor-profile-wrapper {
    padding-block: 5%;
    overflow: hidden;

    h2 {
        font-size: clamp(1.5625rem, 1.3352rem + 1.1364vw, 2.1875rem);
        font-weight: 700;

        span {
            font-size: clamp(1.875rem, 1.5341rem + 1.7045vw, 2.8125rem);
        }

        &:hover {
            color: var(--primary-color);

            span {
                color: var(--secondry-color);
            }
        }
    }

    img {
        border-style: solid;
        border-width: 10px 10px 10px 10px;
        border-color: #FFF;
        box-shadow: 64px 64px 0 -17px #078243;
        max-height: 600px;
        text-align: center;
        margin: 0 auto;
        display: block;
    }

    ul {


        margin-top: 20px;

        li {
            display: flex;
            justify-content: start;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
            font-family: "Poppins", Sans-serif;
            font-size: 16px;
            font-weight: 400;
            margin-top: calc(15px / 2);
            padding-bottom: calc(15px / 2);

            span {
                flex-shrink: 0;
                color: var(--primary-color);
            }
        }
    }
}

@media (max-width:767px) {
    .visitor-profile-wrapper {
        img {
            margin-bottom: 70px;
            box-shadow: 44px 44px 0 -7px #078243;
        }
    }
}