@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary-color: #000000;
    --second-color: #3e3d64;
    --red-color: #dc3545;
    --text-gold: rgb(196, 130, 47);
    --font-montserrat: 'Montserrat';
    --font-poppins: 'Poppins', sans-serif;
    --text-color: #939393;
}


body {
    font-family: var(--font-poppins);
    font-size: 16px;
    font-weight: 400;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
}

p {
    margin: 0;
}

a {
    text-decoration: none;
    transition: all .4s ease;
    color: var(--red-color);
}

label {
    cursor: pointer;
}

a:hover {
    text-decoration: none;
    outline: none;
}

.decoration-unset {
    text-decoration: revert;
}

input:focus {
    box-shadow: 0 0 0 !important;
    outline: none;
}

::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #bfbfbf;
}

::-moz-placeholder {
    /* Firefox 19+ */
    color: #bfbfbf;
}

:-ms-input-placeholder {
    /* IE 10+ */
    color: #bfbfbf;
}

:-moz-placeholder {
    /* Firefox 18- */
    color: #bfbfbf;
}


a.text-dark:hover {
    color: var(--text-gold) !important;
}

/* --------------------------------- Button --------------------------------- */
.primary-btn {
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 20px;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 600;
    font-size: .8125em;
    letter-spacing: .1em;
}

.primary-btn:hover {
    background-color: var(--red-color);
}





/* --------------------------------- Section Title --------------------------------- */
.nlda_section_title_area {
    padding-top: 50px;
}

.nlda_section_title h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
}


/* --------------------------------- Project Area --------------------------------- */
.nlda_project_brief_area {
    padding: 50px 0;
}

.project_brief_left h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
}

.project_brief_left p {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.6;
}

.project_details ul li {
    font-size: 17px;
    color: #252525;
    margin-bottom: 5px;
    transition: all .4s ease;

}

.project_details ul li:hover {
    color: var(--red-color);
    cursor: pointer;
}

.nlna_project_image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.nlna_project_image {
    margin-top: 30px;
}

.nlda_project_showcase_area {
    padding-bottom: 25px;
}

.nlda_project_showcase {
    margin-bottom: 50px;
    text-align: center;
}


.showcase_single_item img {
    height: 280px;
    width: 100%;
    object-fit: cover;
    margin-bottom: 25px;
}


/* ------------------------------- Print Area ------------------------------ */
.nlda_print_area {
    padding-bottom: 50px;
}

.nlda_print {
    text-align: center;
    margin-bottom: 30px;
}

.nlda_print h2 {
    font-size: 36px;
    font-weight: 600;
}

.nlda_print p {
    color: var(--text-color);
    line-height: 1.6;
}

.nlda_print_items {
    column-count: 3;
    column-gap: 1rem;
    margin-bottom: 3rem;
}

.print_single_item {
    /* display: flex;
    align-items: center;n
    justify-content: center; */
    overflow: hidden;
    margin-bottom: 1rem;
}

.print_single_item a,
.nl-page-content-area .print_single_item img {
    margin: 0;
}


.print_single_item:nth-child(1) {
    grid-row: 1;
    grid-column: 1;
}

.print_single_item:nth-child(2) {
    grid-row: 1;
    grid-column: 2;
}

.print_single_item:nth-child(3) {
    grid-row: 1/span 2;
    grid-column: 3;
}

.print_single_item:nth-child(4) {
    grid-row: 2;
    grid-column: 1;
}

.print_single_item:nth-child(5) {
    grid-row: 2;
    grid-column: 2;
}

.print_single_item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1);
    transition: all .3s ease;
}

.print_single_item img:hover {
    transform: scale(1.1);
}

.image-block {
    text-align: center;
}



/* ------------------------------ Lounch Area ------------------------------ */

.nlda_lounch_area {
    padding-bottom: 50px;
}

.nlda_lounch_content {
    text-align: center;
    margin-bottom: 30px;
}

.lounch_btns {
    text-align: center;
}

.lounch_btns a {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
}

.lounch_btns a:hover {
    border: 1px solid transparent;
    color: #fff;
}


.page_breadcrumbs ul {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 5px;
}

.page_breadcrumbs ul li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.page_breadcrumbs ul li a {
    color: var(--text-gold);
}


.single_blog_item_section {
    margin-top: 5rem;
}

.blog_item_content {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.blog_content_box_area {
    display: flex;
    gap: 3rem;
}

.blog_content_box {
    display: flex;
    gap: 2rem;
    width: 50%;
}

.blog_item_thumb {
    width: 50%;
}

.nl-page-content-area .blog_content_box h1 {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
}

.nl-page-content-area .blog_content_box h3 {
    font-size: 6rem;
    font-weight: bolder;
}


.nl-page-content-area .blog_content_box p {
    font-size: 2rem;
    line-height: 1.5;
}

.nl-page-content-area .blog_item_thumb a[data-fancybox] img {
    margin: 0;
}


.single_blog_item_section:nth-child(even) .blog_content_box_area {
    flex-direction: row-reverse;
}

.single_blog_title_area h1 {
    font-size: 4rem;
    text-align: center;
}

.nl-page-content-area .single_blog_title_area p {
    font-size: 1.5rem;
    text-align: center;
    color: var(--red-color);
    line-height: 1.2;
}

.single_blog_social_share {
    text-align: center;
    display: block;
    width: max-content;
    margin: auto;
}

.nl-page-content-area .single_blog_social_share ul {
    display: flex;
    justify-content: center;
    list-style: none;
    align-items: center;
    border-radius: .4rem;
    margin: 0;
    padding: 0;
    margin-bottom: 2rem;
}

.nl-page-content-area .single_blog_social_share ul li {
    list-style: none;
    border: 1px solid #ededed;
    padding: .8rem 3.5rem;
    margin: 0;
    transition: all .3s ease-in-out;
}

.nl-page-content-area .single_blog_social_share ul li:hover {
    background-color: var(--red-color);
}

.nl-page-content-area .single_blog_social_share ul li:hover i {
    color: white;
}

.single_blog_social_share i {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.single_blog_social_share .blog_meta {
    text-align: left;
    display: flex;
    gap: 2rem;
    line-height: 1;
    align-items: flex-start;
}

.single_blog_social_share .blog_meta i {
    transform: rotate(90deg);
    position: relative;
    top: 6px;
    font-size: 2rem;
}

.single_blog_social_share .blog_meta p {
    margin: 0;
    font-size: 1.1rem;
}

.single_blog_social_share .blog_meta p:first-child {
    font-weight: 600;
}

/* ----------------------------- Responsive Css ----------------------------------- */
/* applies to x-large devices (large desktops, less than 1400px) */
@media (max-width: 1400px) {}

/* applies to large devices (desktops, less than 1200px) */
@media (max-width: 1200px) {}

/* applies to medium devices (tablets, less than 992px) */
@media (max-width: 991px) {

    .nlda_section_title_area {
        padding-top: 50px;
        padding-bottom: 0;
    }

    .nlda_section_title h1 {
        font-size: 40px;
        margin-bottom: 0;
    }

    .project_brief_left h2 {
        font-size: 30px;
        margin-bottom: 15px;
    }

    .project_brief_left p {
        font-size: 15px;
    }

    .project_details ul li {
        font-size: 16px;
    }

    .project_details ul li span {
        font-size: 15px;
        color: var(--text-color);
    }

    .nlda_project_brief_area {
        padding: 35px;
    }

    .nlda_print h2 {
        font-size: 30px;
    }

    .nlda_print p {
        font-size: 15px;
    }

    .print_single_item {
        display: unset;
    }

    .nlda_print_area {
        padding-bottom: 35px;
    }
}



/* applies to small devices (landscape phones, less than 768px) */
@media (max-width: 767px) {
    .nlda_section_title_area {
        padding: 30px 0;
    }

    .nlda_section_title h1 {
        font-size: 28px;
        font-weight: 600;
        margin-bottom: 0;
        text-align: center;
    }

    /* project area */
    .nlda_project_brief_area {
        padding: 0px 0;
    }

    .project_brief_left h2 {
        font-size: 25px;
        margin-bottom: 10px;
        font-weight: 500;
    }

    .project_brief_left p {
        font-size: 14px;
    }

    .project_brief_left {
        text-align: center;
    }

    .project_details {
        margin-top: 20px;
    }

    .project_details ul li {
        font-size: 16px;
        margin-bottom: 0px;
    }

    .nlna_project_image img {
        /*! width: auto; */
        height: 180px;
    }

    .nlda_project_showcase {
        margin-bottom: 30px;
    }

    .showcase_single_item img {
        height: 180px;
    }

    .nlda_print h2 {
        font-size: 25px;
        font-weight: 500;
    }

    .nlda_project_showcase p {
        font-size: 14px;
        margin-top: 20px;
    }

    .nlda_print p {
        font-size: 14px;
    }

    .nlda_project_showcase_area {
        padding: 0;
    }

    .nlda_lounch_content p {
        font-size: 14px;
    }

    .nlda_print_area {
        padding: 0;
    }

    .primary-btn.me-2 {
        margin-bottom: 15px;
    }

    .lounch_btns a {
        width: 100%;
    }

    .nlda_print_items {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 150px);
    }

    .print_single_item {
        display: unset;
    }

    .nlda_lounch_content p {
        margin-top: 20px;
    }

    .grid-item.equal img {
        height: 180px;
    }

    .grid-item.equal {
        width: calc((98% - 30px) / 2);
    }


    .single_blog_item_section {
        margin-top: 3rem;
    }

    .blog_content_box_area,
    .single_blog_item_section:nth-child(even) .blog_content_box_area {
        flex-direction: column-reverse;
    }

    .blog_item_thumb {
        width: auto;
    }

    .blog_content_box {
        gap: 1rem;
        width: auto;
    }

    .nl-page-content-area .blog_content_box h3 {
        font-size: 3rem;
    }

    .nl-page-content-area .blog_content_box h1 {
        font-size: 2em;
    }

    .nl-page-content-area .blog_content_box p {
        font-size: 1rem;
        line-height: 1.5;
    }
}



/* applies to x-small devices (portrait phones, less than 576px) */
@media (max-width: 575px) {}
