/*header.css*/

header {
    width: 100%;
    position: sticky;
    top: 0px;
    display: block;
    z-index: 999
}

header .main-header {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 0px 10px;
}

header .main-header .logo {
    width: 280px;
    padding: 15px 10px;
}

.main-header .logo img {
    width: 100%;
    height: auto;
}
@media (max-width: 500px){
    .logo{
        max-width: 70%
    }
}
/*menu*/
.menu-item{
    cursor: pointer;
}
.main-header .menu{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.desktop-navigation, .desktop-navigation .menu-main-menu-container,.desktop-navigation .menu-main-menu-container #main-menu{
    height: 100% !important;
}
.desktop-navigation #main-menu {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

.desktop-navigation #main-menu>li.menu-item >a {
    position: relative;
    padding: 10px 20px 10px 10px;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 500;
    border: 2px solid transparent;
    min-width: auto;
    margin: 0px 15px;
    margin: 0px 5px 0px 5px;
}

.desktop-navigation #main-menu li.menu-item a {
    text-decoration: none;
    color: var(--menu-color)
}

.desktop-navigation #main-menu>li.menu-item:hover > a {
    text-decoration: none;
    color: #fff
}

.desktop-navigation #main-menu>li.menu-item:hover > a,
.desktop-navigation #main-menu>li.current-menu-item > a{
    border: 2px solid #fff;
}

.desktop-navigation .sub-menu {
    padding: 0px;
    position: absolute;
    top: 67px;
    left: -50%;
    transform: translateX(7%);
    transform-origin: center;
    width: 200px;
    min-width: 200px;
    background: #fff;
    height: auto;
    transition: 0s;
    padding: 10px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
    border-top: 4px solid var(--primary-color);
    display: none;
    opacity: 0;
}

.desktop-navigation .sub-menu li {
    list-style-type: none;
}
.desktop-navigation .sub-menu li >a {
    display: block;
    padding: 5px 10px;
}
.desktop-navigation #main-menu ul.sub-menu a {
    color: var(--footer-bg);
}

.desktop-navigation #main-menu ul.sub-menu a:hover {
    color: var(--menu-hover-color);
}
.desktop-navigation #main-menu > li{
 height: 100%;
}
.desktop-navigation .menu-item-has-children:hover>.sub-menu,
.desktop-navigation .menu-item-has-children>.sub-menu:hover {
    display: block;
    opacity: 1;
}
.desktop-navigation .menu-item-has-children{
    position: relative;
    min-height: 41px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.desktop-navigation .menu-item-has-children > a::after {
    display: inline-block;
    content: '';
    width: 10px;
    height: 10px;
    position: relative;
    top: -3px;
    right: -11px;
    transform: rotate(45deg);
    border-color: #fff;
    border-style: solid;
    border-width: 0px 2px 2px 0px;
}






.mobile-navigation {
    display: none;
}

.mobile-navigation i {
    color: #fff;
    font-size: 26px;
    cursor: pointer;
}

@media (max-width: 890px) {
    .desktop-navigation {
        display: none;
    }

    .mobile-navigation {
        display: block;
    }
}

.mobile-menu {
    margin-top: 20px;
    padding-right: 20px;
}

.mobile-menu ul {
    padding: 0px;
    margin: 0px;
    list-style-type: none;
}

.mobile-menu #main-menu>li.menu-item {
    position: relative;
    padding: 10px 15px;
    text-transform: uppercase;
    font-weight: 500;
    border: 2px solid transparent;
}

.mobile-menu #main-menu>li.menu-item a {
    color: #000;
    text-decoration: none;
    font-size: 16px;
}

.mobile-menu #main-menu>li.menu-item a:hover {
    color: var(--menu-hover-color);
}

.mobile-menu .menu-item-has-children {
    position: relative;
}

.mobile-menu .menu-item-has-children::after {
    content: '';
    width: 12px;
    height: 12px;
    position: absolute;
    top: 12px;
    right: 5px;
    transform: rotate(45deg);
    border-color: #000;
    border-style: solid;
    border-width: 0px 1px 1px 0px;
}

.mobile-menu #main-menu>li.menu-item-has-children .sub-menu {
    display: none;
    padding: 10px 15px;
}

.mobile-menu #main-menu>li.menu-item-has-children.active-submenu>ul.sub-menu {
    display: block;
}

.mobile-menu .sub-menu li {
    padding: 8px 0px;
}

.mobile-menu #main-menu li.menu-item.current-menu-item>a {
    color: var(--primary-color);
}

.mobile-menu .current-menu-item.menu-item-has-children::after {
    border-color: var(--primary-color);
}


/*end header css*/

.vimeo-wrapper {
    position: relative
}

.vimeo-wrapper:after {
    content: "";
    background-color: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;

}

/* Play Button */
.playicon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.vimeo-super-wrap {
    transform: scale(1.01);
}

#play_banner,
#pause_banner {
    border-radius: 100%;
    border: 2px solid #fff;
    cursor: pointer;
    width: 60px;
    height: 60px;
    position: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
}

#play_banner i,
#pause_banner i {
    color: #fff;
    font-size: 28px;
}

.hero-banner {
    position: relative;
    padding: 0px !important;
}

.hero-banner iframe {
    background: url('/wp-content/uploads/2025/04/hero-image-2025-updated.webp');

}

#pause_banner {
    display: none;
}

/* photo gallery */
.gallery_item img, .photo-gallery-equal .img-fluid {
    opacity: 1 !important;
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: 50% 8%;
}

.gallery_item {
    padding-bottom: 18px;
}

@media (max-width: 1024px) {
    .gallery_item img,.photo-gallery-equal .img-fluid {
        width: 100%;
        height: 270px;
    }

    .gallery_item {
        padding-bottom: 10px;
    }
}

@media (max-width: 766px) {
    .gallery_item img,.photo-gallery-equal .img-fluid {
        width: 100%;
        height: auto;
    }

}

.gallery_item .fancy-img,
.photo_gallery_items .fancy-img {
    position: relative;
    overflow: hidden;
}

.gallery_item .fancy-overly,
.photo_gallery_items .fancy-overly {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    top: 0px;
    left: 0px;
    opacity: 0;
    transition: 0.3s;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}

.gallery_item:hover>a .fancy-img .fancy-overly,
.photo_gallery_items:hover>a .fancy-img .fancy-overly {
    opacity: 1;
}

/* video gallery */

.alternate-bg {
    background: #dfe5f7;
}
.video_gallery_items {
    padding-bottom: 20px
}

.video_gallery_items a {
    text-decoration: none;
}

.video_gallery_items p {
    font-size: 16px;
    text-align: center;
    font-weight: 400;
    color: var(--footer-bg);
}

.video_gallery_items img {
    width: 100%;
}

.filter {
    position: relative;
}

.filter button {
    display: inline-block;
    background-color: var(--button-bg-color);
    padding-top: 8px;
    padding-right: 25px;
    padding-bottom: 8px;
    padding-left: 25px;
    color: var(--button-color);
    border-radius: 4px;
    font-weight: bold;
    font-style: normal;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
}

.filter-items {
    padding: 20px 30px;
    display: inline-block;
    box-shadow: 0px -29px 140px 0px rgba(0, 0, 0, 0.15);
    position: absolute;
    left: 0px;
    top: 50px;
    z-index: 9;
    background: #fff;
    display: none;
}

.filter-items.active-filter {
    display: block;
}

.filter-items ul {
    list-style-type: none;
    padding: 0px;
    margin: 0;
}

.filter-items ul li {
    margin-bottom: 8px;
}

.filter-items label {
    user-select: none
}

.filter-items input[type="checkbox"] {
    appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid var(--footer-bg);
    position: relative
}

.filter-items input[type="checkbox"]:after {
    content: '';
    position: absolute;
    top: -35%;
    left: 0%;
    width: 150%;
    height: 150%;
    background: var(--footer-bg);
    clip-path: polygon(29% 43%, 41% 63%, 87% 24%, 92% 32%, 39% 75%, 22% 48%);
    display: none;
}

.filter-items input[type="checkbox"]:checked:after {
    display: block;
}

/* footer */

footer {
    width: 100%;
    background: var(--footer-bg);
    padding: 20px 10px;
    color: #fff;
}

footer p {
    margin-bottom: 0px;
}

footer .icons {
    text-align: right;
}

footer .icons a {
    color: var(--white);
    font-size: 24px;
    padding-right: 20px;
}

footer .icons a:hover {
    color: var(--primary-color);
}

@media (max-width: 766px) {
    footer .icons {
        padding-top: 20px;
    }

    footer p,
    footer .icons {
        text-align: center;
    }
}
/* Footer end */
/* Video Loader */
.video-loader {
    position: relative;
    width: 100%;
}

.video-loader .loader {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);

    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(0, 0, 0, 0.5);
    z-index: -1;
    font-size: 24px;
}

/* Portfolio Websites */
.websites{
	row-gap: 20px;
}

.website_group{
    position: relative;
	border-radius: 5px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    border-radius: 5px;
  border: 1px solid #e5e7eb;
	height: 100%;
}
.website_group div:has(img){
position: relative;
}
.websites_overlay{
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6);
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.3s;
	opacity: 0;
}
.websites_overlay .theme-btn{
	transform: translateY(20px);
	transition: 0.3s;
	opacity: 0;
}
.websites_item:hover .websites_overlay{
	opacity: 1;
}

.websites_item:hover .websites_overlay .theme-btn{
	opacity: 1;
	transform: translateY(0px);
}

.websites_item img{
	width: 100%
}
.websites_details{
	width: 100%;
	position: relative;
	/* left: 0; */
	/* bottom: 0px; */
	background: #fff;
	padding: 20px;
	border-top: 1px solid #e5e7eb;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
}
.websites_details .item_title{
	font-family: var(--title-font);
    text-align: center;
    padding-bottom: 0px !important;
}