/* =========================================================
ABOUT COMPANY
========================================================= */

.about-company
{
    position: relative;

    width: 100%;

    padding: 100px 20px;

    background:
    linear-gradient(
        180deg,
        #08111f 0%,
        #0b1220 100%
    );

    overflow: hidden;
}


/* =========================================================
HEADER
========================================================= */

.about-header
{
    max-width: 900px;

    margin: 0 auto 70px;

    text-align: center;
}

.about-header small
{
    display: inline-block;

    margin-bottom: 14px;

    padding: 8px 18px;

    border-radius: 50px;

    background: rgba(37,99,235,.12);

    border: 1px solid rgba(59,130,246,.20);

    color: #60a5fa;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.about-header h2
{
    font-size: 48px;

    line-height: 1.1;

    font-weight: 800;

    color: #ffffff;

    margin-bottom: 22px;
}

.about-header p
{
    font-size: 17px;

    line-height: 1.8;

    color: rgba(255,255,255,.72);
}


/* =========================================================
CONTENT
========================================================= */

.about-content
{
    width: 100%;

    max-width: 1400px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 28px;
}


/* =========================================================
BLOCK
========================================================= */

.about-block
{
    position: relative;

    padding: 38px;

    border-radius: 24px;

    background:
    linear-gradient(
        180deg,
        rgba(17,26,46,.95) 0%,
        rgba(10,18,34,.95) 100%
    );

    border: 1px solid rgba(255,255,255,.06);

    backdrop-filter: blur(10px);

    overflow: hidden;

    transition: .35s ease;
}


/* glow */
.about-block::before
{
    content: "";

    position: absolute;

    top: -120px;

    right: -120px;

    width: 220px;

    height: 220px;

    background:
    radial-gradient(
        circle,
        rgba(59,130,246,.22) 0%,
        transparent 70%
    );

    pointer-events: none;
}


/* hover */
.about-block:hover
{
    transform: translateY(-6px);

    border-color: rgba(59,130,246,.22);
}


/* =========================================================
TITLES
========================================================= */

.about-block h3
{
    font-size: 28px;

    line-height: 1.2;

    font-weight: 700;

    color: #ffffff;

    margin-bottom: 24px;
}

.about-block h4
{
    font-size: 18px;

    line-height: 1.4;

    font-weight: 700;

    color: #60a5fa;

    margin-top: 30px;

    margin-bottom: 14px;
}


/* =========================================================
TEXT
========================================================= */

.about-block p
{
    color: rgba(255,255,255,.74);

    font-size: 15px;

    line-height: 1.9;

    margin-bottom: 18px;
}


/* =========================================================
LISTS
========================================================= */

.about-block ul
{
    display: flex;

    flex-direction: column;

    gap: 14px;

    padding: 0;

    margin: 0;

    list-style: none;
}

.about-block ul li
{
    position: relative;

    padding-left: 24px;

    color: rgba(255,255,255,.76);

    font-size: 15px;

    line-height: 1.7;
}


/* bullet glow */
.about-block ul li::before
{
    content: "";

    position: absolute;

    left: 0;

    top: 11px;

    width: 8px;

    height: 8px;

    border-radius: 50%;

    background: #3b82f6;

    box-shadow:
    0 0 12px rgba(59,130,246,.8);
}


/* =========================================================
INSTITUTIONAL BLOCK
========================================================= */

.institutional-text
{
    grid-column: span 2;

    background:
    linear-gradient(
        135deg,
        rgba(37,99,235,.12) 0%,
        rgba(17,26,46,.96) 100%
    );

    border: 1px solid rgba(59,130,246,.16);
}


/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width: 1200px)
{
    .about-content
    {
        grid-template-columns: 1fr;
    }

    .institutional-text
    {
        grid-column: span 1;
    }
}


/* =========================================================
TABLET
========================================================= */

@media(max-width: 768px)
{
    .about-company
    {
        padding: 70px 16px;
    }

    .about-header
    {
        margin-bottom: 50px;
    }

    .about-header h2
    {
        font-size: 34px;
    }

    .about-header p
    {
        font-size: 15px;
    }

    .about-content
    {
        gap: 20px;
    }

    .about-block
    {
        padding: 26px;
    }

    .about-block h3
    {
        font-size: 24px;
    }

    .about-block h4
    {
        font-size: 16px;
    }

    .about-block p,
    .about-block ul li
    {
        font-size: 14px;
    }
}


/* =========================================================
MOBILE
========================================================= */

@media(max-width: 480px)
{
    .about-header h2
    {
        font-size: 28px;
    }

    .about-block
    {
        padding: 22px;
    }

    .about-block h3
    {
        font-size: 21px;
    }
}