/* =====================================================
   PERMIT TO CARRY - PTCFOR SECTION
===================================================== */

.ptcfor-section {
    width: 100%;
    background: #eeeeee;
    box-sizing: border-box;
    padding: 70px 20px 80px;

    font-family: 'Poppins', sans-serif;
}


/* =====================================================
   MAIN CONTAINER
===================================================== */

.ptcfor-container {
    width: 100%;
    max-width: 925px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;

    column-gap: 55px;

    align-items: center;
}


/* =====================================================
   LEFT SIDE
===================================================== */

.ptcfor-intro {
    width: 100%;
    box-sizing: border-box;
}


/* Small label */

.ptcfor-label {
    display: block;

    margin-bottom: 35px;

    color: #111820;

    font-size: 10px;
    font-weight: 500;

    line-height: 1;

    letter-spacing: 0;
}


/* Main heading */

.ptcfor-intro h2 {
    margin: 0;

    color: #111820;

    font-family: 'Poppins', sans-serif;

    font-size: 62px;
    font-weight: 700;

    line-height: 1.05;

    letter-spacing: -2px;
}


/* Description */

.ptcfor-intro > p {
    width: 100%;
    max-width: 350px;

    margin: 32px 0 0;

    color: #111820;

    font-size: 13px;
    font-weight: 400;

    line-height: 1.35;
}


/* =====================================================
   BUTTONS
===================================================== */

.ptcfor-buttons {
    width: 190px;

    margin-top: 60px;

    display: flex;
    flex-direction: column;

    gap: 5px;
}


.ptcfor-download-btn,
.ptcfor-inquire-btn {
    width: 190px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;

    border-radius: 3px;

    text-decoration: none;

    font-family: 'Poppins', sans-serif;

    font-size: 10px;
    font-weight: 600;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        opacity 0.25s ease;
}


/* Download */

.ptcfor-download-btn {
    background: #111820;
    color: #ffffff;
}


/* Inquire */

.ptcfor-inquire-btn {
    background: #111820;
    color: #ffffff;
}


/* Hover */

.ptcfor-download-btn:hover,
.ptcfor-inquire-btn:hover {
    transform: translateY(-2px);

    opacity: 0.9;

    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}


/* =====================================================
   DOCUMENT CARD
===================================================== */

.ptcfor-documents {
    width: 100%;

    box-sizing: border-box;

    background: #ffffff;

    border: 1px solid #f0a06b;

    border-radius: 13px;

    padding: 30px 28px 25px;

    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.04);
}


/* Card title */

.ptcfor-documents > h3 {
    margin: 0 0 35px;

    color: #111820;

    font-family: 'Poppins', sans-serif;

    font-size: 31px;
    font-weight: 700;

    line-height: 1.2;
}


/* =====================================================
   DOCUMENT ITEMS
===================================================== */

.ptcfor-document-item {
    margin: 0 0 25px;
}


.ptcfor-document-item:last-child {
    margin-bottom: 0;
}


/* Document heading */

.ptcfor-document-item h4 {
    margin: 0 0 18px;

    color: #111820;

    font-family: 'Poppins', sans-serif;

    font-size: 15px;
    font-weight: 600;

    line-height: 1.3;
}


/* Document description */

.ptcfor-document-item p {
    margin: 0;

    color: #111820;

    font-family: 'Poppins', sans-serif;

    font-size: 10px;
    font-weight: 400;

    line-height: 1.45;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .ptcfor-section {
        padding: 60px 25px 70px;
    }


    .ptcfor-container {
        max-width: 760px;

        column-gap: 35px;
    }


    .ptcfor-intro h2 {
        font-size: 50px;
    }


    .ptcfor-intro > p {
        max-width: 310px;
    }


    .ptcfor-documents {
        padding: 28px 24px;
    }


    .ptcfor-documents > h3 {
        font-size: 27px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

    .ptcfor-section {
        padding: 60px 18px 70px;
    }


    .ptcfor-container {
        grid-template-columns: 1fr;

        row-gap: 50px;

        max-width: 550px;
    }


    /* Left side */

    .ptcfor-intro {
        text-align: center;
    }


    .ptcfor-label {
        margin-bottom: 20px;

        font-size: 10px;
    }


    .ptcfor-intro h2 {
        font-size: 48px;

        line-height: 1.05;

        letter-spacing: -1.5px;
    }


    .ptcfor-intro > p {
        max-width: 420px;

        margin: 25px auto 0;

        font-size: 13px;

        line-height: 1.6;
    }


    /* Buttons */

    .ptcfor-buttons {
        width: 190px;

        margin: 35px auto 0;
    }


    /* Documents */

    .ptcfor-documents {
        padding: 28px 24px;
    }


    .ptcfor-documents > h3 {
        margin-bottom: 30px;

        font-size: 27px;
    }


    .ptcfor-document-item {
        margin-bottom: 25px;
    }


    .ptcfor-document-item h4 {
        margin-bottom: 12px;

        font-size: 14px;
    }


    .ptcfor-document-item p {
        font-size: 11px;

        line-height: 1.55;
    }

}


/* =====================================================
   SMALL PHONES
===================================================== */

@media (max-width: 480px) {

    .ptcfor-section {
        padding: 50px 15px 60px;
    }


    .ptcfor-intro h2 {
        font-size: 40px;

        letter-spacing: -1px;
    }


    .ptcfor-intro > p {
        font-size: 12px;
    }


    .ptcfor-documents {
        padding: 25px 20px;
    }


    .ptcfor-documents > h3 {
        font-size: 24px;
    }


    .ptcfor-document-item h4 {
        font-size: 13px;
    }


    .ptcfor-document-item p {
        font-size: 10px;
    }

}