/*
Theme Name: tsk Design
Author: Junaid Bhura
Author URI: http://www.junaidbhura.com/
Description: Custom theme for tsk Design
Version: 1.0
Text Domain: tsk
*/
.work-single .content .work-grid .row{
	display: flex;
	flex-wrap: wrap;
}
.video-container {
	position: relative;
/* 	max-width: 100%;
	height: 100%; */
}
.col.col-50 .video-container {
	aspect-ratio: auto;
}
.video-container video {
	cursor: pointer;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.video-container .pause-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: opacity 0.3s ease;
 	pointer-events: auto;
	z-index: 2;
	opacity: 1;
}
.video-container .pause-icon.hidden {
  opacity: 0;
  pointer-events: none;
}
video::-webkit-media-controls-panel {
	background-image: linear-gradient(to top, #515151b0 30%, transparent 70%) !important;
}
@media(min-width: 767px){
	.video-container {
		padding-top: 56.25%;
	}
	.video-container video {
		position: absolute;
	}
}
/* 14-04-26  */
@font-face {
    font-family: 'MiloOTNew';
    src: url('fonts/milo-ot-new/MiloOT-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'MiloOTNew-Text';
    src: url('fonts/milo-ot-new/MiloOT-Text.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'MiloOTNew';
    src: url('fonts/milo-ot-new/MiloOT-Medi.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'MiloOTNew';
    src: url('fonts/milo-ot-new/MiloOT-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}
.work-single .read-link:after {
    content: "+";
    padding-left: 5px;
}
.work-single .read-link.active:after {
    content: "-";
}
/* body .work-single .content p {
    font-family: 'MiloOTNew' !important;
    font-weight: 300;
}
body .work-single .content p strong {
    font-family: 'MiloOTNew' !important;
    font-weight: 500;
}
body .work-single .content p b{
     font-family: 'MiloOTNew-Text' !important;
}
body .work-single .content .option1 p strong {
    font-family: 'MiloOTNew' !important;
    font-weight: 700;
}
body .work-single .content .option1 p b {
    font-family: 'MiloOTNew' !important;
    font-weight: 500;
} */
body .work-single .content p b,body .work-single .content .option1 p b {
    font-family: 'MiloOT', Arial, sans-serif !important;
    font-weight: 500;
}
/*11 may2026*/
.menu-item.menu-item-search:before{content:none!important}
    .search-overlay {
        position: fixed;
        top: 95px;
        left: 0;
        width: 100%;
        height: 100%;
        background:#f6f6f6;
        z-index: 9999;

        /* Hidden by default */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    }

    .search-overlay.is-active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .search-overlay-inner {
        display: flex;
        /*align-items: center;*/
        justify-content: center;
        height: 100%;
        position: relative;
    }

    .search-overlay-content {
        width: 100%;
        padding-top: 4rem;
    }
    .nav-search-toggle.nav-search-toggle-mobile{
    display: none;
    }
    @media(max-width:600px){
    .search-overlay{
        top: 70px;
    }
    .menu-item.menu-item-search{
    display:none!important;
    }
    .nav-search-toggle.nav-search-toggle-mobile{
    display: block;
    }
    }