:root {
    --ease: cubic-bezier(0.91, 0, 0.35, 1);
}

p{
	margin: 0;
	padding: 0;
}

/* Button */
.silver-button {
	display: flex;
	padding: 8px 28px;
	justify-content: center;
	align-items: center;
	gap: 8px;
	border-radius: 39px;
	background: rgba(255, 255, 255, 0.8);
	transition: all 0.3s ease-in-out;

	p {
		font-family: Inter;
		font-size: 20px;
		font-style: normal;
		font-weight: 600;
		line-height: 24px;
		color: #787575;
		text-align: center;
		transition: all 0.3s ease-in-out;
	}
	svg path {
		stroke: #787575;
		transition: all 0.3s ease-in-out;
	}

	&:hover {
		background: rgba(255, 255, 255, 1);
		box-shadow: 0 0 32px 0 rgba(255, 255, 255, 0.5);
		p {
			color: #090909;
		}
		svg path {
			stroke: #090909;
		}
	}
}
.silver-button.light{
	background: #4F4F4F;
	p {
		color: rgba(255, 255, 255, 0.65);
	}
	svg path {
		stroke: rgba(255, 255, 255, 0.65);
	}

	&:hover {
		background: #090909;
		box-shadow: 0 0 32px 0 #000;
		p {
			color: #FFF;
		}
		svg path {
			stroke: white;
		}
	}
}

header{
	background-color: transparent !important;
	position: fixed;
    top: 0;
    width: 100%;
    z-index: 9;
}
.portfolio-grid{
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.portfolio-item{
    position:relative;
    overflow:hidden;
    border-radius: 24px;
	border: 2px solid #282828;
	background: #000;
	width: calc((100% - 32px) / 2);
}

.portfolio-item a{
    display:block;
    position:relative;
}

.portfolio-item img{
    height: 513px !important;
    object-fit:cover;
    display:block;
    transition:transform .3s ease;
	width: 100%;
}
.portfolio-item .portfolio-title{
	padding: 40px;
}
.portfolio-title h3{
	font-family: var(--e-global-typography-secondary-font-family), Sans-serif;
    font-size: var(--e-global-typography-secondary-font-size);
    font-weight: var(--e-global-typography-secondary-font-weight);
    text-transform: var(--e-global-typography-secondary-text-transform);
    line-height: var(--e-global-typography-secondary-line-height);
    letter-spacing: var(--e-global-typography-secondary-letter-spacing);
    color: var(--e-global-color-secondary);
	margin: 0px;
}

.splide {
	overflow: visible;
}

.splide__track {
	overflow: visible !important;
}

.splide__list {
	align-items: stretch;
}

.splide__slide {
	opacity: 1;
}

.splide__track,
.splide__list {
	transition-timing-function: cubic-bezier(0.91, 0, 0.35, 1) !important;
}

.testimonialsSlider .team-card {
	border: 2px solid #282828;
	max-width: 947px;
    margin: 0 auto;
	border-radius: 24px;
	padding: 40px;
	min-height: 250px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.testimonialsSlider .team-top{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	align-self: stretch;    
}
.testimonialsSlider .team-top h4 {
	color: #fff;
	font-family: Manrope;
	font-size: 40px;
	font-style: normal;
	font-weight: 700;
	line-height: 48px;
	letter-spacing: -0.8px;
	margin: 0;
}

.testimonialsSlider .team-top p {
	color: rgba(255, 255, 255, 0.65);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
}

.testimonialsSlider .line {
	height: 2px;
	background: #282828;
	margin: 24px 0;
}

.testimonialsSlider .quote {
	color: #fff;
	font-family: Manrope;
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: 28px;
	letter-spacing: -0.24px;
	max-width: 867px;
	margin: 16px 0;
}

.testimonialsSlider .controls {
	display: flex;
	justify-content: flex-end;
	place-self: center;
	width: 100%;
	max-width: 947px;
	gap: 32px;
	margin-top: 32px;
}

.testimonialsSlider .arrow {
	padding: 16px;
	border-radius: 50%;
	border: none;
	cursor: pointer;
	border: 2px solid #282828;
	background: rgba(255, 255, 255, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.testimonialsSlider .arrow:hover {
	background: #fff;
}

.testimonialsSlider .arrow:active {
	transform: scale(0.9);
}

.testimonialsSlider .arrow svg {
	width: 28px;
	height: 28px;
}

/* Form */
.prime-global-form {
    display: flex;
    flex-direction: column;
    gap: 42px;

    .form-input input,
    .form-input textarea {
        width: 100%;
    }

    .form-input {
        display: flex;
        flex-direction: column;
        gap: 8px;
        position: relative;
    }

    label {
        position: absolute;
		background: transparent;
        top: 18px;
        pointer-events: none;
        transition: all .3s cubic-bezier(0.91, 0, 0.35, 1);
        transform-origin: left center;
        color: #9D9D9D;
        font-family: Inter;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px;
		z-index: 1;
    }

    input {
        background: transparent;
        color: #9D9D9D;
		z-index: 0;
        font-family: Inter;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px;
        padding: 16px 0 !important;
        border-radius: 0px !important;
        outline: none !important;
        border: none !important;
        border-bottom: 1px solid #CECECE !important;
        transition: all 0.3s ease-in-out !important;
    }

    input:focus {
        border: none;
        outline: none;
        border-bottom: 1px solid #FFF;
    }

    textarea {
        background: transparent;
        color: #9D9D9D;
        font-family: Inter;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px;
        padding: 16px 0;
        border-radius: 0px;
        outline: none;
        border: none;
        border-bottom: 1px solid #CECECE;
        transition: all 0.3s ease-in-out;

    }

    textarea:focus {
        border: none;
        outline: none;
        border-bottom: 1px solid #FFF;
    }

    .form-input:focus-within label {
        top: -10px;
    }

    .form-input.has-value label {
        top: -10px;
    }

    .form-input input:-webkit-autofill~label {
        top: -10px;
    }

    .wpcf7-not-valid-tip {
        margin-top: 8px;
    }
	
	.form-submit.silver-button{
		padding: 0px;
		p{
			width: 100%;
		}
		button{
			width: 100%;
			display: flex;
			padding: 8px 28px;
			justify-content: center;
			align-items: center;
			gap: 4px;
			border-radius: 39px;
			border: none;
			outline: none;
			background: rgba(255, 255, 255, 0.8);
			transition: all 0.3s ease-in-out;
		}
		button:focus{
			border: none;
			outline: none;
		}
		span {
		font-family: Inter;
		font-size: 20px;
		font-style: normal;
		font-weight: 600;
		line-height: 34px;
		color: #787575 !important;
		text-align: center;
		transition: all 0.3s ease-in-out;
		}
		button:hover {
			span {
				color: #090909 !important;
			}
		}
	}
}

.silver-background-grad, .portfolio-template, .page-id-186, .page-id-194, .page-id-323 {
    background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.10) 0%, rgba(0, 0, 0, 0.10) 100%), #000;
}

/* Slide Animation */
.anim-slide-up {
    opacity: 0;
    transform: translateY(40px);
    will-change: opacity, transform;
}

body.page-loaded .anim-slide-up {
    animation: slideUpFade 1s cubic-bezier(0.91, 0, 0.35, 1) forwards;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Banner Animation */

/* ---------------- */
/* Mask */
/* ---------------- */

.mask {
    position: relative !important;
    overflow: hidden;
}

.mask::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #000; /* Match page background */
    z-index: 2;
    transform: translateY(0);
}

/* ---------------- */
/* Initial State */
/* ---------------- */

.anim-pagetitle,
.anim-image {
    transform: translateY(170px);
	overflow: visible;
    will-change: transform;
}

.anim-banner.no-image .anim-pagetitle{
	transform: translateY(100px);
}

.anim-image {
    transform: translateY(240px) scale(1.11);
	transform-origin: bottom center;
    opacity: 0;
}

.anim-bottom {
    transform: translateY(240px);
	transform-origin: bottom center;
    opacity: 0;
}

/* ---------------- */
/* Phase 1 */
/* Curtain Reveal */
/* ---------------- */

.page-reveal .mask::after {
    transform: translateY(101%);
    transition: transform 1.6s cubic-bezier(0.91, 0, 0.35, 1);
}

.page-reveal .anim-image{
	transform: translateY(240px) scale(1);
	opacity: 1;
	transform-origin: top center;
	transition: transform 1.6s var(--ease), opacity .8s ease !important;
}


/* ---------------- */
/* Phase 2 */
/* Title + Image Together */
/* ---------------- */

.page-enter .anim-pagetitle {
    transform: translateY(0);
    transition: transform 1s var(--ease) !important;
}

.page-enter .anim-banner.no-image .anim-pagetitle{
	transform: translateY(0);
	transition: transform 1s var(--ease) !important;
}

.page-enter .anim-image {
    transform: translateY(0) scale(1);
    transition:
        transform 1s var(--ease) !important;
}

.page-enter .anim-bottom {
    transform: translateY(0);
    opacity: 1;
	transition: transform 1s var(--ease), opacity 1s ease !important;
}

@media (max-width:1024px){
	.testimonialsSlider .team-card {
		min-height: auto;
		padding: 20px;
	}

	.testimonialsSlider .team-top h4 {
		font-size: 24px;
		font-style: normal;
		font-weight: 700;
		line-height: 28px;
		letter-spacing: -0.24px;
	}

	.testimonialsSlider .quote {
		font-size: 24px;
		line-height: 28px;
		letter-spacing: -0.24px;
	}

	.testimonialsSlider .controls {
		justify-content: space-between;
		margin-top: 32px;
	}
	
	.portfolio-item img{
		height: 250px !important;
	}
	.portfolio-item .portfolio-title{
		padding: 20px;
	}
	.portfolio-title h3{
		font-size: 18px;
		line-height: 24px; 
	}
}
@media (max-width:767px){
    .portfolio-grid{
        grid-template-columns:1fr;
    }
.silver-background-grad, .portfolio-template, .page-id-186, .page-id-194, .page-id-323 {
    background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.0) 0%, rgba(0, 0, 0, 0.0) 100%), #000;
}
	
	.footer-accordion .footer-title{
		cursor: pointer;
	}

	.footer-accordion .footer-title .elementor-icon-list-icon, .cont-icon .elementor-icon-list-icon{
		display: none !important;
	}

	.footer-accordion .footer-title .elementor-icon-list-text, .cont-icon .elementor-icon-list-text{
		padding-left: 0 !important;
	}

	.footer-accordion .footer-title .elementor-icon-list-item .elementor-icon-list-text{
		position: relative;
		display: block;
		padding-right: 24px;
	}

	.footer-accordion .footer-title .elementor-icon-list-item .elementor-icon-list-text::after{
		content: "";
		position: absolute;
		right: 0;
		width: 12px;
		height: 8px;
		background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='8' viewBox='0 0 13 8' fill='none'%3E%3Cpath d='M11.4141 1.41406L6.41406 6.41406L1.41406 1.41406' stroke='white' stroke-width='2' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
		background-size: contain;
		transition: transform .3s ease;
		margin-top: 10px;
	}

	.footer-accordion.active .footer-title .elementor-icon-list-item .elementor-icon-list-text::after{
		transform: rotate(180deg);
	}

}

.no-search-result{
	font-family: var(--e-global-typography-text-font-family), Sans-serif;
    font-size: var(--e-global-typography-text-font-size);
    font-weight: var(--e-global-typography-text-font-weight);
    font-style: var(--e-global-typography-text-font-style);
    line-height: var(--e-global-typography-text-line-height);
    letter-spacing: var(--e-global-typography-text-letter-spacing);
    color: var(--e-global-color-text);
	text-align: center;
}