/* ==========================================================
   IMPORTANT NOTES
   ========================================================== */

.nv-important-notes {

    width: 100%;

    padding: 80px 0;

    background:
        #252800;

    color: #ffffff;

    font-family:
        "Montserrat",
        Arial,
        sans-serif;

    position: relative;

    overflow: hidden;
}


/* ==========================================================
   BACKGROUND DECORATION
   ========================================================== */

.nv-important-notes::before {

    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -180px;
    top: -180px;

    border-radius: 50%;

    border: 70px solid rgba(245,104,69,0.055);
}


.nv-important-notes::after {

    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    left: -140px;
    bottom: -140px;

    border-radius: 50%;

    border: 45px solid rgba(255,255,255,0.035);
}


/* ==========================================================
   CONTAINER
   ========================================================== */

.nv-notes-container {

    width: 92%;

    max-width: 1250px;

    margin: 0 auto;

    position: relative;

    z-index: 1;
}


/* ==========================================================
   HEADING
   ========================================================== */

.nv-notes-heading {

    max-width: 750px;

    margin: 0 auto 45px;

    text-align: center;
}


.nv-notes-label {

    display: inline-block;

    margin-bottom: 12px;

    color: #f56845;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}


.nv-notes-heading h2 {

    margin: 0 0 13px;

    color: #ffffff;

    font-size: 40px;

    line-height: 1.2;

    font-weight: 700;
}


.nv-notes-heading h2 span {

    color: #f56845;
}


.nv-notes-heading p {

    max-width: 650px;

    margin: 0 auto;

    color: rgba(255,255,255,0.65);

    font-size: 13px;

    line-height: 1.7;
}


/* ==========================================================
   NOTES GRID
   ========================================================== */

.nv-notes-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 12px 20px;
}


/* ==========================================================
   INDIVIDUAL NOTE
   ========================================================== */

.nv-note {

    min-height: 72px;

    padding: 14px 17px;

    display: flex;

    align-items: flex-start;

    gap: 14px;

    background:
        rgba(255,255,255,0.045);

    border: 1px solid rgba(255,255,255,0.075);

    border-radius: 5px;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}


.nv-note:hover {

    background:
        rgba(255,255,255,0.075);

    border-color:
        rgba(245,104,69,0.30);

    transform: translateY(-2px);
}


/* ==========================================================
   NOTE NUMBER
   ========================================================== */

.nv-note-number {

    width: 31px;
    height: 31px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f56845;

    color: #ffffff;

    font-size: 9px;

    font-weight: 700;
}


/* ==========================================================
   NOTE TEXT
   ========================================================== */

.nv-note p {

    margin: 0;

    padding-top: 2px;

    color: rgba(255,255,255,0.86);

    font-size: 11px;

    line-height: 1.65;

    font-weight: 400;
}


.nv-note p strong {

    color: #ffffff;

    font-weight: 700;
}


/* ==========================================================
   FOOTER NOTICE
   ========================================================== */

.nv-notes-footer {

    margin-top: 25px;

    padding: 18px 20px;

    display: flex;

    align-items: center;

    gap: 14px;

    background:
        rgba(245,104,69,0.09);

    border: 1px solid rgba(245,104,69,0.20);

    border-radius: 5px;
}


.nv-notes-footer-icon {

    width: 34px;
    height: 34px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f56845;

    color: #ffffff;

    font-size: 17px;

    font-weight: 700;
}


.nv-notes-footer strong {

    display: block;

    margin-bottom: 3px;

    color: #f56845;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 1px;
}


.nv-notes-footer p {

    margin: 0;

    color: rgba(255,255,255,0.65);

    font-size: 10px;

    line-height: 1.6;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 800px) {

    .nv-important-notes {

        padding: 65px 0;
    }


    .nv-notes-grid {

        grid-template-columns: 1fr;

        gap: 10px;
    }


    .nv-notes-heading h2 {

        font-size: 34px;
    }

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 600px) {

    .nv-important-notes {

        padding: 55px 0;
    }


    .nv-notes-container {

        width: 90%;
    }


    .nv-notes-heading {

        margin-bottom: 30px;
    }


    .nv-notes-heading h2 {

        font-size: 29px;
    }


    .nv-notes-heading p {

        font-size: 12px;

        line-height: 1.7;
    }


    .nv-note {

        padding: 13px;

        gap: 11px;
    }


    .nv-note-number {

        width: 28px;
        height: 28px;

        font-size: 8px;
    }


    .nv-note p {

        font-size: 10px;

        line-height: 1.65;
    }


    .nv-notes-footer {

        align-items: flex-start;

        padding: 15px;
    }

}


/* ==========================================================
   SMALL MOBILE
   ========================================================== */

@media (max-width: 400px) {

    .nv-notes-heading h2 {

        font-size: 26px;
    }


    .nv-note p {

        font-size: 9.5px;
    }

}