.page-about h1
{
    color: #ffffff;
    font-family: "Inter-Tight", sans-serif;
    font-weight: 700;
    font-size: 80px;
    line-height: 1.4;
    margin: 80px 0 96px;
}

.page-about .col-5>p
{
    font-size: 24px;
    font-weight: 400;
    line-height: 1.7;
}

.page-about .block-with-photo
{
    height: 1120px;
}

.page-about .frusia-photo
{
    border-radius: 32px;
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    top: 320px;
    background-image: url("../../imgs/pages/site/about/frusia.jpg");
    background-repeat: no-repeat;
    background-size: 535px;
    width: 535px;
    height: 793px;
}

/* Add keyframes for the pulsing animation */
@keyframes pulse {
    0% {
        opacity: 0.85;
    }
    50% {
        opacity: 0.55; /* Slightly lower opacity */
    }
    100% {
        opacity: 0.85;
    }
}

/* Add keyframes for the scaling animation */
@keyframes scale-up-down {
    0% {
        /* Combine existing transform with scale */
        transform: translateX(-50%) scale(1);
    }
    50% {
        /* Scale slightly larger */
        transform: translateX(-50%) scale(1.09);
    }
    100% {
        /* Back to original scale */
        transform: translateX(-50%) scale(1);
    }
}

.page-about .blured-shape
{
    width: 60%;
    height: 128px;
    border-radius: 64px;
    position: absolute;
    /* Set initial transform - scale is handled by animation */
    transform: translateX(-50%);
    left: 52%;
    top: 320px;
    background-color: #5B40FE;
    filter: blur(64px);
    /* Opacity is handled by animation */
    /* Apply both animations, separated by comma */
    animation:
        pulse 5s ease-in-out infinite alternate, /* Opacity pulse */
        scale-up-down 5s ease-in-out infinite alternate; /* Scaling */
    /* Ensure scaling happens from the center */
    transform-origin: center;
}

.page-about .tile
{
    border-radius: 32px;
    color: #ffffff;
    padding: 32px;
    display: block;
    text-decoration: none;
    transition: all 0.4s ease-in-out;
}

.page-about a.tile:hover
{
    transform: scale(1.025);
}

.page-about .tile,
.page-about .tile:hover
{
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid #3f3f3f;
    color: #ffffff;
    padding: 32px;
    position: relative;
    text-decoration: none;
    margin-bottom: 24px;
}

.page-about .tile h3
{
    color: #ffffff;
    font-size: 48px;
    font-family: "Inter-Tight", sans-serif;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 16px 0;
}

.page-about .tile p,
.page-about .tile li
{
    color: #FFFFFF;
    font-size: 24px;
    font-family: "Inter-Tight", sans-serif;
    font-weight: 500;
    line-height: 1.6;
}

.page-about .tile a
{
    color: #FECE01;
    font-weight: 700;
    text-decoration: none;
}

.page-about .tile a.pill
{
    display: inline-block;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.24;
    font-weight: 700;
    text-decoration: none;
    padding: 8px 36px 8px 16px;
    background-image: url("../../imgs/pages/site/about/arrow-right.svg");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center right 16px;
    border-radius: 32px;
    border: 1px solid white;
    white-space: nowrap;
    margin-right: 8px;
    margin-bottom: 8px;
    transition: all 0.4s ease;
}

.page-about .tile a.pill:hover
{
    transform: scale(1.05);
}

.page-about .tile .round-btn-arrow-right
{
    width: 72px;
    height: 72px;
    background-image: url("../../imgs/pages/site/index/round-btn-arrow-right.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    position: absolute;
    bottom: 32px;
    left: 32px;
    transition: transform 0.3s ease;
}

.page-about .tile .round-btn-arrow-right:hover
{
    transform: scale(1.2);
}

.page-about ul
{
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.page-about li
{
    position: relative;
    /* Make li the positioning context */
    padding-left: 36px;
    /* Create space for the marker (adjust value as needed) */
    margin-bottom: 24px;
    /* Add some space between list items if desired */
}

.page-about li:before
{
    content: '';
    /* Required for ::before */
    display: inline-block;

    /* --- SVG marker settings --- */
    background-image: url('../../imgs/pages/site/about/sparkle.svg');
    /* Path to your SVG */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;

    /* --- Marker positioning --- */
    position: absolute;
    /* Position absolutely relative to the li */
    left: 0;
    /* Position at the beginning of the padding */
    top: 8px;
    /* Adjust for vertical alignment (e.g., 8px or 0.3em) */

    /* --- Marker area size --- */
    width: 24px;
    /* Marker width */
    height: 24px;
    /* Marker height */
}

/* >= 1400 (XXL) */
@media (min-width: 1400px)
{
    .page-about .blured-shape
    {
        width: 54%;
    }
}

/* >= 1200 (XL) and <= 1400 (XXL) */
@media (min-width: 1200px) and (max-width: 1400px)
{
    .page-about h1
    {
        font-size: 72px;
        /* Keep or adjust as needed for this range */
        line-height: 1.4;
        margin-top: 64px;
        margin-bottom: 232px;
    }

    .page-about .tile h3
    {
        font-size: 48px;
        margin: 0 0 16px 0;
    }

    .page-about .tile p,
    .page-about .tile li
    {
        font-size: 24px;
    }
}

/* >= 992 (LG) and <= 1200 (XL) */
@media (min-width: 992px) and (max-width: 1200px)
{
    .page-about h1
    {
        font-size: 68px;
        /* Keep or adjust as needed for this range */
        line-height: 1.4;
        margin-top: 64px;
        margin-bottom: 232px;
    }

    .page-about .tile h3
    {
        font-size: 40px;
        margin: 0 0 16px 0;
    }

    .page-about .tile p,
    .page-about .tile li
    {
        font-size: 24px;
    }
}

/* >= 768 (MD) and <= 992 (LG) */
@media (min-width: 768px) and (max-width: 992px)
{
    .page-about h1
    {
        font-size: 60px;
        /* Keep or adjust as needed for this range */
        line-height: 1.4;
        margin-top: 64px;
        margin-bottom: 240px;
    }

    .page-about .blured-shape
    {
        filter: blur(56px);
    }

    .page-about .tile h3
    {
        font-size: 38px;
        margin: 0 0 16px 0;
    }

    .page-about .tile p,
    .page-about .tile li
    {
        font-size: 20px;
    }

    .page-about .tile.behance
    {
        padding-bottom: 87px;
    }
}

/* <= 768 (MD) */
@media (max-width: 768px)
{
    .page-about h1
    {
        font-size: 56px;
        line-height: 1.4;
        margin-top: 64px;
        margin-bottom: 128px;
    }

    .page-about .tile h3
    {
        font-size: 36px;
        margin: 0 0 16px 0;
    }

    .page-about .tile p,
    .page-about .tile li
    {
        font-size: 20px;
    }

    .page-about .tile.behance
    {
        padding-bottom: 87px;
    }
}

/* >= 576 (SM) and <= 768 (MD) */
@media (min-width: 576px) and (max-width: 768px)
{
    .page-about h1
    {
        font-size: 48px;
        margin-top: 64px;
        margin-bottom: 256px;
    }

    .page-about .tile h3
    {
        font-size: 32px;
        margin: 0 0 16px 0;
    }

    .page-about .tile p,
    .page-about .tile li
    {
        font-size: 20px;
    }

    .page-about .frusia-photo
    {
        top: 300px;
    }

    .page-about .block-with-photo
    {
        height: 1024px;
    }

    .page-about .frusia-photo
    {
        background-size: 480px;
        width: 480px;
        height: 711px;
    }
}

/* <= 576px (XS) */
@media (max-width: 576px)
{
    .page-about h1
    {
        font-size: 42px;
        margin-top: 64px;
        margin-bottom: 320px;
    }

    .page-about .blured-shape
    {
        width: 90%;
        top: 280px;
        filter: blur(50px);
    }

    .page-about .tile h3
    {
        font-size: 28px;
        margin: 0 0 16px 0;
    }

    .page-about .tile p,
    .page-about .tile li
    {
        font-size: 20px;
    }

    .page-about .block-with-photo
    {
        height: 960px;
    }

    .page-about .frusia-photo
    {
        top: 280px;
    }

    .page-about .frusia-photo
    {
        background-size: 440px;
        width: 440px;
        height: 652px;
    }
}

/* <= 540px */
@media (max-width: 540px)
{
    .page-about .tile a.pill
    {
        width: 100%;
    }
}

/* <= 460px */
@media (max-width: 460px)
{
    .page-about h1
    {
        font-size: 32px;
        margin-top: 40px;
        margin-bottom: 240px;
    }

    .page-about .blured-shape
    {
        width: 98%;
        top: 256px;
        filter: blur(46px);
    }

    .page-about .tile,
    .page-about .tile:hover
    {
        padding-top: 24px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .page-about .tile h3
    {
        font-size: 24px;
        margin: 0 0 16px 0;
    }

    .page-about .tile p,
    .page-about .tile li
    {
        font-size: 20px;
    }

    .page-about .block-with-photo
    {
        height: 760px;
    }

    .page-about .frusia-photo
    {
        top: 240px;
    }

    .page-about .frusia-photo
    {
        background-size: 360px;
        width: 360px;
        height: 534px;
    }

    .page-about .row>*
    {
        padding-left: 0;
        padding-right: 0;
    }
}

/* <= 400px */
@media (max-width: 400px)
{
    .page-about .tile a.pill
    {
        background: none;
        padding: 8px 8px;
    }
}