* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html {
	overflow-x: hidden;
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}
body {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.8;
	font-family: "Jost", sans-serif;
	color: var(--text-color);
	background-color: var(--main-color);
}


/* Header Section style css ====================================== */
.nu-header {
	position: relative;
	top: 0;
	right: 0;
	left: 0;
    width: 100%;
    -webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
    z-index: 999;
}
.nu-header.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.8);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    animation: slideDown 0.4s ease;
}
/* Smooth drop animation */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}
.header-lower {
	position: relative;
	width: 100%;
	background: rgba(255,255,255,0.8);
	padding-top: 36px;
}
.header-lower .shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 36px;
    background-image: url("../media/shape.png");
    background-repeat: repeat-x;
    background-size: auto 100%;
    animation: slide 60s linear infinite;
    z-index: 1;
}
@-webkit-keyframes slide {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 1920px 0;
    }
}
@keyframes slide {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 1920px 0;
    }
}
.nu-header.fixed-header .shape {
    display: none;
}
.nu-header.fixed-header .header-lower {
    padding-top: 0;
}
.nu-navbar {
    min-height: 95px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 0 45px;
}
.nu-logo img {
    max-height: 55px;
    width: auto;
}
.nu-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}
.nu-menu ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 38px;
    padding: 0;
    margin: 0;
}
.nu-menu ul li a {
	position: relative;
	display: inline-block;
    color: var(--half-dark-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
	font-family: "Jost", sans-serif;
	padding-bottom: 6px;
    transition: color 0.3s ease;
}
.nu-menu ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: var(--theme-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}
.nu-menu ul li a:hover,
.nu-menu ul li a.active {
    color: var(--theme-color);
}
.nu-menu ul li a:hover::after,
.nu-menu ul li a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}
.nu-menu ul li a::after {
    transform-origin: right;
}
.nu-menu ul li a:hover::after {
    transform-origin: left;
}
.nu-right {
    display: flex;
    align-items: center;
    gap: 26px;
}
.nu-social {
    display: flex;
    align-items: center;
    gap: 24px;
}
.nu-social a,
.nu-mobile-social a {
    color: var(--half-dark-color);
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s ease;
}
.nu-social a:hover,
.nu-mobile-social a:hover {
    color: var(--theme-color);
}
.nu-menu-toggle {
    display: none;
    border: none;
    background: transparent;
    font-size: 24px;
    color: var(--dark-color);
}
/* Mobile Sidebar */
.nu-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 9998;
}
.nu-mobile-menu {
    position: fixed;
    top: 0;
    right: -340px;
    width: 320px;
    max-width: 90%;
    height: 100vh;
    background: var(--white-color);
    padding: 28px;
    z-index: 9999;
    transition: 0.4s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.12);
}
.nu-mobile-menu.active {
    right: 0;
}
.nu-mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}
.nu-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 35px;
}
.nu-mobile-logo img {
    max-height: 50px;
}
.nu-menu-close {
    border: none;
    background: transparent;
    font-size: 26px;
    color: #1f2937;
}
.nu-menu-close,
.nu-menu-toggle {
    cursor: pointer;
}
.nu-mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}
.nu-mobile-nav li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.nu-mobile-nav li a {
    display: block;
    padding: 16px 0;
    color: var(--half-dark-color);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
}
.nu-mobile-nav li a.active,
.nu-mobile-nav li a:hover {
    color: var(--theme-color);
}
.nu-mobile-social {
    display: flex;
    gap: 22px;
    margin-top: 35px;
}

/* Content Area Section style css ================================================ */
#content-wrap {
	position: relative;
	overflow: hidden;
}


/* Main Banner Section style css ================================================= */

.fullpage-slider {
	position: relative;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-direction: column;
	width: 100%;
	height: calc(100vh - 130px);
	font-size: 16px;
	background-color: var(--white-color);
	clip-path: none !important;
	padding: 0 70px;
	box-sizing: border-box;
	z-index: 2
}
.banner-horizontal {
	width: 100%;
	height: 100%;
}
.fullpage-slider .swiper {
    border-left: 1px solid rgba(0,0,0,0.08);
    border-right: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.fullpage-slider .swiper-slide {
	position: relative;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	text-align: left;
	flex-direction: column;
	overflow: hidden;
}
.fullpage-slider .slider-inner {
	position: relative;
	height: calc(100vh - 130px);
	background: var(--dark-color);
}
.fullpage-slider .swiper-slide .slider-inner img {
	width: 100%;
	height: calc(100vh - 130px);
	object-fit: cover;
	display: block;
}
.fullpage-slider .swiper-slide .slider-inner video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/*
.fullpage-slider .swiper-slide .slider-inner::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	pointer-events: none;
	z-index: 1;
}
*/
.fullpage-slider .swiper-slide .slider-inner .swiper-content {
	position: absolute;
	top: 22%;
	left: 50px;
	z-index: 1;
}
.fullpage-slider .swiper-slide .slider-inner::after {
	content: "";
	position: absolute;
	width: 101%;
	height: 100%;
	top: 0;
	left: -1px;
	background-color: rgba(0, 0, 0, 0.55);
	background-image: radial-gradient(at center right, #FFFFFF00 50%, #00000096 100%);
}
.swiper-slide .slider-inner .swiper-content .title-area .tag {
	font-size: 24px;
	font-weight: 500;
	letter-spacing: 5px;
	color: var(--white-color);
	margin-top: 0;
	margin-bottom: 10px;
}
.swiper-slide .slider-inner .swiper-content .title-area .title {
	font-size: calc(35px + 3vw);
	font-weight: 900;
	font-family: "Cormorant Garamond", serif;
	line-height: 1.1;
	text-transform: uppercase;
	color: var(--white-color);
	margin-bottom: 10px;
	text-decoration: none;
}
.swiper-slide .slider-inner .swiper-content p.disc {
	font-size: 20px;
	font-weight: 400;
	line-height: 32px;
	color: var(--white-color);
	max-width: 700px;
	width: 100%;
	margin: 20px 0px 10px 0px;
}
.btn-wrap .slide-btn {
	position: relative;
	display: -webkit-inline-flex;
	display: -moz-inline-flex;
	display: -ms-inline-flex;
	display: -o-inline-flex;
	display: inline-flex;
	font-size: 1.4em;
	font-weight: 400;
	justify-content: center;
	align-items: center;
	color: var(--white-color);
	margin-left: 18px;
	text-decoration: none;
	white-space: nowrap;
	outline: none;
	user-select: none;
	outline-color: transparent;
	box-shadow: none;
	will-change: transform;
	backface-visibility: hidden;
	transition: margin-left 300ms cubic-bezier(0.49, 0, 0.01, 1);
	cursor: pointer;
}
.btn-circle .circle {
	position: absolute;
	right: calc(100% - 10px);
	top: 0;
	bottom: 0;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: auto;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	clip-path: circle(25% at 50% 50%);
	transition: clip-path 500ms cubic-bezier(0.49, 0, 0.01, 1);
}
.btn-circle .circle .circle-fill {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: 100%;
	background-color: var(--white-color);
	will-change: transform;
	transform: scale(0);
	transition: transform 500ms cubic-bezier(0.49, 0, 0.01, 1), background-color 500ms cubic-bezier(0.49, 0, 0.01, 1);
	z-index: 1;
}
.btn-circle .circle-icon {
	position: absolute;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	align-items: center;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	overflow: hidden;
	opacity: 0;
	transform: translate(-100%, 0%);
	transition: all 500ms cubic-bezier(0.49, 0, 0.01, 1);
	z-index: 2;
}
.btn-circle .circle-icon .icon_arrow {
	width: 20px;
	height: 20px;
	stroke: none;
	fill: #000;
}
.btn-circle .circle-outline {
	width: 10px;
	stroke: var(--white-color);
	fill: transparent;
}
.btn-wrap .slide-btn .btn-label {
	margin-left: 4px;
	transition: transform 500ms cubic-bezier(0.49, 0, 0.01, 1);
}
.btn-wrap .slide-btn .btn-border {
	position: absolute;
	left: 4px;
	right: 0;
	bottom: 0;
	height: 1px;
	background: currentColor;
	transform-origin: right;
	transition: transform 500ms cubic-bezier(0.49, 0, 0.01, 1);
}
.btn-wrap .slide-btn:hover .btn-label {
	transform: translateX(18px);
}
.btn-wrap .slide-btn:hover .btn-border {
	transform: scale(0, 1);
}
.btn-wrap .slide-btn:hover {
	margin-left: 38px !important;
}
.btn-wrap .slide-btn:hover .circle {
	clip-path: circle(50% at 50% 50%);
}
.btn-wrap .slide-btn:hover .circle-fill {
	transform: scale(1, 1);
}
.btn-wrap .slide-btn:hover .circle-icon {
	transform: translate(0%, 0%);
	opacity: 1;
}
.fullpage-slider .swiper-container-h .swiper-button-next,
.fullpage-slider .swiper-container-h .swiper-button-prev {
	width: 45px;
	height: 45px;
	top: unset;
	bottom: 50px;
	line-height: 45px;
	background-color: #ffffff0D;
	backdrop-filter: blur(20px);
	border-radius: 50%;
	transform: scale(1);
	transition: all 0.4s;
}
.fullpage-slider .swiper-container-h .swiper-button-next {
	right: 50px;
}
.fullpage-slider .swiper-container-h .swiper-button-prev {
	left: 50px;
}
.swiper-container-h .slider-pagination-area {
	position: absolute;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	align-items: center;
	top: unset;
	right: unset;
	bottom: 80px;
	left: 50% !important;
	width: 500px;
	transform: translateX(-50%);
	z-index: 1;
}
.swiper-container-h .slider-pagination-area .slide-range {
	position: absolute;
	font-size: 20px;
	font-weight: 500;
	line-height: 0;
	color: var(--white-color);
	margin: 0 15px;
}
.swiper-container-h .slider-pagination-area .slide-range.one {
	left: -50px;
}
.swiper-container-h .slider-pagination-area .slide-range.five {
	right: -50px;
}
.swiper-container-h .slider-pagination-area .swiper-pagination {
	width: 500px !important;
	bottom: 0 !important;
}
.swiper-container-h .slider-pagination-area .swiper-pagination .swiper-pagination-progressbar-fill {
	background: var(--white-color);
}
.swiper-container-h .swiper-button-next::after {
	content: "\e944";
	font-size: 30px;
	font-family:'linearicons';
	font-weight: 400;
	background: none;
	color: var(--white-color);
}
.swiper-container-h .swiper-button-prev::after {
	content:"\e943";
	font-size: 30px;
	font-family:'linearicons';
	font-weight: 400;
	background: none;
	color: var(--white-color);
}
.fullpage-slider .swiper-container-h .swiper-button-next:hover,
.fullpage-slider .swiper-container-h .swiper-button-prev:hover {
	background: #FFFFFF40;
}

/* Client Logo Section Style CSS ==================================================== */
.client-section {
	position: relative;
	padding-top: 150px;
	padding-bottom: 100px;
	background-color: var(--white-color);
}
.client-active .swiper-wrapper {
    transition-timing-function: linear !important;
}
.client-logo img {
    max-height: 80px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: 0.3s ease;
}
.client-logo img:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* About Section Style CSS ========================================================== */
.about-content {
	position: relative;
}
.arc-home-about-left {
	position: relative;
	z-index: 1;
}
.arc-home-about-left::before,
.arc-home-about-left::after {
	content: "";
	position: absolute;
	width: 80%;
	height: 80%;
	background-image: url("../media/bg-5.png");
	background-repeat: repeat;
	-webkit-animation: slide-top 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) infinite alternate-reverse ;
	animation: slide-top 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) infinite alternate-reverse ;
	z-index: -1;
}
.arc-home-about-left:before {
	-webkit-animation: slide-top 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) infinite alternate-reverse ;
	animation: slide-top 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) infinite alternate-reverse ;
}
.arc-home-about-left:after {
	-webkit-animation: slide-bottom 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) infinite alternate-reverse ;
	animation: slide-bottom 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) infinite alternate-reverse ;
}

/*animation slide-top*/
@-webkit-keyframes slide-top {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}
@keyframes slide-top {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

/*animation slide-bottom*/
@-webkit-keyframes slide-bottom {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}
@keyframes slide-bottom {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}
.arc-home-about-left:before {
	left: -2px;
	bottom: -50px;
}

.arc-home-about-left:after {
	top: -50px;
	right: -2px;
}
.arc-home-left-content {
	padding: 40px 30px;
	margin: 50px 40px;	
}
.arc-home-left-content p {
	font-size: 15px;
	font-weight: 400;
	line-height: 26px;
	margin-bottom: 24px;
	letter-spacing: 1px;
	color: var(--text-color);
}
.nu-title-light {
	font-size: 28px;
	font-weight: 300;
	font-family: "Cormorant Garamond", serif;
	line-height: 40px;
	text-transform: capitalize;
	letter-spacing: 2px;
	margin-bottom: 20px;
	color: var(--dark-color);
}
.nu-title {
	font-size: 42px;
	font-weight: 400;
	line-height: 52px;
	color: var(--dark-color);
	margin-bottom: 24px;
	text-transform: uppercase;
}
.site-button-link {
	display: inline-block;
	font-weight: 600;
	text-transform: uppercase;
}
.arc-home-about-right .row [class*="col-"] {
	padding-left: 20px;
	padding-right: 0px;
}
.arc-home-about-right span.title-small {
	display: block;
	font-weight: 600;
}
.arc-about-year-pic {
	position: relative; 
	background-color: var(--white-color);
}
.arc-about-year-pic img {
	widows: 100%; 
	opacity: 0.1;
}
.arc-about-year-info {
	position: absolute;
	top: 0px;
	right: 0px;
	padding: 20px;
}
.img-reflection {
	position: relative;
	background-position: left top;	
	background-size: 100% auto;
	background-repeat: no-repeat;
	overflow: hidden;
}
.img-reflection:after {
	content: "";
	position: absolute;
	top: -50%;
	left: -100%;
	width: 35%;
	height: 200%;
	background-color: rgba(255, 255, 255, 0.2);
	-webkit-transition: all 0.5s linear;
	-moz-transition: all 0.5s linear;
	-ms-transition: all 0.5s linear;
	-o-transition: all 0.5s linear;
	transition: all 0.5s linear;
	-moz-transform: rotate(40deg);
	-webkit-transform: rotate(40deg);
	-o-transform: rotate(40deg);
	-ms-transform: rotate(40deg);
	transform: rotate(40deg);
}
.img-reflection:hover:after{
	left: 150%;
}
/* Project Section Style CSS ========================================== */
.nu-title-main {
	float: left;
	padding-right: 50px;
}
.nu-small-title {
	font-size: 22px;
	font-weight: 400;
	line-height: 1.5;
	text-transform: uppercase;
	color: var(--dark-color);
}
.nu-title-main h2 {
	font-size: 42px;
	line-height: 52px;
	font-weight: 400;
	text-transform: uppercase;
	color: var(--dark-color);
}
.title-right-details {
	padding-left: 50px;
	overflow: hidden;
}
.title-right-details p {
	font-size: 15px;
	font-weight: 400;
	
	margin-bottom: 10px;
}
.title-right-details a {
	display: inline-block;
	font-weight: 600;
	text-transform: uppercase;
}
.nu-img-effect {
	position: relative;
	display: block;
	overflow: hidden;
}
.nu-img-effect img {
	display: block;
	margin: 0;
	width: 100%;
	height: auto;
	-webkit-transition: all 0.25s;
	-moz-transition: all 0.25s;
	-ms-transition: all 0.25s;
	-o-transition: all 0.25s;
	transition: all 0.25s;
}
.work-carousel-outer {
	position: relative;
    overflow: visible;
}
.work-carousel-outer .swiper-slide {
    width: 50%;
    opacity: 0.45;
    transition: opacity 0.4s ease;
}
.work-carousel-outer .swiper-slide.swiper-slide-active {
    opacity: 1;
    z-index: 2;
}
.work-carousel-outer .nu-img-effect {
	height: 600px;
    background-size: cover;
    background-position: center;
}
.work-carousel-outer .nu-img-effect .nu-info {
	position: absolute;
	left: 50px;
	bottom: 50px;
	width: 50%;
	color: var(--white-color);
	background-color: rgba(0,0,0,0.5);
	padding: 30px;
	border: 2px solid var(--white-color);
	opacity: 0;
	z-index: 2;
}
.work-carousel-outer .swiper-slide-active .nu-info {
    opacity: 1;
}
.nu-img-effect .nu-info .nu-title a {
	color: var(--white-color);
}
.nu-img-effect .nu-info a {
	color: var(--white-color);
}
.work-swiper-prev,
.work-swiper-next {
    position: absolute;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: center;
	justify-content: center;
    top: 50%;
    width: 48px;
    height: 48px;
    background: #111;
    color: var(--white-color);
    font-size: 22px;
    cursor: pointer;
    transform: translateY(-50%);
 	opacity: 0.3;
    transition: all 0.3s ease;
	z-index: 10;
}
.work-swiper-prev {
    left: 20px;
}
.work-swiper-next {
    right: 20px;
}
.work-carousel-outer:hover .work-swiper-prev,
.work-carousel-outer:hover .work-swiper-next {
    opacity: 1;
}

/* Service Section Style CSS ============================================= */
.nu-icon-box-wraper {
	position: relative;
	min-height: 380px;
}
.data-title-large {
	position: relative;
	overflow: hidden;
}
.data-title-large .nu-title-large:after {
	content:attr(data-title);
	position: absolute;
	font-size: 360px;
	font-weight: 700;
	font-family: "Cormorant Garamond", serif;
	line-height:360px;
 	color: #fff;
	text-transform: uppercase;
	bottom: -90px;
	right: -40px;
	opacity:0.1;
	-webkit-transition: all .5s ease-in-out;
	-moz-transition:all .5s ease-in-out;
	-ms-transition:all .5s ease-in-out;
	-o-transition:all .5s ease-in-out;
	transition:all .5s ease-in-out;
	-webkit-text-fill-color: rgba(0,0,0,0);
	-ms-text-fill-color: rgba(0,0,0,0);
	-moz-text-fill-color: rgba(0,0,0,0);
	-o-text-fill-color: rgba(0,0,0,0);
	-webkit-text-stroke-width: 1px;
	-ms-text-stroke-width: 1px;
	-moz-text-stroke-width: 1px;
	-o-text-stroke-width: 1px;
	-webkit-text-stroke-color: #000;
	-ms-text-stroke-color: #000;
	-moz-text-stroke-color: #000;
	-o-text-stroke-color: #000;
	z-index: 2;
}
.data-title-large .nu-title-large {
	font-size: 26px;
/*	text-transform: uppercase;*/
}
.data-title-large .nu-title-large span {
	font-size: 16px;
	text-transform: capitalize;
}
.data-title-large:hover .nu-title-large:after {
	opacity: 0.5;
}
.data-title-large p {
	font-size: 15px;
}
.v-icon {
	position: relative;
	display: block;
	text-align: center;
	overflow: hidden;
	cursor: pointer;
	z-index: 1;
}
.v-icon:before {
	display: block;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	speak: none;
}
.v-icon-effect:hover .v-icon:before {
	-webkit-animation: toTopFromBottom 0.3s forwards;
	-moz-animation: toTopFromBottom 0.3s forwards;
	animation: toTopFromBottom 0.3s forwards;
}
@keyframes toTopFromBottom {
	49% {
		transform: translateY(-100%);
	}
	50% {
		opacity: 0;
		transform: translateY(100%);
	}
	51% {
		opacity: 1;
	}
}
.block-bg-hover {
	position: relative;
	z-index: 1;
}
.block-bg-hover:after {
	content: "";
	position: absolute;
	top: 0;
	left: 100%;
	bottom: 0;
	width: 0;
	height: 100%;
	background-color: #1d262c;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-ms-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	z-index: -1;
}
.block-bg-hover:hover::after {
	width: 100%;
	left: 0;
	transition: width 0.3s ease;
	z-index: -1;
}
.block-bg-hover:hover,
.block-bg-hover:hover .nu-title-large,
.block-bg-hover:hover a{
	color: var(--white-color);
}
.block-bg-hover:hover a:hover{
	color: #d5dd02;
}
.block-bg-hover:hover .nu-title-large::after{
	-webkit-text-stroke-color: #f6f7f8;
	-ms-text-stroke-color: #f6f7f8;
	-moz-text-stroke-color: #f6f7f8;
	-o-text-stroke-color: #f6f7f8;
}
/* Approach Section Style CSS ========================================== */
.our-approach {
	position: relative;
    background-image: url("../media/bg/approach-bg.webp");
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    padding: 150px 0;
    z-index: 1;
}
.our-approach::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}
.our-approach .nu-title,
.our-approach .nu-sub-title,
.our-approach p,
.our-approach .nu-ac-title {
    color: #fff;
}
.accordion {
	width: 100%;
}
.accordion .nu-ac-title {
	font-size: 14px;
	font-weight: 700;
	text-align: start;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: #000;
	padding: 24px;
	padding-right: 0;
	padding-left: 0;
	border-bottom: 1px solid #d1d1d1;
	border-radius: 0 !important;
}
.accordion.approach .accordion-item {
	padding-left: 30px;
	padding-right: 30px;
	margin-bottom: 10px;
	background: rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(6px);
}
.accordion .accordion-item:first-of-type {
	border-radius: 0;
}
.accordion .accordion-item.active {
	background-color: transparent;
	border: 0;
	border-bottom: 3px solid #e1e31d;
	border-radius: 0;
}
.accordion .accordion-item.active .heading {
	color: #000;
	
}
.accordion .accordion-item.active .icon:after {
	width: 0;
}
.accordion .accordion-item.active .icon:before {
	background-color: var(--theme-color);
}
.accordion .accordion-item.active .nu-ac-title {
	background-color: transparent;
	border: 0;
	padding-bottom: 14px;
}
.accordion .accordion-item {
	border: 0;
}
.accordion .accordion-item .heading {
	width: 100%;
	display: block;
	text-transform: capitalize;
	text-decoration: none;
	color: #000;
	font-weight: 700;
	font-size: 20px;
	position: relative;
	transition: 0.3s ease-in-out;
	padding-bottom: 0px;
}
.accordion .accordion-item .icon {
	display: block;
	position: absolute;
	top: 47%;
	width: 1.4rem;
	height: 1.4rem;
	transform: translateY(-50%);
	right: 1px;
	background-color: transparent;
}
.accordion .accordion-item .icon:before {
	content: "";
	width: 20px;
	height: 1px;
	background: #000;
	position: absolute;
	left: 50%;
	top: 50%;
	transition: 0.3s ease-in-out;
	transform: translate(-50%, -50%);
}
.accordion .accordion-item .icon:after {
	content: "";
	width: 20px;
	height: 1px;
	background: #000;
	position: absolute;
	left: 50%;
	top: 50%;
	transition: 0.3s ease-in-out;
	transform: translate(-50%, -50%);
	transform: translate(-50%, -50%) rotate(90deg);
	z-index: -1;
}
.accordion .ac-content {
	margin-bottom: 20px;
	padding: 12px 0px;
	padding-top: 0px;
	border: 0;
}
.accordion .ac-content p {
	font-size: 16px;
	font-weight: 400;
	color: #444444;
}
.accordion .accordion-item .ac-content {
	display: block;
	overflow: hidden;
	max-height: 0px;
	transition: max-height 0.45s ease;
	padding: 0;
}
.accordion .accordion-item.active .ac-content {
    padding: 12px 0px;
    padding-top: 0px;
}
.accordion .accordion-item:first-of-type {
	border-top: 1px solid #d1d1d1;
}
.accordion.approach {
	position: relative;
}
.accordion.approach .accordion-item .icon {
	top: 50%;
}
.accordion.approach .accordion-item .icon:before {
	width: 20px;
}
.accordion.approach .accordion-item .icon::after {
	width: 20px;
}
.accordion.approach .accordion-item.active {
	background-color: var(--white-color);
}
.accordion.approach .accordion-item.active .icon::after {
	width: 0px;
}
.accordion.approach .accordion-item:first-of-type {
	border: 0;
}
.accordion.approach .nu-ac-title {
	border: 0 !important;
}

/* CTA Section Style CSS ============================================ */
.cta-section-full {
	position: relative;
	padding-top: 60px;
	padding-bottom: 60px;
}
.cta-section {
	position: relative;
	text-align: center;
	margin: auto;
	width: 80%;
}
.cta-section .cta-title {
	font-size: calc(1.2vw + 30px);
	font-weight: bold;
	line-height: 1.2;
	font-family: "Jost", sans-serif;
	color: var(--dark-color);
	padding-bottom: 18px;
	margin: 0;
}
.cta-section p {
	font-size: 18px;
	font-weight: 500;
	line-height: 1.4;
	margin-bottom: 36px;
}
.theme-btn {
	position: relative;
	display: -webkit-inline-flex;
	display: -moz-inline-flex;
	display: -ms-inline-flex;
	display: -o-inline-flex;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 16px;
	font-weight: 700;
	line-height: 24px;
	overflow: hidden;
	color: #fff;
	background-color: var(--theme-color);
	padding: 15px 50px;
	white-space: nowrap;
	transition: all 0.3s ease;
	z-index: 0;
}
.theme-btn::after {
	position: absolute;
	content: "";
	right: 3px;
	bottom: -3px;
	width: 5px;
	height: 24px;
	background-color: #fff;
	transition: 0.5s ease-in-out
}
.theme-btn::before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 1050%;
	height: 105%;
	transform: scale(1, 0);
	transform-origin: bottom left;
	transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
	transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
	background-color: #fff;
	z-index: -1;
}
.theme-btn:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.theme-btn:hover:before {
  transform-origin: top right;
  transform: scale(1, 1);
}
.theme-btn:hover::after {
  	background-color: var(--theme-color);
}

/* About Page Style CSS ================================================ */
.nu-leaders-section {
    position: relative;
	padding-top: 120px;
	padding-bottom: 120px;
}
/* Left Content */
.nu-tag {
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--theme-color);
    font-weight: 600;
}
.nu-title {
    font-size: calc(20px + 2vw);
	font-family: "Cormorant Garamond", serif;
    line-height: 1.2;
    color: var(--dark-color);
}
/* Card */
.nu-leader-card {
    background: #fff;
    overflow: hidden;
    transition: 0.3s ease;
    height: 100%;
}
.nu-leader-card:hover {
    transform: translateY(-6px);
}
/* Image */
.nu-leader-img {
    height: auto;
    overflow: hidden;
}
.nu-leader-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}
.nu-leader-card:hover img {
    transform: scale(1.05);
}
/* Info */
.nu-leader-info {
    padding: 18px 20px;
    border-top: 1px solid #eee;
}
.nu-leader-info h5 {
    font-size: 18px;
    color: #222;
}
.nu-leader-info p {
    font-size: 14px;
    color: #777;
}
/* LinkedIn */
.nu-linkedin {
    color: #999;
    font-size: 16px;
    transition: 0.3s;
}
.nu-linkedin:hover {
    color: #0a66c2;
}


/* Team Section Style CSS ============================================ */
.nu-team-section {
	position: relative;
	padding-top: 100px;
	padding-bottom: 100px;
	background-color: var(--white-color);
}
.nu-team-image-wrap {
    position: relative;
    display: inline-block;
    overflow: visible; /* important */
}
.nu-team-image-wrap::before {
    content: "";
    position: absolute;
    top: -5px;   /* FIXED */
    left: -10px;  /* FIXED */
    width: 70%;
    height: 70%;
    background-image: url("../media/bg-5.png");
    background-repeat: repeat;
    animation: nu-slide-top 2s ease-in-out infinite alternate;
	z-index: 0;
}
.team-image {
	padding: 10px 10px;
	margin: 10px 10px;
}
.nu-team-image-wrap img {
    position: relative;
    border-radius: 10px;
	z-index: 1;
}
@keyframes nu-slide-top {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-8px);
  }
}
/* Certificate Section Style CSS ==================================== */
.nu-cert-section {
    position: relative;
	padding-top: 120px;
	padding-bottom: 120px;
}
.nu-subtitle {
    color: #777;
    font-size: 14px;
}
.nu-cert-card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    transition: 0.3s ease;
    height: 100%;
}
.nu-cert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}
.nu-cert-card i {
    color: var(--theme-color);
    font-size: 18px;
    margin-top: 4px;
}
.nu-cert-card p {
    margin: 0;
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}

/* Career Page Style CSS =============================================== */
.nu-career-section {
    position: relative;
	padding-top: 150px;
	padding-bottom: 150px;
    color: var(--theme-color);
}

.nu-section-label {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #10284a;
    font-weight: 600;
    margin-bottom: 12px;
}

.nu-career-title {
    font-size: 46px;
    line-height: 1.2;
    color: #071b45;
    font-weight: 400;
}

.nu-career-title em {
    font-style: italic;
    color: #333b6d;
}

.nu-career-subtitle {
    max-width: 650px;
    margin: 18px auto 0;
    font-size: 16px;
    line-height: 1.7;
    color: #4e5570;
}

.nu-job-card {
    border: 1px solid #d8deea;
    border-radius: 18px;
    padding: 45px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(8, 29, 58, 0.06);
}

.nu-job-head h3 {
    font-size: 30px;
    margin-bottom: 10px;
    color: #071b45;
}

.nu-job-head p {
    color: #6b7280;
    margin: 0;
}

.nu-job-type {
    display: inline-block;
    padding: 7px 16px;
    border-radius: 30px;
    background: #edf3ff;
    color: #10284a;
    font-size: 13px;
    margin-bottom: 18px;
}

.nu-job-content h5 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: #333b6d;
}

.nu-job-content p,
.nu-job-content li {
    font-size: 15px;
    line-height: 1.8;
    color: #303653;
}

.nu-job-content ul {
    padding-left: 18px;
    margin-bottom: 0;
}

.nu-job-footer {
    border-top: 1px solid #edf0f5;
    margin-top: 35px;
    padding-top: 28px;
    text-align: center;
}
.nu-job-footer .theme-btn {
	border: none;
}
.nu-job-footer .theme-btn:hover {
	color: var(--dark-color);
}

.nu-career-modal {
    border: 0;
    border-radius: 18px;
    overflow: hidden;
}

.nu-career-modal .modal-header,
.nu-career-modal .modal-footer {
    padding: 24px 30px;
}
.modal-footer .theme-btn {
	border: none;
}
.modal-footer .theme-btn:hover {
	color: var(--dark-theme);
}
.nu-career-modal .modal-body {
    padding: 30px;
}
.nu-career-modal .form-control {
    height: 48px;
    min-height: 48px;
    border: 1px solid #d8deea;
    border-radius: 0;
    box-shadow: none;
    outline: none;
    font-size: 14px;
}
.nu-career-modal textarea.form-control {
    height: auto;
    min-height: 120px;
    resize: vertical
}
.nu-career-modal .form-control:focus {
    border-color: var(--theme-color);
    box-shadow: none;
    outline: none;
}
.nu-career-modal input[type="file"].form-control {
    height: 48px;
    padding: 0;
    line-height: 48px;
}
.nu-career-modal input[type="file"].form-control::file-selector-button {
    height: 48px;
    padding: 0 18px;
    margin: 0 14px 0 0;
    border: 0;
    border-right: 1px solid #d8deea;
    background: #f5f7fb;
    color: #222;
    cursor: pointer;
    transition: 0.3s ease;
}
.nu-career-modal input[type="file"].form-control::file-selector-button:hover {
    background: var(--theme-color);
    color: #fff;
}
.nu-career-modal input[type="file"].form-control::-webkit-file-upload-button {
    height: 48px;
    padding: 0 18px;
    margin: 0 14px 0 0;
    border: 0;
    border-right: 1px solid #d8deea;
    background: #f5f7fb;
    color: #222;
    cursor: pointer;
}
.nu-career-modal .nu-apply-btn,
.nu-apply-btn {
    background: var(--theme-color);
    border: 1px solid var(--theme-color);
    color: #fff;
    height: 48px;
    padding: 0 36px;
    box-shadow: none;
}
.nu-career-modal .nu-apply-btn:hover,
.nu-apply-btn:hover {
    background: transparent;
    color: var(--theme-color);
    border-color: var(--theme-color);
}
































/* Portfolio Section Style CSS ========================================== */
.clearfix::after,
.filter-wrap::after {
	content: "";
	display: table;
	clear: both;
}
.portfolio-head {
    margin-bottom: 35px;
}
.portfolio-head h1 {
    font-size: calc(30px + 1vw);
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 6px;
    color: #262423;
}
.portfolio-head p {
    font-size: 14px;
    color: #777;
    margin: 0;
}
.nu-info {
	position: relative;
}
.masonry-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 0;
	padding: 0;
}
.masonry-filter > li {
	list-style: none;
	margin: 0;
}
.masonry-filter > li a {
	display: inline-block;
	padding: 5px 10px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 1px;
	color: var(--theme-color);
	border: 1px solid var(--theme-color);
	background: var(--white-color);
	text-decoration: none;
	transition: all 0.3s ease;
}
.masonry-filter > li.active a,
.masonry-filter > li a:hover,
.masonry-filter > li a:active,
.masonry-filter > li a:focus {
	background: var(--theme-color);
	color: #fff;
	border-color: var(--theme-color);
}
.masonry-filter.link-style > li a {
	font-size: 12px;
}

.project-img-effect-1 {
	position: relative;
	text-align: center;
	line-height: 1.5em;
	width: 100%;
	height: 320px;
	color: #fff;
	background-color: #000000;
	overflow: hidden;
}
.project-img-effect-1 *,
.project-img-effect-1 *:before,
.project-img-effect-1 *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all 0.25s linear;
	transition: all 0.25s linear;
}
.project-img-effect-1 img {
	width: calc(120%);
	height: 100%;
	object-fit: cover;
	object-position: center;
	backface-visibility: hidden;
	vertical-align: top;
	max-width: none;
	transition: all 0.35s ease;
}
.project-img-effect-1 .nu-info {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 55px;
	padding: 8px 20px;
	text-align: left;
	opacity: 1;
	transform: none;
	background-color: rgba(20, 35, 61, 0.6);
	z-index: 2;
}
.project-img-effect-1 .nu-info .nu-title {
	margin: 0;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 1px;
	line-height: 1;
	color: #fff;
	position: relative;
/*	font-size: 20px;*/
}
.project-img-effect-1 .nu-title {
	display: block;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.project-img-effect-1 i {
	position: absolute;
	right: 0;
	bottom: 0;
	height: 55px;
	width: 55px;
	background-color: var(--white-color);
	-webkit-transform: translateX(55px);
	transform: translateX(55px);
	z-index: 3;
}
.project-img-effect-1 i:after {
	position: absolute;
	content: "";
	top: 28px;
	left: 22px;
	width: 14px;
	height: 2px;
	background-color: var(--theme-color);
}
.project-img-effect-1 i:before {
	position: absolute;
	content: "";
	top: 22px;
	left: 50%;
	width: 2px;
	height: 14px;
	background-color: var(--theme-color);
}
.project-img-effect-1 a {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.project-img-effect-1:hover img {
	zoom: 1;
	filter: alpha(opacity=30);
	-webkit-opacity: 0.3;
	opacity: 0.55;
	-webkit-transform: translateX(-40px);
	transform: translateX(-40px);
}
.project-img-effect-1:hover .nu-info {
	background-color: rgba(20, 35, 61, 1);
	transform: none;
	opacity: 1;
}
.project-img-effect-1:hover i {
	-webkit-transform: translateX(0);
	transform: translateX(0);
}


/* Single Project Page Style CSS ========================================== */
.project-detail-section {
    padding: 80px 0;
}

/* Header */
.project-header {
    margin-bottom: 40px;
}
.project-title {
    font-size: 42px;
    margin-bottom: 10px;
}
.project-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}
.project-body {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}
.project-image {
    flex: 1.5;
}
.project-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}
.project-info {
    flex: 1;
}
.info-item {
	padding: 18px 0;
    margin-bottom: 20px;
	border-bottom: 1px solid #e5e5e5;
}
.info-item span {
	display: block;
    font-size: 12px;
    text-transform: uppercase;
    color: #999;
	margin-bottom: 6px;
    letter-spacing: 1px;
}
.info-item p {
    margin: 5px 0 0;
    font-size: 15px;
}
.project-divider {
    margin: 40px 0 15px;
    border-top: 1px solid #e5e5e5;
}
.project-count {
    font-size: 14px;
    color: #777;
}
.project-category-badge {
    display: inline-block;
    background: #0d1b3d;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    margin-bottom: 28px;
}
.back-btn {
	position: relative;
	transform: .5s;
	overflow: hidden;
	z-index: 1;
}
.back-btn a {
	display: inline-block;
	position: relative;
	font-size: 15px;
	line-height: 32px;
	color: var(--theme-color);
	font-weight: 400;
	transition: .5s;
	margin-left: -103px;
	z-index: 1;
}
.back-btn::before {
	content: "";
	position: absolute;
	top: 5px;
	left: 28px;
	width: 23px;
	height: 23px;
	border: 1px solid var(--theme-color);
	border-radius: 50%;
	transition: .5s;
}
.back-btn a::before {
	content: "";
	position: absolute;
	top: 15.5px;
	right: -43px;
	height: 1px;
	width: 35px;
	background: var(--theme-color);
	transform: .5s;
	z-index: -1;
}
.back-btn a::after {
	content: "";
	position: absolute;
	top: 13px;
	right: -43px;
	height: 6px;
	width: 6px;
	background: var(--theme-color);
	border-radius: 50%;
	z-index: -1;
}
.back-btn:hover::before {
	left: 130px;
	border: 1px solid var(--text-color);
}
.back-btn:hover a::before {
	background: var(--text-color);
}
.back-btn:hover a::after {
	background: var(--text-color);
}
.back-btn:hover a {
	margin-left: 0;
}











/* Contact Page Style CSS Start ========================================= */

/* Breadcumb Section Style CSS ===================================== */
.breadcumb-area {
	position: relative;
	height: 450px;
	padding: 100px 0px 110px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	z-index: 1;
}
.breadcumb-area .breadcumb-content h1 {
	font-size: 56px;
	line-height: 60px;
	font-weight: 700;
	letter-spacing: 4px;
	color: var(--white-color);
	margin: 0 0 0;
	text-transform: uppercase;
	text-align: center;
	transition: .5s;
}
.breadcumb-content ul {
	position: absolute;
	right: 10%;
	bottom: 0;
	display: inline-block;
	background: #fff;
	padding: 12px 10px 12px 23px;
	margin: 0;
}
.breadcumb-content ul li {
	display: inline-block;
	margin-right: 20px;
	text-transform: uppercase;
	color: #515151;
}
.breadcumb-content ul li a {
	position: relative;
	display: inline-block;
	font-size: 14px;
	font-weight: 400;
	line-height: 30px;
	text-transform: uppercase;
	color: #151515;
	transform: .5s;
	z-index: 1;
}
.breadcumb-content ul li a::after {
	position: absolute;
	content: "";
	height: 16px;
	width: 2px;
	top: 7px;
	right: -13px;
	background: #515151;
	opacity: 0.5;
	transform: rotate(29deg);
}
.breadcumb-content ul li a:hover {
	color: var(--theme-color);
}
/* Contact form Section Style CSS ================================ */
.contact-section {
	position: relative;
	padding-bottom: 150px;
	background-color: var(--white-color);
}
.contact-info .get-in-touch span {
	font-weight: 600;
	color: #000;
}
.get-in-touch h6 a {
	position: relative;
	display: inline-block;
	color: #dcdcdc;
	padding-bottom: 4px;
	background-size: 200% 100%;
	background-position: -100%;
	background-image: linear-gradient(to right, #e1e31d, #e1e31d 50%, #000 50%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	transition: all 0.3s ease-in-out;
	transition: 0.5s ease-in-out;
}
.get-in-touch h6 a:hover {
	background-position: 0%
}
.contact-info .get-in-touch h6 a {
	background-image: -webkit-linear-gradient(left, #e1e31d, #e1e31d 50%, #000 50%);
	background-image: -o-linear-gradient(left, #e1e31d, #e1e31d 50%, #000 50%);
	background-image: linear-gradient(to right, #e1e31d, #e1e31d 50%, #000 50%);
}
.contact-info .widget-title {
	position: relative;
}
.contact-info .widget-title h3 {
	font-size: 22px;
	font-weight: 800;
	color: var(--dark-color);
	text-transform: capitalize;
	margin-bottom: 40px;
}
.get-in-touch {
	position: relative;
	display: flex;
	margin-bottom: 18px;
	align-items: center;
}
.get-in-touch span {
	display: block;
	font-size: 16px;
	font-weight: 700;
	color: red;
	padding-bottom: 6px;
	width: 80%;
}
.get-in-touch i {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	color: #fff;
	background-color: var(--theme-color);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	margin-right: 20px;
}
.contact-info-form {
	border-left: 1px solid #d4d4d4;
	padding-left: 60px;
}
.contact-info-form h5 {
	font-size: 20px;
	font-weight: bold;
	padding-bottom: 19px;
	margin-bottom: 25px;
}
/* Message should come above Fill the form */
#contactFormMessage:not(:empty) {
	margin-bottom: 18px;
}
#contactFormMessage .alert {
	padding: 12px 15px;
	margin-bottom: 18px;
	border-radius: 4px;
	font-size: 14px;
	line-height: 1.5;
}
#contactFormMessage .alert-success {
	background: #d1e7dd;
	color: #0f5132;
	border: 1px solid #badbcc;
}
#contactFormMessage .alert-danger {
	background: #f8d7da;
	color: #842029;
	border: 1px solid #f5c2c7;
}
/* Inputs */
#contact-form input,
#contact-form textarea {
	width: 100%;
	border: 1px solid #d4d4d4;
	background: #ffffff;
	color: var(--dark-color);
	font-size: 14px;
	line-height: 1.5;
	outline: none;
	box-shadow: none;
	margin-bottom: 20px;
	transition: 0.3s ease;
}
#contact-form input {
	height: 54px;
	padding: 0 18px;
}
#contact-form textarea {
	height: 130px;
	padding: 16px 18px;
	resize: none;
	display: block;
}
#contact-form input:focus,
#contact-form textarea:focus {
	border-color: var(--theme-color);
}
/* Submit + Spinner */
.contact-submit-wrap {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 0;
}
#contact-form .theme-btn {
	border: none;
	min-width: 170px;
	height: 54px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
#contact-form .theme-btn:hover {
	color: var(--dark-color);
}
.contact-spinner {
	width: 22px;
	height: 22px;
	border: 3px solid rgba(0, 0, 0, 0.15);
	border-top-color: var(--theme-color);
	border-radius: 50%;
	animation: contactSpin 0.8s linear infinite;
	flex: 0 0 auto;
}
.contact-spinner.d-none {
	display: none;
}

@keyframes contactSpin {
	to {
		transform: rotate(360deg);
	}
}

/* Error */
.contact-form .is-invalid {
	border-color: #dc3545 !important;
}
.contact-form .field-error {
	font-size: 13px;
	color: #dc3545;
	margin-top: -12px;
	margin-bottom: 14px;
	line-height: 1.4;
}
/* Responsive */
@media (max-width: 991px) {
	.contact-info-form {
		border-left: none;
		padding-left: 0;
		margin-top: 40px;
	}
}
@media (max-width: 575px) {
	.contact-submit-wrap {
		align-items: center;
	}

	#contact-form .theme-btn {
		width: auto;
	}
}
/* Map Section Style CSS ========================================== */
.map-section {
	position: relative;
	background-color: var(--white-color);
	padding: 0;
	border-top: 1px solid #dfdfdf
}
.map-inner iframe {
  width: 100%;
  height: 522px;
  filter: brightness(100%) contrast(100%) saturate(0%) hue-rotate(0deg);
}
/* Footer Section Style CSS ======================================= */
.site-footer.footer-light {
	border-top: 0px solid #150e07;
}
.footer-large .container-fluid {
	padding: 0px 42px;
}
.footer-light .footer-social-section {
	background-color :#fff;
	border-bottom: 1px solid #dfdfdf;
}
.footer-light .footer-social-content ul {
	display: table;
	width: 100%;
	margin: 0;
	list-style-position: outside;
	padding: 0;
}
.footer-light .footer-social-content ul li {
	display: table-cell;
	text-align: center;
	border-left: 1px solid #dfdfdf;
	line-height: 20px;
	padding: 0;
}
.footer-light .footer-social-content ul li:last-child {
    border-right: 1px solid #dfdfdf;
}
.footer-light .footer-social-content ul li a {
	display: block;
	padding: 30px;
	font-size: 28px;
	opacity: 0.3;
	color: #1e292f;
}
.footer-light .footer-social-content ul li:hover a {
	opacity: 1;
}
.overlay-wrapper {
	position: relative;
}
.footer-light .footer-top {
	background-color: #fff;
	color: var(--half-dark-color);
	padding: 50px 0px 10px 0px;
}
.overlay-main {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.5;
	pointer-events: none;
}
.overlay-wraper > .container, 
.overlay-wraper > .container-fluid {
	position: relative;
	z-index: 1;
}
.footer-large .container-fluid {
	padding: 0 42px;
}
.widget {
	margin-bottom: 40px;
}
.widget-title {
	margin: 0 0 25px;
	margin-bottom: 20px;
	color: var(--dark-color);
}
.widget_about p {
	color: #7e878c;
}
.recent-posts-entry .widget-post-bx:last-child {
	border-bottom: none;
}
.recent-posts-entry .widget-post {
	margin-bottom: 5px;
	padding: 5px 0px 5px 0px;
}
.recent-posts-entry .nu-post-media {
	float: left;
	width: 90px;
}
.recent-posts-entry ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.widget .widget-post img {
	width: 100%;
}
.widget .project-dec {
	font-size: 14px;
	margin-bottom: 0;
	margin-top: 0;
	line-height: 16px;
	font-weight: normal;
	text-transform: uppercase;
	color: #000;
}
.recent-posts-entry .nu-post-info {
	padding: 0;
	background: transparent;
	margin-left: 105px;
	border: none;
}
.nu-post-meta {
	margin-bottom: 10px;
}
.site-footer .widget ul {
	list-style: none;
	margin-top: 0;
}
.nu-post-meta ul {
	margin: 0;
}
.site-footer.footer-light .recent-posts-entry .nu-post-meta li {
	color: #000;
}
.site-footer li {
	line-height: 20px;
}
.nu-post-meta li {
	padding: 0;
	display: inline-block;
	font-size: 13px;
	font-weight: 400;
	text-transform: uppercase;
}
.nu-project-header .project-dec a {
	font-size: 14px;
	font-weight: 400;
	color: #7e878c;
	text-transform: capitalize;
	line-height: 16px;
}
.project-dec a:hover {
	color: var(--theme-color);
}
.widget_services ul {
	list-style: none;
	padding-left: 0;
	margin-bottom: 0;
}
.widget_services ul li {
	position: relative;
	font-size: 14px;
	font-weight: 600;
	padding-bottom: 18px;
	margin-bottom: 13px;
	border-bottom: 1px solid #e1e1e1;
}
.widget_services ul li:last-child {
	border-bottom: 0px;
	padding-bottom: 0;
}
.widget_services ul li a {
	color: #7e878c;
}
.widget_services ul li a:hover {
	color: var(--theme-color);
}
.widget_services.inline-links li {
	display: block;
	border-bottom: none;
	
}
.site-footer .widget_services ul li {
	display: table; 
	width: 100%;
	padding: 4px 0px;
}
.site-footer .widget_services ul li a {
	display: table-cell; 
	width: 50%;
	font-weight: 400;
}
.widget_address li {
	margin-bottom: 20px;
	position: relative;
	color: #7e878c;
}
.footer-bottom {
	font-size: 14px;
	background-color: var(--white-color);
	color: #787878;
	text-align: center;
}
.footer-large .footer-bottom {
	padding: 35px 27px;
	border-top: 1px solid #dfdfdf;
}
.footer-large .footer-bottom a {
	opacity: 0.5;
}
.footer-large .footer-bottom a:hover {
	opacity: 1;
}
/* Scroll to top Section Style CSS ===================================== */
button.scroltop {
	position: fixed;
	right: 15px;
	bottom: 15px;
	height: 40px;
	width: 40px;
	display: none;
	text-align: center;
	text-transform: uppercase;
	background: #262423;
	border: none;
	margin: 0;
	padding: 0;
	color: var(--white-color);
	cursor: pointer;
	z-index: 999;
}
button.scroltop span {
	display: block;
	font-size: 24px;
	line-height: 24px;
}

