* {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: "poppins_regular";
    src: url(../fonts/Poppins/Poppins-Regular.ttf);
}

@font-face {
    font-family: "poppins_italic";
    src: url(../fonts/Poppins/Poppins-Italic.ttf);
}

@font-face {
    font-family: "poppins_medium";
    src: url(../fonts/Poppins/Poppins-Medium.ttf);
}

@font-face {
    font-family: "poppins_semibold";
    src: url(../fonts/Poppins/Poppins-SemiBold.ttf);
}

@font-face {
    font-family: "poppins_bold";
    src: url(../fonts/Poppins/Poppins-Bold.ttf);
}

/*@font-face {*/
/*    font-family: "poppins_regular";*/
/*    src: url(../fonts/Helvetica/Helvetica.ttf);*/
/*}*/

/*@font-face {*/
/*    font-family: "poppins_italic";*/
/*    src: url(../fonts/Helvetica/Helvetica.ttf);*/
/*}*/

/*@font-face {*/
/*    font-family: "poppins_medium";*/
/*    src: url(../fonts/Helvetica/Helvetica.ttf);*/
/*}*/

/*@font-face {*/
/*    font-family: "poppins_semibold";*/
/*    src: url(../fonts/Helvetica/Helvetica.ttf);*/
/*}*/

/*@font-face {*/
/*    font-family: "poppins_bold";*/
/*    src: url(../fonts/Helvetica/Helvetica-Bold.ttf);*/
/*}*/

:root {

    /* --box-width: 660px;
    --box-height: 300px;
    --box-depth: 350px; */

    --poppins_regular: "poppins_regular";
    --poppins_italic: "poppins_italic";
    --poppins_medium: "poppins_medium";
    --poppins_semibold: "poppins_semibold";
    --poppins_bold: "poppins_bold";

    --font_8: 8px;
    --font_10: 10px;
    --font_12: 12px;
    --font_14: 14px;
    --font_16: 16px;
    --font_18: 18px;
    --font_20: 20px;
    --font_22: 22px;
    --font_24: 24px;
    --font_28: 28px;
    --font_34: 34px;

    --bg_color_1: #FFFFFF;
    --bg_color_2: black;
    --bg_color_3: #EDEDED;

    --text_color_1: #4B4B4B;
    --text_color_2: #FFFFFF;
    --text_color_3: #969696;
    --text_color_4: #333F48;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #F8F8F8;
    font-family: 'Karla', sans-serif !important;
    font-size: 14px !important;
}

p, span{
     font-family: 'Karla', sans-serif !important;
}

.header_footer_bg{
    background-color: #c70a34;
}

.main-navbar {
    position: relative;
    display: inline;
    font-size: 20px;
    font-weight: 500;
    padding-bottom: 5px;
    color: #333;
    overflow: hidden;
}

.main-navbar::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    height: 2px;
    width: 0;
    transform: translateX(-50%);
    animation: expandBorder 5s ease-in-out forwards;
}

@keyframes expandBorder {
    0% {
        width: 0%;
        opacity: 1;
    }

    100% {
        width: 100%;
        opacity: 1;
    }
}

header {
    padding: 0 40px;
}

header .navbar .navbar-brand a {
    color: #000;
    text-decoration: none;
    font-size: 30px;
    font-family: var(--poppins_semibold);
     
}

header .navbar .header_info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

header .navbar .navbar-nav {
    background-color: #e6e6e6;
    padding: 10px 15px;
    border-radius: 50px;
    display: flex;
    /* flex-direction: row; */
    align-items: center;
}

header .navbar .navbar-nav .nav-item:nth-of-type(1) {
    margin-left: 0;
}

header .navbar .navbar-nav .nav-item {
    margin-left: 0;
}

header .navbar .navbar-nav .nav-item .nav-link {
    font-family: var(--poppins_regular);
    font-size: var(--font_14);
    padding: 6px 16px;
    border-radius: 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
    color: #000;
}

header .navbar .navbar-nav .nav-item .nav-link.active-nav {
    background-color: #FFFFFF;
    color: #000 !important;
}

header .lets_talk_header {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

header .lets_talk_header .arrow_left,
header .lets_talk_header .arrow_right {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    color: #FFFFFF;
    border-radius: 50px;
    font-size: 16px;
    font-family: var(--poppins_regular);
    padding: 14px 15px;
    border: none;
    transition: all 0.3s ease;
    opacity: 1;
}

header .lets_talk_header .arrow_left {
    opacity: 0;
    transform: translateX(-20px);
}

header .lets_talk_header button {
    background-color: #000;
    color: #FFFFFF;
    border-radius: 50px;
    font-size: 16px;
    font-family: var(--poppins_regular);
    padding: 10px 20px;
    border: none;
}

header .lets_talk_header:hover .arrow_right {
    opacity: 0;
    transform: translateX(20px);
}

header .lets_talk_header:hover .arrow_left {
    opacity: 1;
    transform: translateX(0);
}

:root {
    --box-width: 660px;
    --box-height: 300px;
    --box-depth: 350px;
}

.home_first_section {
    position: relative;
    height: 85vh;
    width: 100%;
    background: #F8F8F8;
    perspective: 1200px;
    overflow: hidden;
}

.home_first_section .scene {
    width: var(--box-width);
    height: var(--box-height);
    position: fixed;
    top: 50%;
    left: 50%;
    transform-style: preserve-3d;
    animation: spin3d 25s linear infinite;
    transform: translate(-50%, -50%);
    z-index: 1;
    transition: all 0.3s ease-out;
}

/*.home_first_section .scene {*/
/*   width: var(--box-width);*/
/*   height: var(--box-height);*/
/*  transform-style: preserve-3d;*/
/*  position: fixed;*/
/*  top: 50%;*/
/*  left: 50%;*/
/*  transform: translate(-50%, -50%);*/
/*  z-index: 1;*/
/*  transition: transform 0.05s linear;*/
/*  cursor: grab;*/
/*  user-select: none;*/
/*  -webkit-user-drag: none;*/
/*}*/

/*.home_first_section .scene.dragging {*/
/*  cursor: grabbing;*/
/*}*/

.home_first_section .face {
    position: absolute;
    background-color: #c70a34;
    opacity: 1;
}

.home_first_section .front {
    width: 100%;
    height: 100%;
    transform: translateZ(calc(var(--box-depth) / 2));
}

.home_first_section .back {
    width: 100%;
    height: 100%;
    transform: rotateY(180deg) translateZ(calc(var(--box-depth) / 2));
}

.home_first_section .right {
    width: var(--box-depth);
    height: 100%;
    transform: rotateY(90deg) translateZ(calc(var(--box-width) / 2));
    left: calc(50% - var(--box-depth) / 2);
}

.home_first_section .left {
    width: var(--box-depth);
    height: 100%;
    transform: rotateY(-90deg) translateZ(calc(var(--box-width) / 2));
    left: calc(50% - var(--box-depth) / 2);
}

.home_first_section .top {
    width: 100%;
    height: var(--box-depth);
    transform: rotateX(90deg) translateZ(calc(var(--box-height) / 2));
    top: calc(50% - var(--box-depth) / 2);
}

.home_first_section .bottom {
    width: 100%;
    height: var(--box-depth);
    transform: rotateX(-90deg) translateZ(calc(var(--box-height) / 2));
    top: calc(50% - var(--box-depth) / 2);
}

@keyframes spin3d {
    0% {
        transform: translate(-50%, -50%) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotateX(360deg) rotateY(360deg) rotateZ(360deg);
    }
}

.home_first_section .text-overlay {
    position: absolute;
    bottom: 0;
    left: 40px;
    z-index: 2;
    font-family: var(--poppins_semibold);
       
    font-weight: bold;
    color: var(--text-color);
    line-height: 1.1;
    mix-blend-mode: multiply;
    transition: color 0.3s ease-out;
}

.home_first_section .text-overlay h1 {
    font-size: 70px;
    color: #000;
}

.home_first_section .text-overlay {
    transition: color 0.3s ease-in-out;
}

@media (max-width: 768px) {
    .home_first_section .text-overlay h1 {
        font-size: 40px;
    }
}


/*.home_first_section .text-overlay.white-text h1 {*/
/*  color: #fff !important;*/
/*  transition: color 0.5s ease-in-out;*/
/*}*/

/*.white-text {*/
/*    color: #fff !important;*/
/*    transition: color 0.5s ease-in-out;*/
/*}*/

/*.home_first_section .text-overlay.white-text {*/
/*     color: rgb(71, 173, 214); */
/*}*/

.home_second_section .grid-item {
    position: relative;
    overflow: hidden;
}

.home_second_section .grid-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.4s ease-in-out;
}

.home_second_section .grid-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.home_second_section .grid-item .overlay-text {
    position: absolute;
    bottom: 10px;
    left: 20px;
    z-index: 2;
    color: #000;
    font-size: 16px;
    font-family: var(--poppins_regular);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.home_second_section .grid-item:hover .overlay {
    opacity: 1;
}

.home_second_section .grid-item:hover .overlay-text {
    opacity: 1;
}

@media (min-width: 576px) {
    .home_second_section .image-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .home_second_section .image-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .home_second_section .image-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1200px) {
    .home_second_section .image-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 992px) {

    header .navbar .navbar-nav {
        border-radius: 20px;
    }

    header .about_detail_header {
        display: none;
    }
}

.home_third_section {
    padding: 40px;
}

.home_third_section .card {
    border: none;
    cursor: pointer;
}

.home_third_section .image-wrapper {
    height: 480px;
    overflow: hidden;
    position: relative;
}

.home_third_section .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.home_third_section .image-wrapper:hover img {
    transform: scale(1.08);
}

.home_third_section .card .card-body .card-title {
    font-family: var(--poppins_bold);
    font-size: var(--font_16);
}

.home_third_section .card .card-body .card-text {
    font-family: var(--poppins_regular);
    font-size: var(--font_14);
}

footer {
    background-color: #F8F8F8; 
    padding: 30px 40px 10px 40px;
    /*position: fixed;*/
    /*width: 100%;*/
    /*bottom: 0;*/
}

footer .row .first {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

footer .row .first h1 a {
    color: var(--text_color_1);
    font-size: var(--font_34);
    font-family: var(--poppins_semibold);
       
    text-decoration: none;
    cursor: pointer;
}

footer .row .first p {
    color: #000;
    font-size: var(--font_12);
    font-family: var(--poppins_regular);
}

footer .row .fourth {
    padding-right: 20px;
}

footer .row .second p,
footer .row .third p,
footer .row .fourth p {
    color: var(--text_color_1);
    font-size: var(--font_12);
    font-family: var(--poppins_semibold);
    
}

footer .row .second ul,
footer .row .third ul,
footer .row .fourth ul {
    padding: 0;
}

footer .row .second ul li,
footer .row .third ul li,
footer .row .fourth ul li {
    list-style-type: none;
    padding-bottom: 5px;
    color: var(--text_color_1);
    font-size: var(--font_12);
    font-family: var(--poppins_regular);
    cursor: pointer;
}

/*.workpage_section .img_part .col-12, */
/*.workpage_section .img_part .col-sm-6, */
/*.workpage_section .img_part .col-md-4,*/
/*.workpage_section .img_part .col-lg-3{*/
/*    width: auto;*/
/*}   */

.work_first_section {
    padding: 0px 40px 100px 40px;
    /*padding: 50px 40px 100px 40px;*/
}

.work_first_section h3{
    font-size: var(--font_12);
}

.work_first_section .col-md-3 .project_name_list p {
    color: var(--text_color_3);
    font-size: var(--font_18);
    font-family: var(--poppins_semibold);
    margin: 0 0 10px 0;
}

.work_first_section .col-md-3 .project_name_list ul {
    padding: 0;
}

.work_first_section .col-md-3 .project_name_list ul li {
    list-style-type: none;
    color: var(--text_color_1);
    font-size: var(--font_18);
    font-family: var(--poppins_regular);
    cursor: pointer;
}

.work_first_section .col-md-3 .project_name_list ul li:hover {
    color: var(--text_color_3);
}

.work_first_section .project_images {
    position: relative;
    overflow: hidden;
}

.work_first_section .project_images .card{
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F8F8F8;
}

.work_first_section .project_images a {
    display: block;
}

.work_first_section .project_images img {
    /*width: auto;*/
    height: 170px;
    object-fit: contain;
    transition: transform 0.4s ease-in-out;
    display: block;
}

.work_first_section .project_images .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.work_first_section .project_images .overlay-text {
    position: absolute;
    bottom: 10px;
    font-size: 12px;
    z-index: 2;
    color: #000;
    font-family: var(--poppins_regular);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.work_first_section .project_images:hover img {
    transform: scale(1.05);
}

.work_first_section .project_images:hover .overlay {
    opacity: 1;
}

.work_first_section .project_images:hover .overlay-text {
    opacity: 1;
}

.work_first_section .project_images:hover .overlay-text p{
    font-size: var(--font_12);
}


/* new */

/* .work_first_section {
    padding: 50px 40px 100px 40px;
}

.work_first_section .col-md-3 .project_name_list p {
    color: var(--text_color_3);
    font-size: var(--font_18);
    font-family: var(--poppins_semibold);
    margin: 0 0 10px 0;
}

.work_first_section .col-md-3 .project_name_list ul {
    padding: 0;
}

.work_first_section .col-md-3 .project_name_list ul li {
    list-style-type: none;
    color: var(--text_color_1);
    font-size: var(--font_18);
    font-family: var(--poppins_regular);
    cursor: pointer;
}

.work_first_section .col-md-3 .project_name_list ul li:hover {
    color: var(--text_color_3);
}

.work_first_section .project_images {
    position: relative;
    overflow: hidden;
}

.work_first_section .project_images img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.4s ease-in-out;
    display: block;
}

.work_first_section .project_images .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.work_first_section .project_images .overlay-text {
    position: absolute;
    bottom: 10px;
    left: 20px;
    z-index: 2;
    color: #000;
    font-size: 16px;
    font-family: var(--poppins_regular);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
} */


/* old */

/* .work_first_section {
    padding: 50px 0 100px 0;
}

.work_first_section .col-lg-7 table {
    color: var(--text_color_1);
    font-size: var(--font_14);
    font-family: var(--poppins_regular);
}

.work_first_section .col-lg-7 table tr {
    border-bottom: 1px solid rgb(80, 80, 80);
    cursor: pointer;
}

.work_first_section .col-lg-7 table tr td,
.work_first_section .col-lg-7 table tr th {
    padding: 3px 15px;
}

.work_first_section .col-lg-7 table tbody tr:last-child {
    border-bottom: none;
}

.work_first_section .hover-image-cell {
    position: relative;
    cursor: pointer;
}

.work_first_section .hover-image {
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%) scale(0.5);
    min-width: 400px;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease-in-out;
    z-index: 10;
}

.work_first_section .hover-image-cell:hover .hover-image {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

.work_first_section .image-preview {
    width: 300px;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    margin: 0 auto;
}

.work_first_section .image-details {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: var(--text_color_1);
    font-size: var(--font_14);
    font-family: var(--poppins_regular);
} */

.work_detail_first_section {
    padding-top: 5px;
    padding-bottom: 25px;
}

.work_detail_first_section .video-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.work_detail_first_section .video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.work_detail_first_section .row .left_side_part {
    padding: 50px;
    position: sticky;
    top: 10px;
    /*flex: 0 0 60%;*/
    height: fit-content;
}

.work_detail_first_section .row .left_side_part h6 {
    color: var(--text_color_1);
    font-size: var(--font_12);
    font-family: var(--poppins_semibold);
    margin-bottom: 5px;
}

.work_detail_first_section .row .left_side_part p:nth-of-type(1),
.work_detail_first_section .row .left_side_part p:nth-of-type(2),
.work_detail_first_section .row .left_side_part p:nth-of-type(3) {
    color: var(--text_color_1);
    font-size: var(--font_12);
    font-family: var(--poppins_regular);
    margin-bottom: 0px;
}

.work_detail_first_section .row .right_side_part {
    /* padding: 50px; */
    padding: 30px 0 0 0;
}

.work_detail_first_section .row .right_side_part span {
    color: var(--text_color_1);
    font-size: var(--font_12) !important;
    font-family: var(--poppins_regular);
    margin-bottom: 10px;
}

.work_detail_first_section .row .right_side_part p {
    color: var(--text_color_1);
    font-size: var(--font_12) !important;
    font-family: var(--poppins_regular);
    margin-bottom: 10px;
}

.work_detail_first_section .row .left_side_part .back_button_part{
    margin-top: 140px;
    text-align: right;
}

.work_detail_first_section .row .left_side_part .back_button_part img{
    height: auto;
    width: 20px;
}

.work_detail_first_section .row .left_side_part .back_button_part a{
    color: var(--text_color_1);
    font-size: var(--font_12);
    font-family: var(--poppins_regular);
    margin-bottom: 10px;
}

/*.work_detail_first_section .col-lg-8 {*/
/*    column-count: 2;           */
/*    column-gap: 15px;          */
/*}*/

/*.work_detail_first_section .details_image_part {*/
/*    break-inside: avoid;     */
/*    margin-bottom: 15px;*/
/*}*/

/*.work_detail_first_section .details_image_part img {*/
/*   width: auto;*/
/*    height: 500px;*/
/*    border-radius: 5px;*/
/*    display: block;*/
/*}*/

/*.work_detail_first_section .details_image_part img{*/
/*     height: 500px;*/
/*    width: auto;*/
/*    border-radius: 5px;*/
/*}*/

/* .image-text {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: var(--text_color_1);
    font-size: var(--font_14);
    font-family: var(--poppins_regular);
} */


.timeline {
    position: relative;
    margin: 0 auto;
    /* margin: 50px auto; */
    padding: 40px 0;
    /* width: 1000px; */
    box-sizing: border-box;
    font-family: var(--poppins_regular);
}

/*.timeline:before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    left: 0;*/
/*    width: 2px;*/
/*    height: 97%;*/
/*    background: #c5c5c5;*/
/*}*/

.timeline ul {
    padding: 0;
    margin: 0;
}

.timeline ul li {
    list-style: none;
    position: relative;
    /* width: 50%; */
    width: 100%;
    padding: 20px 40px;
    box-sizing: border-box;
}

.timeline ul li .content img {
    height: 500px;
    width: auto;
    border-radius: 5px;
    margin: 8px;
}

.timeline ul li .content {
    padding-bottom: 20px;
}

/*.timeline ul li:before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    width: 10px;*/
/*    height: 10px;*/
/*    top: 24px;*/
/*    left: -4px;*/
/*    background: #333;*/
/*    border-radius: 50%;*/
/*    box-shadow: 0 0 0 3px #33333357;*/
/*}*/

.timeline ul li h3 {
    padding: 0;
    margin: 0;
    color: #333;
    
}

.timeline ul li p {
    margin: 10px 0 0;
    padding: 0;
}

.timeline ul li .time h4 {
    margin: 0;
    padding: 0;
    font-size: var(--font_18);
    font-family: var(--poppins_semibold);
    
}

/* .timeline ul li:nth-child(odd) .time,
.timeline ul li:nth-child(even) .time {
    position: relative;
    top: unset;
    left: unset;
    right: unset;
    transform: none;
    max-width: 100%;
    margin-top: 10px;
}

.timeline ul li:nth-child(odd) .time {
    padding: 10px 25px;
    color: #333;
    border-radius: 8px;
    text-align: end;
    min-width: 200px;
    max-width: 100%;
}

.timeline ul li:nth-child(even) .time {
    padding: 10px 25px;
    color: #333;
    border-radius: 8px;
    text-align: start;
    min-width: 200px;
    max-width: 100%;
} */

@media(max-width:1000px) {
    .timeline {
        width: 100%;
    }

    .timeline ul li .content {
        display: flex;
        flex-direction: column;
        justify-content: end;
        align-items: start;
    }
}

@media(max-width:767px) {
    .timeline {
        width: 100%;
        padding-bottom: 0;
    }

    h1 {
        font-size: 40px;
        text-align: center;
    }

    .timeline {
        padding: 0 50px 0 50px;
    }

    .timeline:before {
        left: 50px;
        height: 100%;
    }


    .timeline ul li:before {
        left: -4px;
    }

    /* .timeline ul li:nth-child(odd),
    .timeline ul li:nth-child(even) {
        width: 100%;
        text-align: left;
        padding-left: 50px;
        padding-bottom: 50px;
    }

    .timeline ul li:nth-child(odd):before,
    .timeline ul li:nth-child(even):before {
        top: -18px;
        left: 16px;
    }

    .timeline ul li:nth-child(odd) .time,
    .timeline ul li:nth-child(even) .time {
        top: -30px;
        left: 50px;
        right: inherit;
        text-align: start;
    } */

    .timeline ul li .content {
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .content {
        margin-top: 70px;
    }

    .work_first_section .project_images img {
        width: 100%;
        height: 200px;
    }
}

/* .timeline ul li.visible:nth-child(odd) .content {
    display: flex;
    justify-content: end;
}

.timeline ul li.visible:nth-child(even) .content {
    display: flex;
    justify-content: start;
} */

.timeline ul li .time {
    margin: 0;
    padding: 10px 25px;
    color: #333;
    border-radius: 8px;
    text-align: start;
    min-width: 100%;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    overflow-y: auto;
    max-height: fit-content;
}

.timeline ul li .content,
.timeline ul li .time {
    opacity: 0;
    transition: all 0.8s ease;
}

/* .timeline ul li:nth-child(odd) .content {
    transform: translateX(-100px);
}

.timeline ul li:nth-child(odd) .time {
    transform: translateX(100px);
}

.timeline ul li:nth-child(even) .content {
    transform: translateX(100px);
}

.timeline ul li:nth-child(even) .time {
    transform: translateX(-100px);
} */

.timeline ul li.visible .content,
.timeline ul li.visible .time {
    opacity: 1;
    transform: translateX(0);
}

.timeline ul li .content {
    padding-bottom: 20px;
}

.timeline ul li.visible .content {
    padding-bottom: 0;
    display: flex;
}


/* .timeline ul li {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    padding: 40px 0;
    clear: both;
} */

/* .timeline ul li:nth-child(odd) {
    flex-direction: row-reverse;
    text-align: right;
    float: left;
    text-align: right;
    clear: both;
}

.timeline ul li:nth-child(even) {
    flex-direction: row;
    text-align: left;
    float: right;
    text-align: left;
    clear: both;
} */

/* .timeline ul li:nth-child(odd) {
    float: left;
    text-align: right;
    clear: both;
}

.timeline ul li:nth-child(even) {
    float: right;
    text-align: left;
    clear: both;
} */

/* .timeline ul li:nth-child(odd):before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    top: 24px;
    right: -6px;
    background: #333;
    border-radius: 50%;
    box-shadow: 0 0 0 3px #33333357;
}

.timeline ul li:nth-child(even):before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    top: 24px;
    left: -4px;
    background: #333;
    border-radius: 50%;
    box-shadow: 0 0 0 3px #33333357;
} */

/* timeline effect end */


/*.about_first_section {*/
/*    padding: 50px 40px 50px 40px;*/
/*    height: 83vh;*/
/*}*/

/*.about_first_section .owner_image{*/
/*    width: 200px;*/
/*}*/

/*.about_first_section .card_body .card_title {*/
/*    color: var(--text_color_1);*/
/*    font-size: var(--font_22);*/
/*    font-family: var(--poppins_semibold);*/
/*}*/

/*.about_first_section .card_body .detail_position {*/
/*    color: var(--text_color_1);*/
/*    font-size: var(--font_12);*/
/*    font-family: var(--poppins_regular);*/
/*}*/

/*.about_first_section .member_img {*/
/*    height: 350px;*/
/*    width: 350px;*/
/*}*/


.about_first_section {
  padding: 70px 350px 70px 350px;
  background-color: #c70a34;
  height: 83.2vh;
}

@media (max-width:1600px){
    .about_first_section{
          padding: 50px 100px;
    }
}

@media (max-width:768px){
    .about_first_section{
          padding: 50px 50px;
    }
}

@media (max-width:576px){
    .about_first_section{
          padding: 50px 50px;
    }
}

.about-section {
  height: 100%;
  background-color: #c70a34;
}

.object-cover {
  object-fit: cover;
  object-position: center;
  display: block;
  background-color: #c70a34;
  height: 550px;
}

.content-box {
  max-width: 85%;
  margin: 0 auto;
  height: 500px;
    overflow-y: scroll;
}

.about_title {
  font-family: var(--poppins_semibold, 'Poppins', sans-serif);
  font-size: 28px;
  color: #000;
}

.designation {
  font-size: 16px;
  color: #999;
  font-family: var(--poppins_regular, 'Poppins', sans-serif);
}

.about_description {
  font-family: var(--poppins_regular, 'Poppins', sans-serif);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text_color_1);
}

.about-section:nth-child(even) {
  flex-direction: row-reverse;
}

::-webkit-scrollbar {
    display: none;
}

@media (max-width: 992px) {
  .about-section {
    flex-direction: column !important;
    min-height: auto;
  }
  .content-box {
    max-width: 100%;
  }
  .about-section img {
    height: 400px;
  }
}


.service_first_section {
    padding: 100px 40px 100px 40px;
}

.service_first_section .text_part h1 {
    font-size: 90px;
    font-family: var(--poppins_medium);
    
    color: #231f20;
}

.service_second_section {
    padding: 0 40px 30px 40px;
    overflow: hidden;
}

.service_second_section .service_img {
    width: 100%;
    height: auto;
}

.service_third_section {
    margin: 20px 40px 100px 40px;
}

.service_third_section .container-fluid .row {
    padding: 30px 20px 30px 20px;
    background-color: #FAFAF5;
    height: 400px;
    border-radius: 30px;
}

.service_third_section .container-fluid .row .heading-title h3 {
    font-family: var(--poppins_semibold);
    
    font-size: var(--font_28);
    color: var(--text_color_1);
    margin-bottom: 20px;
}

.service_third_section .container-fluid .row .heading-title p {
    font-family: var(--poppins_regular);
    font-size: var(--font_14);
    color: var(--text_color_1);
}

.service_third_section .container-fluid .row .first_part,
.service_third_section .container-fluid .row .second_part {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.service_third_section .container-fluid .row .first_part h3 {
    font-family: var(--poppins_semibold);
    
    font-size: var(--font_28);
    color: var(--text_color_1);
    margin-bottom: 20px;
}

.service_third_section .container-fluid .row .first_part p {
    font-family: var(--poppins_regular);
    font-size: var(--font_14);
    color: var(--text_color_1);
}

.service_third_section .container-fluid .row .second_part {
    display: flex;
    flex-direction: column;
    align-items: end;
}

.service_third_section .container-fluid .row .second_part p {
    font-family: var(--poppins_regular);
    font-size: var(--font_14);
    color: var(--text_color_1);
}

.service_third_section .lets_talk_header {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.service_third_section .lets_talk_header .arrow_left,
.service_third_section .lets_talk_header .arrow_right {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg_color_2);
    color: var(--text_color_2);
    border-radius: 50px;
    font-size: 16px;
    font-family: var(--poppins_regular);
    padding: 14px 15px;
    border: none;
    transition: all 0.3s ease;
    opacity: 1;
}

.service_third_section .lets_talk_header .arrow_left {
    opacity: 0;
    transform: translateX(-20px);
}

.service_third_section .lets_talk_header button {
    background-color: var(--bg_color_2);
    color: var(--text_color_2);
    border-radius: 50px;
    font-size: 16px;
    font-family: var(--poppins_regular);
    padding: 10px 20px;
    border: none;
}

.service_third_section .lets_talk_header:hover .arrow_right {
    opacity: 0;
    transform: translateX(20px);
}

.service_third_section .lets_talk_header:hover .arrow_left {
    opacity: 1;
    transform: translateX(0);
}

.service_third_section .second_part .icon_img {
    display: flex;
    justify-content: center;
}

.contact_btn_part a {
    text-decoration: none !important;
}

.contact_btn_part-mobile {
    display: none;
}

.contact_btn_part-mobile a {
    text-decoration: none !important;
}

@media (max-width: 992px) {
    .contact_btn_part-mobile {
        display: block;
    }

    .main-navbar>header .contact_btn_part {
        display: none;
    }

    .mobile_view_header_part {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 85vw;
    }
}

.contact_first_section {
    padding: 100px 40px 100px 40px;
}

.contact_first_section .text_part h1 {
    font-size: 90px;
    font-family: var(--poppins_medium);
    color: #231f20;
}

.contact_second_section {
    padding: 50px 40px 70px 40px;
}

.contact_second_section .container-fluid {
    overflow: hidden;
    height: 100%;
    /* position: relative;
    display: flex;
    align-items: start;
    justify-content: center; */
}

.contact_second_section .container-fluid .second-img-card {
    overflow: hidden;
    height: 100%;
    position: relative;
    display: flex;
    align-items: start;
    justify-content: center;
}

.contact_second_section .container-fluid img {
    width: 100%;
    object-fit: cover;
    max-width: 100%;
}

.contact_second_section .container-fluid .first-img-card {
    display: flex;
    flex-direction: column;
}

.contact_second_section .container-fluid .first-img-card h3 {
    font-family: var(--poppins_semibold);
    font-size: var(--font_34);
    color: var(--text_color_1);
    padding: 0 0 30px 0;
    line-height: 1.3;
}

.contact_second_section .container-fluid .first-img-card .callus_btn {
    padding: 8px 20px;
    border: none;
    color: var(--text_color_2);
    background-color: var(--bg_color_2);
    font-family: var(--poppins_regular);
    font-size: var(--font_18);
    width: fit-content;
}

.contact_second_section .container-fluid .data_part {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: var(--bg_color_3);
    height: 230px;
    padding: 20px;
}

.contact_second_section .container-fluid .data_part p {
    color: var(--text_color_3);
    font-family: var(--poppins_medium);
    font-size: var(--font_14);
    letter-spacing: 0.5px;
}

.contact_second_section .container-fluid .data_part h3 {
    color: var(--text_color_1);
    font-family: var(--poppins_medium);
    font-size: var(--font_18);
}

.contact_third_section {
    padding: 100px 40px 100px 40px;
}

.contact_third_section .container-fluid .right_side_part {
    padding-top: 180px;
}

.contact_third_section .container-fluid .right_side_part .form_part {
    background-color: var(--bg_color_3);
    padding: 30px;
}

.contact_third_section .container-fluid .right_side_part .form_part .drop_title {
    color: var(--text_color_1);
    font-family: var(--poppins_semibold);
    font-size: var(--font_28);
    margin-bottom: 50px;
    
}

.contact_third_section .container-fluid .right_side_part .form_part form label {
    color: var(--text_color_1);
    font-family: var(--poppins_regular);
    font-size: var(--font_12);
}

.contact_third_section .container-fluid .right_side_part .form_part form input,
.contact_third_section .container-fluid .right_side_part .form_part form textarea {
    background-color: transparent;
    font-family: var(--poppins_regular);
}

.form-control:focus {
    border: none !important;
    border-color: transparent !important;
}

.contact_third_section .container-fluid .right_side_part .form_part form .submit_btn {
    border: none;
    color: var(--text_color_2);
    background-color: var(--bg_color_2);
    font-family: var(--poppins_regular);
    font-size: var(--font_14);
    padding: 14px;
    width: 100%;
}

.client_second_section {
    padding: 50px 40px 50px 40px;
}

.client_second_section .container-fluid .row .card {
    border: none;
    font-family: var(--poppins_medium);
    color: var(--text_color_1);
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    height: 220px;
     
    /* border-radius: 15px; */
}

.client_second_section .container-fluid .row .card .image-container {
    overflow: hidden;
    position: relative;
}

.client_second_section .container-fluid .row .card img {
    width: 100%;
    transition: filter 0.3s ease, transform 0.3s ease;
}

.client_second_section .container-fluid .row .card .card-body {
    padding-left: 0;
    display: flex;
    flex-direction: column;
    align-items: start;
    transition: all 0.3s ease;
    width: fit-content;
    padding: 10px 20px;
    margin: 8px 0 15px 0;
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
}

.client_second_section .container-fluid .row .card .card-body .card-title {
    font-size: var(--font_16);
    color: var(--text_color_2);
    opacity: 1;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.client_second_section .container-fluid .row .card .card-body p {
    font-size: var(--font_14);
    color: var(--text_color_2);
    margin: 0;
    padding-top: 10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.client_second_section .container-fluid .row .card .hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1;
    /* border-radius: 15px; */
}

.client_second_section .container-fluid .row .card:hover .hover-overlay {
    opacity: 1;
    visibility: visible;
}

.client_second_section .container-fluid .row .card:hover .card-body {
    bottom: 0;
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.client_second_section .container-fluid .row .card:hover .card-body .card-title {
    opacity: 1;
    visibility: visible;
}

.client_second_section .container-fluid .row .card:hover .card-body p {
    opacity: 1;
    visibility: visible;
}

/* .news_first_section {
    padding: 50px 40px 50px 40px;
}

.news_first_section .container-fluid .row .card {
    border: none;
    font-family: var(--poppins_medium);
    color: var(--text_color_1);
    cursor: pointer;
    text-decoration: none;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.news_first_section .container-fluid .row .card img {
    height: 350px;
    border-radius: 0;
    width: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-in-out;
}

.news_first_section .container-fluid .row .card .card-title {
    font-size: var(--font_16);
    color: var(--text_color_3);
    margin: 15px 0 15px 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.news_first_section .container-fluid .row .card .card-title-1 {
    font-size: var(--font_28);
    color: var(--text_color_1);
    transition: opacity 0.3s ease, visibility 0.3s ease;
    margin-top: 20px;
}

.news_first_section .container-fluid .row .card p {
    font-size: var(--font_16);
    margin: 0;
    padding-top: 10px;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.news_first_section .container-fluid .row .card .overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.6);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.news_first_section .container-fluid .row .card .overlay-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 2;
    color: #000;
    font-size: 16px;
    font-family: var(--poppins_regular);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.news_first_section .container-fluid .row .card:hover img {
    transform: scale(1.05);
}

.news_first_section .container-fluid .row .card:hover .overlay {
    opacity: 1;
}

.news_first_section .container-fluid .row .card:hover .overlay-text {
    opacity: 1;
} */

.news_first_section {
    padding: 50px 40px 50px 40px;
}

.news_first_section .left_part p{
    font-size: var(--font_14);
    color: var(--text_color_1);
    font-family: var(--poppins_regular);
    margin-bottom: 0;
}

.news_first_section .left_part span{
    font-size: var(--font_12);
    color: var(--text_color_1);
    font-family: var(--poppins_regular);
}

.news_first_section h2 span{
    font-size: var(--font_14) !important;
    color: var(--text_color_1);
    font-family: var(--poppins_regular);
}

.news_first_section .left_part p{
    font-size: var(--font_12);
    color: var(--text_color_1);
    font-family: var(--poppins_regular);
}

.news_first_section .left_part font{
    font-size: var(--font_14);
    color: var(--text_color_1);
    font-family: var(--poppins_regular);
}

.news_first_section .desc{
    font-size: var(--font_14);
    color: var(--text_color_1);
    font-family: var(--poppins_regular);
}

.news_first_section .row .col-sm-12, .news_first_section .row .col-md-4,.news_first_section .row .col-lg-3{
    width: auto;
}

.news_first_section .container-fluid .row .card {
    border: none;
    font-family: var(--poppins_medium);
    color: var(--text_color_1);
    cursor: pointer;
    text-decoration: none;
    border-radius: 0;
}

.news_first_section .container-fluid .row .card img {
    height: 170px;
    width: auto;
    border-radius: 0;
}

.news_first_section .container-fluid .row .card .card-body {
    padding: 10px 0;
}

.news_first_section .container-fluid .row .card .card-body .card-title {
    font-size: var(--font_16);
    color: var(--text_color_3);
    margin: 15px 0 15px 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.news_first_section .container-fluid .row .card .card-body .card-title-1 {
    /*font-size: var(--font_28);*/
    font-size: var(--font_12);
    color: var(--text_color_1);
    transition: opacity 0.3s ease, visibility 0.3s ease;
    margin-top: 10px;
}

.news_first_section .container-fluid .row .card .card-body p {
    font-size: var(--font_12);
    margin: 0;
    padding-top: 10px;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.news_first_section .owl-carousel .item{
    display: flex;
    justify-content: center;
}

.news_first_section .owl-carousel .owl-item img{
    width: auto !important;
    height: 240px !important;
}

.news_first_section .owl-theme .owl-nav {
    display: none;
}

.news_first_section .owl-theme .owl-dots{
     display: none;
}

.news_second_section {
    padding: 0 40px 50px 40px;
}

 .news_second_section .mobile_image {
        display: none;
    }
    
 .news_second_section .desktop_image {
        display: block;
        height: 380px;
        object-fit: cover;
    }

@media (max-width: 576px) {
        
    .news_second_section .desktop_image {
        display: none;
    }
        
    .news_second_section .mobile_image {
        display: block;
    }
        
}

.work_detail_first_section .owl-carousel .item{
    display: flex;
    justify-content: start;
}

.work_detail_first_section .owl-carousel .owl-item img{
    width: auto !important;
    height: 800px !important;
}

.work_detail_first_section .owl-theme .owl-nav {
    display: none;
}

.work_detail_first_section .owl-theme .owl-dots{
     display: none;
}


.videos_first_section {
    padding: 50px 40px 50px 40px;
    background-image: url(../images/project_15.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    height: 100vh;
}

.Random_first_section {
    padding: 50px 40px 50px 40px;
    background-image: url(../images/project_8.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    height: 100vh;
}

.Random_first_section .container-fluid .row .card {
    border: none;
    font-family: var(--poppins_medium);
    color: var(--text_color_1);
    cursor: pointer;
    text-decoration: none;
    border-radius: 0;
    padding: 50px 0 100px 40px;
    position: relative;
    margin-top: 150px;
    background-color: var(--bg_color_3);
}

.Random_first_section .container-fluid .row .card p {
    margin-bottom: 0;
    color: var(--text_color_4);
    font-family: var(--poppins_medium);
    font-size: var(--font_28);
}

.Random_first_section .container-fluid .row .card .fade-cycle {
    opacity: 0;
    position: absolute;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.Random_first_section .container-fluid .row .card .text-1 {
    animation-name: fadeOutFirst;
}

.Random_first_section .container-fluid .row .card .text-2 {
    animation-name: fadeInSecond;
}

@keyframes fadeOutFirst {
    0% {
        opacity: 1;
    }

    40% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeInSecond {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0;
    }

    60% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

.nav-wrapper {
    background-color: #e5e5e5;
    border-radius: 999px;
    padding: 6px 20px;
}

.nav-wrapper .nav-link {
    color: black;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 999px;
}

.nav-wrapper .nav-link.active {
    background-color: white;
}

.menu_button .menu_icon {
    height: 20px;
    width: 20px;
}

.menu-close .menu_icon {
    height: 20px;
    width: 20px;
}

.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    pointer-events: none;
    opacity: 0;
    transition: opacity .35s ease;
}

.menu-overlay .curtain {
    position: absolute;
    inset: 0;
    background: #fff;
    transform: translateY(-100%);
    transition: transform .55s cubic-bezier(.2, .8, .2, 1);
    will-change: transform;
    display: grid;
}

.menu-overlay.open {
    pointer-events: auto;
    opacity: 1;
}

.menu-overlay.open .curtain {
    transform: translateY(0);
}

/*.menu-close {*/
/*    position: absolute;*/
/*    top: 35px;*/
/*    right: 70px;*/
/*    font-size: 30px;*/
/*    background: transparent;*/
/*    border: 0;*/
/*    cursor: pointer;*/
/*}*/

/*.menu-panel {*/
/*    width: 100%;*/
    /*height: 100%;*/
/*    display: flex;*/
/*    justify-content: flex-end;*/
/*    padding-right: 55px;*/
/*    margin-top: 100px;*/
/*}*/

/*.menu-list {*/
/*    list-style: none;*/
/*    margin: 0;*/
/*    padding: 0;*/
/*    text-align: right;*/
/*}*/

/*.menu-list a {*/
/*    text-decoration: none;*/
/*    color: #111;*/
/*    font-family: var(--poppins_regular);*/
/*    font-size: 16px;*/
/*    display: inline-block;*/
/*    transform: translateY(12px);*/
/*    margin-bottom: 5px;*/
/*    opacity: 0;*/
/*    transition:*/
/*        transform .4s ease,*/
/*        opacity .4s ease,*/
/*        color .2s ease;*/
/*}*/

.menu-list a:hover {
    color: #444;
}

.menu-overlay.open .menu-list li:nth-child(n) a {
    transform: translateY(0);
    opacity: 1;
}

.menu-overlay.open .menu-list li:nth-child(1) a {
    transition-delay: .12s;
}

.menu-overlay.open .menu-list li:nth-child(2) a {
    transition-delay: .16s;
}

.menu-overlay.open .menu-list li:nth-child(3) a {
    transition-delay: .20s;
}

.menu-overlay.open .menu-list li:nth-child(4) a {
    transition-delay: .24s;
}

.menu-overlay.open .menu-list li:nth-child(5) a {
    transition-delay: .28s;
}

.menu-overlay.open .menu-list li:nth-child(6) a {
    transition-delay: .32s;
}

/*.menu-overlay .menu-header {*/
/*  display: flex;*/
/*  align-items: start;*/
/*  justify-content: flex-start; */
/*  background: #fff; */
/*  padding: 20px;*/
/*}*/

/*.menu-overlay .menu-gif {*/
/*  width: auto;     */
/*  height: auto;*/
/*  margin-right: 20px;*/
/*  border-radius: 6px; */
/*}*/

.menu-overlay .menu-header {
  display: flex;
  /*align-items: stretch;       */
  justify-content: space-between;
  height: 100vh;
  padding: 40px 70px;
  box-sizing: border-box;
  background: #fff;
}

/* LEFT SIDE (GIF) */
.menu-overlay .gif_part {
  flex: 0 0 70%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-overlay .menu-gif {
  /*width: 100%;*/
  /*height: 100%;*/
  /*object-fit: contain;*/
  /*border-radius: 12px;*/
}

.menu-panel {
  flex: 0 0 30%;
  display: flex;
  align-items: start;      
  justify-content: flex-end; 
  padding: 0;
  margin: 60px 0 0 0;
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: right;
}

.menu-list li{
    margin-bottom: 12px;
}

.menu-list a {
  text-decoration: none;
  color: #111;
  font-family: var(--poppins_regular);
  font-size: 16px;
  /*display: inline-block;*/
  /*transform: translateY(12px);*/
  /*margin-bottom: 8px;*/
  /*opacity: 0;*/
  /*transition: transform .4s ease, opacity .4s ease, color .2s ease;*/
}

/* Close button */
.menu-close {
  position: absolute;
  top: 35px;
  right: 70px;
  font-size: 30px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

/* Responsive (stack vertically) */
@media (max-width: 992px) {
  .menu-overlay .menu-header {
    flex-direction: column;
    padding: 24px;
  }
  .menu-overlay .gif_part {
    flex: 0 0 auto;
    height: 40vh;
  }
  .menu-overlay .menu-gif {
    height: 100%;
    object-fit: cover;
  }
  .menu-panel {
    flex: 1;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .menu-list {
    text-align: left;
  }
  .menu-close {
    top: 24px;
    right: 24px;
  }
}

@media (max-width: 576px) {
    .menu-overlay .menu-gif {
        height: 50%;
        object-fit: cover;
    }
    
    .menu-panel {
        margin-top: 0;
    }
}

/* Reduced motion (keep as-is) */
@media (prefers-reduced-motion: reduce) {
  .menu-overlay,
  .menu-overlay .curtain,
  .menu-list a {
    transition: none !important;
  }
  .menu-overlay .curtain {
    transform: none;
  }
  .menu-overlay {
    opacity: 1;
  }
}


@media (max-width: 576px) {
    .menu-panel {
        padding-right: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .menu-overlay,
    .menu-overlay .curtain,
    .menu-list a {
        transition: none !important;
    }

    .menu-overlay .curtain {
        transform: none;
    }

    .menu-overlay {
        opacity: 1;
    }
}

/* .screen-tint {
    position: fixed;
    inset: 1;
    background: #c70a34;
    opacity: 0;
    transition: opacity .6s ease;
    pointer-events: none;
    z-index: 0;
}

.screen-tint.show {
    opacity: 1;
} */

html,
body {
    height: 100%;
}

body {
    position: relative;
    isolation: isolate;
}

#page {
    position: relative;
    z-index: 1;
}

/* .screen-tint {
    position: fixed;
    inset: 0;
    background: #c70a34;
    opacity: 0;
    transition: opacity .6s ease;
    pointer-events: none;
    z-index: 0;
}

.screen-tint.show {
    opacity: 1;
} */

.random_first_section{
    padding: 0 0 70px 0;
    margin: 0 40px 0 40px;
}

.random_first_section .grid-container {
    column-count: 6;
    column-gap: 50px;
}

.random_first_section .grid-container img {
    width: 100%;
    margin-bottom: 50px;
    display: block;
    break-inside: avoid;
}

@media (max-width: 1200px) {
    .random_first_section .grid-container {
        column-count: 3;
    }
}

@media (max-width: 768px) {
    .random_first_section .grid-container {
        column-count: 2;
    }
}

@media (max-width: 576px) {
    .random_first_section .grid-container img {
        margin-bottom: 10px;
    }
    
    .random_first_section .grid-container {
        column-gap: 10px;
    }
    
    .random_first_section {
        margin: 0;
    }
    
     .random_first_section .grid-container {
        column-count: 2;
    }
}

.work_detail_first_section .grid-container {
    column-count: 3;
    column-gap: 50px;
    margin-right: 40px;
}

.work_detail_first_section .grid-container img {
    width: 100%;
    margin-bottom: 50px;
    display: block;
    break-inside: avoid;
}

@media (max-width: 1200px) {
    .work_detail_first_section .grid-container {
        column-count: 2;
    }
}

@media (max-width: 768px) {
    .work_detail_first_section .grid-container {
        column-count: 2;
        margin-right: 0;
    }
}

@media (max-width: 576px) {
    .work_detail_first_section .grid-container {
        column-count: 1;
    }
}

.work_detail_first_section .right_side_image_part {
  display: flex;
  flex-direction: column; 
  align-items: start;  
  gap: 20px;      
  margin-right: 40px;
}

.work_detail_first_section .right_side_image_part .details_image_part{
    height: 800px;
}

.work_detail_first_section .right_side_image_part img {
  width: auto;             
  /*height: 780px; */
  height: 800px;            
  max-width: 100%;          
  object-fit: contain; 
  border-radius: 0;
}

@media (max-width: 576px) {
    .about_first_section{
        height: auto;
    }
}

.blog_first_section{
    height: 83vh;
}

